(not at the head of any monitored branch or PR)
2025-08-12 13:25.05: New job: test git-unix.2.1.3 with dune.3.20.0~alpha4, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28333/head (e2e946ed909ce4d2c3e1e35bbaff78b566760128)
                              on debian-12-ocaml-4.14/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/28333/head" && git reset --hard e2e946ed
git fetch origin master
git merge --no-edit 5b99878077ddf3134c09e188d937954bd33cfa58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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 dune.3.20.0~alpha4 3.20.0~alpha4
RUN opam reinstall dune.3.20.0~alpha4; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune.3.20.0~alpha4' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall git-unix.2.1.3; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'git-unix.2.1.3' && 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 git-unix.2.1.3) || true
RUN opam reinstall --with-test --verbose git-unix.2.1.3; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'git-unix.2.1.3' && 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 .

2025-08-12 13:25.05: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63-dune.3.20.0~alpha4-git-unix.2.1.3-e2e946ed909ce4d2c3e1e35bbaff78b566760128"
2025-08-12 13:25.05: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.3 /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 dune.3.20.0~alpha4 3.20.0~alpha4"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.20.0~alpha4;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune.3.20.0~alpha4' && 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 git-unix.2.1.3;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'git-unix.2.1.3' && 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 git-unix.2.1.3) || true"))
 (run (shell  "opam reinstall --with-test --verbose git-unix.2.1.3;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'git-unix.2.1.3' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-08-12 13:25.05: Waiting for resource in pool OCluster
2025-08-12 22:23.15: Waiting for worker…
2025-08-12 22:25.26: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 5b99878077 Merge pull request #28318 from ocamllibs/metaquot-0.6.0
Updating 5b99878077..e2e946ed90
Fast-forward
 .../chrome-trace/chrome-trace.3.20.0~alpha4/opam   | 41 ++++++++++++
 .../dune-action-plugin.3.20.0~alpha4/opam          | 54 ++++++++++++++++
 .../dune-build-info.3.20.0~alpha4/opam             | 47 ++++++++++++++
 .../dune-configurator.3.20.0~alpha4/opam           | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.20.0~alpha4/opam    | 44 +++++++++++++
 .../dune-private-libs.3.20.0~alpha4/opam           | 52 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha4/opam   | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.20.0~alpha4/opam      | 46 ++++++++++++++
 packages/dune-site/dune-site.3.20.0~alpha4/opam    | 39 ++++++++++++
 packages/dune/dune.3.20.0~alpha4/opam              | 74 ++++++++++++++++++++++
 packages/dyn/dyn.3.20.0~alpha4/opam                | 42 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha4/opam  | 45 +++++++++++++
 packages/ordering/ordering.3.20.0~alpha4/opam      | 40 ++++++++++++
 packages/stdune/stdune.3.20.0~alpha4/opam          | 46 ++++++++++++++
 packages/xdg/xdg.3.20.0~alpha4/opam                | 41 ++++++++++++
 15 files changed, 705 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.20.0~alpha4/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.20.0~alpha4/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.20.0~alpha4/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.20.0~alpha4/opam
 create mode 100644 packages/dune-glob/dune-glob.3.20.0~alpha4/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.20.0~alpha4/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha4/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.20.0~alpha4/opam
 create mode 100644 packages/dune-site/dune-site.3.20.0~alpha4/opam
 create mode 100644 packages/dune/dune.3.20.0~alpha4/opam
 create mode 100644 packages/dyn/dyn.3.20.0~alpha4/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha4/opam
 create mode 100644 packages/ordering/ordering.3.20.0~alpha4/opam
 create mode 100644 packages/stdune/stdune.3.20.0~alpha4/opam
 create mode 100644 packages/xdg/xdg.3.20.0~alpha4/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
2025-08-12 22:25.28 ---> using "7f53aba96fd697ea92c7c7d3f6be48133fa7f3f6538a693606c4cbcecd7917b8" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-08-12 22:25.28 ---> using "e4ec4ab2139d3c4a94c2b5470fe84288e4986c518ff4f4ae2d7c7e30aeac0731" from cache

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

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

[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
2025-08-12 22:25.28 ---> using "707659fd6393183061072104f3ce800d69d94ba93e0f39ab380130268d0ee81e" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=12
# 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       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2025-08-12 22:25.28 ---> using "3ec3067d40f73cc0ec4554b242939c55b0261973e091b54a647662451dc49933" 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/"))
2025-08-12 22:25.28 ---> using "376e3b49c8c08cb1ff0d45feb403c06e037d8df5800c560fdd8dd472f1e36b9a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-08-12 22:25.29 ---> using "e17457918b8520f1cc4845647d0b13a39117eff71b59a3c5352a8dccd3e736a1" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-08-12 22:25.29 ---> using "a9c87a01beb7b470788e26aa155c7a9aa4fe1265c42bbb2e46588f264ba6e313" 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 bookworm InRelease [151 kB]
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [21.8 kB]
- Ign:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6924 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [272 kB]
- Fetched 555 kB in 0s (1302 kB/s)
- Reading package lists...
2025-08-12 22:25.29 ---> using "4f267453f72fd37713de377ca2564e961df391a8a15b228dc4ea0efbc9db6963" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.20.0~alpha4 3.20.0~alpha4"))
dune is now pinned to version 3.20.0~alpha4
2025-08-12 22:25.29 ---> using "d0d559b8464c3a1e20f8b5572aaf9064ec29fd9ff7cf39aecd1c3a72009a2248" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.20.0~alpha4;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune.3.20.0~alpha4' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.20.0~alpha4 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.20.0~alpha4 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.0~alpha4  (cached)
-> installed dune.3.20.0~alpha4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 22:25.29 ---> using "931361170f901e9fbbbdcd0df6be77ceb7cde9d0ee367b0395427635cd735e4a" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall git-unix.2.1.3;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'git-unix.2.1.3' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
git-unix.2.1.3 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 71 packages
  - install angstrom            0.16.1             [required by uri, git]
  - install astring             0.8.5              [required by git]
  - install base                v0.16.4            [required by ppx_fields_conv, fieldslib, ppx_sexp_conv]
  - install base-bytes          base               [required by cohttp]
  - install base64              3.5.1              [required by cohttp]
  - install bigarray-compat     1.1.0              [required by digestif, cstruct, decompress, encore]
  - install bigarray-overlap    0.2.1              [required by encore]
  - install bigstringaf         0.10.0             [required by angstrom, encore]
  - install bos                 0.2.1              [required by duff]
  - install checkseum           0.4.0              [required by git]
  - install cmdliner            1.0.4              [required by git-unix]
  - install cohttp              2.5.8              [required by git-unix]
  - install cohttp-lwt          2.5.8              [required by cohttp-lwt-unix, git-http]
  - install cohttp-lwt-unix     2.5.8              [required by git-unix]
  - install conduit             2.1.0              [required by conduit-lwt]
  - install conduit-lwt         2.1.0              [required by conduit-lwt-unix]
  - install conduit-lwt-unix    2.2.2              [required by cohttp-lwt-unix]
  - install conf-pkg-config     4                  [required by checkseum]
  - install cppo                1.8.0              [required by lwt]
  - install csexp               1.5.2              [required by dune-configurator]
  - install cstruct             6.0.1              [required by git]
  - install decompress          0.9.1              [required by git]
  - install digestif            0.9.0              [required by git]
  - install domain-name         0.4.1              [required by ipaddr]
  - install duff                0.2                [required by git]
  - install dune-configurator   3.20.0~alpha4      [required by base, checkseum]
  - install encore              0.5                [required by git]
  - install eqaf                0.10               [required by digestif]
  - install fieldslib           v0.16.0            [required by cohttp]
  - install fmt                 0.9.0              [required by cohttp-lwt-unix]
  - install fpath               0.7.3              [required by git]
  - install git                 2.1.3              [required by git-http]
  - install git-http            2.1.3 (deprecated) [required by git-unix]
  - install git-unix            2.1.3
  - install hex                 1.5.0              [required by git]
  - install ipaddr              5.6.1              [required by conduit-lwt-unix]
  - install ipaddr-sexp         5.6.1              [required by conduit-lwt-unix]
  - install jsonm               1.0.2              [required by cohttp]
  - install ke                  0.6                [required by git]
  - install logs                0.7.0              [required by cohttp-lwt-unix]
  - install lru                 0.3.1              [required by git]
  - install lwt                 5.9.1              [required by cohttp-lwt-unix]
  - install macaddr             5.6.1              [required by ipaddr]
  - install magic-mime          1.3.1              [required by cohttp-lwt-unix]
  - install mmap                1.2.0              [required by git-unix]
  - install mtime               1.4.0              [required by git-unix]
  - install num                 1.6                [required by sexplib]
  - install ocaml-compiler-libs v0.12.4            [required by ppxlib]
  - install ocaml-syntax-shims  1.0.0              [required by angstrom]
  - install ocamlbuild          0.16.1             [required by mtime]
  - install ocamlfind           1.9.8              [required by mtime]
  - install ocamlgraph          2.2.0              [required by git]
  - install ocplib-endian       1.2                [required by git]
  - install optint              0.3.0              [required by checkseum, decompress]
  - install parsexp             v0.16.0            [required by sexplib]
  - install ppx_derivers        1.2.1              [required by ppxlib]
  - install ppx_fields_conv     v0.16.0            [required by cohttp]
  - install ppx_sexp_conv       v0.16.0            [required by cohttp]
  - install ppxlib              0.35.0             [required by ppx_fields_conv, ppx_sexp_conv]
  - install psq                 0.2.1              [required by lru]
  - install re                  1.13.2             [required by cohttp]
  - install rresult             0.7.0              [required by git]
  - install seq                 base               [required by re]
  - install sexplib             v0.16.0            [required by conduit-lwt]
  - install sexplib0            v0.16.0            [required by cohttp]
  - install stdlib-shims        0.3.0              [required by cohttp]
  - install stringext           1.6.0              [required by cohttp]
  - install topkg               1.1.0              [required by mtime]
  - install uri                 4.4.0              [required by cohttp]
  - install uri-sexp            4.4.0              [required by cohttp]
  - install uutf                1.0.3              [required by jsonm]

The following system packages will first need to be installed:
    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" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libpkgconf3: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 ... 18747 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved base64.3.5.1  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved bigarray-overlap.0.2.1  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved checkseum.0.4.0  (cached)
-> retrieved cmdliner.1.0.4  (cached)
-> retrieved cohttp.2.5.8, cohttp-lwt.2.5.8, cohttp-lwt-unix.2.5.8  (cached)
-> retrieved conduit.2.1.0, conduit-lwt.2.1.0  (cached)
-> installed bigarray-compat.1.1.0
-> retrieved conduit-lwt-unix.2.2.2  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> retrieved cstruct.6.0.1  (cached)
-> retrieved decompress.0.9.1  (cached)
-> installed base64.3.5.1
-> installed csexp.1.5.2
-> installed bigarray-overlap.0.2.1
-> retrieved digestif.0.9.0  (cached)
-> retrieved domain-name.0.4.1  (cached)
-> retrieved duff.0.2  (cached)
-> installed cstruct.6.0.1
-> installed domain-name.0.4.1
-> retrieved dune-configurator.3.20.0~alpha4  (cached)
-> retrieved encore.0.5  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved fieldslib.v0.16.0  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved git.2.1.3, git-http.2.1.3, git-unix.2.1.3  (cached)
-> installed cmdliner.1.0.4
-> installed cppo.1.8.0
-> retrieved hex.1.5.0  (cached)
-> retrieved ipaddr.5.6.1, ipaddr-sexp.5.6.1, macaddr.5.6.1  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved ke.0.6  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved lru.0.3.1  (cached)
-> retrieved lwt.5.9.1  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved mmap.1.2.0  (cached)
-> retrieved mtime.1.4.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> installed eqaf.0.10
-> installed hex.1.5.0
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed macaddr.5.6.1
-> retrieved ocamlfind.1.9.8  (cached)
-> installed mmap.1.2.0
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved optint.0.3.0  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_fields_conv.v0.16.0  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> installed ppx_derivers.1.2.1
-> retrieved psq.0.2.1  (cached)
-> retrieved re.1.13.2  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> installed ipaddr.5.6.1
-> installed optint.0.3.0
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> installed magic-mime.1.3.1
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved topkg.1.1.0  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> retrieved uutf.1.0.3  (cached)
-> installed ocaml-syntax-shims.1.0.0
-> installed dune-configurator.3.20.0~alpha4
-> installed ocaml-compiler-libs.v0.12.4
-> installed psq.0.2.1
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed sexplib0.v0.16.0
-> installed lru.0.3.1
-> installed bigstringaf.0.10.0
-> installed num.1.6
-> installed re.1.13.2
-> installed checkseum.0.4.0
-> installed angstrom.0.16.1
-> installed ocamlgraph.2.2.0
-> installed parsexp.v0.16.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed uri.4.4.0
-> installed sexplib.v0.16.0
-> installed ocplib-endian.1.2
-> installed digestif.0.9.0
-> installed decompress.0.9.1
-> installed ocamlbuild.0.16.1
-> installed base.v0.16.4
-> installed fieldslib.v0.16.0
-> installed lwt.5.9.1
-> installed topkg.1.1.0
-> installed rresult.0.7.0
-> installed uutf.1.0.3
-> installed mtime.1.4.0
-> installed fmt.0.9.0
-> installed astring.0.8.5
-> installed ke.0.6
-> installed jsonm.1.0.2
-> installed encore.0.5
-> installed fpath.0.7.3
-> installed logs.0.7.0
-> installed ppxlib.0.35.0
-> installed ppx_fields_conv.v0.16.0
-> installed bos.0.2.1
-> installed ppx_sexp_conv.v0.16.0
-> installed duff.0.2
-> installed ipaddr-sexp.5.6.1
-> installed uri-sexp.4.4.0
-> installed conduit.2.1.0
-> installed cohttp.2.5.8
-> installed git.2.1.3
-> installed conduit-lwt.2.1.0
-> installed cohttp-lwt.2.5.8
-> installed conduit-lwt-unix.2.2.2
-> installed git-http.2.1.3
-> installed cohttp-lwt-unix.2.5.8
-> installed git-unix.2.1.3
Done.

<><> git-http.2.1.3 installed successfully ><><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 22:26.13 ---> saved as "62fceb671d6c1584e7d8944b6bb2a30e1ec1fa3f7e09cca0fd01087ab299ea3d"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test git-unix.2.1.3) || true"))
The following actions will be performed:
=== downgrade 1 package
  - downgrade eqaf              0.10 to 0.9        [required by hacl_x25519, mirage-crypto, fiat-p256, mirage-crypto-pk]
=== recompile 5 packages
  - recompile cohttp-lwt-unix   2.5.8              [uses conduit-lwt-unix]
  - recompile digestif          0.9.0              [uses eqaf]
  - recompile git               2.1.3              [uses digestif]
  - recompile git-http          2.1.3 (deprecated) [uses git]
  - recompile git-unix          2.1.3
=== upgrade 3 packages
  - upgrade   conduit           2.1.0 to 2.3.0     [required by conduit-lwt]
  - upgrade   conduit-lwt       2.1.0 to 2.3.0     [required by conduit-lwt-unix]
  - upgrade   conduit-lwt-unix  2.2.2 to 2.3.0     [uses tls]
=== install 22 packages
  - install   alcotest          1.5.0              [required by git-unix]
  - install   asn1-combinators  0.2.6              [required by x509]
  - install   ca-certs          0.2.0              [required by conduit-lwt-unix]
  - install   conf-gmp          5                  [required by conf-gmp-powm-sec, zarith]
  - install   conf-gmp-powm-sec 4                  [required by mirage-crypto-pk]
  - install   cstruct-sexp      6.0.1              [required by tls]
  - install   duration          0.2.1              [required by mirage-crypto-rng]
  - install   fiat-p256         0.2.3 (deprecated) [required by tls]
  - install   gmap              0.3.0              [required by x509]
  - install   hacl_x25519       0.2.2 (deprecated) [required by tls]
  - install   hkdf              1.0.4 (deprecated) [required by tls]
  - install   io-page           3.0.0              [required by git-unix]
  - install   mirage-crypto     0.10.7             [required by mirage-crypto-rng, tls]
  - install   mirage-crypto-pk  0.10.7             [required by tls]
  - install   mirage-crypto-rng 0.10.7             [required by git-unix]
  - install   mirage-no-solo5   1 (deprecated)     [required by mirage-crypto-pk]
  - install   mirage-no-xen     1 (deprecated)     [required by mirage-crypto-pk]
  - install   ppx_cstruct       6.0.1              [required by tls]
  - install   ptime             1.2.0              [required by tls]
  - install   tls               0.12.8             [required by git-unix]
  - install   x509              0.11.2             [required by tls]
  - install   zarith            1.14               [required by mirage-crypto-pk]

The following system packages will first need to be installed:
    libgmp-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" "libgmp-dev"
- debconf: delaying package configuration, since apt-utils is not installed
- 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 ... 18783 files and directories currently installed.)
- Preparing to unpack .../libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.5.0  (https://opam.ocaml.org/cache)
-> retrieved asn1-combinators.0.2.6  (https://opam.ocaml.org/cache)
-> retrieved ca-certs.0.2.0  (https://opam.ocaml.org/cache)
-> retrieved cohttp-lwt-unix.2.5.8  (https://opam.ocaml.org/cache)
-> retrieved conduit.2.3.0, conduit-lwt.2.3.0, conduit-lwt-unix.2.3.0  (https://opam.ocaml.org/cache)
-> retrieved conf-gmp.5  (https://opam.ocaml.org/cache)
-> installed conf-gmp.5
-> retrieved conf-gmp-powm-sec.4  (https://opam.ocaml.org/cache)
-> installed conf-gmp-powm-sec.4
-> retrieved cstruct-sexp.6.0.1, ppx_cstruct.6.0.1  (https://opam.ocaml.org/cache)
-> installed alcotest.1.5.0
-> installed cstruct-sexp.6.0.1
-> retrieved digestif.0.9.0  (https://opam.ocaml.org/cache)
-> retrieved duration.0.2.1  (https://opam.ocaml.org/cache)
-> retrieved eqaf.0.9  (https://opam.ocaml.org/cache)
-> installed duration.0.2.1
-> retrieved fiat-p256.0.2.3  (https://opam.ocaml.org/cache)
-> retrieved git.2.1.3, git-http.2.1.3, git-unix.2.1.3  (https://opam.ocaml.org/cache)
-> retrieved gmap.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved hacl_x25519.0.2.2  (https://opam.ocaml.org/cache)
-> retrieved hkdf.1.0.4  (https://opam.ocaml.org/cache)
-> installed gmap.0.3.0
-> retrieved io-page.3.0.0  (https://opam.ocaml.org/cache)
-> installed io-page.3.0.0
-> retrieved mirage-crypto.0.10.7, mirage-crypto-pk.0.10.7, mirage-crypto-rng.0.10.7  (https://opam.ocaml.org/cache)
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> retrieved ptime.1.2.0  (https://opam.ocaml.org/cache)
-> installed ppx_cstruct.6.0.1
-> retrieved tls.0.12.8  (https://opam.ocaml.org/cache)
-> retrieved x509.0.11.2  (https://opam.ocaml.org/cache)
-> retrieved zarith.1.14  (https://opam.ocaml.org/cache)
-> removed   git-unix.2.1.3
-> removed   cohttp-lwt-unix.2.5.8
-> removed   conduit-lwt-unix.2.2.2
-> removed   conduit-lwt.2.1.0
-> removed   conduit.2.1.0
-> removed   git-http.2.1.3
-> removed   git.2.1.3
-> removed   digestif.0.9.0
-> removed   eqaf.0.10
-> installed conduit.2.3.0
-> installed eqaf.0.9
-> installed ptime.1.2.0
-> installed digestif.0.9.0
-> installed fiat-p256.0.2.3
-> installed conduit-lwt.2.3.0
-> installed hacl_x25519.0.2.2
-> installed zarith.1.14
-> installed mirage-crypto.0.10.7
-> installed hkdf.1.0.4
-> installed git.2.1.3
-> installed asn1-combinators.0.2.6
-> installed mirage-crypto-rng.0.10.7
-> installed mirage-crypto-pk.0.10.7
-> installed git-http.2.1.3
-> installed x509.0.11.2
-> installed ca-certs.0.2.0
-> installed tls.0.12.8
-> installed conduit-lwt-unix.2.3.0
-> installed cohttp-lwt-unix.2.5.8
-> installed git-unix.2.1.3
Done.

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

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

<><> hkdf.1.0.4 installed successfully ><><><><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.

<><> hacl_x25519.0.2.2 installed successfully <><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.

<><> git-http.2.1.3 installed successfully ><><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.

<><> fiat-p256.0.2.3 installed successfully <><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 22:26.51 ---> saved as "9691d01656510a6d765bd1d5f13ae798fae8a97c7f495522851fc51e41238ce5"

/home/opam: (run (shell  "opam reinstall --with-test --verbose git-unix.2.1.3;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'git-unix.2.1.3' && 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 git-unix 2.1.3

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [git-unix.2.1.3: extract]
-> retrieved git-unix.2.1.3  (cached)
Processing  2/4: [git-unix: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "git-unix" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/git-unix.2.1.3)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/git-unix/.git_unix.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigarray-overlap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bos -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/ca-certs -I /home/opam/.opam/4.14/lib/checkseum -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/cohttp-lwt -I /home/opam/.opam/4.14/lib/cohttp-lwt-unix -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/conduit-lwt -I /home/opam/.opam/4.14/lib/conduit-lwt-unix -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/decompress -I /home/opam/.opam/4.14/lib/decompress/impl -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duff -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/encore -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fieldslib -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/git -I /home/opam/.opam/4.14/lib/git-http -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lru -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mmap -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tls -I /home/opam/.opam/4.14/lib/tls/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -I /home/opam/.opam/4.14/lib/uri/services -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Git_unix__ -o src/git-unix/.git_unix.objs/byte/git_unix__Net.cmo -c -impl src/git-unix/net.ml)
- File "src/git-unix/net.ml", line 34, characters 6-15:
- 34 |       Fmt.kstrf failwith "Expected a git url with host: %a." Uri.pp_hum uri
-            ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/git-unix/.git_unix.objs/byte -I src/git-unix/.git_unix.objs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigarray-overlap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bos -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/ca-certs -I /home/opam/.opam/4.14/lib/checkseum -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/cohttp-lwt -I /home/opam/.opam/4.14/lib/cohttp-lwt-unix -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/conduit-lwt -I /home/opam/.opam/4.14/lib/conduit-lwt-unix -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/decompress -I /home/opam/.opam/4.14/lib/decompress/impl -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duff -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/encore -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fieldslib -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/git -I /home/opam/.opam/4.14/lib/git-http -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lru -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mmap -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tls -I /home/opam/.opam/4.14/lib/tls/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -I /home/opam/.opam/4.14/lib/uri/services -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Git_unix__ -o src/git-unix/.git_unix.objs/native/git_unix__Net.cmx -c -impl src/git-unix/net.ml)
- File "src/git-unix/net.ml", line 34, characters 6-15:
- 34 |       Fmt.kstrf failwith "Expected a git url with host: %a." Uri.pp_hum uri
-            ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/git-unix/.git_unix.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigarray-overlap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bos -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/ca-certs -I /home/opam/.opam/4.14/lib/checkseum -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/cohttp-lwt -I /home/opam/.opam/4.14/lib/cohttp-lwt-unix -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/conduit-lwt -I /home/opam/.opam/4.14/lib/conduit-lwt-unix -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/decompress -I /home/opam/.opam/4.14/lib/decompress/impl -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duff -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/encore -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fieldslib -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/git -I /home/opam/.opam/4.14/lib/git-http -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lru -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mmap -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tls -I /home/opam/.opam/4.14/lib/tls/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -I /home/opam/.opam/4.14/lib/uri/services -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Git_unix__ -o src/git-unix/.git_unix.objs/byte/git_unix__Fs.cmo -c -impl src/git-unix/fs.ml)
- File "src/git-unix/fs.ml", line 51, characters 25-34:
- 51 | let err_getcwd dir fmt = Fmt.kstrf (fun s -> err dir (`Getcwd s)) fmt
-                               ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/git-unix/fs.ml", line 62, characters 2-11:
- 62 |   Fmt.kstrf invalid_arg "Expected an unix error: %a." Fmt.exn exn
-        ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/git-unix/fs.ml", line 285, characters 35-46:
- 285 |   let write raw ?(off = 0) ?(len = Cstruct.len raw) {fd; path} =
-                                          ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "src/git-unix/fs.ml", line 290, characters 34-45:
- 290 |   let read raw ?(off = 0) ?(len = Cstruct.len raw) {fd; path} =
-                                         ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/git-unix/.git_unix.objs/byte -I src/git-unix/.git_unix.objs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigarray-overlap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bos -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/ca-certs -I /home/opam/.opam/4.14/lib/checkseum -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/cohttp-lwt -I /home/opam/.opam/4.14/lib/cohttp-lwt-unix -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/conduit-lwt -I /home/opam/.opam/4.14/lib/conduit-lwt-unix -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/decompress -I /home/opam/.opam/4.14/lib/decompress/impl -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duff -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/encore -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fieldslib -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/git -I /home/opam/.opam/4.14/lib/git-http -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lru -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mmap -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tls -I /home/opam/.opam/4.14/lib/tls/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -I /home/opam/.opam/4.14/lib/uri/services -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Git_unix__ -o src/git-unix/.git_unix.objs/native/git_unix__Fs.cmx -c -impl src/git-unix/fs.ml)
- File "src/git-unix/fs.ml", line 51, characters 25-34:
- 51 | let err_getcwd dir fmt = Fmt.kstrf (fun s -> err dir (`Getcwd s)) fmt
-                               ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/git-unix/fs.ml", line 62, characters 2-11:
- 62 |   Fmt.kstrf invalid_arg "Expected an unix error: %a." Fmt.exn exn
-        ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/git-unix/fs.ml", line 285, characters 35-46:
- 285 |   let write raw ?(off = 0) ?(len = Cstruct.len raw) {fd; path} =
-                                          ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "src/git-unix/fs.ml", line 290, characters 34-45:
- 290 |   let read raw ?(off = 0) ?(len = Cstruct.len raw) {fd; path} =
-                                         ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/git-unix/.git_unix.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigarray-overlap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bos -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/ca-certs -I /home/opam/.opam/4.14/lib/checkseum -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/cohttp-lwt -I /home/opam/.opam/4.14/lib/cohttp-lwt-unix -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/conduit-lwt -I /home/opam/.opam/4.14/lib/conduit-lwt-unix -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/decompress -I /home/opam/.opam/4.14/lib/decompress/impl -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duff -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/encore -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fieldslib -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/git -I /home/opam/.opam/4.14/lib/git-http -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lru -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mmap -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tls -I /home/opam/.opam/4.14/lib/tls/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -I /home/opam/.opam/4.14/lib/uri/services -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Git_unix__ -o src/git-unix/.git_unix.objs/byte/git_unix__Index.cmo -c -impl src/git-unix/index.ml)
- File "src/git-unix/index.ml", line 204, characters 36-44:
- 204 |       else raise (Invalid_argument (Fmt.strf "Invalid signature: %S." x))
-                                           ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/index.ml", line 886, characters 13-24:
- 886 |     let ln = Cstruct.len cs in
-                    ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "src/git-unix/index.ml", line 1014, characters 40-51:
- 1014 |           Int32.(to_int (sub b (of_int (Cstruct.len consumed - 8))))
-                                                ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "src/git-unix/index.ml", line 1020, characters 35-46:
- 1020 |         let x = Hash.digest_size - Cstruct.len consumed in
-                                           ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "src/git-unix/index.ml", line 1024, characters 38-49:
- 1024 |         let x = Int32.(sub b (of_int (Cstruct.len consumed - 8))) in
-                                              ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "src/git-unix/index.ml", line 1192, characters 44-52:
- 1192 |           Error (t, Unrecognized_extension (Fmt.strf "%a" pp_extension ext))
-                                                    ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/index.ml", line 1798, characters 16-39:
- 1798 |   let ( >!= ) = Lwt_result.bind_lwt_err
-                        ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_result.bind_lwt_err
- Alias to bind_lwt_error
- File "src/git-unix/index.ml", line 1875, characters 22-30:
- 1875 |                      (Fmt.strf
-                              ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/index.ml", line 1904, characters 13-24:
- 1904 |           if Cstruct.len raw = 0 then Lwt.return (Ok ())
-                     ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "src/git-unix/index.ml", line 2065, characters 32-40:
- 2065 |                                (Fmt.strf
-                                        ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/index.ml", line 2080, characters 32-40:
- 2080 |                                (Fmt.strf
-                                        ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/git-unix/.git_unix.objs/byte -I src/git-unix/.git_unix.objs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigarray-overlap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bos -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/ca-certs -I /home/opam/.opam/4.14/lib/checkseum -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/cohttp-lwt -I /home/opam/.opam/4.14/lib/cohttp-lwt-unix -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/conduit-lwt -I /home/opam/.opam/4.14/lib/conduit-lwt-unix -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/decompress -I /home/opam/.opam/4.14/lib/decompress/impl -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duff -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/encore -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fieldslib -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/git -I /home/opam/.opam/4.14/lib/git-http -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lru -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mmap -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tls -I /home/opam/.opam/4.14/lib/tls/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -I /home/opam/.opam/4.14/lib/uri/services -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Git_unix__ -o src/git-unix/.git_unix.objs/native/git_unix__Index.cmx -c -impl src/git-unix/index.ml)
- File "src/git-unix/index.ml", line 204, characters 36-44:
- 204 |       else raise (Invalid_argument (Fmt.strf "Invalid signature: %S." x))
-                                           ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/index.ml", line 886, characters 13-24:
- 886 |     let ln = Cstruct.len cs in
-                    ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "src/git-unix/index.ml", line 1014, characters 40-51:
- 1014 |           Int32.(to_int (sub b (of_int (Cstruct.len consumed - 8))))
-                                                ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "src/git-unix/index.ml", line 1020, characters 35-46:
- 1020 |         let x = Hash.digest_size - Cstruct.len consumed in
-                                           ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "src/git-unix/index.ml", line 1024, characters 38-49:
- 1024 |         let x = Int32.(sub b (of_int (Cstruct.len consumed - 8))) in
-                                              ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "src/git-unix/index.ml", line 1192, characters 44-52:
- 1192 |           Error (t, Unrecognized_extension (Fmt.strf "%a" pp_extension ext))
-                                                    ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/index.ml", line 1798, characters 16-39:
- 1798 |   let ( >!= ) = Lwt_result.bind_lwt_err
-                        ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_result.bind_lwt_err
- Alias to bind_lwt_error
- File "src/git-unix/index.ml", line 1875, characters 22-30:
- 1875 |                      (Fmt.strf
-                              ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/index.ml", line 1904, characters 13-24:
- 1904 |           if Cstruct.len raw = 0 then Lwt.return (Ok ())
-                     ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "src/git-unix/index.ml", line 2065, characters 32-40:
- 2065 |                                (Fmt.strf
-                                        ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/index.ml", line 2080, characters 32-40:
- 2080 |                                (Fmt.strf
-                                        ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/git-unix/ogit-cat-file/.main.eobjs/byte -I src/git-unix/ogit-cat-file/.main.eobjs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigarray-overlap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bos -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/ca-certs -I /home/opam/.opam/4.14/lib/checkseum/c -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/cohttp-lwt -I /home/opam/.opam/4.14/lib/cohttp-lwt-unix -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/conduit-lwt -I /home/opam/.opam/4.14/lib/conduit-lwt-unix -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/decompress -I /home/opam/.opam/4.14/lib/decompress/impl -I /home/opam/.opam/4.14/lib/digestif/c -I /home/opam/.opam/4.14/lib/digestif/rakia -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duff -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/encore -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fieldslib -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/git -I /home/opam/.opam/4.14/lib/git-http -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lru -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mmap -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tls -I /home/opam/.opam/4.14/lib/tls/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -I /home/opam/.opam/4.14/lib/uri/services -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I src/git-unix/.git_unix.objs/byte -I src/git-unix/.git_unix.objs/native -intf-suffix .ml -no-alias-deps -o src/git-unix/ogit-cat-file/.main.eobjs/native/main.cmx -c -impl src/git-unix/ogit-cat-file/main.ml)
- File "src/git-unix/ogit-cat-file/main.ml", line 49, characters 17-25:
- 49 |         (pad 10 (Fmt.strf "%+04.0fus" dt))
-                       ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/ogit-cat-file/main.ml", line 87, characters 54-65:
- 87 |   Encore.Lole.pp_scalar ~get:Cstruct.get_char ~length:Cstruct.len ppf raw
-                                                            ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "src/git-unix/ogit-cat-file/main.ml", line 94, characters 20-27:
- 94 |   let ( >!= ) v f = map_err f v in
-                          ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "src/git-unix/ogit-cat-file/main.ml", line 167, characters 44-52:
- 167 |   | Error (#error as err) -> `Error (false, Fmt.strf "%a" pp_error err)
-                                                   ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/git-unix/ogit-http-ls/.main.eobjs/byte -I src/git-unix/ogit-http-ls/.main.eobjs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigarray-overlap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bos -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/ca-certs -I /home/opam/.opam/4.14/lib/checkseum/c -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/cohttp-lwt -I /home/opam/.opam/4.14/lib/cohttp-lwt-unix -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/conduit-lwt -I /home/opam/.opam/4.14/lib/conduit-lwt-unix -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/decompress -I /home/opam/.opam/4.14/lib/decompress/impl -I /home/opam/.opam/4.14/lib/digestif/c -I /home/opam/.opam/4.14/lib/digestif/rakia -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duff -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/encore -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fieldslib -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/git -I /home/opam/.opam/4.14/lib/git-http -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lru -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mmap -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tls -I /home/opam/.opam/4.14/lib/tls/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -I /home/opam/.opam/4.14/lib/uri/services -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I src/git-unix/.git_unix.objs/byte -I src/git-unix/.git_unix.objs/native -intf-suffix .ml -no-alias-deps -o src/git-unix/ogit-http-ls/.main.eobjs/native/main.cmx -c -impl src/git-unix/ogit-http-ls/main.ml)
- File "src/git-unix/ogit-http-ls/main.ml", line 52, characters 17-25:
- 52 |         (pad 10 (Fmt.strf "%+04.0fus" dt))
-                       ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/ogit-http-ls/main.ml", line 80, characters 21-39:
- 80 |   let ( >>!= ) v f = Lwt_result.map_err f v in
-                           ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "src/git-unix/ogit-http-ls/main.ml", line 134, characters 44-52:
- 134 |   | Error (#error as err) -> `Error (false, Fmt.strf "%a" pp_error err)
-                                                   ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/git-unix/ogit-write-tree/.main.eobjs/byte -I src/git-unix/ogit-write-tree/.main.eobjs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigarray-overlap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bos -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/ca-certs -I /home/opam/.opam/4.14/lib/checkseum/c -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/cohttp-lwt -I /home/opam/.opam/4.14/lib/cohttp-lwt-unix -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/conduit-lwt -I /home/opam/.opam/4.14/lib/conduit-lwt-unix -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/decompress -I /home/opam/.opam/4.14/lib/decompress/impl -I /home/opam/.opam/4.14/lib/digestif/c -I /home/opam/.opam/4.14/lib/digestif/rakia -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duff -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/encore -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fieldslib -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/git -I /home/opam/.opam/4.14/lib/git-http -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lru -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mmap -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tls -I /home/opam/.opam/4.14/lib/tls/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -I /home/opam/.opam/4.14/lib/uri/services -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I src/git-unix/.git_unix.objs/byte -I src/git-unix/.git_unix.objs/native -intf-suffix .ml -no-alias-deps -o src/git-unix/ogit-write-tree/.main.eobjs/native/main.cmx -c -impl src/git-unix/ogit-write-tree/main.ml)
- File "src/git-unix/ogit-write-tree/main.ml", line 49, characters 17-25:
- 49 |         (pad 10 (Fmt.strf "%+04.0fus" dt))
-                       ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/ogit-write-tree/main.ml", line 78, characters 14-37:
- 78 | let ( >!= ) = Lwt_result.bind_lwt_err
-                    ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_result.bind_lwt_err
- Alias to bind_lwt_error
- File "src/git-unix/ogit-write-tree/main.ml", line 142, characters 24-32:
- 142 |                        (Fmt.strf
-                               ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/ogit-write-tree/main.ml", line 179, characters 32-40:
- 179 |   | Error err -> `Error (false, Fmt.strf "%a" pp_error err)
-                                       ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/git-unix/ogit-http-fetch-all/.main.eobjs/byte -I src/git-unix/ogit-http-fetch-all/.main.eobjs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigarray-overlap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bos -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/ca-certs -I /home/opam/.opam/4.14/lib/checkseum/c -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/cohttp-lwt -I /home/opam/.opam/4.14/lib/cohttp-lwt-unix -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/conduit-lwt -I /home/opam/.opam/4.14/lib/conduit-lwt-unix -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/decompress -I /home/opam/.opam/4.14/lib/decompress/impl -I /home/opam/.opam/4.14/lib/digestif/c -I /home/opam/.opam/4.14/lib/digestif/rakia -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duff -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/encore -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fieldslib -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/git -I /home/opam/.opam/4.14/lib/git-http -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lru -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mmap -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tls -I /home/opam/.opam/4.14/lib/tls/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -I /home/opam/.opam/4.14/lib/uri/services -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I src/git-unix/.git_unix.objs/byte -I src/git-unix/.git_unix.objs/native -intf-suffix .ml -no-alias-deps -o src/git-unix/ogit-http-fetch-all/.main.eobjs/native/main.cmx -c -impl src/git-unix/ogit-http-fetch-all/main.ml)
- File "src/git-unix/ogit-http-fetch-all/main.ml", line 61, characters 17-25:
- 61 |         (pad 10 (Fmt.strf "%+04.0fus" dt))
-                       ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/ogit-http-fetch-all/main.ml", line 89, characters 21-39:
- 89 |   let ( >>!= ) v f = Lwt_result.map_err f v in
-                           ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "src/git-unix/ogit-http-fetch-all/main.ml", line 108, characters 26-34:
- 108 |       | s -> Error (`Msg (Fmt.strf "%s is not an output." s))
-                                 ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/ogit-http-fetch-all/main.ml", line 161, characters 44-52:
- 161 |   | Error (#error as err) -> `Error (false, Fmt.strf "%a" pp_error err)
-                                                   ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/git-unix/ogit-http-fetch/.main.eobjs/byte -I src/git-unix/ogit-http-fetch/.main.eobjs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigarray-overlap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bos -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/ca-certs -I /home/opam/.opam/4.14/lib/checkseum/c -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/cohttp-lwt -I /home/opam/.opam/4.14/lib/cohttp-lwt-unix -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/conduit-lwt -I /home/opam/.opam/4.14/lib/conduit-lwt-unix -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/decompress -I /home/opam/.opam/4.14/lib/decompress/impl -I /home/opam/.opam/4.14/lib/digestif/c -I /home/opam/.opam/4.14/lib/digestif/rakia -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duff -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/encore -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fieldslib -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/git -I /home/opam/.opam/4.14/lib/git-http -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lru -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mmap -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tls -I /home/opam/.opam/4.14/lib/tls/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -I /home/opam/.opam/4.14/lib/uri/services -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I src/git-unix/.git_unix.objs/byte -I src/git-unix/.git_unix.objs/native -intf-suffix .ml -no-alias-deps -o src/git-unix/ogit-http-fetch/.main.eobjs/native/main.cmx -c -impl src/git-unix/ogit-http-fetch/main.ml)
- File "src/git-unix/ogit-http-fetch/main.ml", line 58, characters 17-25:
- 58 |         (pad 10 (Fmt.strf "%+04.0fus" dt))
-                       ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/ogit-http-fetch/main.ml", line 86, characters 21-39:
- 86 |   let ( >>!= ) v f = Lwt_result.map_err f v in
-                           ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "src/git-unix/ogit-http-fetch/main.ml", line 116, characters 26-34:
- 116 |       | s -> Error (`Msg (Fmt.strf "%s is not an output." s))
-                                 ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/ogit-http-fetch/main.ml", line 181, characters 44-52:
- 181 |   | Error (#error as err) -> `Error (false, Fmt.strf "%a" pp_error err)
-                                                   ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/git-unix/ogit-http-clone/.main.eobjs/byte -I src/git-unix/ogit-http-clone/.main.eobjs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigarray-overlap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bos -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/ca-certs -I /home/opam/.opam/4.14/lib/checkseum/c -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/cohttp-lwt -I /home/opam/.opam/4.14/lib/cohttp-lwt-unix -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/conduit-lwt -I /home/opam/.opam/4.14/lib/conduit-lwt-unix -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/decompress -I /home/opam/.opam/4.14/lib/decompress/impl -I /home/opam/.opam/4.14/lib/digestif/c -I /home/opam/.opam/4.14/lib/digestif/rakia -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duff -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/encore -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fieldslib -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/git -I /home/opam/.opam/4.14/lib/git-http -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lru -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mmap -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tls -I /home/opam/.opam/4.14/lib/tls/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -I /home/opam/.opam/4.14/lib/uri/services -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I src/git-unix/.git_unix.objs/byte -I src/git-unix/.git_unix.objs/native -intf-suffix .ml -no-alias-deps -o src/git-unix/ogit-http-clone/.main.eobjs/native/main.cmx -c -impl src/git-unix/ogit-http-clone/main.ml)
- File "src/git-unix/ogit-http-clone/main.ml", line 55, characters 17-25:
- 55 |         (pad 10 (Fmt.strf "%+04.0fus" dt))
-                       ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/ogit-http-clone/main.ml", line 98, characters 21-39:
- 98 |   let ( >>!= ) v f = Lwt_result.map_err f v in
-                           ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "src/git-unix/ogit-http-clone/main.ml", line 123, characters 26-34:
- 123 |       | s -> Error (`Msg (Fmt.strf "%s is not an output." s))
-                                 ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/git-unix/ogit-http-clone/main.ml", line 204, characters 44-52:
- 204 |   | Error (#error as err) -> `Error (false, Fmt.strf "%a" pp_error err)
-                                                   ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
Processing  2/4: [git-unix: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "git-unix" "-j1" "--no-buffer" (CWD=/home/opam/.opam/4.14/.opam-switch/build/git-unix.2.1.3)
- File "test/smart/test_smart.ml", line 452, characters 19-27:
- 452 |     let name idx = Fmt.strf "%s %d" (name_of t) idx in
-                          ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/smart/test_smart_regression.ml", line 55, characters 35-43:
- 55 |           Alcotest.(check string) (Fmt.strf "output:%S" expected) expected has
-                                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/common/test_common.ml", line 53, characters 39-48:
- 53 |   Lwt.async_exception_hook := fun e -> Fmt.kstrf failwith "%a" Fmt.exn e
-                                             ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "test/common/test_common.ml", line 118, characters 62-73:
- 118 |          (Encore.Lole.pp_scalar ~get:Cstruct.get_char ~length:Cstruct.len))
-                                                                     ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "test/smart/test_smart.ml", line 452, characters 19-27:
- 452 |     let name idx = Fmt.strf "%s %d" (name_of t) idx in
-                          ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/smart/test_smart_regression.ml", line 55, characters 35-43:
- 55 |           Alcotest.(check string) (Fmt.strf "output:%S" expected) expected has
-                                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/common/test_common.ml", line 53, characters 39-48:
- 53 |   Lwt.async_exception_hook := fun e -> Fmt.kstrf failwith "%a" Fmt.exn e
-                                             ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "test/common/test_common.ml", line 118, characters 62-73:
- 118 |          (Encore.Lole.pp_scalar ~get:Cstruct.get_char ~length:Cstruct.len))
-                                                                     ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "test/common/test_data.ml", line 43, characters 16-39:
- 43 |   let ( >!= ) = Lwt_result.bind_lwt_err
-                      ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_result.bind_lwt_err
- Alias to bind_lwt_error
- File "test/common/test_data.ml", line 71, characters 18-26:
- 71 |     let command = Fmt.strf "git verify-pack -v \"%a\"" unsafe_pp idx in
-                        ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/common/test_data.ml", line 141, characters 29-40:
- 141 |           go ctx (E.flush 0 (Cstruct.len ctmp) t)
-                                    ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "test/common/test_data.ml", line 197, characters 4-12:
- 197 |   ( Fmt.strf "%s-%s" name F.name
-           ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/common/test_data.ml", line 43, characters 16-39:
- 43 |   let ( >!= ) = Lwt_result.bind_lwt_err
-                      ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_result.bind_lwt_err
- Alias to bind_lwt_error
- File "test/common/test_data.ml", line 71, characters 18-26:
- 71 |     let command = Fmt.strf "git verify-pack -v \"%a\"" unsafe_pp idx in
-                        ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/common/test_data.ml", line 141, characters 29-40:
- 141 |           go ctx (E.flush 0 (Cstruct.len ctmp) t)
-                                    ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "test/common/test_data.ml", line 197, characters 4-12:
- 197 |   ( Fmt.strf "%s-%s" name F.name
-           ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/common/test_rev_list.ml", line 100, characters 6-14:
- 100 |       Fmt.strf "git --git-dir=%a rev-list --objects --stdin" Fpath.pp git_dir
-             ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/common/test_rev_list.ml", line 196, characters 4-12:
- 196 |   ( Fmt.strf "rev-list: %s" F.name
-           ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/common/test_sync.ml", line 90, characters 20-28:
- 90 |           let msg = Fmt.strf "fetching" in
-                          ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/common/test_sync.ml", line 113, characters 12-20:
- 113 |             Fmt.strf "cloning (branch=%a)" Store.Reference.pp reference
-                   ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/common/test_rev_list.ml", line 100, characters 6-14:
- 100 |       Fmt.strf "git --git-dir=%a rev-list --objects --stdin" Fpath.pp git_dir
-             ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/common/test_rev_list.ml", line 196, characters 4-12:
- 196 |   ( Fmt.strf "rev-list: %s" F.name
-           ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/common/test_sync.ml", line 90, characters 20-28:
- 90 |           let msg = Fmt.strf "fetching" in
-                          ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/common/test_sync.ml", line 113, characters 12-20:
- 113 |             Fmt.strf "cloning (branch=%a)" Store.Reference.pp reference
-                   ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 42, characters 40-48:
- 42 |   let ctx = Store.Hash.feed_string ctx (Fmt.strf "blob %d\000" ln) in
-                                              ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 53, characters 7-15:
- 53 |       (Fmt.strf "blob %d\000%s" (String.length link) link)
-             ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 237, characters 16-24:
- 237 |   let command = Fmt.strf "git status --porcelain" in
-                       ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 293, characters 22-30:
- 293 |   Alcotest.test_case (Fmt.strf "make directory %a" Fpath.pp root) `Slow
-                             ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 300, characters 5-13:
- 300 |     (Fmt.strf "empty index file")
-            ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 315, characters 18-26:
- 315 |     let command = Fmt.strf "git status --porcelain" in
-                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 351, characters 18-26:
- 351 |     let command = Fmt.strf "git status --porcelain" in
-                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 408, characters 18-26:
- 408 |     let command = Fmt.strf "git status --porcelain" in
-                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 429, characters 18-26:
- 429 |     let command = Fmt.strf "git ls-files --stage" in
-                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 486, characters 18-26:
- 486 |     let command = Fmt.strf "git ls-tree %a" Store.Hash.pp root_tree in
-                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 515, characters 18-26:
- 515 |     let command = Fmt.strf "git ls-tree -r %a" Store.Hash.pp root_tree in
-                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 550, characters 18-26:
- 550 |     let command = Fmt.strf "git ls-tree -r -t %a" Store.Hash.pp root_tree in
-                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 42, characters 40-48:
- 42 |   let ctx = Store.Hash.feed_string ctx (Fmt.strf "blob %d\000" ln) in
-                                              ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 53, characters 7-15:
- 53 |       (Fmt.strf "blob %d\000%s" (String.length link) link)
-             ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 237, characters 16-24:
- 237 |   let command = Fmt.strf "git status --porcelain" in
-                       ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 293, characters 22-30:
- 293 |   Alcotest.test_case (Fmt.strf "make directory %a" Fpath.pp root) `Slow
-                             ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 300, characters 5-13:
- 300 |     (Fmt.strf "empty index file")
-            ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 315, characters 18-26:
- 315 |     let command = Fmt.strf "git status --porcelain" in
-                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 351, characters 18-26:
- 351 |     let command = Fmt.strf "git status --porcelain" in
-                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 408, characters 18-26:
- 408 |     let command = Fmt.strf "git status --porcelain" in
-                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 429, characters 18-26:
- 429 |     let command = Fmt.strf "git ls-files --stage" in
-                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 486, characters 18-26:
- 486 |     let command = Fmt.strf "git ls-tree %a" Store.Hash.pp root_tree in
-                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 515, characters 18-26:
- 515 |     let command = Fmt.strf "git ls-tree -r %a" Store.Hash.pp root_tree in
-                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/git-unix/test_index.ml", line 550, characters 18-26:
- 550 |     let command = Fmt.strf "git ls-tree -r -t %a" Store.Hash.pp root_tree in
-                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- 
+3703us bos        [EXEC:285] ['uname' '-s']
- 
+16381us ca-certs   [WARNING] Failed to decode a trust anchor No certificate.
- 
+16413us ca-certs   [DEBUG] Full certificate:
- 
- -----END CERTIFICATE-----
- 
+17958us mirage-crypto-rng.unix [WARNING] Mirage_crypto_rng.default_generator has already been set, check that this call is intentional
- Testing `git-unix'.
- This run has ID `637Q29KP'.
- 
-   [OK]          mem                          0   Operations on blobs.
-   [OK]          mem                          1   Operations on trees.
-   [OK]          mem                          2   Operations on trees (order).
-   [OK]          mem                          3   Operations on commits.
-   [OK]          mem                          4   Operations on tags.
-   [OK]          mem                          5   Operations on references.
-   [OK]          mem                          6   Search.
-   [OK]          mem-usual                    0   index-pack.
-   [OK]          mem-usual                    1   unpack.
-   [OK]          mem-bomb                     0   index-pack.
-   [OK]          mem-bomb                     1   unpack.
-   [OK]          fs                           0   Operations on blobs.
-   [OK]          fs                           1   Operations on trees.
-   [OK]          fs                           2   Operations on trees (order).
-   [OK]          fs                           3   Operations on commits.
-   [OK]          fs                           4   Operations on tags.
-   [OK]          fs                           5   Operations on references.
-   [OK]          fs                           6   Search.
-   [OK]          fs-usual                     0   index-pack.
-   [OK]          fs-usual                     1   unpack.
-   [OK]          fs-bomb                      0   index-pack.
-   [OK]          fs-bomb                      1   unpack.
-   [OK]          fs-udns                      0   index-pack.
-   [OK]          fs-udns                      1   unpack.
-   [SKIP]        index                        0   make directory /home/opam/.o...
-   [SKIP]        index                        1   empty index file.
-   [SKIP]        index                        2   touch should-be-empty.
-   [SKIP]        index                        3   git update-index with --add.
-   [SKIP]        index                        4   write-tree should-be-empty.
-   [SKIP]        index                        5   delete should-be-empty.
-   [SKIP]        index                        6   git update-index with --remove.
-   [SKIP]        index                        7   write-tree empty.
-   [SKIP]        index                        8   make directories, files and ...
-   [SKIP]        index                        9   git update-index --add vario...
-   [SKIP]        index                       10   git ls-files.
-   [SKIP]        index                       11   git write-tree.
-   [SKIP]        index                       12   git ls-tree.
-   [SKIP]        index                       13   git ls-tree recursive.
-   [SKIP]        index                       14   git ls-tree recursive with t...
-   [SKIP]        index                       15   git read-tree.
-   [OK]          smart (mem)                  0   advertised-refs 0.
-   [OK]          smart (mem)                  1   advertised-refs 1.
-   [OK]          smart (mem)                  2   advertised-refs 2.
-   [OK]          smart (mem)                  3   advertised-refs 3.
-   [OK]          smart (mem)                  4   shallow-update 0.
-   [OK]          smart (mem)                  5   shallow-update 1.
-   [OK]          smart (mem)                  6   shallow-update 2.
-   [OK]          smart (mem)                  7   acks 0.
-   [OK]          smart (mem)                  8   acks 1.
-   [OK]          smart (mem)                  9   acks 2.
-   [OK]          smart (mem)                 10   acks 3.
-   [OK]          smart (mem)                 11   acks 4.
-   [OK]          smart (mem)                 12   acks 5.
-   [OK]          smart (mem)                 13   acks 6.
-   [OK]          smart (mem)                 14   acks 7.
-   [OK]          smart (mem)                 15   acks 8.
-   [OK]          smart (mem)                 16   negociation-result 0.
-   [OK]          smart (mem)                 17   negociation-result 1.
-   [OK]          smart (mem)                 18   negociation-result 2.
-   [OK]          smart (mem)                 19   git-proto-request 0.
-   [OK]          smart (mem)                 20   git-proto-request 1.
-   [OK]          smart (mem)                 21   git-proto-request 2.
-   [OK]          smart (mem)                 22   git-proto-request 3.
-   [OK]          smart (mem)                 23   update-request 0.
-   [OK]          smart (mem)                 24   update-request 1.
-   [OK]          smart (mem)                 25   update-request 2.
-   [OK]          smart (mem)                 26   update-request 3.
-   [OK]          smart (mem)                 27   update-request 4.
-   [OK]          smart (mem)                 28   update-request 5.
-   [OK]          smart (mem)                 29   update-request 6.
-   [OK]          smart (fs)                   0   advertised-refs 0.
-   [OK]          smart (fs)                   1   advertised-refs 1.
-   [OK]          smart (fs)                   2   advertised-refs 2.
-   [OK]          smart (fs)                   3   advertised-refs 3.
-   [OK]          smart (fs)                   4   shallow-update 0.
-   [OK]          smart (fs)                   5   shallow-update 1.
-   [OK]          smart (fs)                   6   shallow-update 2.
-   [OK]          smart (fs)                   7   acks 0.
-   [OK]          smart (fs)                   8   acks 1.
-   [OK]          smart (fs)                   9   acks 2.
-   [OK]          smart (fs)                  10   acks 3.
-   [OK]          smart (fs)                  11   acks 4.
-   [OK]          smart (fs)                  12   acks 5.
-   [OK]          smart (fs)                  13   acks 6.
-   [OK]          smart (fs)                  14   acks 7.
-   [OK]          smart (fs)                  15   acks 8.
-   [OK]          smart (fs)                  16   negociation-result 0.
-   [OK]          smart (fs)                  17   negociation-result 1.
-   [OK]          smart (fs)                  18   negociation-result 2.
-   [OK]          smart (fs)                  19   git-proto-request 0.
-   [OK]          smart (fs)                  20   git-proto-request 1.
-   [OK]          smart (fs)                  21   git-proto-request 2.
-   [OK]          smart (fs)                  22   git-proto-request 3.
-   [OK]          smart (fs)                  23   update-request 0.
-   [OK]          smart (fs)                  24   update-request 1.
-   [OK]          smart (fs)                  25   update-request 2.
-   [OK]          smart (fs)                  26   update-request 3.
-   [OK]          smart (fs)                  27   update-request 4.
-   [OK]          smart (fs)                  28   update-request 5.
-   [OK]          smart (fs)                  29   update-request 6.
-   [OK]          rev-list: usual              0   bottom to top.
-   [OK]          rev-list: usual              1   top to bottom.
-   [OK]          rev-list: usual              2   middle diff 00.
-   [OK]          rev-list: usual              3   middle diff 01.
-   [SKIP]        mem-local-tcp-sync           0   fetching.
-   [SKIP]        mem-remote-tcp-sync          0   cloning (branch=refs/heads/m...
-   [SKIP]        mem-remote-tcp-sync          1   cloning (branch=refs/heads/g...
-   [SKIP]        fs-local-tcp-sync            0   fetching.
-   [SKIP]        fs-remote-tcp-sync           0   cloning (branch=refs/heads/m...
-   [SKIP]        fs-remote-tcp-sync           1   cloning (branch=refs/heads/g...
-   [SKIP]        mem-http-sync                0   cloning (branch=refs/heads/g...
-   [SKIP]        fs-https-sync                0   cloning (branch=refs/heads/g...
-   [SKIP]        thin                         0   clone.
-   [SKIP]        thin                         1   thin.
-   [OK]          smart-regression             0   non-existing-repository.
-   [OK]          smart-regression             1   clone-repository.
-   [OK]          smart-regression             2   push-non-bare-repository.
-   [OK]          smart-regression             3   push-access-denied.
-   [OK]          smart-regression             4   fetch-twice.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/git-unix.2.1.3/_build/default/test/git-unix/_build/_tests/git-unix'.
- Test Successful in 1.687s. 93 tests run.
-> compiled  git-unix.2.1.3
-> removed   git-unix.2.1.3
-> installed git-unix.2.1.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 22:27.10 ---> saved as "a954fa083acdbd71c4fd8959467636b9d3c5296f89edc7d1c396047b41de4aeb"
Job succeeded
2025-08-12 22:27.18: Job succeeded