(not at the head of any monitored branch or PR)
2026-03-17 12:52.36: New job: test mhttp-client.0.0.1 with nocrypto.0.5.4-1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (395113449576622af70540fb22e5d90e18554bdc)
                              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/29530/head" && git reset --hard 39511344
git fetch origin master
git merge --no-edit e589be2bb3f3c3428c9c98a122428f3ad2d44845
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn nocrypto.0.5.4-1 0.5.4-1
RUN opam reinstall nocrypto.0.5.4-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" != 'nocrypto.0.5.4-1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall mhttp-client.0.0.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" != 'mhttp-client.0.0.1' && 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 mhttp-client.0.0.1) || true
RUN opam reinstall --with-test --verbose mhttp-client.0.0.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" != 'mhttp-client.0.0.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-03-17 12:52.36: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-nocrypto.0.5.4-1-mhttp-client.0.0.1-395113449576622af70540fb22e5d90e18554bdc"
2026-03-17 12:52.36: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn nocrypto.0.5.4-1 0.5.4-1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall nocrypto.0.5.4-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\" != 'nocrypto.0.5.4-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 mhttp-client.0.0.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\" != 'mhttp-client.0.0.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 (network host)
      (shell "(opam reinstall --with-test mhttp-client.0.0.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose mhttp-client.0.0.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\" != 'mhttp-client.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-17 12:52.36: Waiting for resource in pool OCluster
2026-03-17 15:11.40: Waiting for worker…
2026-03-17 15:17.07: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
HEAD is now at e589be2bb3 Merge pull request #29546 from johnwhitington/opam-publish-camlpdf.2.9
Merge made by the 'ort' strategy.
 packages/bimage-lwt/bimage-lwt.0.3.0/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.3.1/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.4.0/opam    | 6 +++++-
 packages/caqti-lwt/caqti-lwt.0.11.0/opam     | 4 +++-
 packages/caqti-lwt/caqti-lwt.1.0.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.2.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.3.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.6.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.7.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.8.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.9.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.0.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.1.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.2.4/opam      | 6 +++++-
 packages/fuseau-lwt/fuseau-lwt.0.1/opam      | 6 +++++-
 packages/lambda-term/lambda-term.1.13/opam   | 6 +++++-
 packages/lambda-term/lambda-term.2.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.2/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.3/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0/opam    | 6 +++++-
 packages/lambda-term/lambda-term.3.0.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.1.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.2.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.2/opam  | 6 +++++-
 packages/lwt_domain/lwt_domain.0.1.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.2.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.3.0/opam    | 6 +++++-
 packages/lwt_eio/lwt_eio.0.1/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.2/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.3/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.4/opam            | 7 ++++++-
 packages/lwt_eio/lwt_eio.0.5.1/opam          | 7 ++++++-
 packages/lwt_eio/lwt_eio.0.5/opam            | 7 ++++++-
 packages/lwt_glib/lwt_glib.1.0.1/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.0/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.1/opam        | 6 +++++-
 packages/lwt_log/lwt_log.1.1.0/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.1/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.4/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.3/opam          | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.10/opam | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.6/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.7/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.8/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.9/opam  | 6 +++++-
 packages/mwt/mwt.0.1.0/opam                  | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-1/opam      | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-2/opam      | 6 +++++-
 packages/ocluster/ocluster.0.1/opam          | 4 +++-
 packages/ocluster/ocluster.0.2.1/opam        | 6 +++++-
 packages/ocluster/ocluster.0.2/opam          | 4 +++-
 packages/ocluster/ocluster.0.3.0/opam        | 6 +++++-
 packages/picos/picos.0.3.0/opam              | 6 +++++-
 packages/picos/picos.0.4.0/opam              | 6 +++++-
 packages/picos_lwt/picos_lwt.0.5.0/opam      | 6 +++++-
 packages/picos_lwt/picos_lwt.0.6.0/opam      | 6 +++++-
 packages/tezt/tezt.2.0.0/opam                | 6 +++++-
 packages/tezt/tezt.3.0.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.1/opam                | 4 +++-
 packages/tezt/tezt.4.0.0/opam                | 4 +++-
 packages/tezt/tezt.4.1.0/opam                | 4 +++-
 packages/tezt/tezt.4.2.0/opam                | 4 +++-
 packages/tezt/tezt.4.3.0/opam                | 4 +++-
 84 files changed, 403 insertions(+), 84 deletions(-)

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-17 15:17.28 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-17 15:17.29 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" from cache

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

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

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-17 15:17.30 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-03-17 15:17.30 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-17 15:17.32 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 15:17.33 ---> using "9e745c57e5ab22860a93e69a43165eeffcbb910332c7a869086876685d34c8d9" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 15:17.34 ---> using "aa58122f6d3ff0f9c234dc80478bf85c9c05c2f91ebaa6294ad91f56b3660d37" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [111 kB]
- Fetched 10.0 MB in 1s (7109 kB/s)
- Reading package lists...
- 
2026-03-17 15:17.36 ---> using "b672814a2e4ae211d3533cc0a8bea2afe7bc3af82029e6af0edfc8dc02eb576e" from cache

/home/opam: (run (shell "opam pin add -k version -yn nocrypto.0.5.4-1 0.5.4-1"))
nocrypto is now pinned to version 0.5.4-1
2026-03-17 15:17.38 ---> using "3aa100cdb916d631ff2770a340365426220e2c40773a7637bcb7d0014cb7197b" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall nocrypto.0.5.4-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\" != 'nocrypto.0.5.4-1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
nocrypto.0.5.4-1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 35 packages
  - install astring                 0.8.5            [required by ocb-stubblr]
  - install base                    v0.17.3          [required by ppx_sexp_conv]
  - install base-bytes              base             [required by ocplib-endian]
  - install bigarray-compat         1.1.0            [required by cstruct]
  - install conf-gmp                5                [required by zarith]
  - install conf-pkg-config         4                [required by zarith]
  - install cppo                    1.8.0            [required by ppx_deriving]
  - install cpuid                   0.1.2            [required by nocrypto]
  - install csexp                   1.5.2            [required by dune-configurator]
  - install cstruct                 6.0.1            [required by nocrypto]
  - install cstruct-lwt             6.0.1            [required by nocrypto]
  - install dune                    3.21.1           [required by ppx_sexp_conv, cstruct-lwt, cpuid, etc.]
  - install dune-configurator       3.21.1           [required by lwt, base]
  - install lwt                     5.9.2            [required by nocrypto]
  - install mirage-no-solo5         1 (deprecated)   [required by nocrypto]
  - install mirage-no-xen           1 (deprecated)   [required by nocrypto]
  - install nocrypto                0.5.4-1 (pinned)
  - install num                     1.6              [required by sexplib]
  - install ocaml-compiler-libs     v0.17.0          [required by ppxlib]
  - install ocaml_intrinsics_kernel v0.17.1          [required by base]
  - install ocamlbuild              0.16.1           [required by nocrypto]
  - install ocamlfind               1.9.8            [required by nocrypto]
  - install ocb-stubblr             0.1.1-1          [required by nocrypto]
  - install ocplib-endian           1.2              [required by lwt]
  - install parsexp                 v0.17.0          [required by sexplib]
  - install ppx_derivers            1.2.1            [required by ppx_deriving]
  - install ppx_deriving            6.1.1            [required by nocrypto]
  - install ppx_sexp_conv           v0.17.1          [required by nocrypto]
  - install ppxlib                  0.37.0           [required by ppx_deriving, ppx_sexp_conv]
  - install ppxlib_jane             v0.17.4          [required by ppx_sexp_conv]
  - install sexplib                 v0.17.0          [required by nocrypto]
  - install sexplib0                v0.17.0          [required by ppx_sexp_conv, sexplib]
  - install stdlib-shims            0.3.0            [required by ppxlib]
  - install topkg                   1.1.1            [required by nocrypto]
  - install zarith                  1.14             [required by nocrypto]

The following system packages will first need to be installed:
    libgmp-dev pkg-config

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

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20654 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.17.3  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved cpuid.0.1.2  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved cstruct.6.0.1, cstruct-lwt.6.0.1  (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved lwt.5.9.2  (cached)
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> retrieved nocrypto.0.5.4-1  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocb-stubblr.0.1.1-1  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved parsexp.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved sexplib.v0.17.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved zarith.1.14  (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed astring.0.8.5
-> installed ocb-stubblr.0.1.1-1
-> installed dune.3.21.1
-> installed ppx_derivers.1.2.1
-> installed cpuid.0.1.2
-> installed csexp.1.5.2
-> installed bigarray-compat.1.1.0
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed ocplib-endian.1.2
-> installed cstruct.6.0.1
-> installed parsexp.v0.17.0
-> installed dune-configurator.3.21.1
-> installed sexplib.v0.17.0
-> installed lwt.5.9.2
-> installed cstruct-lwt.6.0.1
-> installed base.v0.17.3
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_deriving.6.1.1
-> installed ppx_sexp_conv.v0.17.1
-> installed nocrypto.0.5.4-1
Done.

<><> mirage-no-xen.1 installed successfully <><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.

<><> mirage-no-solo5.1 installed successfully <><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 15:19.18 ---> saved as "e34a25aa03234d9f3a782692a18ca4e1df0abe214cc7fd7e9445141451c0056d"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall mhttp-client.0.0.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\" != 'mhttp-client.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
mhttp-client.0.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 79 packages
  - install angstrom                 0.16.1 [required by h1, h2]
  - install arp                      4.1.0  [required by tcpip]
  - install asn1-combinators         0.3.2  [required by x509]
  - install base64                   3.5.2  [required by x509]
  - install bigstringaf              0.10.0 [required by h2]
  - install bin                      0.0.4  [required by mnet]
  - install bos                      0.2.1  [required by ca-certs-nss]
  - install bstr                     0.0.4  [required by httpcats, mnet]
  - install bytesrw                  0.3.0  [required by mkernel]
  - install ca-certs                 1.0.1  [required by httpcats]
  - install ca-certs-nss             3.121  [required by mhttp-client]
  - install cmdliner                 2.1.0  [required by ca-certs-nss]
  - install conf-gmp-powm-sec        4      [required by mirage-crypto-pk]
  - install conf-libseccomp          1      [required by solo5]
  - install digestif                 1.3.0  [required by ca-certs-nss]
  - install dns                      10.2.4 [required by dns-client]
  - install dns-client               10.2.4 [required by dns-client-miou-unix]
  - install dns-client-miou-unix     10.2.4 [required by httpcats]
  - install domain-name              0.5.0  [required by x509]
  - install duration                 0.2.1  [required by mnet]
  - install eqaf                     0.10   [required by digestif]
  - install ethernet                 3.2.0  [required by tcpip]
  - install faraday                  0.8.2  [required by h1, h2]
  - install fmt                      0.11.0 [required by ca-certs-nss]
  - install fpath                    0.7.3  [required by bos]
  - install gmap                     0.3.0  [required by x509]
  - install h1                       1.1.0  [required by httpcats]
  - install h2                       0.13.0 [required by httpcats]
  - install happy-eyeballs           2.0.1  [required by mnet-happy-eyeballs]
  - install happy-eyeballs-miou-unix 2.0.1  [required by httpcats]
  - install hpack                    0.13.0 [required by h2]
  - install httpcats                 0.2.0  [required by mhttp]
  - install httpun-types             0.2.0  [required by h1, h2]
  - install hxd                      0.4.0  [required by mnet]
  - install ipaddr                   5.6.2  [required by x509, mnet]
  - install ipaddr-cstruct           5.6.2  [required by utcp]
  - install jsont                    0.2.0  [required by mkernel]
  - install kdf                      1.0.0  [required by x509]
  - install logs                     0.10.0 [required by ca-certs-nss]
  - install lru                      0.3.1  [required by tcpip]
  - install lwt-dllist               1.1.0  [required by tcpip]
  - install macaddr                  5.6.2  [required by mnet]
  - install macaddr-cstruct          5.6.2  [required by tcpip]
  - install metrics                  0.5.0  [required by utcp]
  - install mhttp                    0.0.1  [required by mhttp-client]
  - install mhttp-client             0.0.1
  - install miou                     0.5.4  [required by httpcats]
  - install mirage-crypto            2.0.3  [required by x509]
  - install mirage-crypto-ec         2.0.3  [required by x509]
  - install mirage-crypto-pk         2.0.3  [required by x509]
  - install mirage-crypto-rng        2.0.3  [required by mhttp]
  - install mirage-flow              5.0.0  [required by tcpip]
  - install mirage-mtime             5.2.0  [required by utcp]
  - install mirage-net               4.0.0  [required by tcpip]
  - install mirage-ptime             5.2.0  [required by mhttp-client]
  - install mirage-sleep             4.1.0  [required by utcp]
  - install mkernel                  0.0.1  [required by mnet]
  - install mnet                     0.0.1  [required by mhttp, mnet-happy-eyeballs]
  - install mnet-happy-eyeballs      0.0.1  [required by mhttp-client]
  - install mnet-tls                 0.0.1  [required by mhttp]
  - install mtime                    2.1.0  [required by utcp]
  - install ocaml-solo5              1.2.0  [required by mkernel]
  - install ocaml-src                5.4.0  [required by ocaml-solo5]
  - install ocaml-syntax-shims       1.0.0  [required by angstrom]
  - install ohex                     0.2.0  [required by x509]
  - install opatch                   3.1.0  [required by ocaml-solo5]
  - install patch                    3.1.0  [required by opatch]
  - install psq                      0.2.1  [required by h2]
  - install ptime                    1.2.0  [required by mirage-ptime, x509]
  - install randomconv               0.2.0  [required by utcp]
  - install rresult                  0.7.0  [required by bos]
  - install seq                      base   [required by psq]
  - install slice                    0.0.4  [required by mnet]
  - install solo5                    0.10.1 [required by mkernel]
  - install tcpip                    9.0.0  [required by utcp]
  - install tls                      2.0.4  [required by mnet, mnet-tls]
  - install tls-miou-unix            2.0.4  [required by httpcats]
  - install utcp                     0.0.2  [required by mnet-happy-eyeballs]
  - install x509                     1.0.6  [required by ca-certs-nss]

The following system packages will first need to be installed:
    libseccomp-dev

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

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libseccomp-dev"
- Selecting previously unselected package libseccomp-dev:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20713 files and directories currently installed.)
- Preparing to unpack .../libseccomp-dev_2.6.0-2_amd64.deb ...
- Unpacking libseccomp-dev:amd64 (2.6.0-2) ...
- Setting up libseccomp-dev:amd64 (2.6.0-2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved arp.4.1.0  (cached)
-> retrieved asn1-combinators.0.3.2  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved bin.0.0.4, bstr.0.0.4, slice.0.0.4  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved bytesrw.0.3.0  (cached)
-> retrieved ca-certs.1.0.1  (cached)
-> retrieved ca-certs-nss.3.121  (cached)
-> installed base64.3.5.2
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> installed conf-libseccomp.1
-> installed conf-gmp-powm-sec.4
-> installed bstr.0.0.4
-> installed bigstringaf.0.10.0
-> retrieved digestif.1.3.0  (cached)
-> retrieved dns.10.2.4, dns-client.10.2.4, dns-client-miou-unix.10.2.4  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved eqaf.0.10  (cached)
-> installed slice.0.0.4
-> retrieved ethernet.3.2.0  (cached)
-> retrieved faraday.0.8.2  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gmap.0.3.0  (cached)
-> installed duration.0.2.1
-> retrieved h1.1.1.0  (cached)
-> installed domain-name.0.5.0
-> retrieved h2.0.13.0, hpack.0.13.0  (cached)
-> retrieved happy-eyeballs.2.0.1, happy-eyeballs-miou-unix.2.0.1  (cached)
-> retrieved httpcats.0.2.0  (cached)
-> retrieved httpun-types.0.2.0  (cached)
-> retrieved hxd.0.4.0  (cached)
-> installed gmap.0.3.0
-> installed faraday.0.8.2
-> retrieved ipaddr.5.6.2, ipaddr-cstruct.5.6.2, macaddr.5.6.2, macaddr-cstruct.5.6.2  (cached)
-> installed eqaf.0.10
-> retrieved jsont.0.2.0  (cached)
-> installed bin.0.0.4
-> retrieved kdf.1.0.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lru.0.3.1  (cached)
-> retrieved lwt-dllist.1.1.0  (cached)
-> retrieved metrics.0.5.0  (cached)
-> retrieved mhttp.0.0.1, mhttp-client.0.0.1  (cached)
-> retrieved miou.0.5.4  (cached)
-> installed macaddr.5.6.2
-> installed httpun-types.0.2.0
-> installed lwt-dllist.1.1.0
-> installed fpath.0.7.3
-> installed macaddr-cstruct.5.6.2
-> installed ipaddr.5.6.2
-> retrieved mirage-crypto.2.0.3, mirage-crypto-ec.2.0.3, mirage-crypto-pk.2.0.3, mirage-crypto-rng.2.0.3  (cached)
-> installed digestif.1.3.0
-> installed ipaddr-cstruct.5.6.2
-> retrieved mirage-flow.5.0.0  (cached)
-> retrieved mirage-mtime.5.2.0  (cached)
-> retrieved mirage-net.4.0.0  (cached)
-> retrieved mirage-ptime.5.2.0  (cached)
-> retrieved mirage-sleep.4.1.0  (cached)
-> retrieved mkernel.0.0.1  (cached)
-> retrieved mnet.0.0.1, mnet-happy-eyeballs.0.0.1, mnet-tls.0.0.1  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocaml-solo5.1.2.0  (cached)
-> installed mirage-sleep.4.1.0
-> retrieved ocaml-src.5.4.0  (cached)
-> installed miou.0.5.4
-> installed mtime.2.1.0
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved opatch.3.1.0, patch.3.1.0  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved randomconv.0.2.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved seq.base  (cached)
-> retrieved solo5.0.10.1  (cached)
-> installed ocaml-src.5.4.0
-> retrieved tcpip.9.0.0  (cached)
-> retrieved tls.2.0.4, tls-miou-unix.2.0.4  (cached)
-> installed cmdliner.2.1.0
-> installed mirage-crypto.2.0.3
-> installed mirage-mtime.5.2.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ohex.0.2.0
-> installed patch.3.1.0
-> installed randomconv.0.2.0
-> installed rresult.0.7.0
-> installed seq.base
-> retrieved utcp.0.0.2  (cached)
-> retrieved x509.1.0.6  (cached)
-> installed kdf.1.0.0
-> installed ptime.1.2.0
-> installed opatch.3.1.0
-> installed psq.0.2.1
-> installed angstrom.0.16.1
-> installed mirage-ptime.5.2.0
-> installed lru.0.3.1
-> installed fmt.0.11.0
-> installed hxd.0.4.0
-> installed asn1-combinators.0.3.2
-> installed mirage-net.4.0.0
-> installed mirage-flow.5.0.0
-> installed metrics.0.5.0
-> installed h1.1.1.0
-> installed hpack.0.13.0
-> installed bytesrw.0.3.0
-> installed logs.0.10.0
-> installed happy-eyeballs.2.0.1
-> installed ethernet.3.2.0
-> installed mirage-crypto-rng.2.0.3
-> installed h2.0.13.0
-> installed arp.4.1.0
-> installed happy-eyeballs-miou-unix.2.0.1
-> installed mirage-crypto-pk.2.0.3
-> installed tcpip.9.0.0
-> installed dns.10.2.4
-> installed jsont.0.2.0
-> installed bos.0.2.1
-> installed dns-client.10.2.4
-> installed utcp.0.0.2
-> installed mirage-crypto-ec.2.0.3
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed ca-certs-nss.3.121
-> installed solo5.0.10.1
-> installed tls.2.0.4
-> installed tls-miou-unix.2.0.4
-> installed dns-client-miou-unix.10.2.4
-> installed httpcats.0.2.0
-> installed ocaml-solo5.1.2.0
-> installed mkernel.0.0.1
-> installed mnet.0.0.1
-> installed mnet-tls.0.0.1
-> installed mnet-happy-eyeballs.0.0.1
-> installed mhttp.0.0.1
-> installed mhttp-client.0.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 15:24.25 ---> saved as "b9ded9d6c3af2aaeac444943b73f282c4762f9f70a5d56ba64b05557b657b88b"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test mhttp-client.0.0.1) || true"))
The following actions will be performed:
=== remove 1 package
  - remove    nocrypto                 0.5.4-1 (pinned) [conflicts with cstruct, lwt]
=== recompile 31 packages
  - recompile arp                      4.1.0            [uses cstruct, lwt]
  - recompile bos                      0.2.1            [uses logs]
  - recompile ca-certs                 1.0.1            [uses logs]
  - recompile ca-certs-nss             3.121            [uses logs]
  - recompile dns                      10.2.4           [uses logs]
  - recompile dns-client               10.2.4           [uses dns, mirage-crypto-rng]
  - recompile dns-client-miou-unix     10.2.4           [uses happy-eyeballs]
  - recompile ethernet                 3.2.0            [uses cstruct, lwt]
  - recompile happy-eyeballs           2.0.1            [uses logs]
  - recompile happy-eyeballs-miou-unix 2.0.1            [uses logs]
  - recompile httpcats                 0.2.0            [uses ca-certs, happy-eyeballs-miou-unix]
  - recompile hxd                      0.4.0            [uses lwt]
  - recompile ipaddr-cstruct           5.6.2            [uses cstruct]
  - recompile logs                     0.10.0           [uses lwt]
  - recompile macaddr-cstruct          5.6.2            [uses cstruct]
  - recompile mhttp                    0.0.1            [uses mirage-crypto-rng]
  - recompile mhttp-client             0.0.1
  - recompile mirage-crypto-ec         2.0.3            [uses mirage-crypto-rng]
  - recompile mirage-crypto-pk         2.0.3            [uses mirage-crypto-rng]
  - recompile mirage-crypto-rng        2.0.3            [uses logs]
  - recompile mirage-flow              5.0.0            [uses cstruct, lwt]
  - recompile mirage-net               4.0.0            [uses cstruct, lwt]
  - recompile mirage-sleep             4.1.0            [uses lwt]
  - recompile mkernel                  0.0.1            [uses logs]
  - recompile mnet                     0.0.1            [uses hxd]
  - recompile mnet-happy-eyeballs      0.0.1            [uses happy-eyeballs]
  - recompile mnet-tls                 0.0.1            [uses utcp, tls]
  - recompile tls                      2.0.4            [uses logs]
  - recompile tls-miou-unix            2.0.4            [uses tls, x509]
  - recompile utcp                     0.0.2            [uses cstruct, lwt]
  - recompile x509                     1.0.6            [uses logs]
=== upgrade 4 packages
  - upgrade   cstruct                  6.0.1 to 6.2.0
  - upgrade   cstruct-lwt              6.0.1 to 6.2.0   [uses cstruct, lwt]
  - upgrade   lwt                      5.9.2 to 6.1.1
  - upgrade   tcpip                    9.0.0 to 9.0.1   [uses cstruct, lwt]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   nocrypto.0.5.4-1
-> retrieved arp.4.1.0  (https://opam.ocaml.org/cache)
-> retrieved bos.0.2.1  (https://opam.ocaml.org/cache)
-> retrieved ca-certs.1.0.1  (https://opam.ocaml.org/cache)
-> retrieved ca-certs-nss.3.121  (https://opam.ocaml.org/cache)
-> retrieved cstruct.6.2.0, cstruct-lwt.6.2.0  (https://opam.ocaml.org/cache)
-> retrieved dns.10.2.4, dns-client.10.2.4, dns-client-miou-unix.10.2.4  (https://opam.ocaml.org/cache)
-> retrieved ethernet.3.2.0  (https://opam.ocaml.org/cache)
-> retrieved happy-eyeballs.2.0.1, happy-eyeballs-miou-unix.2.0.1  (https://opam.ocaml.org/cache)
-> retrieved httpcats.0.2.0  (https://opam.ocaml.org/cache)
-> retrieved hxd.0.4.0  (https://opam.ocaml.org/cache)
-> retrieved ipaddr-cstruct.5.6.2, macaddr-cstruct.5.6.2  (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved lwt.6.1.1  (https://opam.ocaml.org/cache)
-> retrieved mhttp.0.0.1, mhttp-client.0.0.1  (https://opam.ocaml.org/cache)
-> retrieved mirage-crypto-ec.2.0.3, mirage-crypto-pk.2.0.3, mirage-crypto-rng.2.0.3  (https://opam.ocaml.org/cache)
-> retrieved mirage-flow.5.0.0  (https://opam.ocaml.org/cache)
-> retrieved mirage-net.4.0.0  (https://opam.ocaml.org/cache)
-> retrieved mirage-sleep.4.1.0  (https://opam.ocaml.org/cache)
-> retrieved mkernel.0.0.1  (https://opam.ocaml.org/cache)
-> retrieved mnet.0.0.1, mnet-happy-eyeballs.0.0.1, mnet-tls.0.0.1  (https://opam.ocaml.org/cache)
-> retrieved tcpip.9.0.1  (https://opam.ocaml.org/cache)
-> retrieved tls.2.0.4, tls-miou-unix.2.0.4  (https://opam.ocaml.org/cache)
-> retrieved utcp.0.0.2  (https://opam.ocaml.org/cache)
-> retrieved x509.1.0.6  (https://opam.ocaml.org/cache)
-> removed   mhttp-client.0.0.1
-> removed   ca-certs-nss.3.121
-> removed   mhttp.0.0.1
-> removed   httpcats.0.2.0
-> removed   ca-certs.1.0.1
-> removed   bos.0.2.1
-> removed   dns-client-miou-unix.10.2.4
-> removed   dns-client.10.2.4
-> removed   dns.10.2.4
-> removed   happy-eyeballs-miou-unix.2.0.1
-> removed   mnet-happy-eyeballs.0.0.1
-> removed   mnet-tls.0.0.1
-> removed   mnet.0.0.1
-> removed   happy-eyeballs.2.0.1
-> removed   hxd.0.4.0
-> removed   mkernel.0.0.1
-> removed   tls-miou-unix.2.0.4
-> removed   tls.2.0.4
-> removed   utcp.0.0.2
-> removed   tcpip.9.0.0
-> removed   arp.4.1.0
-> removed   cstruct-lwt.6.0.1
-> removed   ethernet.3.2.0
-> removed   ipaddr-cstruct.5.6.2
-> removed   macaddr-cstruct.5.6.2
-> removed   mirage-flow.5.0.0
-> removed   mirage-net.4.0.0
-> removed   cstruct.6.0.1
-> removed   mirage-sleep.4.1.0
-> removed   x509.1.0.6
-> removed   mirage-crypto-ec.2.0.3
-> removed   mirage-crypto-pk.2.0.3
-> removed   mirage-crypto-rng.2.0.3
-> removed   logs.0.10.0
-> removed   lwt.5.9.2
-> installed cstruct.6.2.0
-> installed lwt.6.1.1
-> installed macaddr-cstruct.5.6.2
-> installed ipaddr-cstruct.5.6.2
-> installed cstruct-lwt.6.2.0
-> installed mirage-flow.5.0.0
-> installed mirage-net.4.0.0
-> installed mirage-sleep.4.1.0
-> installed hxd.0.4.0
-> installed logs.0.10.0
-> installed ethernet.3.2.0
-> installed mkernel.0.0.1
-> installed happy-eyeballs.2.0.1
-> installed mirage-crypto-rng.2.0.3
-> installed arp.4.1.0
-> installed happy-eyeballs-miou-unix.2.0.1
-> installed mirage-crypto-pk.2.0.3
-> installed dns.10.2.4
-> installed tcpip.9.0.1
-> installed dns-client.10.2.4
-> installed bos.0.2.1
-> installed utcp.0.0.2
-> installed mirage-crypto-ec.2.0.3
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed ca-certs-nss.3.121
-> installed tls.2.0.4
-> installed tls-miou-unix.2.0.4
-> installed dns-client-miou-unix.10.2.4
-> installed mnet.0.0.1
-> installed httpcats.0.2.0
-> installed mnet-tls.0.0.1
-> installed mnet-happy-eyeballs.0.0.1
-> installed mhttp.0.0.1
-> installed mhttp-client.0.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 15:25.16 ---> saved as "518fea2f3f83efe777fadb6f7a5db9e1e55775bab0f0890f990bfa12dd3351e7"

/home/opam: (run (shell  "opam reinstall --with-test --verbose mhttp-client.0.0.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\" != 'mhttp-client.0.0.1' && 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 mhttp-client 0.0.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [mhttp-client.0.0.1: extract]
-> retrieved mhttp-client.0.0.1  (cached)
Processing  2/4: [mhttp-client: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mhttp-client" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/mhttp-client.0.0.1)
Processing  2/4: [mhttp-client: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "mhttp-client" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/mhttp-client.0.0.1)
-> compiled  mhttp-client.0.0.1
-> removed   mhttp-client.0.0.1
-> installed mhttp-client.0.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 15:25.29 ---> saved as "7e4209fa7c383b191085a5248201115c6cb1d0895c25700812a44bc29496e8cd"
Job succeeded
2026-03-17 15:29.23: Job succeeded