Build:
  1. 0
2025-05-17 07:35.56: New job: test sendmail.0.3.0 with conf-gmp.4, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27880/head (7f0b7343c2cd58952ac9e0beabf1bc35209ca970)
                              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/27880/head" && git reset --hard 7f0b7343
git fetch origin master
git merge --no-edit cf409d95af00ff822422bd76b657ed213b661401
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:3244bdc5a8a334bd7c4f552ea00747039a9cec8c46437471b45bca4791eef453
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 conf-gmp.4 4
RUN opam reinstall conf-gmp.4; \
    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" != 'conf-gmp.4' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall sendmail.0.3.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'sendmail.0.3.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test sendmail.0.3.0) || true
RUN opam reinstall --with-test --verbose sendmail.0.3.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'sendmail.0.3.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2025-05-17 07:35.56: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:3244bdc5a8a334bd7c4f552ea00747039a9cec8c46437471b45bca4791eef453-conf-gmp.4-sendmail.0.3.0-7f0b7343c2cd58952ac9e0beabf1bc35209ca970"
2025-05-17 07:35.56: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:3244bdc5a8a334bd7c4f552ea00747039a9cec8c46437471b45bca4791eef453)
 (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 conf-gmp.4 4"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall conf-gmp.4;\
             \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\" != 'conf-gmp.4' && 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 sendmail.0.3.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'sendmail.0.3.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test sendmail.0.3.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose sendmail.0.3.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'sendmail.0.3.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-05-17 07:35.56: Waiting for resource in pool OCluster
2025-05-20 03:34.48: Waiting for worker…
2025-05-20 03:39.35: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
Updating files:  83% (19294/23049)
Updating files:  84% (19362/23049)
Updating files:  85% (19592/23049)
Updating files:  86% (19823/23049)
Updating files:  87% (20053/23049)
Updating files:  88% (20284/23049)
Updating files:  89% (20514/23049)
Updating files:  90% (20745/23049)
Updating files:  91% (20975/23049)
Updating files:  92% (21206/23049)
Updating files:  93% (21436/23049)
Updating files:  94% (21667/23049)
Updating files:  95% (21897/23049)
Updating files:  96% (22128/23049)
Updating files:  97% (22358/23049)
Updating files:  98% (22589/23049)
Updating files:  99% (22819/23049)
Updating files: 100% (23049/23049)
Updating files: 100% (23049/23049), done.
HEAD is now at cf409d95af Merge pull request #27869 from chetmurthy/release-ledit-2.07
Merge made by the 'ort' strategy.
 packages/alsa/alsa.0.2.3/opam                                       | 2 +-
 packages/ao/ao.0.2.1/opam                                           | 2 +-
 packages/argon2/argon2.1.0.2/opam                                   | 2 +-
 packages/augeas/augeas.0.6/opam                                     | 2 +-
 packages/bap-llvm/bap-llvm.2.2.0/opam                               | 2 +-
 packages/bap-llvm/bap-llvm.2.3.0/opam                               | 2 +-
 packages/bap-llvm/bap-llvm.2.4.0/opam                               | 2 +-
 packages/bap-llvm/bap-llvm.2.5.0/opam                               | 2 +-
 packages/bwrap/bwrap.0.1/opam                                       | 2 +-
 packages/camlzip/camlzip.1.06/opam                                  | 2 +-
 packages/camlzip/camlzip.1.07/opam                                  | 2 +-
 packages/conf-aclocal/conf-aclocal.1.0.0/opam                       | 2 +-
 packages/conf-age/conf-age.1/opam                                   | 2 +-
 packages/conf-allegro5/conf-allegro5.1/opam                         | 2 +-
 packages/conf-alsa/conf-alsa.1/opam                                 | 2 +-
 packages/conf-antic/conf-antic.1/opam                               | 2 +-
 packages/conf-ao/conf-ao.1/opam                                     | 2 +-
 packages/conf-arb/conf-arb.1/opam                                   | 2 +-
 packages/conf-asciidoc/conf-asciidoc.1/opam                         | 2 +-
 packages/conf-assimp/conf-assimp.1/opam                             | 2 +-
 packages/conf-autoconf/conf-autoconf.0.1/opam                       | 2 +-
 packages/conf-autoconf/conf-autoconf.0.2/opam                       | 2 +-
 packages/conf-bap-llvm/conf-bap-llvm.1.3/opam                       | 2 +-
 packages/conf-bap-llvm/conf-bap-llvm.1.4/opam                       | 2 +-
 packages/conf-bap-llvm/conf-bap-llvm.1.5/opam                       | 2 +-
 packages/conf-bap-llvm/conf-bap-llvm.1.6/opam                       | 2 +-
 packages/conf-bap-llvm/conf-bap-llvm.1.7/opam                       | 2 +-
 packages/conf-bap-llvm/conf-bap-llvm.1.8/opam                       | 2 +-
 packages/conf-blas/conf-blas.1/opam                                 | 2 +-
 packages/conf-bluetooth/conf-bluetooth.1/opam                       | 2 +-
 packages/conf-bmake/conf-bmake.1.0/opam                             | 2 +-
 packages/conf-boost/conf-boost.1/opam                               | 2 +-
 packages/conf-bpftool/conf-bpftool.0.1.0/opam                       | 2 +-
 packages/conf-brotli/conf-brotli.0.0.1/opam                         | 2 +-
 packages/conf-c++/conf-c++.1.0/opam                                 | 2 +-
 packages/conf-cairo/conf-cairo.1/opam                               | 2 +-
 packages/conf-calcium/conf-calcium.1/opam                           | 2 +-
 packages/conf-capnproto/conf-capnproto.0/opam                       | 2 +-
 packages/conf-capnproto/conf-capnproto.1/opam                       | 2 +-
 packages/conf-capnproto/conf-capnproto.2/opam                       | 2 +-
 packages/conf-clang/conf-clang.1/opam                               | 2 +-
 packages/conf-cmake/conf-cmake.1/opam                               | 2 +-
 packages/conf-cpio/conf-cpio.1/opam                                 | 2 +-
 packages/conf-csdp/conf-csdp.1/opam                                 | 2 +-
 packages/conf-dbm/conf-dbm.1.0.0/opam                               | 2 +-
 packages/conf-diffutils/conf-diffutils.1.1/opam                     | 2 +-
 packages/conf-diffutils/conf-diffutils.1/opam                       | 2 +-
 packages/conf-diffutils/conf-diffutils.2/opam                       | 2 +-
 packages/conf-dpkg/conf-dpkg.1/opam                                 | 2 +-
 packages/conf-dssi/conf-dssi.1/opam                                 | 2 +-
 packages/conf-efl/conf-efl.1.8/opam                                 | 2 +-
 packages/conf-emacs/conf-emacs.1/opam                               | 4 ++--
 packages/conf-expat/conf-expat.1/opam                               | 2 +-
 packages/conf-faad/conf-faad.1/opam                                 | 2 +-
 packages/conf-ffmpeg/conf-ffmpeg.1/opam                             | 2 +-
 packages/conf-fftw3/conf-fftw3.1/opam                               | 2 +-
 packages/conf-findutils/conf-findutils.1/opam                       | 2 +-
 packages/conf-flint/conf-flint.1/opam                               | 2 +-
 packages/conf-flint/conf-flint.3.0/opam                             | 4 ++--
 packages/conf-freeglut/conf-freeglut.1/opam                         | 2 +-
 packages/conf-frei0r/conf-frei0r.1/opam                             | 2 +-
 packages/conf-ftgl/conf-ftgl.1/opam                                 | 2 +-
 packages/conf-g++/conf-g++.1.0/opam                                 | 2 +-
 packages/conf-gcc/conf-gcc.1.0/opam                                 | 2 +-
 packages/conf-gd/conf-gd.1/opam                                     | 2 +-
 packages/conf-gfortran/conf-gfortran.0/opam                         | 2 +-
 packages/conf-ghostscript/conf-ghostscript.1/opam                   | 2 +-
 packages/conf-git/conf-git.1.0/opam                                 | 2 +-
 packages/conf-git/conf-git.1.1/opam                                 | 2 +-
 packages/conf-glade/conf-glade.2/opam                               | 2 +-
 packages/conf-glew/conf-glew.1/opam                                 | 2 +-
 packages/conf-glfw3/conf-glfw3.1/opam                               | 2 +-
 packages/conf-glfw3/conf-glfw3.2/opam                               | 2 +-
 packages/conf-glib-2/conf-glib-2.1/opam                             | 2 +-
 packages/conf-glpk/conf-glpk.1/opam                                 | 2 +-
 packages/conf-gmp-paths/conf-gmp-paths.1/opam                       | 2 +-
 packages/conf-gmp/conf-gmp.1/opam                                   | 2 +-
 packages/conf-gmp/conf-gmp.2/opam                                   | 2 +-
 packages/conf-gmp/conf-gmp.3/opam                                   | 2 +-
 packages/conf-gmp/conf-gmp.4/opam                                   | 2 +-
 packages/conf-gmp/conf-gmp.5/opam                                   | 2 +-
 packages/conf-gnuplot/conf-gnuplot.0.1/opam                         | 2 +-
 packages/conf-gnustep-base/conf-gnustep-base.1/opam                 | 6 +++---
 packages/conf-gnustep-gui/conf-gnustep-gui.1/opam                   | 2 +-
 packages/conf-gnutls/conf-gnutls.1/opam                             | 2 +-
 .../conf-gobject-introspection/conf-gobject-introspection.1.0/opam  | 2 +-
 packages/conf-goocanvas2/conf-goocanvas2.0/opam                     | 2 +-
 packages/conf-gpiod/conf-gpiod.1/opam                               | 2 +-
 packages/conf-graphviz/conf-graphviz.0.1/opam                       | 2 +-
 packages/conf-gsl/conf-gsl.1/opam                                   | 2 +-
 packages/conf-gsl/conf-gsl.2/opam                                   | 2 +-
 packages/conf-gssapi/conf-gssapi.1/opam                             | 2 +-
 packages/conf-gstreamer/conf-gstreamer.1/opam                       | 2 +-
 packages/conf-gtk2/conf-gtk2.1/opam                                 | 2 +-
 packages/conf-gtk3/conf-gtk3.18/opam                                | 2 +-
 packages/conf-gtksourceview/conf-gtksourceview.2/opam               | 2 +-
 packages/conf-gtksourceview3/conf-gtksourceview3.0+1/opam           | 2 +-
 packages/conf-gtksourceview3/conf-gtksourceview3.0+2/opam           | 2 +-
 packages/conf-gtksourceview3/conf-gtksourceview3.0/opam             | 2 +-
 packages/conf-guile/conf-guile.1/opam                               | 2 +-
 packages/conf-haveged/conf-haveged.1.0.0/opam                       | 2 +-
 packages/conf-hidapi/conf-hidapi.0/opam                             | 2 +-
 packages/conf-jack/conf-jack.1/opam                                 | 2 +-
 packages/conf-jq/conf-jq.1/opam                                     | 2 +-
 packages/conf-ladspa/conf-ladspa.1/opam                             | 2 +-
 packages/conf-lame/conf-lame.1/opam                                 | 2 +-
 packages/conf-lapack/conf-lapack.1/opam                             | 2 +-
 packages/conf-leveldb/conf-leveldb.1/opam                           | 2 +-
 packages/conf-leveldb/conf-leveldb.2/opam                           | 2 +-
 packages/conf-libMagickCore/conf-libMagickCore.1/opam               | 2 +-
 packages/conf-libX11/conf-libX11.1/opam                             | 2 +-
 packages/conf-libXft/conf-libXft.1/opam                             | 2 +-
 packages/conf-libargon2/conf-libargon2.1/opam                       | 2 +-
 packages/conf-libblake3/conf-libblake3.1.5.1/opam                   | 2 +-
 packages/conf-libbpf/conf-libbpf.0.1.0/opam                         | 2 +-
 packages/conf-libbz2/conf-libbz2.1/opam                             | 2 +-
 packages/conf-libclang/conf-libclang.1.0.0/opam                     | 2 +-
 packages/conf-libclang/conf-libclang.10/opam                        | 2 +-
 packages/conf-libclang/conf-libclang.11/opam                        | 2 +-
 packages/conf-libclang/conf-libclang.12/opam                        | 2 +-
 packages/conf-libclang/conf-libclang.13/opam                        | 4 ++--
 packages/conf-libclang/conf-libclang.14/opam                        | 4 ++--
 packages/conf-libclang/conf-libclang.15/opam                        | 2 +-
 packages/conf-libcorosync/conf-libcorosync.3/opam                   | 2 +-
 packages/conf-libcurl/conf-libcurl.1/opam                           | 2 +-
 packages/conf-libcurl/conf-libcurl.2/opam                           | 2 +-
 packages/conf-libdw/conf-libdw.1/opam                               | 2 +-
 packages/conf-libev/conf-libev.4-11/opam                            | 2 +-
 packages/conf-libev/conf-libev.4-12/opam                            | 2 +-
 packages/conf-libevent/conf-libevent.1/opam                         | 2 +-
 packages/conf-libffi/conf-libffi.2.0.0/opam                         | 2 +-
 packages/conf-libflac/conf-libflac.1/opam                           | 2 +-
 packages/conf-libfuse/conf-libfuse.1/opam                           | 2 +-
 packages/conf-libgccjit/conf-libgccjit.1/opam                       | 2 +-
 packages/conf-libgl/conf-libgl.1/opam                               | 2 +-
 packages/conf-libglu/conf-libglu.1/opam                             | 2 +-
 packages/conf-libgsasl/conf-libgsasl.1/opam                         | 2 +-
 packages/conf-libjpeg/conf-libjpeg.1/opam                           | 2 +-
 packages/conf-liblinear-tools/conf-liblinear-tools.1.0.0/opam       | 2 +-
 packages/conf-liblz4/conf-liblz4.1/opam                             | 2 +-
 packages/conf-liblzma/conf-liblzma.1/opam                           | 2 +-
 packages/conf-libmagic/conf-libmagic.1/opam                         | 2 +-
 packages/conf-libmaxminddb/conf-libmaxminddb.1/opam                 | 2 +-
 packages/conf-libmosquitto/conf-libmosquitto.1/opam                 | 2 +-
 packages/conf-libnl3/conf-libnl3.1/opam                             | 2 +-
 packages/conf-libobjc2/conf-libobjc2.1/opam                         | 6 +++---
 packages/conf-libogg/conf-libogg.1/opam                             | 2 +-
 packages/conf-libpcre/conf-libpcre.1/opam                           | 2 +-
 packages/conf-libpcre/conf-libpcre.2/opam                           | 2 +-
 packages/conf-libpcre2-8/conf-libpcre2-8.1/opam                     | 2 +-
 packages/conf-libpcre2-8/conf-libpcre2-8.2/opam                     | 2 +-
 packages/conf-librsvg2/conf-librsvg2.0/opam                         | 2 +-
 packages/conf-libseccomp/conf-libseccomp.1/opam                     | 2 +-
 packages/conf-libsodium/conf-libsodium.1/opam                       | 2 +-
 packages/conf-libspeex/conf-libspeex.1/opam                         | 2 +-
 packages/conf-libssl/conf-libssl.1/opam                             | 2 +-
 packages/conf-libssl/conf-libssl.2/opam                             | 2 +-
 packages/conf-libssl/conf-libssl.3/opam                             | 2 +-
 packages/conf-libssl/conf-libssl.4/opam                             | 2 +-
 packages/conf-libsvm-tools/conf-libsvm-tools.1.0.0/opam             | 4 ++--
 packages/conf-libsvm/conf-libsvm.3/opam                             | 2 +-
 packages/conf-libtool/conf-libtool.1/opam                           | 2 +-
 packages/conf-libudev/conf-libudev.1/opam                           | 2 +-
 packages/conf-liburing/conf-liburing.0.1.0/opam                     | 2 +-
 packages/conf-libuv/conf-libuv.1/opam                               | 2 +-
 packages/conf-linux-libc-dev/conf-linux-libc-dev.0/opam             | 2 +-
 packages/conf-lld/conf-lld.1/opam                                   | 2 +-
 packages/conf-llvm-shared/conf-llvm-shared.18/opam                  | 4 ++--
 packages/conf-llvm-static/conf-llvm-static.18/opam                  | 4 ++--
 packages/conf-llvm/conf-llvm.10.0.0/opam                            | 2 +-
 packages/conf-llvm/conf-llvm.11.0.0/opam                            | 2 +-
 packages/conf-llvm/conf-llvm.12.0.1/opam                            | 2 +-
 packages/conf-llvm/conf-llvm.13.0.0/opam                            | 2 +-
 packages/conf-llvm/conf-llvm.14.0.6/opam                            | 2 +-
 packages/conf-llvm/conf-llvm.15/opam                                | 2 +-
 packages/conf-llvm/conf-llvm.16/opam                                | 4 ++--
 packages/conf-llvm/conf-llvm.17/opam                                | 4 ++--
 packages/conf-llvm/conf-llvm.3.9/opam                               | 2 +-
 packages/conf-llvm/conf-llvm.4.0.0/opam                             | 2 +-
 packages/conf-llvm/conf-llvm.5.0.0/opam                             | 2 +-
 packages/conf-llvm/conf-llvm.6.0.0/opam                             | 2 +-
 packages/conf-llvm/conf-llvm.7.0.0/opam                             | 2 +-
 packages/conf-llvm/conf-llvm.8.0.0/opam                             | 2 +-
 packages/conf-llvm/conf-llvm.9.0.0/opam                             | 2 +-
 packages/conf-lz4/conf-lz4.1.0.0/opam                               | 2 +-
 packages/conf-m4/conf-m4.1/opam                                     | 2 +-
 packages/conf-mad/conf-mad.1/opam                                   | 2 +-
 packages/conf-mad/conf-mad.2/opam                                   | 2 +-
 packages/conf-mariadb/conf-mariadb.2/opam                           | 2 +-
 packages/conf-mbedtls/conf-mbedtls.1/opam                           | 2 +-
 packages/conf-mbedtls/conf-mbedtls.2/opam                           | 2 +-
 packages/conf-mecab/conf-mecab.0.996/opam                           | 2 +-
 packages/conf-mpfr-paths/conf-mpfr-paths.1/opam                     | 2 +-
 packages/conf-mpfr/conf-mpfr.1/opam                                 | 2 +-
 packages/conf-mpfr/conf-mpfr.2/opam                                 | 2 +-
 packages/conf-mpfr/conf-mpfr.3/opam                                 | 2 +-
 packages/conf-mpi/conf-mpi.1/opam                                   | 2 +-
 packages/conf-mysql/conf-mysql.1/opam                               | 2 +-
 packages/conf-nanomsg/conf-nanomsg.0/opam                           | 2 +-
 packages/conf-nauty/conf-nauty.1.0/opam                             | 2 +-
 packages/conf-ncurses/conf-ncurses.1/opam                           | 2 +-
 packages/conf-neko/conf-neko.1/opam                                 | 2 +-
 packages/conf-netsnmp/conf-netsnmp.1.0.0/opam                       | 2 +-
 packages/conf-nlopt/conf-nlopt.1/opam                               | 2 +-
 packages/conf-nmap/conf-nmap.1.0.0/opam                             | 2 +-
 packages/conf-npm/conf-npm.1/opam                                   | 2 +-
 packages/conf-numa/conf-numa.0.1.0/opam                             | 2 +-
 packages/conf-ode/conf-ode.1/opam                                   | 2 +-
 packages/conf-oniguruma/conf-oniguruma.1/opam                       | 2 +-
 packages/conf-openbabel/conf-openbabel.0.1/opam                     | 2 +-
 packages/conf-openblas/conf-openblas.0.1/opam                       | 2 +-
 packages/conf-openblas/conf-openblas.0.2.0/opam                     | 4 ++--
 packages/conf-openblas/conf-openblas.0.2.1/opam                     | 4 ++--
 packages/conf-openblas/conf-openblas.0.2.2/opam                     | 4 ++--
 packages/conf-opencc1/conf-opencc1.1/opam                           | 2 +-
 packages/conf-opencc1_1/conf-opencc1_1.1/opam                       | 2 +-
 packages/conf-openimageio/conf-openimageio.1/opam                   | 2 +-
 packages/conf-openjdk/conf-openjdk.1/opam                           | 2 +-
 packages/conf-openssl/conf-openssl.2/opam                           | 2 +-
 packages/conf-pam/conf-pam.1/opam                                   | 2 +-
 packages/conf-pandoc/conf-pandoc.0.1/opam                           | 2 +-
 packages/conf-pango/conf-pango.1/opam                               | 2 +-
 .../conf-perl-ipc-system-simple/conf-perl-ipc-system-simple.1/opam  | 2 +-
 .../conf-perl-ipc-system-simple/conf-perl-ipc-system-simple.2/opam  | 2 +-
 .../conf-perl-ipc-system-simple/conf-perl-ipc-system-simple.3/opam  | 2 +-
 packages/conf-perl/conf-perl.1/opam                                 | 2 +-
 packages/conf-perl/conf-perl.2/opam                                 | 2 +-
 packages/conf-pkg-config/conf-pkg-config.1.0/opam                   | 2 +-
 packages/conf-pkg-config/conf-pkg-config.1.1/opam                   | 2 +-
 packages/conf-pkg-config/conf-pkg-config.1.2/opam                   | 2 +-
 packages/conf-pkg-config/conf-pkg-config.1.3/opam                   | 2 +-
 packages/conf-pkg-config/conf-pkg-config.2/opam                     | 2 +-
 packages/conf-pkg-config/conf-pkg-config.3/opam                     | 2 +-
 packages/conf-pkg-config/conf-pkg-config.4/opam                     | 2 +-
 packages/conf-plplot/conf-plplot.1/opam                             | 2 +-
 packages/conf-portaudio/conf-portaudio.1/opam                       | 2 +-
 packages/conf-postgresql/conf-postgresql.1/opam                     | 4 ++--
 packages/conf-postgresql/conf-postgresql.2/opam                     | 4 ++--
 packages/conf-ppl/conf-ppl.1/opam                                   | 2 +-
 packages/conf-protoc-dev/conf-protoc-dev.1.0.0/opam                 | 2 +-
 packages/conf-protoc/conf-protoc.0.9/opam                           | 2 +-
 packages/conf-protoc/conf-protoc.1.0.0/opam                         | 2 +-
 packages/conf-protoc/conf-protoc.4.4.0/opam                         | 2 +-
 packages/conf-pulseaudio/conf-pulseaudio.1/opam                     | 2 +-
 packages/conf-python-2-7/conf-python-2-7.1.0/opam                   | 2 +-
 packages/conf-python-2-7/conf-python-2-7.1.1/opam                   | 2 +-
 packages/conf-python-2-7/conf-python-2-7.1.2/opam                   | 2 +-
 packages/conf-python-3-7/conf-python-3-7.1.0.0/opam                 | 2 +-
 packages/conf-python-3-dev/conf-python-3-dev.1/opam                 | 2 +-
 packages/conf-python-3/conf-python-3.1.0.0/opam                     | 2 +-
 packages/conf-python-3/conf-python-3.9.0.0/opam                     | 2 +-
 packages/conf-python3-pyparsing/conf-python3-pyparsing.1/opam       | 2 +-
 packages/conf-python3-tomli/conf-python3-tomli.1/opam               | 2 +-
 packages/conf-python3-yaml/conf-python3-yaml.1/opam                 | 2 +-
 packages/conf-r-mathlib/conf-r-mathlib.1/opam                       | 2 +-
 packages/conf-r/conf-r.1.0.0/opam                                   | 2 +-
 packages/conf-radare2/conf-radare2.0.1/opam                         | 2 +-
 packages/conf-rdkit/conf-rdkit.1/opam                               | 2 +-
 packages/conf-readline/conf-readline.1/opam                         | 2 +-
 packages/conf-rocksdb/conf-rocksdb.1/opam                           | 2 +-
 packages/conf-ruby/conf-ruby.1.0.0/opam                             | 2 +-
 packages/conf-rust-2018/conf-rust-2018.1/opam                       | 2 +-
 packages/conf-rust-2021/conf-rust-2021.1/opam                       | 2 +-
 packages/conf-rust-2024/conf-rust-2024.1/opam                       | 2 +-
 packages/conf-rust-llvm/conf-rust-llvm.1/opam                       | 2 +-
 packages/conf-rust-wasm/conf-rust-wasm.1/opam                       | 2 +-
 packages/conf-rust/conf-rust.0.1/opam                               | 2 +-
 packages/conf-samplerate/conf-samplerate.1/opam                     | 2 +-
 packages/conf-scdoc/conf-scdoc.1/opam                               | 2 +-
 packages/conf-sdl-gfx/conf-sdl-gfx.1/opam                           | 2 +-
 packages/conf-sdl-image/conf-sdl-image.1/opam                       | 2 +-
 packages/conf-sdl-mixer/conf-sdl-mixer.1/opam                       | 2 +-
 packages/conf-sdl-net/conf-sdl-net.1/opam                           | 2 +-
 packages/conf-sdl-ttf/conf-sdl-ttf.1/opam                           | 2 +-
 packages/conf-sdl2-image/conf-sdl2-image.1/opam                     | 2 +-
 packages/conf-sdl2-mixer/conf-sdl2-mixer.1/opam                     | 2 +-
 packages/conf-sdl2-net/conf-sdl2-net.1/opam                         | 2 +-
 packages/conf-sdl2-ttf/conf-sdl2-ttf.1/opam                         | 2 +-
 packages/conf-sdl2/conf-sdl2.1/opam                                 | 4 ++--
 packages/conf-secp256k1/conf-secp256k1.1.0.0/opam                   | 2 +-
 packages/conf-secp256k1/conf-secp256k1.2/opam                       | 2 +-
 packages/conf-sfml2/conf-sfml2.1/opam                               | 2 +-
 packages/conf-shine/conf-shine.1/opam                               | 2 +-
 packages/conf-snappy/conf-snappy.1/opam                             | 2 +-
 packages/conf-sndfile/conf-sndfile.1/opam                           | 2 +-
 packages/conf-soundtouch/conf-soundtouch.1/opam                     | 2 +-
 packages/conf-sqlite3/conf-sqlite3.1/opam                           | 2 +-
 packages/conf-srt/conf-srt.1/opam                                   | 2 +-
 packages/conf-srt/conf-srt.2/opam                                   | 2 +-
 packages/conf-sundials/conf-sundials.1/opam                         | 2 +-
 packages/conf-sundials/conf-sundials.2/opam                         | 2 +-
 packages/conf-texlive/conf-texlive.1/opam                           | 2 +-
 packages/conf-tidy/conf-tidy.1/opam                                 | 2 +-
 packages/conf-time/conf-time.1/opam                                 | 2 +-
 packages/conf-timeout/conf-timeout.1/opam                           | 2 +-
 packages/conf-unwind/conf-unwind.0/opam                             | 2 +-
 packages/conf-vim/conf-vim.1/opam                                   | 2 +-
 packages/conf-wget/conf-wget.1/opam                                 | 2 +-
 packages/conf-which/conf-which.1/opam                               | 2 +-
 packages/conf-xen/conf-xen.1/opam                                   | 2 +-
 packages/conf-xxhash/conf-xxhash.1/opam                             | 2 +-
 packages/conf-zig/conf-zig.1/opam                                   | 2 +-
 packages/conf-zlib/conf-zlib.1/opam                                 | 4 ++--
 packages/conf-zmq/conf-zmq.0.1/opam                                 | 2 +-
 packages/conf-zstd/conf-zstd.0.1/opam                               | 2 +-
 packages/conf-zstd/conf-zstd.1.3.8/opam                             | 2 +-
 packages/dbm/dbm.1.0/opam                                           | 2 +-
 packages/dbm/dbm.1.1/opam                                           | 2 +-
 packages/dlm/dlm.0.3.0/opam                                         | 2 +-
 packages/dlm/dlm.0.3.1/opam                                         | 2 +-
 packages/dssi/dssi.0.1.2/opam                                       | 2 +-
 packages/faad/faad.0.4.0/opam                                       | 2 +-
 packages/faad/faad.0.5.0/opam                                       | 2 +-
 packages/farmhash/farmhash.0.3/opam                                 | 2 +-
 packages/fdkaac/fdkaac.0.2.1/opam                                   | 2 +-
 packages/fdkaac/fdkaac.0.3.0/opam                                   | 2 +-
 packages/fdkaac/fdkaac.0.3.1/opam                                   | 2 +-
 packages/fdkaac/fdkaac.0.3.2/opam                                   | 2 +-
 packages/ffmpeg/ffmpeg.0.1.1/opam                                   | 2 +-
 packages/ffmpeg/ffmpeg.0.1.2/opam                                   | 2 +-
 packages/ffmpeg/ffmpeg.0.2.0/opam                                   | 2 +-
 packages/ffmpeg/ffmpeg.0.2.1/opam                                   | 2 +-
 packages/ffmpeg/ffmpeg.0.3.0/opam                                   | 2 +-
 packages/ffmpeg/ffmpeg.0.4.0/opam                                   | 2 +-
 packages/ffmpeg/ffmpeg.0.4.1/opam                                   | 2 +-
 packages/ffmpeg/ffmpeg.0.4.2/opam                                   | 2 +-
 packages/ffmpeg/ffmpeg.0.4.3/opam                                   | 2 +-
 packages/fftw3/fftw3.0.8.1/opam                                     | 2 +-
 packages/freetds/freetds.0.4.1/opam                                 | 2 +-
 packages/freetds/freetds.0.4.2/opam                                 | 2 +-
 packages/freetds/freetds.0.4/opam                                   | 2 +-
 packages/freetds/freetds.0.5.1/opam                                 | 2 +-
 packages/freetds/freetds.0.5.2/opam                                 | 2 +-
 packages/freetds/freetds.0.5/opam                                   | 2 +-
 packages/freetds/freetds.0.6/opam                                   | 2 +-
 packages/freetds/freetds.0.7/opam                                   | 2 +-
 packages/frei0r/frei0r.0.1.1/opam                                   | 2 +-
 packages/gammu/gammu.0.9.3/opam                                     | 2 +-
 packages/gammu/gammu.0.9.4/opam                                     | 2 +-
 packages/gavl/gavl.0.1.6/opam                                       | 2 +-
 packages/gles3/gles3.20160307.alpha/opam                            | 2 +-
 packages/goblint-cil/goblint-cil.1.7.4/opam                         | 2 +-
 packages/goblint-cil/goblint-cil.1.8.0/opam                         | 4 ++--
 packages/goblint-cil/goblint-cil.1.8.2/opam                         | 4 ++--
 packages/goblint-cil/goblint-cil.2.0.0/opam                         | 4 ++--
 packages/goblint-cil/goblint-cil.2.0.1/opam                         | 4 ++--
 packages/goblint-cil/goblint-cil.2.0.2/opam                         | 4 ++--
 packages/goblint-cil/goblint-cil.2.0.3/opam                         | 4 ++--
 packages/goblint-cil/goblint-cil.2.0.4/opam                         | 4 ++--
 packages/goblint-cil/goblint-cil.2.0.5/opam                         | 4 ++--
 packages/goblint-cil/goblint-cil.2.0.6/opam                         | 4 ++--
 packages/gstreamer/gstreamer.0.2.3/opam                             | 2 +-
 packages/gstreamer/gstreamer.0.3.0/opam                             | 2 +-
 packages/hvsock/hvsock.2.0.0/opam                                   | 2 +-
 packages/hvsock/hvsock.3.0.0/opam                                   | 2 +-
 packages/jemalloc/jemalloc.0.1/opam                                 | 2 +-
 packages/jemalloc/jemalloc.0.2/opam                                 | 2 +-
 packages/kafka/kafka.0.3/opam                                       | 2 +-
 packages/kafka/kafka.0.4/opam                                       | 2 +-
 packages/kafka/kafka.0.5/opam                                       | 2 +-
 packages/kyotocabinet/kyotocabinet.0.1/opam                         | 2 +-
 packages/kyotocabinet/kyotocabinet.0.2/opam                         | 2 +-
 packages/lablgtk3-gtkspell3/lablgtk3-gtkspell3.3.0.beta5/opam       | 2 +-
 packages/lablgtk3-gtkspell3/lablgtk3-gtkspell3.3.0.beta6/opam       | 2 +-
 packages/lablgtk3-gtkspell3/lablgtk3-gtkspell3.3.0.beta7/opam       | 2 +-
 packages/lablgtk3-gtkspell3/lablgtk3-gtkspell3.3.0.beta8/opam       | 2 +-
 packages/lablgtk3-gtkspell3/lablgtk3-gtkspell3.3.1.0/opam           | 2 +-
 packages/lablgtk3-gtkspell3/lablgtk3-gtkspell3.3.1.1/opam           | 2 +-
 packages/lablgtk3-gtkspell3/lablgtk3-gtkspell3.3.1.2/opam           | 2 +-
 packages/lablgtk3-gtkspell3/lablgtk3-gtkspell3.3.1.3/opam           | 2 +-
 packages/lablgtk3-gtkspell3/lablgtk3-gtkspell3.3.1.4/opam           | 2 +-
 packages/lablgtk3-gtkspell3/lablgtk3-gtkspell3.3.1.5/opam           | 2 +-
 packages/lablqml/lablqml.0.5.2/opam                                 | 6 +++---
 packages/lablqml/lablqml.0.6.2/opam                                 | 2 +-
 packages/lablqml/lablqml.0.6/opam                                   | 6 +++---
 packages/labrys/labrys.0.1/opam                                     | 2 +-
 packages/ladspa/ladspa.0.1.5/opam                                   | 2 +-
 packages/lame/lame.0.3.3/opam                                       | 2 +-
 packages/lame/lame.0.3.4/opam                                       | 2 +-
 packages/lbfgs/lbfgs.0.9.1/opam                                     | 2 +-
 packages/lbfgs/lbfgs.0.9/opam                                       | 2 +-
 packages/libbpf/libbpf.0.1.0/opam                                   | 2 +-
 packages/lmdb/lmdb.0.1/opam                                         | 2 +-
 packages/lo/lo.0.1.2/opam                                           | 2 +-
 packages/lzo/lzo.0.0.3/opam                                         | 2 +-
 packages/mad/mad.0.4.5/opam                                         | 2 +-
 packages/mad/mad.0.5.0/opam                                         | 2 +-
 packages/magic/magic.0.7.3/opam                                     | 2 +-
 packages/magic/magic.0.7.4/opam                                     | 2 +-
 packages/milter/milter.1.0.4/opam                                   | 2 +-
 packages/misuja/misuja.0.0.0/opam                                   | 2 +-
 packages/ocaml-systemd/ocaml-systemd.1.2/opam                       | 2 +-
 packages/ogg/ogg.0.5.2/opam                                         | 2 +-
 packages/ogg/ogg.0.6.0/opam                                         | 2 +-
 packages/opus/opus.0.1.2/opam                                       | 2 +-
 packages/opus/opus.0.1.3/opam                                       | 2 +-
 packages/pci/pci.1.0.1/opam                                         | 2 +-
 packages/pcre/pcre.7.2.3/opam                                       | 2 +-
 packages/postgresql/postgresql.3.2.1/opam                           | 2 +-
 packages/postgresql/postgresql.4.0.0/opam                           | 2 +-
 packages/postgresql/postgresql.4.0.1/opam                           | 2 +-
 packages/postgresql/postgresql.4.1.0/opam                           | 2 +-
 packages/postgresql/postgresql.4.2.0/opam                           | 2 +-
 packages/postgresql/postgresql.4.2.1/opam                           | 2 +-
 packages/postgresql/postgresql.4.3.0/opam                           | 2 +-
 packages/postgresql/postgresql.4.4.0/opam                           | 2 +-
 packages/postgresql/postgresql.4.4.1/opam                           | 2 +-
 packages/postgresql/postgresql.4.4.2/opam                           | 2 +-
 packages/protocell/protocell.1.0.0/opam                             | 2 +-
 packages/pulseaudio/pulseaudio.0.1.2/opam                           | 2 +-
 packages/pulseaudio/pulseaudio.0.1.3/opam                           | 2 +-
 packages/py/py.1.0/opam                                             | 2 +-
 packages/radare2/radare2.0.0.2/opam                                 | 2 +-
 packages/radare2/radare2.0.0.3/opam                                 | 2 +-
 packages/radare2/radare2.0.0.4/opam                                 | 2 +-
 packages/radare2/radare2.0.0.5/opam                                 | 2 +-
 packages/radare2/radare2.0.0.6/opam                                 | 2 +-
 packages/raylib/raylib.0.1.0/opam                                   | 2 +-
 packages/raylib/raylib.0.2.2/opam                                   | 2 +-
 packages/re2/re2.v0.12.0/opam                                       | 2 +-
 packages/samplerate/samplerate.0.1.4/opam                           | 2 +-
 packages/shine/shine.0.2.1/opam                                     | 2 +-
 packages/solo5-bindings-hvt/solo5-bindings-hvt.0.4.0/opam           | 2 +-
 packages/solo5-bindings-hvt/solo5-bindings-hvt.0.4.1/opam           | 2 +-
 packages/solo5-bindings-hvt/solo5-bindings-hvt.0.6.2/opam           | 2 +-
 packages/solo5-bindings-hvt/solo5-bindings-hvt.0.6.3/opam           | 2 +-
 packages/solo5-bindings-hvt/solo5-bindings-hvt.0.6.4/opam           | 2 +-
 packages/solo5-bindings-hvt/solo5-bindings-hvt.0.6.5/opam           | 2 +-
 packages/solo5-bindings-hvt/solo5-bindings-hvt.0.6.6/opam           | 2 +-
 packages/solo5-bindings-hvt/solo5-bindings-hvt.0.6.7/opam           | 2 +-
 packages/solo5-bindings-hvt/solo5-bindings-hvt.0.6.8/opam           | 2 +-
 packages/solo5-bindings-hvt/solo5-bindings-hvt.0.6.9/opam           | 2 +-
 packages/solo5-bindings-spt/solo5-bindings-spt.0.6.2/opam           | 4 ++--
 packages/solo5-bindings-spt/solo5-bindings-spt.0.6.3/opam           | 2 +-
 packages/solo5-bindings-spt/solo5-bindings-spt.0.6.4/opam           | 2 +-
 packages/solo5-bindings-spt/solo5-bindings-spt.0.6.5/opam           | 2 +-
 packages/solo5-bindings-spt/solo5-bindings-spt.0.6.6/opam           | 2 +-
 packages/solo5-bindings-spt/solo5-bindings-spt.0.6.7/opam           | 2 +-
 packages/solo5-bindings-spt/solo5-bindings-spt.0.6.8/opam           | 2 +-
 packages/solo5-bindings-spt/solo5-bindings-spt.0.6.9/opam           | 2 +-
 packages/solo5-cross-aarch64/solo5-cross-aarch64.0.7.0/opam         | 2 +-
 packages/solo5-cross-aarch64/solo5-cross-aarch64.0.7.1/opam         | 2 +-
 packages/solo5-cross-aarch64/solo5-cross-aarch64.0.7.2/opam         | 2 +-
 packages/solo5-cross-aarch64/solo5-cross-aarch64.0.7.3/opam         | 2 +-
 packages/solo5-cross-aarch64/solo5-cross-aarch64.0.7.4/opam         | 2 +-
 packages/solo5-cross-aarch64/solo5-cross-aarch64.0.7.5/opam         | 2 +-
 packages/solo5-cross-aarch64/solo5-cross-aarch64.0.8.0/opam         | 2 +-
 packages/solo5-cross-aarch64/solo5-cross-aarch64.0.8.1/opam         | 2 +-
 packages/solo5-cross-aarch64/solo5-cross-aarch64.0.9.0/opam         | 2 +-
 packages/solo5-cross-aarch64/solo5-cross-aarch64.0.9.1/opam         | 2 +-
 packages/solo5-kernel-ukvm/solo5-kernel-ukvm.0.1.1/opam             | 2 +-
 packages/solo5-kernel-ukvm/solo5-kernel-ukvm.0.2.1/opam             | 2 +-
 packages/solo5-kernel-ukvm/solo5-kernel-ukvm.0.2.2-1/opam           | 2 +-
 packages/solo5-kernel-ukvm/solo5-kernel-ukvm.0.2.2/opam             | 2 +-
 packages/solo5-kernel-ukvm/solo5-kernel-ukvm.0.3.0/opam             | 2 +-
 packages/solo5-kernel-ukvm/solo5-kernel-ukvm.0.3.1/opam             | 2 +-
 packages/solo5/solo5.0.7.0/opam                                     | 2 +-
 packages/solo5/solo5.0.7.1/opam                                     | 2 +-
 packages/solo5/solo5.0.7.2/opam                                     | 2 +-
 packages/solo5/solo5.0.7.3/opam                                     | 2 +-
 packages/solo5/solo5.0.7.4/opam                                     | 2 +-
 packages/solo5/solo5.0.7.5/opam                                     | 2 +-
 packages/solo5/solo5.0.8.0/opam                                     | 2 +-
 packages/solo5/solo5.0.8.1/opam                                     | 2 +-
 packages/solo5/solo5.0.9.0/opam                                     | 2 +-
 packages/solo5/solo5.0.9.1/opam                                     | 2 +-
 packages/soundtouch/soundtouch.0.1.8/opam                           | 2 +-
 packages/speex/speex.0.2.1/opam                                     | 2 +-
 packages/spf/spf.2.0.2/opam                                         | 2 +-
 packages/srt/srt.0.1.0/opam                                         | 2 +-
 packages/srt/srt.0.1.1/opam                                         | 2 +-
 packages/taglib/taglib.0.3.3/opam                                   | 2 +-
 packages/taglib/taglib.0.3.6/opam                                   | 2 +-
 packages/theora/theora.0.3.1/opam                                   | 2 +-
 packages/travis-opam/travis-opam.1.1.0/opam                         | 2 +-
 packages/vorbis/vorbis.0.7.1/opam                                   | 2 +-
 packages/xen-evtchn/xen-evtchn.1.0.7/opam                           | 2 +-
 packages/yara/yara.0.1/opam                                         | 2 +-
 packages/yara/yara.0.2/opam                                         | 2 +-
 479 files changed, 513 insertions(+), 513 deletions(-)

(from ocaml/opam:debian-12-ocaml-4.14@sha256:3244bdc5a8a334bd7c4f552ea00747039a9cec8c46437471b45bca4791eef453)
2025-05-20 03:39.37 ---> using "8fc05cdda16df548920c1f78c4fe559e1928343c0387f98662ad0cea1d69c1c6" 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-05-20 03:39.37 ---> using "4b78163c4ada0a6f971729d6295c16ae6c0ef4a95f49d58a371257f9131ba40c" from cache

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

This 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.

Continue? [y/n] y
[NOTE] The 'jobs' option was reset, its value was 39 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=39 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-05-20 03:39.37 ---> using "6441526aff78481795c47220aed6e59c8535a24c53dbfaa3a2166f6b829ce213" 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-05-20 03:39.37 ---> using "f4e1752c8a59caff01c548d411e55077f935d8fc634b060b98914314f5e826d2" 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-05-20 03:39.37 ---> using "2beebfe6441731b408688c8685d827885f26123b1ea71fe4184178a2157a4ffe" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-05-20 03:39.38 ---> using "78b80e209d1997e02c945f1ca9a4025aecc89e06d71f98edc4be00e5b598d24e" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-05-20 03:39.38 ---> using "c5f134e9c87c60799f845aeafcd671a58a41d9e0eacd638f8dd42281aa884434" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- 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-security bookworm-security/main amd64 Packages [258 kB]
- Fetched 362 kB in 1s (479 kB/s)
- Reading package lists...
- 
2025-05-20 03:39.38 ---> using "921b59ebb692eec91a87c1f97c5130df68f9fa030ebecb7dcd434e7a76048008" from cache

/home/opam: (run (shell "opam pin add -k version -yn conf-gmp.4 4"))
conf-gmp is now pinned to version 4
2025-05-20 03:39.38 ---> using "087688aade3246f6aa77cbcefa1a32f0b4bc4da8741b651dbef4291a8b280de1" from cache

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

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 ... 18747 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 conf-gmp.4  (cached)
-> installed conf-gmp.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-05-20 03:39.38 ---> using "42a0100c31012fb24a27e70407b419df9edefd1b1f14a29711512657327f24c0" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall sendmail.0.3.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'sendmail.0.3.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
sendmail.0.3.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 56 packages
  - install angstrom            0.16.1             [required by colombe]
  - install asn1-combinators    0.2.6              [required by x509]
  - install base                v0.16.4            [required by ppx_sexp_conv]
  - install base-bytes          base               [required by ocplib-endian]
  - install base64              3.5.1              [required by sendmail]
  - install bigarray-compat     1.1.0              [required by cstruct, fiat-p256]
  - install bigstringaf         0.10.0             [required by angstrom]
  - install colombe             0.3.0              [required by sendmail]
  - install conf-gmp-powm-sec   4                  [required by mirage-crypto-pk]
  - install conf-pkg-config     4                  [required by fiat-p256, hacl_x25519]
  - install cppo                1.8.0              [required by lwt]
  - install csexp               1.5.2              [required by dune-configurator]
  - install cstruct             6.0.1              [required by tls]
  - install cstruct-sexp        6.0.1              [required by tls]
  - install domain-name         0.4.1              [required by tls]
  - install dune                3.18.2             [required by sendmail]
  - install dune-configurator   3.18.2             [required by lwt, fiat-p256]
  - install duration            0.2.1              [required by mirage-crypto-rng]
  - install eqaf                0.9                [required by hacl_x25519, fiat-p256, mirage-crypto-pk]
  - install fiat-p256           0.2.3 (deprecated) [required by tls]
  - install fmt                 0.10.0             [required by logs, colombe, tls]
  - install gmap                0.3.0              [required by x509]
  - install hacl_x25519         0.2.2 (deprecated) [required by tls]
  - install hex                 1.5.0              [required by fiat-p256]
  - install hkdf                1.0.4 (deprecated) [required by tls]
  - install ipaddr              5.6.0              [required by colombe]
  - install logs                0.8.0              [required by sendmail]
  - install lwt                 5.9.1              [required by logs, tls]
  - install macaddr             5.6.0              [required by ipaddr]
  - install mirage-crypto       0.10.7             [required by tls]
  - install mirage-crypto-pk    0.10.7             [required by tls]
  - install mirage-crypto-rng   0.10.7             [required by tls]
  - install mirage-no-solo5     1 (deprecated)     [required by mirage-crypto-pk]
  - install mirage-no-xen       1 (deprecated)     [required by mirage-crypto-pk]
  - install mtime               2.1.0              [required by mirage-crypto-rng]
  - install num                 1.5-1              [required by sexplib]
  - install ocaml-compiler-libs v0.12.4            [required by ppxlib]
  - install ocaml-syntax-shims  1.0.0              [required by colombe]
  - install ocamlbuild          0.16.1             [required by logs]
  - install ocamlfind           1.9.8              [required by logs]
  - install ocplib-endian       1.2                [required by lwt]
  - install parsexp             v0.16.0            [required by sexplib]
  - install ppx_cstruct         6.0.1              [required by tls]
  - install ppx_derivers        1.2.1              [required by ppxlib]
  - install ppx_sexp_conv       v0.16.0            [required by tls]
  - install ppxlib              0.35.0             [required by ppx_cstruct, ppx_sexp_conv]
  - install ptime               1.2.0              [required by tls]
  - install rresult             0.7.0              [required by x509]
  - install sendmail            0.3.0
  - install sexplib             v0.16.0            [required by tls]
  - install sexplib0            v0.16.0            [required by mirage-crypto-pk, ppx_sexp_conv]
  - install stdlib-shims        0.3.0              [required by ppx_cstruct]
  - install tls                 0.12.8             [required by sendmail]
  - install topkg               1.0.8              [required by logs]
  - 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:
    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 ... 18769 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 asn1-combinators.0.2.6  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved base64.3.5.1  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved colombe.0.3.0, sendmail.0.3.0  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> retrieved cstruct.6.0.1, cstruct-sexp.6.0.1, ppx_cstruct.6.0.1  (cached)
-> installed conf-gmp-powm-sec.4
-> retrieved domain-name.0.4.1  (cached)
-> retrieved dune.3.18.2, dune-configurator.3.18.2  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved eqaf.0.9  (cached)
-> retrieved fiat-p256.0.2.3  (cached)
-> retrieved fmt.0.10.0  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved hacl_x25519.0.2.2  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved hkdf.1.0.4  (cached)
-> retrieved ipaddr.5.6.0, macaddr.5.6.0  (cached)
-> retrieved logs.0.8.0  (cached)
-> retrieved lwt.5.9.1  (cached)
-> retrieved mirage-crypto.0.10.7, mirage-crypto-pk.0.10.7, mirage-crypto-rng.0.10.7  (cached)
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> retrieved mtime.2.1.0  (cached)
-> retrieved num.1.5-1  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved tls.0.12.8  (cached)
-> retrieved topkg.1.0.8  (cached)
-> retrieved x509.0.11.2  (cached)
-> retrieved zarith.1.14  (cached)
-> installed num.1.5-1
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.0.8
-> installed rresult.0.7.0
-> installed fmt.0.10.0
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed dune.3.18.2
-> installed ppx_derivers.1.2.1
-> installed gmap.0.3.0
-> installed domain-name.0.4.1
-> installed bigarray-compat.1.1.0
-> installed duration.0.2.1
-> installed macaddr.5.6.0
-> installed stdlib-shims.0.3.0
-> installed csexp.1.5.2
-> installed base64.3.5.1
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed sexplib0.v0.16.0
-> installed cstruct.6.0.1
-> installed ipaddr.5.6.0
-> installed ocplib-endian.1.2
-> installed hex.1.5.0
-> installed eqaf.0.9
-> installed asn1-combinators.0.2.6
-> installed parsexp.v0.16.0
-> installed dune-configurator.3.18.2
-> installed hacl_x25519.0.2.2
-> installed sexplib.v0.16.0
-> installed bigstringaf.0.10.0
-> installed cstruct-sexp.6.0.1
-> installed fiat-p256.0.2.3
-> installed angstrom.0.16.1
-> installed mirage-crypto.0.10.7
-> installed hkdf.1.0.4
-> installed colombe.0.3.0
-> installed lwt.5.9.1
-> installed logs.0.8.0
-> installed base.v0.16.4
-> installed mirage-crypto-rng.0.10.7
-> installed mirage-crypto-pk.0.10.7
-> installed x509.0.11.2
-> installed ppxlib.0.35.0
-> installed ppx_cstruct.6.0.1
-> installed ppx_sexp_conv.v0.16.0
-> installed tls.0.12.8
-> installed sendmail.0.3.0
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.

<><> fiat-p256.0.2.3 installed successfully <><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-05-20 03:40.37 ---> saved as "513adbba9601942599487c827b8cd026e247ac03b43a64b6c91ba049c783dbf6"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test sendmail.0.3.0) || true"))
The following actions will be performed:
=== recompile 8 packages
  - recompile colombe           0.3.0  [uses fmt]
  - recompile fmt               0.10.0 [uses cmdliner]
  - recompile logs              0.8.0  [uses cmdliner]
  - recompile mirage-crypto-pk  0.10.7 [uses mirage-crypto-rng]
  - recompile mirage-crypto-rng 0.10.7 [uses logs]
  - recompile sendmail          0.3.0
  - recompile tls               0.12.8 [uses fmt]
  - recompile x509              0.11.2 [uses fmt]
=== install 16 packages
  - install   alcotest          1.9.0  [required by sendmail]
  - install   astring           0.8.5  [required by alcotest]
  - install   bigarray-overlap  0.2.1  [required by mrmime]
  - install   cmdliner          1.3.0  [required by alcotest]
  - install   coin              0.1.4  [required by rosetta]
  - install   emile             0.9    [required by sendmail]
  - install   ke                0.6    [required by mrmime]
  - install   mrmime            0.3.0  [required by sendmail]
  - install   pecu              0.4    [required by mrmime]
  - install   re                1.12.0 [required by alcotest]
  - install   rosetta           0.3.0  [required by mrmime]
  - install   seq               base   [required by re]
  - install   unstrctrd         0.4    [required by mrmime]
  - install   uutf              1.0.4  [required by alcotest, mrmime]
  - install   uuuu              0.3.0  [required by rosetta]
  - install   yuscii            0.3.0  [required by rosetta]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.0  (https://github.com/mirage/alcotest/releases/download/1.9.0/alcotest-1.9.0.tbz)
-> retrieved astring.0.8.5  (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved bigarray-overlap.0.2.1  (https://github.com/dinosaure/overlap/releases/download/v0.2.1/bigarray-overlap-0.2.1.tbz)
-> retrieved cmdliner.1.3.0  (https://erratique.ch/software/cmdliner/releases/cmdliner-1.3.0.tbz)
-> installed bigarray-overlap.0.2.1
-> retrieved coin.0.1.4  (https://github.com/mirage/coin/releases/download/v0.1.4/coin-0.1.4.tbz)
-> installed astring.0.8.5
-> retrieved colombe.0.3.0, sendmail.0.3.0  (https://github.com/mirage/colombe/releases/download/v0.3.0/colombe-v0.3.0.tbz)
-> retrieved emile.0.9  (https://github.com/dinosaure/emile/releases/download/v0.9/emile-v0.9.tbz)
-> retrieved fmt.0.10.0  (https://erratique.ch/software/fmt/releases/fmt-0.10.0.tbz)
-> retrieved ke.0.6  (https://github.com/mirage/ke/releases/download/v0.6/ke-0.6.tbz)
-> retrieved logs.0.8.0  (https://erratique.ch/software/logs/releases/logs-0.8.0.tbz)
-> installed cmdliner.1.3.0
-> retrieved mirage-crypto-pk.0.10.7, mirage-crypto-rng.0.10.7  (https://github.com/mirage/mirage-crypto/releases/download/v0.10.7/mirage-crypto-0.10.7.tbz)
-> retrieved mrmime.0.3.0  (https://github.com/mirage/mrmime/releases/download/v0.3.0/mrmime-v0.3.0.tbz)
-> retrieved pecu.0.4  (https://github.com/mirage/pecu/releases/download/v0.4/pecu-v0.4.tbz)
-> installed pecu.0.4
-> retrieved re.1.12.0  (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
-> retrieved rosetta.0.3.0  (https://github.com/mirage/rosetta/releases/download/v0.3.0/rosetta-v0.3.0.tbz)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved tls.0.12.8  (https://github.com/mirleft/ocaml-tls/releases/download/v0.12.8/tls-v0.12.8.tbz)
-> installed re.1.12.0
-> retrieved unstrctrd.0.4  (https://github.com/dinosaure/unstrctrd/releases/download/v0.4/unstrctrd-0.4.tbz)
-> retrieved uutf.1.0.4  (https://erratique.ch/software/uutf/releases/uutf-1.0.4.tbz)
-> retrieved uuuu.0.3.0  (https://github.com/mirage/uuuu/releases/download/v0.3.0/uuuu-0.3.0.tbz)
-> installed coin.0.1.4
-> retrieved x509.0.11.2  (https://github.com/mirleft/ocaml-x509/releases/download/v0.11.2/x509-v0.11.2.tbz)
-> installed uutf.1.0.4
-> installed uuuu.0.3.0
-> retrieved yuscii.0.3.0  (https://github.com/mirage/yuscii/releases/download/v0.3.0/yuscii-v0.3.0.tbz)
-> installed unstrctrd.0.4
-> installed emile.0.9
-> removed   sendmail.0.3.0
-> removed   colombe.0.3.0
-> removed   tls.0.12.8
-> removed   x509.0.11.2
-> removed   mirage-crypto-pk.0.10.7
-> removed   mirage-crypto-rng.0.10.7
-> removed   logs.0.8.0
-> removed   fmt.0.10.0
-> installed fmt.0.10.0
-> installed yuscii.0.3.0
-> installed rosetta.0.3.0
-> installed ke.0.6
-> installed colombe.0.3.0
-> installed alcotest.1.9.0
-> installed logs.0.8.0
-> installed mrmime.0.3.0
-> installed mirage-crypto-rng.0.10.7
-> installed mirage-crypto-pk.0.10.7
-> installed x509.0.11.2
-> installed tls.0.12.8
-> installed sendmail.0.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-05-20 03:41.07 ---> saved as "9f3b125bb21bb55aac28656065fcb558b2de8cbe2fbf70243bcd19cd25d317a1"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [sendmail.0.3.0: extract]
-> retrieved sendmail.0.3.0  (cached)
Processing  2/4: [sendmail: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "sendmail" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/sendmail.0.3.0)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I sendmail/.sendmail.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/colombe -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/macaddr -intf-suffix .ml -no-alias-deps -o sendmail/.sendmail.objs/byte/sendmail.cmo -c -impl sendmail/sendmail.ml)
- File "sendmail/sendmail.ml", line 119, characters 45-53:
- 119 |             let payload = Base64.encode_exn (Fmt.strf "\000%s\000%s" username password) in
-                                                    ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "sendmail/sendmail.ml", line 123, characters 45-53:
- 123 |             let payload = Base64.encode_exn (Fmt.strf "%s\000%s\000%s" x username password) in
-                                                    ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I sendmail/.sendmail.objs/byte -I sendmail/.sendmail.objs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/colombe -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/macaddr -intf-suffix .ml -no-alias-deps -o sendmail/.sendmail.objs/native/sendmail.cmx -c -impl sendmail/sendmail.ml)
- File "sendmail/sendmail.ml", line 119, characters 45-53:
- 119 |             let payload = Base64.encode_exn (Fmt.strf "\000%s\000%s" username password) in
-                                                    ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "sendmail/sendmail.ml", line 123, characters 45-53:
- 123 |             let payload = Base64.encode_exn (Fmt.strf "%s\000%s\000%s" x username password) in
-                                                    ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I sendmail/.sendmail_with_tls.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/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/colombe -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -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/fmt -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/logs -I /home/opam/.opam/4.14/lib/macaddr -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/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -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/tls -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I sendmail/.sendmail.objs/byte -intf-suffix .ml -no-alias-deps -o sendmail/.sendmail_with_tls.objs/byte/sendmail_with_tls.cmo -c -impl sendmail/sendmail_with_tls.ml)
- File "sendmail/sendmail_with_tls.ml", line 216, characters 11-22:
- 216 |         if Cstruct.len raw = 0
-                  ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 218, characters 75-86:
- 218 |         else Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw; } in
-                                                                                  ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 219, characters 68-79:
- 219 |       Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw; }
-                                                                           ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 243, characters 13-24:
- 243 |           if Cstruct.len raw = 0
-                    ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 247, characters 77-88:
- 247 |           else Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw; } in
-                                                                                    ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 248, characters 70-81:
- 248 |         Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw; }
-                                                                             ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 256, characters 51-62:
- 256 |         let len = min (Bytes.length buffer - max) (Cstruct.len raw) in
-                                                          ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 257, characters 17-28:
- 257 |         if len < Cstruct.len raw then Fmt.failwith "Read buffer is full and TLS handshake is not done" ;
-                        ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 283, characters 86-97:
- 283 |   let rec go_with_tls ctx fiber delayed_data = match ctx.Context_with_tls.tls, fiber, Cstruct.len delayed_data with
-                                                                                             ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 293, characters 63-74:
- 293 |         Write { k; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw; }
-                                                                      ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 300, characters 25-36:
- 300 |           let len = min (Cstruct.len raw) len_0 in
-                                ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 314, characters 15-26:
- 314 |             if Cstruct.len raw = 0
-                      ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 316, characters 79-90:
- 316 |             else Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw; } in
-                                                                                      ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 317, characters 72-83:
- 317 |           Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw; }
-                                                                               ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 358, characters 9-20:
- 358 |       if Cstruct.len raw = 0
-                ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 360, characters 73-84:
- 360 |       else Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw } in
-                                                                                ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 370, characters 66-77:
- 370 |     Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw }
-                                                                         ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 391, characters 11-22:
- 391 |         if Cstruct.len raw = 0
-                  ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 397, characters 23-34:
- 397 |                 ; len= Cstruct.len raw } in
-                              ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 398, characters 67-78:
- 398 |       Write { k= loop; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw }
-                                                                          ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 446, characters 45-53:
- 446 |             let payload = Base64.encode_exn (Fmt.strf "\000%s\000%s" username password) in
-                                                    ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "sendmail/sendmail_with_tls.ml", line 450, characters 45-53:
- 450 |             let payload = Base64.encode_exn (Fmt.strf "%s\000%s\000%s" x username password) in
-                                                    ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "sendmail/sendmail_with_tls.ml", line 580, characters 30-41:
- 580 |           rdwr.wr flow buf 0 (Cstruct.len raw) >>= fun () -> go state
-                                     ^^^^^^^^^^^
- 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 sendmail/.sendmail_with_tls.objs/byte -I sendmail/.sendmail_with_tls.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/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/colombe -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -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/fmt -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/logs -I /home/opam/.opam/4.14/lib/macaddr -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/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -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/tls -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I sendmail/.sendmail.objs/byte -I sendmail/.sendmail.objs/native -intf-suffix .ml -no-alias-deps -o sendmail/.sendmail_with_tls.objs/native/sendmail_with_tls.cmx -c -impl sendmail/sendmail_with_tls.ml)
- File "sendmail/sendmail_with_tls.ml", line 216, characters 11-22:
- 216 |         if Cstruct.len raw = 0
-                  ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 218, characters 75-86:
- 218 |         else Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw; } in
-                                                                                  ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 219, characters 68-79:
- 219 |       Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw; }
-                                                                           ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 243, characters 13-24:
- 243 |           if Cstruct.len raw = 0
-                    ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 247, characters 77-88:
- 247 |           else Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw; } in
-                                                                                    ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 248, characters 70-81:
- 248 |         Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw; }
-                                                                             ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 256, characters 51-62:
- 256 |         let len = min (Bytes.length buffer - max) (Cstruct.len raw) in
-                                                          ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 257, characters 17-28:
- 257 |         if len < Cstruct.len raw then Fmt.failwith "Read buffer is full and TLS handshake is not done" ;
-                        ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 283, characters 86-97:
- 283 |   let rec go_with_tls ctx fiber delayed_data = match ctx.Context_with_tls.tls, fiber, Cstruct.len delayed_data with
-                                                                                             ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 293, characters 63-74:
- 293 |         Write { k; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw; }
-                                                                      ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 300, characters 25-36:
- 300 |           let len = min (Cstruct.len raw) len_0 in
-                                ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 314, characters 15-26:
- 314 |             if Cstruct.len raw = 0
-                      ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 316, characters 79-90:
- 316 |             else Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw; } in
-                                                                                      ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 317, characters 72-83:
- 317 |           Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw; }
-                                                                               ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 358, characters 9-20:
- 358 |       if Cstruct.len raw = 0
-                ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 360, characters 73-84:
- 360 |       else Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw } in
-                                                                                ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 370, characters 66-77:
- 370 |     Write { k= k raw; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw }
-                                                                         ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 391, characters 11-22:
- 391 |         if Cstruct.len raw = 0
-                  ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 397, characters 23-34:
- 397 |                 ; len= Cstruct.len raw } in
-                              ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 398, characters 67-78:
- 398 |       Write { k= loop; buffer= Cstruct.to_string raw; off= 0; len= Cstruct.len raw }
-                                                                          ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "sendmail/sendmail_with_tls.ml", line 446, characters 45-53:
- 446 |             let payload = Base64.encode_exn (Fmt.strf "\000%s\000%s" username password) in
-                                                    ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "sendmail/sendmail_with_tls.ml", line 450, characters 45-53:
- 450 |             let payload = Base64.encode_exn (Fmt.strf "%s\000%s\000%s" x username password) in
-                                                    ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "sendmail/sendmail_with_tls.ml", line 580, characters 30-41:
- 580 |           rdwr.wr flow buf 0 (Cstruct.len raw) >>= fun () -> go state
-                                     ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
Processing  2/4: [sendmail: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "sendmail" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/sendmail.0.3.0)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/.test_sendmail.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -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/cmdliner -I /home/opam/.opam/4.14/lib/coin -I /home/opam/.opam/4.14/lib/colombe -I /home/opam/.opam/4.14/lib/colombe/emile -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/emile -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mrmime -I /home/opam/.opam/4.14/lib/mrmime/prettym -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rosetta -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/uuuu -I /home/opam/.opam/4.14/lib/yuscii -I sendmail/.sendmail.objs/byte -no-alias-deps -o test/.test_sendmail.eobjs/byte/test_sendmail.cmo -c -impl test/test_sendmail.ml)
- File "test/test_sendmail.ml", line 93, characters 37-45:
- 93 |       ; Base64.encode_exn ~pad:true (Fmt.strf "\000romain\000foobar")
-                                           ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/test_sendmail.ml", line 129, characters 37-45:
- 129 |       ; Base64.encode_exn ~pad:true (Fmt.strf "\000romain\000foobar")
-                                            ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/test_sendmail.ml", line 215, characters 37-45:
- 215 |       ; Base64.encode_exn ~pad:true (Fmt.strf "\000romain\000foobar")
-                                            ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/.test_sendmail.eobjs/byte -I test/.test_sendmail.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -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/cmdliner -I /home/opam/.opam/4.14/lib/coin -I /home/opam/.opam/4.14/lib/colombe -I /home/opam/.opam/4.14/lib/colombe/emile -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/emile -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mrmime -I /home/opam/.opam/4.14/lib/mrmime/prettym -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rosetta -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/uuuu -I /home/opam/.opam/4.14/lib/yuscii -I sendmail/.sendmail.objs/byte -I sendmail/.sendmail.objs/native -intf-suffix .ml -no-alias-deps -o test/.test_sendmail.eobjs/native/test_sendmail.cmx -c -impl test/test_sendmail.ml)
- File "test/test_sendmail.ml", line 93, characters 37-45:
- 93 |       ; Base64.encode_exn ~pad:true (Fmt.strf "\000romain\000foobar")
-                                           ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/test_sendmail.ml", line 129, characters 37-45:
- 129 |       ; Base64.encode_exn ~pad:true (Fmt.strf "\000romain\000foobar")
-                                            ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/test_sendmail.ml", line 215, characters 37-45:
- 215 |       ; Base64.encode_exn ~pad:true (Fmt.strf "\000romain\000foobar")
-                                            ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default/test && ./test_sendmail.exe --color=always)
- Testing `sendmail'.
- This run has ID `M1WR2C5A'.
- 
-   [OK]          mock          0   usual without authentication.
-   [OK]          mock          1   usual with authentication.
-   [OK]          mock          2   bad authentication.
-   [OK]          mock          3   PLAIN mechanism unavailable.
-   [OK]          mock          4   authentication required.
-   [OK]          mock          5   8BITMIME.
-   [OK]          mock          6   spam.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/sendmail.0.3.0/_build/default/test/_build/_tests/sendmail'.
- Test Successful in 0.001s. 7 tests run.
-> compiled  sendmail.0.3.0
-> removed   sendmail.0.3.0
-> installed sendmail.0.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-05-20 03:41.14 ---> saved as "367e2e9225a39c8302b8bf12a2386bccd7b6e3d04836749bd8e039872e38f218"
Job succeeded
2025-05-20 03:41.32: Job succeeded