- github
- ocaml
- opam-repository
- 45a900
- compilers,4.14,dune-configurator.3.18.1,revdeps,irmin-git.2.6.1
(not at the head of any monitored branch or PR)
2025-04-15 16:17.00: New job: test irmin-git.2.6.1 with dune-configurator.3.18.1, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/27761/head (45a9003972a4bc10898d8844bef612e0e0029914)
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/27761/head" && git reset --hard 45a90039
git fetch origin master
git merge --no-edit 70b82be6e261da74b766f9bb1344a1ecd5b1909d
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:ec682473bce2c2c47749ae1025968d0b585bdde0fcd2b8e7871a79f983cc1050
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune-configurator.3.18.1 3.18.1
RUN opam reinstall dune-configurator.3.18.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune-configurator.3.18.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall irmin-git.2.6.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'irmin-git.2.6.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test irmin-git.2.6.1) || true
RUN opam reinstall --with-test --verbose irmin-git.2.6.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'irmin-git.2.6.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-04-15 16:17.00: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:ec682473bce2c2c47749ae1025968d0b585bdde0fcd2b8e7871a79f983cc1050-dune-configurator.3.18.1-irmin-git.2.6.1-45a9003972a4bc10898d8844bef612e0e0029914"
2025-04-15 16:17.00: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:ec682473bce2c2c47749ae1025968d0b585bdde0fcd2b8e7871a79f983cc1050)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune-configurator.3.18.1 3.18.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.18.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune-configurator.3.18.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall irmin-git.2.6.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'irmin-git.2.6.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test irmin-git.2.6.1) || true"))
(run (shell "opam reinstall --with-test --verbose irmin-git.2.6.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'irmin-git.2.6.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-04-15 16:17.00: Waiting for resource in pool OCluster
2025-04-15 21:10.17: Waiting for worker…
2025-04-15 21:12.55: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
Updating files: 86% (19689/22880)
Updating files: 87% (19906/22880)
Updating files: 88% (20135/22880)
Updating files: 89% (20364/22880)
Updating files: 90% (20592/22880)
Updating files: 91% (20821/22880)
Updating files: 92% (21050/22880)
Updating files: 93% (21279/22880)
Updating files: 94% (21508/22880)
Updating files: 95% (21736/22880)
Updating files: 96% (21965/22880)
Updating files: 97% (22194/22880)
Updating files: 98% (22423/22880)
Updating files: 99% (22652/22880)
Updating files: 100% (22880/22880)
Updating files: 100% (22880/22880), done.
HEAD is now at 70b82be6e2 Merge pull request #27756 from chetmurthy/release-camlp5-8.03.04
Updating 70b82be6e2..45a9003972
Fast-forward
packages/chrome-trace/chrome-trace.3.18.1/opam | 41 ++++++++++++
.../dune-action-plugin.3.18.1/opam | 54 ++++++++++++++++
.../dune-build-info/dune-build-info.3.18.1/opam | 47 ++++++++++++++
.../dune-configurator.3.18.1/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.18.1/opam | 44 +++++++++++++
.../dune-private-libs.3.18.1/opam | 52 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.18.1/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.18.1/opam | 45 +++++++++++++
packages/dune-site/dune-site.3.18.1/opam | 39 ++++++++++++
packages/dune/dune.3.18.1/opam | 73 ++++++++++++++++++++++
packages/dyn/dyn.3.18.1/opam | 42 +++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.18.1/opam | 45 +++++++++++++
packages/ordering/ordering.3.18.1/opam | 40 ++++++++++++
packages/stdune/stdune.3.18.1/opam | 46 ++++++++++++++
packages/xdg/xdg.3.18.1/opam | 41 ++++++++++++
15 files changed, 703 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.18.1/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.18.1/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.18.1/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.18.1/opam
create mode 100644 packages/dune-glob/dune-glob.3.18.1/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.18.1/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.18.1/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.18.1/opam
create mode 100644 packages/dune-site/dune-site.3.18.1/opam
create mode 100644 packages/dune/dune.3.18.1/opam
create mode 100644 packages/dyn/dyn.3.18.1/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.18.1/opam
create mode 100644 packages/ordering/ordering.3.18.1/opam
create mode 100644 packages/stdune/stdune.3.18.1/opam
create mode 100644 packages/xdg/xdg.3.18.1/opam
(from ocaml/opam:debian-12-ocaml-4.14@sha256:ec682473bce2c2c47749ae1025968d0b585bdde0fcd2b8e7871a79f983cc1050)
2025-04-15 21:13.48 ---> using "c803204894feb69882c6f8a93debc38d237226aa0742423bb8ecaf2af7ff192b" 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-04-15 21:13.48 ---> using "ece3a69ccd84d1bc3f538d5d927c0677b7135e0ed5c5cf4c9c4520c17f38358a" 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-04-15 21:13.48 ---> using "d5e769d11ef10526cdb73f418d047f005a7a5b69bb629bfc2d2d388c7c8b8cdf" 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-04-15 21:13.48 ---> using "715b54b0301c5ea573dce9ba6774fadf0f93b64dc7a24253bfe6c76c219d7da5" 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-04-15 21:13.48 ---> using "2963a137c235cb1efcbb6bb5c962ec263787dd9c8275045ae610283ae366c13d" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-04-15 21:13.49 ---> using "c09bf3edab97cea63fa144e6f5ecf2869b6fb4925fdd1aac25138a67330f6681" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-04-15 21:13.49 ---> using "1e72cc37196eed0f1745a95595b3baa136f4f1d0128340fbaf2f61ec1938d8f7" 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 [254 kB]
- Fetched 357 kB in 0s (1063 kB/s)
- Reading package lists...
2025-04-15 21:13.49 ---> using "fe6517cd124df9c409c133b211b90144cf0d720f10758432d957d3f65248f412" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune-configurator.3.18.1 3.18.1"))
dune-configurator is now pinned to version 3.18.1
2025-04-15 21:13.49 ---> using "a8df9e0660d0f90f84499b44ef14d60d58b0c716d72064b8f82219a302c13af6" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.18.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune-configurator.3.18.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune-configurator.3.18.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 3 packages
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.18.1 [required by dune-configurator]
- install dune-configurator 3.18.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.18.1, dune-configurator.3.18.1 (cached)
-> installed dune.3.18.1
-> installed csexp.1.5.2
-> installed dune-configurator.3.18.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-15 21:13.49 ---> using "a78086b5bdca7d3054387bd9b97fe4704446fe590527fc2c96cb815b2805cdc8" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall irmin-git.2.6.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'irmin-git.2.6.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
irmin-git.2.6.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 59 packages
- install angstrom 0.16.1 [required by git]
- install astring 0.8.5 [required by irmin-git]
- install base-bytes base [required by ocplib-endian]
- install base64 3.5.1 [required by git]
- install bheap 2.0.0 [required by irmin]
- install bigstringaf 0.10.0 [required by git]
- install bos 0.2.1 [required by carton]
- install carton 0.7.2 [required by git]
- install carton-git 0.7.2 [required by git]
- install carton-lwt 0.7.2 [required by git]
- install checkseum 0.5.2 [required by git]
- install cmdliner 1.3.0 [required by carton, fmt, emile]
- install cppo 1.8.0 [required by ppx_deriving]
- install cstruct 6.2.0 [required by irmin-git]
- install decompress 1.5.3 [required by git]
- install digestif 1.2.0 [required by irmin-git]
- install domain-name 0.4.1 [required by git]
- install duff 0.5 [required by carton]
- install either 1.0.0 [required by repr]
- install emile 1.1 [required by git]
- install encore 0.8.1 [required by git]
- install eqaf 0.10 [required by digestif]
- install fmt 0.10.0 [required by irmin-git]
- install fpath 0.7.3 [required by irmin-git]
- install git 3.18.0 [required by irmin-git]
- install hxd 0.3.3 [required by git]
- install ipaddr 5.6.0 [required by git]
- install irmin 2.6.1 [required by irmin-git]
- install irmin-git 2.6.1
- install jsonm 1.0.2 [required by irmin]
- install ke 0.6 [required by git]
- install logs 0.8.0 [required by irmin-git]
- install lwt 5.9.1 [required by irmin-git]
- install macaddr 5.6.0 [required by ipaddr]
- install mimic 0.0.9 [required by git]
- install mirage-flow 5.0.0 [required by git]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlbuild 0.16.1 [required by astring, fpath]
- install ocamlfind 1.9.8 [required by astring, fpath]
- install ocamlgraph 2.2.0 [required by git, irmin]
- install ocplib-endian 1.2 [required by lwt]
- install optint 0.3.0 [required by git]
- install pecu 0.7 [required by emile]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.0.3 [required by ppx_repr]
- install ppx_irmin 2.6.1 [required by irmin-git]
- install ppx_repr 0.3.0 [required by ppx_irmin]
- install ppxlib 0.35.0 [required by ppx_repr]
- install psq 0.2.1 [required by git]
- install repr 0.3.0 [required by irmin]
- install rresult 0.7.0 [required by git]
- install seq base [required by psq]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install stringext 1.6.0 [required by uri]
- install topkg 1.0.8 [required by astring, fpath]
- install uri 4.4.0 [required by irmin-git]
- install uutf 1.0.4 [required by irmin]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base64.3.5.1 (cached)
-> retrieved bheap.2.0.0 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved carton.0.7.2, carton-git.0.7.2, carton-lwt.0.7.2 (cached)
-> retrieved checkseum.0.5.2 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved cstruct.6.2.0 (cached)
-> installed bheap.2.0.0
-> retrieved decompress.1.5.3 (cached)
-> installed base64.3.5.1
-> installed bigstringaf.0.10.0
-> retrieved digestif.1.2.0 (cached)
-> retrieved domain-name.0.4.1 (cached)
-> retrieved duff.0.5 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved emile.1.1 (cached)
-> retrieved encore.0.8.1 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved fmt.0.10.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved git.3.18.0 (cached)
-> retrieved hxd.0.3.3 (cached)
-> retrieved ipaddr.5.6.0, macaddr.5.6.0 (cached)
-> installed domain-name.0.4.1
-> retrieved irmin.2.6.1, irmin-git.2.6.1, ppx_irmin.2.6.1 (cached)
-> installed cppo.1.8.0
-> installed either.1.0.0
-> installed macaddr.5.6.0
-> retrieved jsonm.1.0.2 (cached)
-> retrieved ke.0.6 (cached)
-> retrieved logs.0.8.0 (cached)
-> retrieved lwt.5.9.1 (cached)
-> installed eqaf.0.10
-> retrieved mimic.0.0.9 (cached)
-> retrieved mirage-flow.5.0.0 (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 ocamlgraph.2.2.0 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved optint.0.3.0 (cached)
-> retrieved pecu.0.7 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> installed ipaddr.5.6.0
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_repr.0.3.0, repr.0.3.0 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> installed pecu.0.7
-> installed ppx_derivers.1.2.1
-> retrieved psq.0.2.1 (cached)
-> installed optint.0.3.0
-> installed digestif.1.2.0
-> retrieved rresult.0.7.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved topkg.1.0.8 (cached)
-> retrieved uri.4.4.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> installed cmdliner.1.3.0
-> installed checkseum.0.5.2
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed ocamlgraph.2.2.0
-> installed psq.0.2.1
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed angstrom.0.16.1
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed decompress.1.5.3
-> installed ocplib-endian.1.2
-> installed uri.4.4.0
-> installed ocamlbuild.0.16.1
-> installed lwt.5.9.1
-> installed hxd.0.3.3
-> installed topkg.1.0.8
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.10.0
-> installed emile.1.1
-> installed astring.0.8.5
-> installed duff.0.5
-> installed encore.0.8.1
-> installed ke.0.6
-> installed cstruct.6.2.0
-> installed jsonm.1.0.2
-> installed mirage-flow.5.0.0
-> installed fpath.0.7.3
-> installed repr.0.3.0
-> installed logs.0.8.0
-> installed mimic.0.0.9
-> installed ppxlib.0.35.0
-> installed bos.0.2.1
-> installed carton.0.7.2
-> installed carton-lwt.0.7.2
-> installed carton-git.0.7.2
-> installed ppx_deriving.6.0.3
-> installed git.3.18.0
-> installed ppx_repr.0.3.0
-> installed ppx_irmin.2.6.1
-> installed irmin.2.6.1
-> installed irmin-git.2.6.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-15 21:14.30 ---> saved as "f71a956b64b9bd13103c6f879c27945792520d6eaf09fa6cd473bd6bbca274c7"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test irmin-git.2.6.1) || true"))
The following actions will be performed:
=== downgrade 16 packages
- downgrade bigstringaf 0.10.0 to 0.8.0 [required by git-unix]
- downgrade carton 0.7.2 to 0.4.3 [uses cstruct]
- downgrade carton-git 0.7.2 to 0.4.3 [uses bigarray-compat]
- downgrade carton-lwt 0.7.2 to 0.4.3 [uses bigstringaf]
- downgrade cmdliner 1.3.0 to 1.0.4 [required by git-unix, alcotest, irmin-test]
- downgrade cstruct 6.2.0 to 6.0.1 [required by irmin-git]
- downgrade decompress 1.5.3 to 1.4.2 [required by git-unix]
- downgrade eqaf 0.10 to 0.9 [uses cstruct]
- downgrade fmt 0.10.0 to 0.9.0 [required by irmin-git]
- downgrade git 3.18.0 to 3.6.0 [required by irmin-git]
- downgrade hxd 0.3.3 to 0.3.1 [required by carton]
- downgrade logs 0.8.0 to 0.7.0 [required by irmin-git]
- downgrade mimic 0.0.9 to 0.0.6 [required by git-unix]
- downgrade mirage-flow 5.0.0 to 3.0.0 [uses cstruct]
- downgrade sexplib0 v0.17.0 to v0.16.0 [required by cohttp, cohttp-lwt]
- downgrade uutf 1.0.4 to 1.0.3 [required by alcotest]
=== recompile 16 packages
- recompile angstrom 0.16.1 [uses bigstringaf]
- recompile bos 0.2.1 [uses fmt]
- recompile digestif 1.2.0 [uses eqaf]
- recompile duff 0.5 [uses fmt]
- recompile emile 1.1 [uses bigstringaf]
- recompile encore 0.8.1 [uses bigstringaf]
- recompile irmin 2.6.1 [uses digestif]
- recompile irmin-git 2.6.1
- recompile jsonm 1.0.2 [uses uutf]
- recompile ke 0.6 [uses fmt]
- recompile ppx_deriving 6.0.3 [uses ppxlib]
- recompile ppx_irmin 2.6.1 [uses ppx_repr]
- recompile ppx_repr 0.3.0 [uses ppxlib]
- recompile ppxlib 0.35.0 [uses sexplib0]
- recompile repr 0.3.0 [uses fmt]
- recompile uri 4.4.0 [uses angstrom]
=== install 70 packages
- install alcotest 1.5.0 [required by irmin-git]
- install arp 3.1.1 [required by tcpip]
- install asn1-combinators 0.2.6 [required by x509]
- install awa 0.0.5 [required by git-unix]
- install awa-mirage 0.0.5 [required by git-unix]
- install base v0.16.4 [required by ppx_sexp_conv]
- install bigarray-compat 1.1.0 [required by cstruct, git-unix]
- install ca-certs 0.2.3 [required by conduit-lwt-unix]
- install ca-certs-nss 3.74 [required by git-unix]
- install cohttp 5.1.0 [required by git-cohttp-unix]
- install cohttp-lwt 5.1.0 [required by git-cohttp-unix]
- install cohttp-lwt-unix 5.1.0 [required by git-cohttp-unix]
- install conduit 8.0.0 [required by conduit-lwt]
- install conduit-lwt 8.0.0 [required by cohttp-lwt-unix]
- install conduit-lwt-unix 8.0.0 [required by cohttp-lwt-unix]
- install conf-gmp 5 [required by zarith, conf-gmp-powm-sec]
- install conf-gmp-powm-sec 4 [required by mirage-crypto-pk]
- install conf-gnuplot 0.1 [required by metrics-unix]
- install conf-pkg-config 4 [required by tcpip]
- install cstruct-lwt 6.0.1 [required by tcpip]
- install cstruct-sexp 6.0.1 [required by awa, tls]
- install cstruct-unix 6.0.1 [required by awa]
- install duration 0.2.1 [required by tcpip]
- install ethernet 3.2.0 [required by tcpip]
- install git-cohttp 3.6.0 (deprecated) [required by git-cohttp-unix]
- install git-cohttp-unix 3.6.0 (deprecated) [required by irmin-git]
- install git-unix 3.6.0 [required by irmin-git]
- install gmap 0.3.0 [required by x509]
- install hkdf 1.0.4 (deprecated) [required by tls]
- install ipaddr-sexp 5.6.0 [required by tls]
- install irmin-layers 2.6.1 [required by irmin-test]
- install irmin-test 2.6.1 [required by irmin-git]
- install lru 0.3.1 [required by tcpip]
- install lwt-dllist 1.0.1 [required by tcpip]
- install macaddr-cstruct 5.6.0 [required by tcpip]
- install magic-mime 1.3.1 [required by cohttp-lwt-unix]
- install metrics 0.4.1 [required by irmin-test]
- install metrics-unix 0.4.1 [required by irmin-test]
- install mirage-clock 4.2.0 [required by git-unix]
- install mirage-clock-unix 4.2.0 [required by git-unix]
- install mirage-crypto 0.10.7 [required by tls, awa, ca-certs-nss, tls-mirage]
- install mirage-crypto-ec 0.10.7 [required by awa, tls]
- install mirage-crypto-pk 0.10.7 [required by tls, awa, tls-mirage]
- install mirage-crypto-rng 0.10.7 [required by awa, tls]
- install mirage-kv 6.1.1 [required by tls-mirage]
- install mirage-net 4.0.0 [required by tcpip]
- install mirage-no-solo5 1 (deprecated) [required by mirage-crypto-pk]
- install mirage-no-xen 1 (deprecated) [required by mirage-crypto-pk]
- install mirage-profile 0.9.1 (deprecated) [required by tcpip]
- install mirage-random 3.0.0 (deprecated) [required by tcpip]
- install mirage-time 3.0.0 [required by tcpip]
- install mmap 1.2.0 [required by git-unix]
- install mtime 1.4.0 [required by irmin-git]
- install num 1.5-1 [required by sexplib]
- install parsexp v0.16.0 [required by sexplib]
- install pbkdf 1.2.0 [required by x509]
- install ppx_cstruct 6.0.1 [required by tcpip, awa, tls]
- install ppx_sexp_conv v0.16.0 [required by awa, cohttp-lwt, cohttp, etc.]
- install ptime 1.2.0 [required by git-unix]
- install randomconv 0.1.3 [required by tcpip]
- install re 1.12.0 [required by alcotest]
- install result 1.5 [required by git-cohttp-unix, git-unix]
- install sexplib v0.16.0 [required by awa, tls]
- install tcpip 7.1.2 [required by git-unix]
- install tls 0.15.4 [required by git-unix]
- install tls-mirage 0.15.4 [required by git-unix]
- install uri-sexp 4.4.0 [required by cohttp]
- install uuidm 0.9.7 [required by metrics-unix]
- install x509 0.16.5 [required by tls, awa, ca-certs-nss, tls-mirage]
- install zarith 1.14 [required by awa]
The following system packages will first need to be installed:
gnuplot-x11 libgmp-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "gnuplot-x11" "libgmp-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libargon2-1: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 .../00-libargon2-1_0~20171227-0.3+deb12u1_amd64.deb ...
- Unpacking libargon2-1:amd64 (0~20171227-0.3+deb12u1) ...
- Selecting previously unselected package dmsetup.
- Preparing to unpack .../01-dmsetup_2%3a1.02.185-2_amd64.deb ...
- Unpacking dmsetup (2:1.02.185-2) ...
- Selecting previously unselected package libdevmapper1.02.1:amd64.
- Preparing to unpack .../02-libdevmapper1.02.1_2%3a1.02.185-2_amd64.deb ...
- Unpacking libdevmapper1.02.1:amd64 (2:1.02.185-2) ...
- Selecting previously unselected package libjson-c5:amd64.
- Preparing to unpack .../03-libjson-c5_0.16-2_amd64.deb ...
- Unpacking libjson-c5:amd64 (0.16-2) ...
- Selecting previously unselected package libcryptsetup12:amd64.
- Preparing to unpack .../04-libcryptsetup12_2%3a2.6.1-4~deb12u2_amd64.deb ...
- Unpacking libcryptsetup12:amd64 (2:2.6.1-4~deb12u2) ...
- Selecting previously unselected package libfdisk1:amd64.
- Preparing to unpack .../05-libfdisk1_2.38.1-5+deb12u3_amd64.deb ...
- Unpacking libfdisk1:amd64 (2.38.1-5+deb12u3) ...
- Selecting previously unselected package libkmod2:amd64.
- Preparing to unpack .../06-libkmod2_30+20221128-1_amd64.deb ...
- Unpacking libkmod2:amd64 (30+20221128-1) ...
- Selecting previously unselected package libapparmor1:amd64.
- Preparing to unpack .../07-libapparmor1_3.0.8-3_amd64.deb ...
- Unpacking libapparmor1:amd64 (3.0.8-3) ...
- Selecting previously unselected package libip4tc2:amd64.
- Preparing to unpack .../08-libip4tc2_1.8.9-2_amd64.deb ...
- Unpacking libip4tc2:amd64 (1.8.9-2) ...
- Selecting previously unselected package libsystemd-shared:amd64.
- Preparing to unpack .../09-libsystemd-shared_252.36-1~deb12u1_amd64.deb ...
- Unpacking libsystemd-shared:amd64 (252.36-1~deb12u1) ...
- Selecting previously unselected package systemd.
- Preparing to unpack .../10-systemd_252.36-1~deb12u1_amd64.deb ...
- Unpacking systemd (252.36-1~deb12u1) ...
- Setting up libargon2-1:amd64 (0~20171227-0.3+deb12u1) ...
- Setting up libjson-c5:amd64 (0.16-2) ...
- Setting up libfdisk1:amd64 (2.38.1-5+deb12u3) ...
- Setting up libkmod2:amd64 (30+20221128-1) ...
- Setting up libapparmor1:amd64 (3.0.8-3) ...
- Setting up libip4tc2:amd64 (1.8.9-2) ...
- Setting up libsystemd-shared:amd64 (252.36-1~deb12u1) ...
- Setting up libdevmapper1.02.1:amd64 (2:1.02.185-2) ...
- Setting up libcryptsetup12:amd64 (2:2.6.1-4~deb12u2) ...
- Setting up systemd (252.36-1~deb12u1) ...
- Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service.
- Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target.
- Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service.
- Initializing machine ID from random generator.
- Creating group 'systemd-journal' with GID 999.
- Creating group 'systemd-network' with GID 998.
- Creating user 'systemd-network' (systemd Network Management) with UID 998 and GID 998.
- Setting up dmsetup (2:1.02.185-2) ...
- Selecting previously unselected package systemd-sysv.
- (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 ... 19662 files and directories currently installed.)
- Preparing to unpack .../00-systemd-sysv_252.36-1~deb12u1_amd64.deb ...
- Unpacking systemd-sysv (252.36-1~deb12u1) ...
- Selecting previously unselected package libdbus-1-3:amd64.
- Preparing to unpack .../01-libdbus-1-3_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking libdbus-1-3:amd64 (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-bin.
- Preparing to unpack .../02-dbus-bin_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus-bin (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-session-bus-common.
- Preparing to unpack .../03-dbus-session-bus-common_1.14.10-1~deb12u1_all.deb ...
- Unpacking dbus-session-bus-common (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-daemon.
- Preparing to unpack .../04-dbus-daemon_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus-daemon (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-system-bus-common.
- Preparing to unpack .../05-dbus-system-bus-common_1.14.10-1~deb12u1_all.deb ...
- Unpacking dbus-system-bus-common (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus.
- Preparing to unpack .../06-dbus_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus (1.14.10-1~deb12u1) ...
- Selecting previously unselected package libnss-systemd:amd64.
- Preparing to unpack .../07-libnss-systemd_252.36-1~deb12u1_amd64.deb ...
- Unpacking libnss-systemd:amd64 (252.36-1~deb12u1) ...
- Selecting previously unselected package libpam-systemd:amd64.
- Preparing to unpack .../08-libpam-systemd_252.36-1~deb12u1_amd64.deb ...
- Unpacking libpam-systemd:amd64 (252.36-1~deb12u1) ...
- Selecting previously unselected package systemd-timesyncd.
- Preparing to unpack .../09-systemd-timesyncd_252.36-1~deb12u1_amd64.deb ...
- Unpacking systemd-timesyncd (252.36-1~deb12u1) ...
- Selecting previously unselected package hicolor-icon-theme.
- Preparing to unpack .../10-hicolor-icon-theme_0.17-2_all.deb ...
- Unpacking hicolor-icon-theme (0.17-2) ...
- Selecting previously unselected package libgdk-pixbuf2.0-common.
- Preparing to unpack .../11-libgdk-pixbuf2.0-common_2.42.10+dfsg-1+deb12u1_all.deb ...
- Unpacking libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u1) ...
- Selecting previously unselected package libglib2.0-0:amd64.
- Preparing to unpack .../12-libglib2.0-0_2.74.6-2+deb12u5_amd64.deb ...
- Unpacking libglib2.0-0:amd64 (2.74.6-2+deb12u5) ...
- Selecting previously unselected package libicu72:amd64.
- Preparing to unpack .../13-libicu72_72.1-3_amd64.deb ...
- Unpacking libicu72:amd64 (72.1-3) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../14-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb ...
- Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../15-shared-mime-info_2.2-1_amd64.deb ...
- Unpacking shared-mime-info (2.2-1) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64.
- Preparing to unpack .../16-libgdk-pixbuf-2.0-0_2.42.10+dfsg-1+deb12u1_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ...
- Selecting previously unselected package gtk-update-icon-cache.
- Preparing to unpack .../17-gtk-update-icon-cache_3.24.38-2~deb12u3_amd64.deb ...
- Unpacking gtk-update-icon-cache (3.24.38-2~deb12u3) ...
- Selecting previously unselected package adwaita-icon-theme.
- Preparing to unpack .../18-adwaita-icon-theme_43-1_all.deb ...
- Unpacking adwaita-icon-theme (43-1) ...
- Selecting previously unselected package aglfn.
- Preparing to unpack .../19-aglfn_1.7+git20191031.4036a9c-2_all.deb ...
- Unpacking aglfn (1.7+git20191031.4036a9c-2) ...
- Selecting previously unselected package at-spi2-common.
- Preparing to unpack .../20-at-spi2-common_2.46.0-5_all.deb ...
- Unpacking at-spi2-common (2.46.0-5) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../21-libxi6_2%3a1.8-1+b1_amd64.deb ...
- Unpacking libxi6:amd64 (2:1.8-1+b1) ...
- Selecting previously unselected package libatspi2.0-0:amd64.
- Preparing to unpack .../22-libatspi2.0-0_2.46.0-5_amd64.deb ...
- Unpacking libatspi2.0-0:amd64 (2.46.0-5) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../23-x11-common_1%3a7.7+23_all.deb ...
- Unpacking x11-common (1:7.7+23) ...
- Selecting previously unselected package libxtst6:amd64.
- Preparing to unpack .../24-libxtst6_2%3a1.2.3-1.1_amd64.deb ...
- Unpacking libxtst6:amd64 (2:1.2.3-1.1) ...
- Selecting previously unselected package dbus-user-session.
- Preparing to unpack .../25-dbus-user-session_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus-user-session (1.14.10-1~deb12u1) ...
- Selecting previously unselected package libdconf1:amd64.
- Preparing to unpack .../26-libdconf1_0.40.0-4_amd64.deb ...
- Unpacking libdconf1:amd64 (0.40.0-4) ...
- Selecting previously unselected package dconf-service.
- Preparing to unpack .../27-dconf-service_0.40.0-4_amd64.deb ...
- Unpacking dconf-service (0.40.0-4) ...
- Selecting previously unselected package dconf-gsettings-backend:amd64.
- Preparing to unpack .../28-dconf-gsettings-backend_0.40.0-4_amd64.deb ...
- Unpacking dconf-gsettings-backend:amd64 (0.40.0-4) ...
- Selecting previously unselected package gsettings-desktop-schemas.
- Preparing to unpack .../29-gsettings-desktop-schemas_43.0-1_all.deb ...
- Unpacking gsettings-desktop-schemas (43.0-1) ...
- Selecting previously unselected package at-spi2-core.
- Preparing to unpack .../30-at-spi2-core_2.46.0-5_amd64.deb ...
- Unpacking at-spi2-core (2.46.0-5) ...
- Selecting previously unselected package fontconfig.
- Preparing to unpack .../31-fontconfig_2.14.1-4_amd64.deb ...
- Unpacking fontconfig (2.14.1-4) ...
- Selecting previously unselected package gnuplot-data.
- Preparing to unpack .../32-gnuplot-data_5.4.4+dfsg1-2_all.deb ...
- Unpacking gnuplot-data (5.4.4+dfsg1-2) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../33-libpixman-1-0_0.42.2-1_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.42.2-1) ...
- Selecting previously unselected package libxcb-render0:amd64.
- Preparing to unpack .../34-libxcb-render0_1.15-1_amd64.deb ...
- Unpacking libxcb-render0:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../35-libxcb-shm0_1.15-1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.15-1) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../36-libxrender1_1%3a0.9.10-1.1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.10-1.1) ...
- Selecting previously unselected package libcairo2:amd64.
- Preparing to unpack .../37-libcairo2_1.16.0-7_amd64.deb ...
- Unpacking libcairo2:amd64 (1.16.0-7) ...
- Selecting previously unselected package liblua5.4-0:amd64.
- Preparing to unpack .../38-liblua5.4-0_5.4.4-3+deb12u1_amd64.deb ...
- Unpacking liblua5.4-0:amd64 (5.4.4-3+deb12u1) ...
- Selecting previously unselected package libfribidi0:amd64.
- Preparing to unpack .../39-libfribidi0_1.0.8-2.1_amd64.deb ...
- Unpacking libfribidi0:amd64 (1.0.8-2.1) ...
- Selecting previously unselected package libgraphite2-3:amd64.
- Preparing to unpack .../40-libgraphite2-3_1.3.14-1_amd64.deb ...
- Unpacking libgraphite2-3:amd64 (1.3.14-1) ...
- Selecting previously unselected package libharfbuzz0b:amd64.
- Preparing to unpack .../41-libharfbuzz0b_6.0.0+dfsg-3_amd64.deb ...
- Unpacking libharfbuzz0b:amd64 (6.0.0+dfsg-3) ...
- Selecting previously unselected package libthai-data.
- Preparing to unpack .../42-libthai-data_0.1.29-1_all.deb ...
- Unpacking libthai-data (0.1.29-1) ...
- Selecting previously unselected package libdatrie1:amd64.
- Preparing to unpack .../43-libdatrie1_0.2.13-2+b1_amd64.deb ...
- Unpacking libdatrie1:amd64 (0.2.13-2+b1) ...
- Selecting previously unselected package libthai0:amd64.
- Preparing to unpack .../44-libthai0_0.1.29-1_amd64.deb ...
- Unpacking libthai0:amd64 (0.1.29-1) ...
- Selecting previously unselected package libpango-1.0-0:amd64.
- Preparing to unpack .../45-libpango-1.0-0_1.50.12+ds-1_amd64.deb ...
- Unpacking libpango-1.0-0:amd64 (1.50.12+ds-1) ...
- Selecting previously unselected package libpangoft2-1.0-0:amd64.
- Preparing to unpack .../46-libpangoft2-1.0-0_1.50.12+ds-1_amd64.deb ...
- Unpacking libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ...
- Selecting previously unselected package libpangocairo-1.0-0:amd64.
- Preparing to unpack .../47-libpangocairo-1.0-0_1.50.12+ds-1_amd64.deb ...
- Unpacking libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ...
- Selecting previously unselected package libpcre2-32-0:amd64.
- Preparing to unpack .../48-libpcre2-32-0_10.42-1_amd64.deb ...
- Unpacking libpcre2-32-0:amd64 (10.42-1) ...
- Selecting previously unselected package libwxbase3.2-1:amd64.
- Preparing to unpack .../49-libwxbase3.2-1_3.2.2+dfsg-2_amd64.deb ...
- Unpacking libwxbase3.2-1:amd64 (3.2.2+dfsg-2) ...
- Selecting previously unselected package libatk1.0-0:amd64.
- Preparing to unpack .../50-libatk1.0-0_2.46.0-5_amd64.deb ...
- Unpacking libatk1.0-0:amd64 (2.46.0-5) ...
- Selecting previously unselected package libatk-bridge2.0-0:amd64.
- Preparing to unpack .../51-libatk-bridge2.0-0_2.46.0-5_amd64.deb ...
- Unpacking libatk-bridge2.0-0:amd64 (2.46.0-5) ...
- Selecting previously unselected package libcairo-gobject2:amd64.
- Preparing to unpack .../52-libcairo-gobject2_1.16.0-7_amd64.deb ...
- Unpacking libcairo-gobject2:amd64 (1.16.0-7) ...
- Selecting previously unselected package liblcms2-2:amd64.
- Preparing to unpack .../53-liblcms2-2_2.14-2_amd64.deb ...
- Unpacking liblcms2-2:amd64 (2.14-2) ...
- Selecting previously unselected package libcolord2:amd64.
- Preparing to unpack .../54-libcolord2_1.4.6-2.2_amd64.deb ...
- Unpacking libcolord2:amd64 (1.4.6-2.2) ...
- Selecting previously unselected package libavahi-common-data:amd64.
- Preparing to unpack .../55-libavahi-common-data_0.8-10+deb12u1_amd64.deb ...
- Unpacking libavahi-common-data:amd64 (0.8-10+deb12u1) ...
- Selecting previously unselected package libavahi-common3:amd64.
- Preparing to unpack .../56-libavahi-common3_0.8-10+deb12u1_amd64.deb ...
- Unpacking libavahi-common3:amd64 (0.8-10+deb12u1) ...
- Selecting previously unselected package libavahi-client3:amd64.
- Preparing to unpack .../57-libavahi-client3_0.8-10+deb12u1_amd64.deb ...
- Unpacking libavahi-client3:amd64 (0.8-10+deb12u1) ...
- Selecting previously unselected package libcups2:amd64.
- Preparing to unpack .../58-libcups2_2.4.2-3+deb12u8_amd64.deb ...
- Unpacking libcups2:amd64 (2.4.2-3+deb12u8) ...
- Selecting previously unselected package libepoxy0:amd64.
- Preparing to unpack .../59-libepoxy0_1.5.10-1_amd64.deb ...
- Unpacking libepoxy0:amd64 (1.5.10-1) ...
- Selecting previously unselected package libwayland-client0:amd64.
- Preparing to unpack .../60-libwayland-client0_1.21.0-1_amd64.deb ...
- Unpacking libwayland-client0:amd64 (1.21.0-1) ...
- Selecting previously unselected package libwayland-cursor0:amd64.
- Preparing to unpack .../61-libwayland-cursor0_1.21.0-1_amd64.deb ...
- Unpacking libwayland-cursor0:amd64 (1.21.0-1) ...
- Selecting previously unselected package libwayland-egl1:amd64.
- Preparing to unpack .../62-libwayland-egl1_1.21.0-1_amd64.deb ...
- Unpacking libwayland-egl1:amd64 (1.21.0-1) ...
- Selecting previously unselected package libxcomposite1:amd64.
- Preparing to unpack .../63-libxcomposite1_1%3a0.4.5-1_amd64.deb ...
- Unpacking libxcomposite1:amd64 (1:0.4.5-1) ...
- Selecting previously unselected package libxfixes3:amd64.
- Preparing to unpack .../64-libxfixes3_1%3a6.0.0-2_amd64.deb ...
- Unpacking libxfixes3:amd64 (1:6.0.0-2) ...
- Selecting previously unselected package libxcursor1:amd64.
- Preparing to unpack .../65-libxcursor1_1%3a1.2.1-1_amd64.deb ...
- Unpacking libxcursor1:amd64 (1:1.2.1-1) ...
- Selecting previously unselected package libxdamage1:amd64.
- Preparing to unpack .../66-libxdamage1_1%3a1.1.6-1_amd64.deb ...
- Unpacking libxdamage1:amd64 (1:1.1.6-1) ...
- Selecting previously unselected package libxinerama1:amd64.
- Preparing to unpack .../67-libxinerama1_2%3a1.1.4-3_amd64.deb ...
- Unpacking libxinerama1:amd64 (2:1.1.4-3) ...
- Selecting previously unselected package xkb-data.
- Preparing to unpack .../68-xkb-data_2.35.1-1_all.deb ...
- Unpacking xkb-data (2.35.1-1) ...
- Selecting previously unselected package libxkbcommon0:amd64.
- Preparing to unpack .../69-libxkbcommon0_1.5.0-1_amd64.deb ...
- Unpacking libxkbcommon0:amd64 (1.5.0-1) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../70-libxrandr2_2%3a1.5.2-2+b1_amd64.deb ...
- Unpacking libxrandr2:amd64 (2:1.5.2-2+b1) ...
- Selecting previously unselected package libgtk-3-common.
- Preparing to unpack .../71-libgtk-3-common_3.24.38-2~deb12u3_all.deb ...
- Unpacking libgtk-3-common (3.24.38-2~deb12u3) ...
- Selecting previously unselected package libgtk-3-0:amd64.
- Preparing to unpack .../72-libgtk-3-0_3.24.38-2~deb12u3_amd64.deb ...
- Unpacking libgtk-3-0:amd64 (3.24.38-2~deb12u3) ...
- Selecting previously unselected package libnotify4:amd64.
- Preparing to unpack .../73-libnotify4_0.8.1-1_amd64.deb ...
- Unpacking libnotify4:amd64 (0.8.1-1) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../74-libice6_2%3a1.0.10-1_amd64.deb ...
- Unpacking libice6:amd64 (2:1.0.10-1) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../75-libsm6_2%3a1.2.3-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.3-1) ...
- Selecting previously unselected package libwxgtk3.2-1:amd64.
- Preparing to unpack .../76-libwxgtk3.2-1_3.2.2+dfsg-2_amd64.deb ...
- Unpacking libwxgtk3.2-1:amd64 (3.2.2+dfsg-2) ...
- Selecting previously unselected package gnuplot-x11.
- Preparing to unpack .../77-gnuplot-x11_5.4.4+dfsg1-2+b2_amd64.deb ...
- Unpacking gnuplot-x11 (5.4.4+dfsg1-2+b2) ...
- Selecting previously unselected package libgdk-pixbuf2.0-bin.
- Preparing to unpack .../78-libgdk-pixbuf2.0-bin_2.42.10+dfsg-1+deb12u1_amd64.deb ...
- Unpacking libgdk-pixbuf2.0-bin (2.42.10+dfsg-1+deb12u1) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../79-libglib2.0-data_2.74.6-2+deb12u5_all.deb ...
- Unpacking libglib2.0-data (2.74.6-2+deb12u5) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../80-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 .../81-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgtk-3-bin.
- Preparing to unpack .../82-libgtk-3-bin_3.24.38-2~deb12u3_amd64.deb ...
- Unpacking libgtk-3-bin (3.24.38-2~deb12u3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../83-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package librsvg2-2:amd64.
- Preparing to unpack .../84-librsvg2-2_2.54.7+dfsg-1~deb12u1_amd64.deb ...
- Unpacking librsvg2-2:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Selecting previously unselected package librsvg2-common:amd64.
- Preparing to unpack .../85-librsvg2-common_2.54.7+dfsg-1~deb12u1_amd64.deb ...
- Unpacking librsvg2-common:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../86-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../87-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../88-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../89-xdg-user-dirs_0.18-1_amd64.deb ...
- Unpacking xdg-user-dirs (0.18-1) ...
- Setting up libgraphite2-3:amd64 (1.3.14-1) ...
- Setting up liblcms2-2:amd64 (2.14-2) ...
- Setting up libpixman-1-0:amd64 (0.42.2-1) ...
- Setting up fontconfig (2.14.1-4) ...
- Regenerating fonts cache...
- done.
- Setting up systemd-sysv (252.36-1~deb12u1) ...
- Setting up libxdamage1:amd64 (1:1.1.6-1) ...
- Setting up libicu72:amd64 (72.1-3) ...
- Setting up hicolor-icon-theme (0.17-2) ...
- Setting up libxi6:amd64 (2:1.8-1+b1) ...
- Setting up libxrender1:amd64 (1:0.9.10-1.1) ...
- Setting up libdatrie1:amd64 (0.2.13-2+b1) ...
- Setting up xdg-user-dirs (0.18-1) ...
- Setting up libxcb-render0:amd64 (1.15-1) ...
- Setting up libglib2.0-0:amd64 (2.74.6-2+deb12u5) ...
- Setting up libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u1) ...
- Setting up x11-common (1:7.7+23) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of restart.
- Setting up libnss-systemd:amd64 (252.36-1~deb12u1) ...
- Setting up xkb-data (2.35.1-1) ...
- Setting up libxcb-shm0:amd64 (1.15-1) ...
- Setting up libcairo2:amd64 (1.16.0-7) ...
- Setting up libcolord2:amd64 (1.4.6-2.2) ...
- Setting up libdconf1:amd64 (0.40.0-4) ...
- Setting up libpcre2-32-0:amd64 (10.42-1) ...
- Setting up libglib2.0-data (2.74.6-2+deb12u5) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libepoxy0:amd64 (1.5.10-1) ...
- Setting up libxfixes3:amd64 (1:6.0.0-2) ...
- Setting up aglfn (1.7+git20191031.4036a9c-2) ...
- Setting up libavahi-common-data:amd64 (0.8-10+deb12u1) ...
- Setting up libdbus-1-3:amd64 (1.14.10-1~deb12u1) ...
- Setting up libfribidi0:amd64 (1.0.8-2.1) ...
- Setting up libxinerama1:amd64 (2:1.1.4-3) ...
- Setting up systemd-timesyncd (252.36-1~deb12u1) ...
- Creating group 'systemd-timesync' with GID 997.
- Creating user 'systemd-timesync' (systemd Time Synchronization) with UID 997 and GID 997.
- Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service.
- Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service.
- Setting up libxrandr2:amd64 (2:1.5.2-2+b1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up at-spi2-common (2.46.0-5) ...
- Setting up dbus-session-bus-common (1.14.10-1~deb12u1) ...
- Setting up liblua5.4-0:amd64 (5.4.4-3+deb12u1) ...
- Setting up libharfbuzz0b:amd64 (6.0.0+dfsg-3) ...
- Setting up libthai-data (0.1.29-1) ...
- Setting up libcairo-gobject2:amd64 (1.16.0-7) ...
- Setting up libatk1.0-0:amd64 (2.46.0-5) ...
- Setting up libwayland-egl1:amd64 (1.21.0-1) ...
- Setting up dbus-system-bus-common (1.14.10-1~deb12u1) ...
- Setting up libxcomposite1:amd64 (1:0.4.5-1) ...
- Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
- Setting up dbus-bin (1.14.10-1~deb12u1) ...
- Setting up libxkbcommon0:amd64 (1.5.0-1) ...
- Setting up libwayland-client0:amd64 (1.21.0-1) ...
- Setting up gnuplot-data (5.4.4+dfsg1-2) ...
- Setting up libice6:amd64 (2:1.0.10-1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libxtst6:amd64 (2:1.2.3-1.1) ...
- Setting up libxcursor1:amd64 (1:1.2.1-1) ...
- Setting up libavahi-common3:amd64 (0.8-10+deb12u1) ...
- Setting up dbus-daemon (1.14.10-1~deb12u1) ...
- Setting up libatspi2.0-0:amd64 (2.46.0-5) ...
- Setting up libwxbase3.2-1:amd64 (3.2.2+dfsg-2) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up libatk-bridge2.0-0:amd64 (2.46.0-5) ...
- Setting up libthai0:amd64 (0.1.29-1) ...
- Setting up dbus (1.14.10-1~deb12u1) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up shared-mime-info (2.2-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Setting up libwayland-cursor0:amd64 (1.21.0-1) ...
- Setting up libpam-systemd:amd64 (252.36-1~deb12u1) ...
- Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ...
- Setting up libsm6:amd64 (2:1.2.3-1) ...
- Setting up libavahi-client3:amd64 (0.8-10+deb12u1) ...
- Setting up gtk-update-icon-cache (3.24.38-2~deb12u3) ...
- Setting up libpango-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up dbus-user-session (1.14.10-1~deb12u1) ...
- Setting up adwaita-icon-theme (43-1) ...
- update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode
- Setting up libnotify4:amd64 (0.8.1-1) ...
- Setting up libcups2:amd64 (2.4.2-3+deb12u8) ...
- Setting up libgdk-pixbuf2.0-bin (2.42.10+dfsg-1+deb12u1) ...
- Setting up libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up dconf-service (0.40.0-4) ...
- Setting up librsvg2-2:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Setting up librsvg2-common:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Setting up dconf-gsettings-backend:amd64 (0.40.0-4) ...
- Setting up libgtk-3-common (3.24.38-2~deb12u3) ...
- Setting up gsettings-desktop-schemas (43.0-1) ...
- Setting up libgtk-3-0:amd64 (3.24.38-2~deb12u3) ...
- Setting up libgtk-3-bin (3.24.38-2~deb12u3) ...
- Setting up at-spi2-core (2.46.0-5) ...
- Setting up libwxgtk3.2-1:amd64 (3.2.2+dfsg-2) ...
- Setting up gnuplot-x11 (5.4.4+dfsg1-2+b2) ...
- update-alternatives: using /usr/bin/gnuplot-x11 to provide /usr/bin/gnuplot (gnuplot) in auto mode
- Processing triggers for libc-bin (2.36-9+deb12u10) ...
- Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.5.0 (https://github.com/mirage/alcotest/releases/download/1.5.0/alcotest-js-1.5.0.tbz)
-> retrieved angstrom.0.16.1 (https://github.com/inhabitedtype/angstrom/archive/0.16.1.tar.gz)
-> retrieved arp.3.1.1 (https://github.com/mirage/arp/releases/download/v3.1.1/arp-3.1.1.tbz)
-> retrieved asn1-combinators.0.2.6 (https://github.com/mirleft/ocaml-asn1-combinators/releases/download/v0.2.6/asn1-combinators-v0.2.6.tbz)
-> retrieved awa.0.0.5, awa-mirage.0.0.5 (https://github.com/mirage/awa-ssh/releases/download/v0.0.5/awa-0.0.5.tbz)
-> retrieved base.v0.16.4 (https://github.com/janestreet/base/archive/refs/tags/v0.16.4.tar.gz)
-> retrieved bigarray-compat.1.1.0 (https://github.com/mirage/bigarray-compat/releases/download/v1.1.0/bigarray-compat-1.1.0.tbz)
-> retrieved bigstringaf.0.8.0 (https://github.com/inhabitedtype/bigstringaf/archive/0.8.0.tar.gz)
-> installed bigarray-compat.1.1.0
-> retrieved bos.0.2.1 (https://erratique.ch/software/bos/releases/bos-0.2.1.tbz)
-> retrieved ca-certs.0.2.3 (https://github.com/mirage/ca-certs/releases/download/v0.2.3/ca-certs-0.2.3.tbz)
-> retrieved ca-certs-nss.3.74 (https://github.com/mirage/ca-certs-nss/releases/download/v3.74/ca-certs-nss-3.74.tbz)
-> retrieved carton.0.4.3, carton-git.0.4.3, carton-lwt.0.4.3 (https://github.com/mirage/ocaml-git/releases/download/carton-v0.4.3/carton-carton-v0.4.3.tbz)
-> retrieved cmdliner.1.0.4 (http://erratique.ch/software/cmdliner/releases/cmdliner-1.0.4.tbz)
-> retrieved cohttp.5.1.0, cohttp-lwt.5.1.0, cohttp-lwt-unix.5.1.0 (https://github.com/mirage/ocaml-cohttp/releases/download/v5.1.0/cohttp-v5.1.0.tbz)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (https://github.com/mirage/ocaml-conduit/releases/download/v8.0.0/conduit-8.0.0.tbz)
-> retrieved conf-gmp.5 (https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-gmp/test.c.4)
-> installed conf-gmp.5
-> retrieved conf-gmp-powm-sec.4 (https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-gmp-powm-sec/test.c.3)
-> installed conf-pkg-config.4
-> installed conf-gmp-powm-sec.4
-> installed conf-gnuplot.0.1
-> retrieved cstruct.6.0.1, cstruct-lwt.6.0.1, cstruct-sexp.6.0.1, cstruct-unix.6.0.1, ppx_cstruct.6.0.1 (https://github.com/mirage/ocaml-cstruct/releases/download/v6.0.1/cstruct-v6.0.1.tbz)
-> retrieved decompress.1.4.2 (https://github.com/mirage/decompress/releases/download/v1.4.2/decompress-v1.4.2.tbz)
-> retrieved digestif.1.2.0 (https://github.com/mirage/digestif/releases/download/v1.2.0/digestif-1.2.0.tbz)
-> retrieved duff.0.5 (https://github.com/mirage/duff/releases/download/v0.5/duff-0.5.tbz)
-> retrieved duration.0.2.1 (https://github.com/hannesm/duration/releases/download/v0.2.1/duration-0.2.1.tbz)
-> installed duration.0.2.1
-> retrieved emile.1.1 (https://github.com/dinosaure/emile/releases/download/v1.1/emile-v1.1.tbz)
-> retrieved encore.0.8.1 (https://github.com/mirage/encore/releases/download/v0.8.1/encore-0.8.1.tbz)
-> retrieved eqaf.0.9 (https://github.com/mirage/eqaf/releases/download/v0.9/eqaf-0.9.tbz)
-> retrieved ethernet.3.2.0 (https://github.com/mirage/ethernet/releases/download/v3.2.0/ethernet-3.2.0.tbz)
-> retrieved fmt.0.9.0 (https://erratique.ch/software/fmt/releases/fmt-0.9.0.tbz)
-> retrieved git.3.6.0, git-cohttp.3.6.0, git-cohttp-unix.3.6.0, git-unix.3.6.0 (https://github.com/mirage/ocaml-git/releases/download/3.6.0/git-3.6.0.tbz)
-> retrieved gmap.0.3.0 (https://github.com/hannesm/gmap/releases/download/0.3.0/gmap-0.3.0.tbz)
-> installed gmap.0.3.0
-> retrieved hkdf.1.0.4 (https://github.com/hannesm/ocaml-hkdf/releases/download/v1.0.4/hkdf-v1.0.4.tbz)
-> retrieved hxd.0.3.1 (https://github.com/dinosaure/hxd/releases/download/v0.3.1/hxd-v0.3.1.tbz)
-> retrieved ipaddr-sexp.5.6.0, macaddr-cstruct.5.6.0 (https://github.com/mirage/ocaml-ipaddr/releases/download/v5.6.0/ipaddr-5.6.0.tbz)
-> retrieved irmin.2.6.1, irmin-git.2.6.1, irmin-layers.2.6.1, irmin-test.2.6.1, ppx_irmin.2.6.1 (https://github.com/mirage/irmin/releases/download/2.6.1/irmin-2.6.1.tbz)
-> retrieved jsonm.1.0.2 (https://erratique.ch/software/jsonm/releases/jsonm-1.0.2.tbz)
-> retrieved ke.0.6 (https://github.com/mirage/ke/releases/download/v0.6/ke-0.6.tbz)
-> retrieved logs.0.7.0 (https://erratique.ch/software/logs/releases/logs-0.7.0.tbz)
-> retrieved lru.0.3.1 (https://github.com/pqwy/lru/releases/download/v0.3.1/lru-0.3.1.tbz)
-> installed lru.0.3.1
-> retrieved lwt-dllist.1.0.1 (https://github.com/mirage/lwt-dllist/releases/download/v1.0.1/lwt-dllist-v1.0.1.tbz)
-> installed lwt-dllist.1.0.1
-> retrieved magic-mime.1.3.1 (https://github.com/mirage/ocaml-magic-mime/releases/download/v1.3.1/magic-mime-1.3.1.tbz)
-> retrieved metrics.0.4.1, metrics-unix.0.4.1 (https://github.com/mirage/metrics/releases/download/v0.4.1/metrics-0.4.1.tbz)
-> installed magic-mime.1.3.1
-> retrieved mimic.0.0.6 (https://github.com/dinosaure/mimic/releases/download/0.0.6/mimic-0.0.6.tbz)
-> retrieved mirage-clock.4.2.0, mirage-clock-unix.4.2.0 (https://github.com/mirage/mirage-clock/releases/download/v4.2.0/mirage-clock-4.2.0.tbz)
-> installed mirage-clock.4.2.0
-> retrieved mirage-crypto.0.10.7, mirage-crypto-ec.0.10.7, 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)
-> installed mirage-clock-unix.4.2.0
-> retrieved mirage-flow.3.0.0 (https://github.com/mirage/mirage-flow/releases/download/v3.0.0/mirage-flow-v3.0.0.tbz)
-> retrieved mirage-kv.6.1.1 (https://github.com/mirage/mirage-kv/releases/download/v6.1.1/mirage-kv-6.1.1.tbz)
-> retrieved mirage-net.4.0.0 (https://github.com/mirage/mirage-net/releases/download/v4.0.0/mirage-net-v4.0.0.tbz)
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> retrieved mirage-profile.0.9.1 (https://github.com/mirage/mirage-profile/releases/download/v0.9.1/mirage-profile-v0.9.1.tbz)
-> retrieved mirage-random.3.0.0 (https://github.com/mirage/mirage-random/releases/download/v3.0.0/mirage-random-v3.0.0.tbz)
-> retrieved mirage-time.3.0.0 (https://github.com/mirage/mirage-time/releases/download/v3.0.0/mirage-time-v3.0.0.tbz)
-> installed mirage-time.3.0.0
-> retrieved mmap.1.2.0 (https://github.com/mirage/mmap/releases/download/v1.2.0/mmap-1.2.0.tbz)
-> retrieved mtime.1.4.0 (https://erratique.ch/software/mtime/releases/mtime-1.4.0.tbz)
-> installed mmap.1.2.0
-> retrieved num.1.5-1 (https://github.com/ocaml/num/archive/v1.5.tar.gz)
-> retrieved parsexp.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/parsexp-v0.16.0.tar.gz)
-> retrieved pbkdf.1.2.0 (https://github.com/abeaumont/ocaml-pbkdf/archive/1.2.0.tar.gz)
-> retrieved ppx_deriving.6.0.3 (https://github.com/ocaml-ppx/ppx_deriving/releases/download/v6.0.3/ppx_deriving-6.0.3.tbz)
-> installed mtime.1.4.0
-> installed num.1.5-1
-> retrieved ppx_repr.0.3.0, repr.0.3.0 (https://github.com/mirage/repr/releases/download/0.3.0/repr-fuzz-0.3.0.tbz)
-> retrieved ppx_sexp_conv.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_sexp_conv-v0.16.0.tar.gz)
-> retrieved ppxlib.0.35.0 (https://github.com/ocaml-ppx/ppxlib/releases/download/0.35.0/ppxlib-0.35.0.tbz)
-> retrieved ptime.1.2.0 (https://erratique.ch/software/ptime/releases/ptime-1.2.0.tbz)
-> retrieved randomconv.0.1.3 (https://github.com/hannesm/randomconv/releases/download/v0.1.3/randomconv-v0.1.3.tbz)
-> retrieved re.1.12.0 (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
-> installed ptime.1.2.0
-> retrieved result.1.5 (https://github.com/janestreet/result/releases/download/1.5/result-1.5.tbz)
-> retrieved sexplib.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexplib-v0.16.0.tar.gz)
-> retrieved sexplib0.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexplib0-v0.16.0.tar.gz)
-> installed result.1.5
-> installed re.1.12.0
-> retrieved tcpip.7.1.2 (https://github.com/mirage/mirage-tcpip/releases/download/v7.1.2/tcpip-7.1.2.tbz)
-> removed irmin-git.2.6.1
-> removed git.3.18.0
-> removed carton-git.0.7.2
-> removed carton-lwt.0.7.2
-> removed carton.0.7.2
-> removed bos.0.2.1
-> removed decompress.1.5.3
-> removed duff.0.5
-> removed emile.1.1
-> removed encore.0.8.1
-> removed hxd.0.3.3
-> removed irmin.2.6.1
-> removed digestif.1.2.0
-> removed eqaf.0.10
-> removed ke.0.6
-> removed mimic.0.0.9
-> removed logs.0.8.0
-> removed mirage-flow.5.0.0
-> removed cstruct.6.2.0
-> removed ppx_irmin.2.6.1
-> removed ppx_repr.0.3.0
-> removed ppx_deriving.6.0.3
-> removed ppxlib.0.35.0
-> removed repr.0.3.0
-> removed fmt.0.10.0
-> removed jsonm.1.0.2
-> removed sexplib0.v0.17.0
-> removed uutf.1.0.4
-> removed cmdliner.1.3.0
-> installed cstruct.6.0.1
-> installed sexplib0.v0.16.0
-> installed cstruct-lwt.6.0.1
-> installed cstruct-unix.6.0.1
-> retrieved tls.0.15.4, tls-mirage.0.15.4 (https://github.com/mirleft/ocaml-tls/releases/download/v0.15.4/tls-0.15.4.tbz)
-> installed macaddr-cstruct.5.6.0
-> installed mirage-random.3.0.0
-> installed randomconv.0.1.3
-> installed eqaf.0.9
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (https://github.com/mirage/ocaml-uri/releases/download/v4.4.0/uri-4.4.0.tbz)
-> removed uri.4.4.0
-> removed angstrom.0.16.1
-> removed bigstringaf.0.10.0
-> installed bigstringaf.0.8.0
-> retrieved uuidm.0.9.7 (https://erratique.ch/software/uuidm/releases/uuidm-0.9.7.tbz)
-> retrieved uutf.1.0.3 (https://erratique.ch/software/uutf/releases/uutf-1.0.3.tbz)
-> installed angstrom.0.16.1
-> installed parsexp.v0.16.0
-> installed digestif.1.2.0
-> retrieved x509.0.16.5 (https://github.com/mirleft/ocaml-x509/releases/download/v0.16.5/x509-0.16.5.tbz)
-> retrieved zarith.1.14 (https://github.com/ocaml/Zarith/archive/release-1.14.tar.gz)
-> installed cmdliner.1.0.4
-> installed mirage-crypto.0.10.7
-> installed sexplib.v0.16.0
-> installed uri.4.4.0
-> installed hkdf.1.0.4
-> installed pbkdf.1.2.0
-> installed cstruct-sexp.6.0.1
-> installed uuidm.0.9.7
-> installed uutf.1.0.3
-> installed hxd.0.3.1
-> installed base.v0.16.4
-> installed decompress.1.4.2
-> installed fmt.0.9.0
-> installed emile.1.1
-> installed mirage-net.4.0.0
-> installed duff.0.5
-> installed mirage-flow.3.0.0
-> installed mirage-kv.6.1.1
-> installed zarith.1.14
-> installed encore.0.8.1
-> installed ke.0.6
-> installed metrics.0.4.1
-> installed jsonm.1.0.2
-> installed alcotest.1.5.0
-> installed metrics-unix.0.4.1
-> installed asn1-combinators.0.2.6
-> installed repr.0.3.0
-> installed logs.0.7.0
-> installed ethernet.3.2.0
-> installed mimic.0.0.6
-> installed mirage-crypto-rng.0.10.7
-> installed arp.3.1.1
-> installed mirage-crypto-pk.0.10.7
-> installed bos.0.2.1
-> installed carton.0.4.3
-> installed carton-lwt.0.4.3
-> installed carton-git.0.4.3
-> installed ppxlib.0.35.0
-> installed mirage-crypto-ec.0.10.7
-> installed x509.0.16.5
-> installed git.3.6.0
-> installed ca-certs.0.2.3
-> installed ppx_cstruct.6.0.1
-> installed ca-certs-nss.3.74
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed mirage-profile.0.9.1
-> installed ipaddr-sexp.5.6.0
-> installed uri-sexp.4.4.0
-> installed ppx_repr.0.3.0
-> installed ppx_irmin.2.6.1
-> installed awa.0.0.5
-> installed conduit.8.0.0
-> installed tcpip.7.1.2
-> installed cohttp.5.1.0
-> installed awa-mirage.0.0.5
-> installed conduit-lwt.8.0.0
-> installed tls.0.15.4
-> installed tls-mirage.0.15.4
-> installed cohttp-lwt.5.1.0
-> installed git-cohttp.3.6.0
-> installed conduit-lwt-unix.8.0.0
-> installed irmin.2.6.1
-> installed cohttp-lwt-unix.5.1.0
-> installed git-cohttp-unix.3.6.0
-> installed irmin-layers.2.6.1
-> installed git-unix.3.6.0
-> installed irmin-test.2.6.1
-> installed irmin-git.2.6.1
Done.
<><> mirage-random.3.0.0 installed successfully <><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
=> mirage-random is deprecated
<><> mirage-profile.0.9.1 installed successfully ><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
=> mirage-profile is deprecated
<><> 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.
<><> git-cohttp-unix.3.6.0 installed successfully <><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
<><> git-cohttp.3.6.0 installed successfully ><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-04-15 21:16.42 ---> saved as "052bbd3ea27cb8fafc75ea706daaf49d5e5b551249e1a5f25af1d49c9c39f421"
/home/opam: (run (shell "opam reinstall --with-test --verbose irmin-git.2.6.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'irmin-git.2.6.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile irmin-git 2.6.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [irmin-git.2.6.1: extract]
-> retrieved irmin-git.2.6.1 (cached)
Processing 2/4: [irmin-git: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "irmin-git" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/irmin-git.2.6.1)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/irmin-git/.irmin_git.objs/byte -I src/irmin-git/.irmin_git.objs/native -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/bheap -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/carton -I /home/opam/.opam/4.14/lib/carton-git -I /home/opam/.opam/4.14/lib/carton-lwt -I /home/opam/.opam/4.14/lib/carton/thin -I /home/opam/.opam/4.14/lib/checkseum -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/decompress/de -I /home/opam/.opam/4.14/lib/decompress/zl -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duff -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/emile -I /home/opam/.opam/4.14/lib/encore -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/git -I /home/opam/.opam/4.14/lib/git/loose -I /home/opam/.opam/4.14/lib/git/loose-git -I /home/opam/.opam/4.14/lib/git/nss -I /home/opam/.opam/4.14/lib/git/nss/git -I /home/opam/.opam/4.14/lib/git/nss/hkt -I /home/opam/.opam/4.14/lib/git/nss/neg -I /home/opam/.opam/4.14/lib/git/nss/pck -I /home/opam/.opam/4.14/lib/git/nss/pkt-line -I /home/opam/.opam/4.14/lib/git/nss/sigs -I /home/opam/.opam/4.14/lib/git/nss/smart -I /home/opam/.opam/4.14/lib/git/nss/smart-flow -I /home/opam/.opam/4.14/lib/git/nss/unixiz -I /home/opam/.opam/4.14/lib/hxd/core -I /home/opam/.opam/4.14/lib/hxd/string -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/irmin -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mimic -I /home/opam/.opam/4.14/lib/mirage-flow -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/repr -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -intf-suffix .ml -no-alias-deps -open Irmin_git__ -o src/irmin-git/.irmin_git.objs/native/irmin_git.cmx -c -impl src/irmin-git/irmin_git.pp.ml)
- File "src/irmin-git/irmin_git.ml", line 104, characters 17-26:
- 104 | | Error e -> Fmt.kstrf Lwt.fail_with "%a" G.pp_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 128, characters 23-32:
- 128 | | Error e -> Fmt.kstrf Lwt.fail_with "%a" G.pp_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 135, characters 19-28:
- 135 | | Error e -> Fmt.kstrf Lwt.fail_with "%a" G.pp_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 483, characters 24-32:
- 483 | | _ -> Error (`Msg (Fmt.strf "%s is not a valid branch" str))
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/irmin-git/irmin_git.ml", line 514, characters 19-28:
- 514 | | Error e -> Fmt.kstrf Lwt.fail_with "%a" G.pp_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 546, characters 19-28:
- 546 | | Error e -> Fmt.kstrf Lwt.fail_with "%a" G.pp_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 601, characters 25-34:
- 601 | | Error e -> Fmt.kstrf Lwt.fail_with "%a" G.pp_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 669, characters 25-34:
- 669 | | Error e -> Fmt.kstrf Lwt.fail_with "%a" G.pp_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 736, characters 17-26:
- 736 | let msgf fmt = Fmt.kstrf (fun err -> `Msg err) fmt
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 762, characters 8-17:
- 762 | Fmt.kstrf (fun e -> Lwt.return (Error (`Msg e))) "%a" S.pp_error err
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 792, characters 32-40:
- 792 | | Error err -> Error (`Msg (Fmt.strf "%a" S.pp_error err))
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/irmin-git/irmin_git.ml", line 820, characters 24-32:
- 820 | | _ -> Error (`Msg (Fmt.strf "%s is not a valid reference" str))
- ^^^^^^^^
- 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 src/irmin-git/.irmin_git.objs/byte -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/bheap -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/carton -I /home/opam/.opam/4.14/lib/carton-git -I /home/opam/.opam/4.14/lib/carton-lwt -I /home/opam/.opam/4.14/lib/carton/thin -I /home/opam/.opam/4.14/lib/checkseum -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/decompress/de -I /home/opam/.opam/4.14/lib/decompress/zl -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duff -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/emile -I /home/opam/.opam/4.14/lib/encore -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/git -I /home/opam/.opam/4.14/lib/git/loose -I /home/opam/.opam/4.14/lib/git/loose-git -I /home/opam/.opam/4.14/lib/git/nss -I /home/opam/.opam/4.14/lib/git/nss/git -I /home/opam/.opam/4.14/lib/git/nss/hkt -I /home/opam/.opam/4.14/lib/git/nss/neg -I /home/opam/.opam/4.14/lib/git/nss/pck -I /home/opam/.opam/4.14/lib/git/nss/pkt-line -I /home/opam/.opam/4.14/lib/git/nss/sigs -I /home/opam/.opam/4.14/lib/git/nss/smart -I /home/opam/.opam/4.14/lib/git/nss/smart-flow -I /home/opam/.opam/4.14/lib/git/nss/unixiz -I /home/opam/.opam/4.14/lib/hxd/core -I /home/opam/.opam/4.14/lib/hxd/string -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/irmin -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mimic -I /home/opam/.opam/4.14/lib/mirage-flow -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/repr -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -intf-suffix .ml -no-alias-deps -open Irmin_git__ -o src/irmin-git/.irmin_git.objs/byte/irmin_git.cmo -c -impl src/irmin-git/irmin_git.pp.ml)
- File "src/irmin-git/irmin_git.ml", line 104, characters 17-26:
- 104 | | Error e -> Fmt.kstrf Lwt.fail_with "%a" G.pp_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 128, characters 23-32:
- 128 | | Error e -> Fmt.kstrf Lwt.fail_with "%a" G.pp_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 135, characters 19-28:
- 135 | | Error e -> Fmt.kstrf Lwt.fail_with "%a" G.pp_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 483, characters 24-32:
- 483 | | _ -> Error (`Msg (Fmt.strf "%s is not a valid branch" str))
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/irmin-git/irmin_git.ml", line 514, characters 19-28:
- 514 | | Error e -> Fmt.kstrf Lwt.fail_with "%a" G.pp_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 546, characters 19-28:
- 546 | | Error e -> Fmt.kstrf Lwt.fail_with "%a" G.pp_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 601, characters 25-34:
- 601 | | Error e -> Fmt.kstrf Lwt.fail_with "%a" G.pp_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 669, characters 25-34:
- 669 | | Error e -> Fmt.kstrf Lwt.fail_with "%a" G.pp_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 736, characters 17-26:
- 736 | let msgf fmt = Fmt.kstrf (fun err -> `Msg err) fmt
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 762, characters 8-17:
- 762 | Fmt.kstrf (fun e -> Lwt.return (Error (`Msg e))) "%a" S.pp_error err
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin-git/irmin_git.ml", line 792, characters 32-40:
- 792 | | Error err -> Error (`Msg (Fmt.strf "%a" S.pp_error err))
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/irmin-git/irmin_git.ml", line 820, characters 24-32:
- 820 | | _ -> Error (`Msg (Fmt.strf "%s is not a valid reference" str))
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
Processing 2/4: [irmin-git: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "irmin-git" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/irmin-git.2.6.1)
- (cd _build/default/test/irmin-git && ./test.exe -q --color=always)
- Testing `irmin-git'.
- This run has ID `Z4KNGW20'.
-
- [OK] GIT 0 Basic operations on contents.
- [OK] GIT 1 Basic operations on nodes.
- [OK] GIT 2 Basic operations on commits.
- [OK] GIT 3 Basic operations on branches.
- [OK] GIT 4 Hash operations on trees.
- [OK] GIT 5 Basic merge operations.
- [OK] GIT 6 Basic operations on slices.
- [OK] GIT 7 Test merges on tree updates.
- [OK] GIT 8 Tree caches and hashconsing.
- [OK] GIT 9 Complex histories.
- [OK] GIT 10 Empty stores.
- [OK] GIT 11 Private node manipulation.
- [OK] GIT 12 High-level store operations.
- [OK] GIT 13 High-level operations on trees.
- [OK] GIT 14 High-level store synchronisa...
- [OK] GIT 15 High-level store merges.
- [OK] GIT 16 Unrelated merges.
- [OK] GIT 17 Low-level concurrency.
- [OK] GIT 18 Concurrent updates.
- [OK] GIT 19 with_tree strategies.
- [OK] GIT 20 Concurrent head updates.
- [OK] GIT 21 Concurrent merges.
- [OK] GIT 22 Shallow objects.
- [OK] GIT 23 Closure with disconnected co...
- [OK] GIT 24 Clear.
- [OK] GIT 25 Graph.Iter.
- [OK] GIT 26 Watch.Callbacks and exceptions.
- [OK] GIT 27 Watch.Basic operations.
- [OK] GIT.generic 0 Basic operations on contents.
- [OK] GIT.generic 1 Basic operations on nodes.
- [OK] GIT.generic 2 Basic operations on commits.
- [OK] GIT.generic 3 Basic operations on branches.
- [OK] GIT.generic 4 Hash operations on trees.
- [OK] GIT.generic 5 Basic merge operations.
- [OK] GIT.generic 6 Basic operations on slices.
- [OK] GIT.generic 7 Test merges on tree updates.
- [OK] GIT.generic 8 Tree caches and hashconsing.
- [OK] GIT.generic 9 Complex histories.
- [OK] GIT.generic 10 Empty stores.
- [OK] GIT.generic 11 Private node manipulation.
- [OK] GIT.generic 12 High-level store operations.
- [OK] GIT.generic 13 High-level operations on trees.
- [OK] GIT.generic 14 High-level store synchronisa...
- [OK] GIT.generic 15 High-level store merges.
- [OK] GIT.generic 16 Unrelated merges.
- [OK] GIT.generic 17 Low-level concurrency.
- [OK] GIT.generic 18 Concurrent updates.
- [OK] GIT.generic 19 with_tree strategies.
- [OK] GIT.generic 20 Concurrent head updates.
- [OK] GIT.generic 21 Concurrent merges.
- [OK] GIT.generic 22 Shallow objects.
- [OK] GIT.generic 23 Closure with disconnected co...
- [OK] GIT.generic 24 Clear.
- [OK] GIT.generic 25 Graph.Iter.
- [OK] GIT.generic 26 Watch.Callbacks and exceptions.
- [OK] GIT.generic 27 Watch.Basic operations.
- [OK] SLOW_GIT 0 Commit wide node.
- [SKIP] SLOW_GIT 1 Wide nodes.
- [OK] SLOW_GIT.generic 0 Commit wide node.
- [SKIP] SLOW_GIT.generic 1 Wide nodes.
- [OK] misc 0 Testing sort order.
- [OK] misc 1 Testing sort order (generic).
- [OK] misc 2 Testing listing refs.
- [OK] misc 3 git -> mem.
- [OK] misc 4 git blobs.
- [OK] misc 5 git blobs of generic.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/irmin-git.2.6.1/_build/default/test/irmin-git/_build/_tests/irmin-git'.
- Test Successful in 45.047s. 64 tests run.
- +28827us tls.config [DEBUG] client with ((ciphers
- (AES_128_GCM_SHA256 AES_256_GCM_SHA384 CHACHA20_POLY1305_SHA256
- AES_128_CCM_SHA256 DHE_RSA_WITH_AES_256_GCM_SHA384
- DHE_RSA_WITH_AES_128_GCM_SHA256 DHE_RSA_WITH_AES_256_CCM
- DHE_RSA_WITH_AES_128_CCM DHE_RSA_WITH_CHACHA20_POLY1305_SHA256
- ECDHE_RSA_WITH_AES_128_GCM_SHA256 ECDHE_RSA_WITH_AES_256_GCM_SHA384
- ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
- ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
- ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256))
- (protocol_versions (TLS_1_2 TLS_1_3))
- (signature_algorithms
- (ECDSA_SECP256R1_SHA256 ECDSA_SECP384R1_SHA384 ECDSA_SECP521R1_SHA512
- ED25519 RSA_PSS_RSAENC_SHA256 RSA_PSS_RSAENC_SHA384 RSA_PSS_RSAENC_SHA512
- RSA_PKCS1_SHA256 RSA_PKCS1_SHA384 RSA_PKCS1_SHA512 RSA_PKCS1_SHA224
- ECDSA_SECP256R1_SHA1 RSA_PKCS1_SHA1 RSA_PKCS1_MD5))
- (use_reneg false) (authenticator (Authenticator)) (peer_name ())
- (own_certificates None) (acceptable_cas ()) (session_cache SESSION_CACHE)
- (ticket_cache TICKET_CACHE) (cached_session ()) (cached_ticket ())
- (alpn_protocols ())
- (groups
- (X25519 P384 P256 P521 FFDHE2048 FFDHE3072 FFDHE4096 FFDHE6144 FFDHE8192))
- (zero_rtt 0) (ip ()))
- +29130us irmin.git [DEBUG] Tree.encode_bin
- +30027us irmin.git [DEBUG] Tree.encode_bin
- +31370us irmin.git [DEBUG] Tree.encode_bin
- +32053us irmin.git [DEBUG] Tree.encode_bin
- +32359us irmin.git [DEBUG] Tree.encode_bin
- +33568us irmin.git [DEBUG] Tree.encode_bin
-> compiled irmin-git.2.6.1
-> removed irmin-git.2.6.1
-> installed irmin-git.2.6.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-15 21:17.40 ---> saved as "70cde4f9e693432cfb8fa3038329f4b2f6340955e6fb20bffe3fe206ad1620e9"
Job succeeded
2025-04-15 21:17.51: Job succeeded