(for PR #23330)

2024-04-17 20:44.03: New job: test irmin-unix.2.9.0 with conf-gmp.5, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/23330/head (e065de656cee71750ee448a95ca37886f41c1cd4)
                              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/23330/head" && git reset --hard e065de65
git fetch origin master
git merge --no-edit f089d8564db935c703bea70a4b3d8335ffa1bef3
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:cf8d7fbd6be04384c5ea9d5daa691b0e785464d4f78abd504e650892e6f5db95
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMSOLVERTIMEOUT="500"
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
ENV OPAMCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMFIXUPCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMUPGRADECRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
RUN opam pin add -k version -yn conf-gmp.5 5
RUN opam reinstall conf-gmp.5; \
    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.5' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
ENV OPAMCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMFIXUPCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMUPGRADECRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
RUN opam reinstall irmin-unix.2.9.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" != 'irmin-unix.2.9.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
ENV OPAMCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMFIXUPCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMUPGRADECRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
RUN (opam reinstall --with-test irmin-unix.2.9.0) || true
RUN opam reinstall --with-test --verbose irmin-unix.2.9.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" != 'irmin-unix.2.9.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 .

2024-04-17 20:44.03: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:cf8d7fbd6be04384c5ea9d5daa691b0e785464d4f78abd504e650892e6f5db95-conf-gmp.5-irmin-unix.2.9.0-e065de656cee71750ee448a95ca37886f41c1cd4"
2024-04-17 20:44.03: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:cf8d7fbd6be04384c5ea9d5daa691b0e785464d4f78abd504e650892e6f5db95)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMSOLVERTIMEOUT 500)
 (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"))
 (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (run (shell "opam pin add -k version -yn conf-gmp.5 5"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall conf-gmp.5;\
             \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.5' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall irmin-unix.2.9.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\" != 'irmin-unix.2.9.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (run (network host)
      (shell "(opam reinstall --with-test irmin-unix.2.9.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose irmin-unix.2.9.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\" != 'irmin-unix.2.9.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2024-04-17 20:44.03: Waiting for resource in pool OCluster
2024-04-18 04:26.18: Waiting for worker…
2024-04-18 04:30.58: Got resource from pool OCluster
Building on x86-bm-c5.sw.ocaml.org
All commits already cached
Updating files:  51% (17167/33527)
Updating files:  52% (17435/33527)
Updating files:  53% (17770/33527)
Updating files:  54% (18105/33527)
Updating files:  55% (18440/33527)
Updating files:  56% (18776/33527)
Updating files:  57% (19111/33527)
Updating files:  58% (19446/33527)
Updating files:  59% (19781/33527)
Updating files:  60% (20117/33527)
Updating files:  61% (20452/33527)
Updating files:  62% (20787/33527)
Updating files:  63% (21123/33527)
Updating files:  64% (21458/33527)
Updating files:  65% (21793/33527)
Updating files:  66% (22128/33527)
Updating files:  67% (22464/33527)
Updating files:  68% (22799/33527)
Updating files:  69% (23134/33527)
Updating files:  70% (23469/33527)
Updating files:  71% (23805/33527)
Updating files:  72% (24140/33527)
Updating files:  73% (24475/33527)
Updating files:  74% (24810/33527)
Updating files:  75% (25146/33527)
Updating files:  76% (25481/33527)
Updating files:  77% (25816/33527)
Updating files:  78% (26152/33527)
Updating files:  79% (26487/33527)
Updating files:  80% (26822/33527)
Updating files:  81% (27157/33527)
Updating files:  82% (27493/33527)
Updating files:  83% (27828/33527)
Updating files:  84% (28163/33527)
Updating files:  85% (28498/33527)
Updating files:  86% (28834/33527)
Updating files:  87% (29169/33527)
Updating files:  88% (29504/33527)
Updating files:  89% (29840/33527)
Updating files:  90% (30175/33527)
Updating files:  91% (30510/33527)
Updating files:  92% (30845/33527)
Updating files:  93% (31181/33527)
Updating files:  94% (31516/33527)
Updating files:  95% (31851/33527)
Updating files:  96% (32186/33527)
Updating files:  97% (32522/33527)
Updating files:  98% (32857/33527)
Updating files:  99% (33192/33527)
Updating files: 100% (33527/33527)
Updating files: 100% (33527/33527), done.
HEAD is now at f089d8564d Merge pull request #25672 from gborough/opam-publish-fred.0.1.0
Merge made by the 'ort' strategy.
 .../conf-gmp-powm-sec.4/files/test.c               | 26 ++++++++++++
 .../conf-gmp-powm-sec/conf-gmp-powm-sec.4/opam     | 17 ++++++++
 packages/conf-gmp/conf-gmp.5/files/test.c          | 10 +++++
 packages/conf-gmp/conf-gmp.5/opam                  | 32 +++++++++++++++
 packages/zarith/zarith.1.12-1/opam                 | 47 ++++++++++++++++++++++
 5 files changed, 132 insertions(+)
 create mode 100644 packages/conf-gmp-powm-sec/conf-gmp-powm-sec.4/files/test.c
 create mode 100644 packages/conf-gmp-powm-sec/conf-gmp-powm-sec.4/opam
 create mode 100644 packages/conf-gmp/conf-gmp.5/files/test.c
 create mode 100644 packages/conf-gmp/conf-gmp.5/opam
 create mode 100644 packages/zarith/zarith.1.12-1/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:cf8d7fbd6be04384c5ea9d5daa691b0e785464d4f78abd504e650892e6f5db95)
2024-04-18 04:31.01 ---> using "d067232bc6d554f704d96db510d98a09db454469d02feddab0e42aad928d63b1" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2024-04-18 04:31.01 ---> using "7ba6a357838d0c6dffd1ab84838aef33228d8bff6c010809eaf5038f14c36c3b" 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~alpha, which can't be reverted.
You may want to back it up before going further.

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-04-18 04:31.01 ---> using "983e95dd5ec1a58f04d02949e9a3380e2545ed1ff23babc42a673f7a3da56de8" from cache

/home/opam: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-102-generic
The OCaml toplevel, version 4.14.2
2.2.0~beta3~dev
2024-04-18 04:31.01 ---> using "ac3343965a00b30b35efd8593357dec9874e8fd8b4f43fe80af589440a734a31" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMSOLVERTIMEOUT 500)

/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/"))
2024-04-18 04:31.01 ---> using "ef9e56a00980413d97b6bd05c1cd108fd97f547588ffc026c7f1b66f3c95fc80" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2024-04-18 04:31.03 ---> using "b5d86228d6098a612d6a831f8f85904a5e47fe1c1978d02c3cd9ab0665a511b8" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-04-18 04:31.03 ---> using "9512aec6c8046c634ff06a0fbceae3d912b905ef573ca5616b11eb9dc90e068c" 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 [154 kB]
- Fetched 257 kB in 0s (1109 kB/s)
- Reading package lists...
- 
2024-04-18 04:31.03 ---> using "9310ba51c07330e3d54b9ecad5ab683190144dc649aec4b9a893fb7c643d6794" from cache

/home/opam: (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (run (shell "opam pin add -k version -yn conf-gmp.5 5"))
conf-gmp is now pinned to version 5
2024-04-18 04:31.03 ---> using "531233f8ed84704d4cc979aa61b52c64fd222d12f59b4ca12b6c2c85fea67cab" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall conf-gmp.5;\
                        \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.5' && 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.5 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 2 packages
  - install conf-gmp        5 (pinned)
  - install conf-pkg-config 3          [required by conf-gmp]

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

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

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

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- 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 ... 18735 files and directories currently installed.)
- Preparing to unpack .../0-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 .../1-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 libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-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 libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-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+deb12u4) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-pkg-config.3
-> installed conf-gmp.5
Done.
# Run eval $(opam env) to update the current shell environment
2024-04-18 04:31.03 ---> using "5b7e2b87c3b8be4a6c6c3e2d4142a00fa3e9b72d54a684600f4d2633bd4311bb" from cache

/home/opam: (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall irmin-unix.2.9.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\" != 'irmin-unix.2.9.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
irmin-unix.2.9.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 163 packages
  - install angstrom            0.16.0   [required by git]
  - install arp                 3.1.0    [required by tcpip]
  - install asn1-combinators    0.2.6    [required by x509]
  - install astring             0.8.5    [required by irmin-unix]
  - install awa                 0.0.5    [required by git-unix]
  - install awa-mirage          0.0.5    [required by git-unix]
  - install base                v0.16.3  [required by ppx_sexp_conv]
  - install base-bytes          base     [required by cohttp]
  - install base64              3.5.1    [required by cohttp, git]
  - install bheap               2.0.0    [required by irmin]
  - install bigarray-compat     1.1.0    [required by git, git-unix]
  - install bigstringaf         0.8.0    [required by git, git-unix]
  - install biniou              1.2.2    [required by yojson]
  - install bos                 0.2.1    [required by git-unix, yaml]
  - install ca-certs            0.2.3    [required by conduit-lwt-unix]
  - install ca-certs-nss        3.74     [required by git-unix]
  - install camlp-streams       5.0.1    [required by biniou]
  - install carton              0.4.3    [required by git]
  - install carton-git          0.4.3    [required by git]
  - install carton-lwt          0.4.3    [required by git]
  - install cf                  0.5.0    [required by cf-lwt]
  - install cf-lwt              0.5.0    [required by irmin-watcher]
  - install checkseum           0.5.2    [required by git]
  - install cmdliner            1.0.4    [required by irmin-unix]
  - install cohttp              5.1.0    [required by irmin-unix]
  - install cohttp-lwt          5.1.0    [required by irmin-unix]
  - install cohttp-lwt-unix     5.1.0    [required by irmin-unix]
  - install conduit             6.2.1    [required by irmin-unix]
  - install conduit-lwt         6.2.1    [required by irmin-unix]
  - install conduit-lwt-unix    6.2.1    [required by irmin-unix]
  - install conf-bash           1        [required by base]
  - install conf-gmp-powm-sec   4        [required by mirage-crypto-pk]
  - install conf-libffi         2.0.0    [required by ctypes-foreign]
  - install cppo                1.6.9    [required by lwt, yojson]
  - install crunch              3.2.0    [required by irmin-http]
  - install csexp               1.5.2    [required by dune-configurator]
  - install cstruct             6.0.1    [required by git-unix, git, irmin-git]
  - 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 ctypes              0.22.0   [required by yaml]
  - install ctypes-foreign      0.22.0   [required by cf]
  - install decompress          1.4.2    [required by git, git-unix]
  - install digestif            1.2.0    [required by irmin-unix]
  - install dispatch            0.5.0    [required by webmachine]
  - install domain-name         0.4.0    [required by git, git-unix]
  - install duff                0.5      [required by carton]
  - install dune                3.15.0   [required by irmin-unix]
  - install dune-configurator   3.15.0   [required by yaml]
  - install duration            0.2.1    [required by tcpip]
  - install easy-format         1.3.4    [required by yojson]
  - install either              1.0.0    [required by repr]
  - install emile               1.1      [required by git]
  - install encore              0.8      [required by git]
  - install eqaf                0.9      [required by digestif]
  - install ethernet            3.2.0    [required by tcpip]
  - install fmt                 0.9.0    [required by irmin-unix]
  - install fpath               0.7.3    [required by git-unix, git, irmin-git]
  - install fsevents            0.3.0    [required by fsevents-lwt]
  - install fsevents-lwt        0.3.0    [required by irmin-watcher]
  - install git                 3.6.0    [required by irmin-unix]
  - install git-cohttp          3.6.0    [required by git-cohttp-unix]
  - install git-cohttp-unix     3.6.0    [required by irmin-unix]
  - install git-unix            3.6.0    [required by irmin-unix]
  - install gmap                0.3.0    [required by x509]
  - install graphql             0.13.0   [required by irmin-graphql]
  - install graphql-cohttp      0.14.0   [required by irmin-graphql]
  - install graphql-lwt         0.14.0   [required by irmin-graphql]
  - install graphql_parser      0.14.0   [required by irmin-graphql]
  - install hkdf                1.0.4    [required by tls]
  - install hxd                 0.3.1    [required by git]
  - install index               1.5.0    [required by irmin-pack]
  - install inotify             2.5      [required by irmin-watcher]
  - install integers            0.7.0    [required by ctypes]
  - install ipaddr              5.5.0    [required by git, git-unix]
  - install ipaddr-sexp         5.5.0    [required by conduit-lwt-unix, tls]
  - install irmin               2.9.0    [required by irmin-unix]
  - install irmin-fs            2.9.0    [required by irmin-unix]
  - install irmin-git           2.9.0    [required by irmin-unix]
  - install irmin-graphql       2.9.0    [required by irmin-unix]
  - install irmin-http          2.9.0    [required by irmin-unix]
  - install irmin-layers        2.9.0    [required by irmin-unix]
  - install irmin-pack          2.9.0    [required by irmin-unix]
  - install irmin-unix          2.9.0
  - install irmin-watcher       0.5.0    [required by irmin-unix]
  - install jsonm               1.0.2    [required by irmin, cohttp, irmin-http]
  - install ke                  0.6      [required by git]
  - install logs                0.7.0    [required by irmin-unix]
  - install lru                 0.3.1    [required by tcpip, index]
  - install lwt                 5.7.0    [required by irmin-unix]
  - install lwt-dllist          1.0.1    [required by tcpip]
  - install macaddr             5.5.0    [required by tcpip]
  - install macaddr-cstruct     5.5.0    [required by tcpip]
  - install magic-mime          1.3.1    [required by cohttp-lwt-unix]
  - install menhir              20231231 [required by graphql_parser]
  - install menhirCST           20231231 [required by menhir]
  - install menhirLib           20231231 [required by menhir]
  - install menhirSdk           20231231 [required by menhir]
  - install metrics             0.4.1    [required by tcpip]
  - install mimic               0.0.6    [required by git, git-unix]
  - 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-flow         3.0.0    [required by git, git-unix]
  - install mirage-kv           6.1.1    [required by tls-mirage]
  - install mirage-net          4.0.0    [required by tcpip]
  - install mirage-no-solo5     1        [required by mirage-crypto-pk]
  - install mirage-no-xen       1        [required by mirage-crypto-pk]
  - install mirage-profile      0.9.1    [required by tcpip]
  - install mirage-random       3.0.0    [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-layers, git-unix, irmin-pack]
  - install num                 1.5      [required by sexplib]
  - install ocaml-compiler-libs v0.12.4  [required by ppxlib]
  - install ocaml-syntax-shims  1.0.0    [required by angstrom]
  - install ocamlbuild          0.14.3   [required by astring]
  - install ocamlfind           1.9.6    [required by astring, git-unix]
  - install ocamlgraph          2.1.0    [required by git, irmin]
  - install ocplib-endian       1.2      [required by graphql-cohttp]
  - install optint              0.3.0    [required by git, irmin-pack]
  - install parsexp             v0.16.0  [required by sexplib]
  - install pbkdf               1.2.0    [required by x509]
  - install pecu                0.7      [required by emile]
  - install ppx_cstruct         6.0.1    [required by tcpip, awa, tls]
  - install ppx_derivers        1.2.1    [required by ppxlib]
  - install ppx_deriving        5.2.1    [required by ppx_repr]
  - install ppx_irmin           2.9.0    [required by irmin-http, irmin, irmin-git, irmin-pack]
  - install ppx_repr            0.5.0    [required by ppx_irmin, index]
  - install ppx_sexp_conv       v0.16.0  [required by cohttp-lwt, cohttp, cohttp-lwt-unix]
  - install ppxlib              0.32.0   [required by ppx_sexp_conv]
  - install progress            0.2.1    [required by index]
  - install psq                 0.2.1    [required by git]
  - install ptime               1.1.0    [required by git-unix]
  - install randomconv          0.1.3    [required by tcpip]
  - install re                  1.11.0   [required by cohttp]
  - install repr                0.5.0    [required by irmin]
  - install result              1.5      [required by git-cohttp-unix, git, git-unix]
  - install rresult             0.7.0    [required by git-cohttp-unix, git, git-unix]
  - install semaphore-compat    1.0.1    [required by index]
  - install seq                 base     [required by re, graphql]
  - install sexplib             v0.16.0  [required by awa, conduit-lwt, tls]
  - install sexplib0            v0.16.0  [required by cohttp, cohttp-lwt]
  - install stdlib-shims        0.3.0    [required by ocamlgraph, index]
  - install stringext           1.6.0    [required by cohttp]
  - install tcpip               7.1.2    [required by git-unix]
  - install terminal            0.2.1    [required by progress]
  - install tls                 0.15.4   [required by git-unix]
  - install tls-mirage          0.15.4   [required by git-unix]
  - install topkg               1.0.7    [required by astring]
  - install uri                 4.4.0    [required by irmin-unix]
  - install uri-sexp            4.4.0    [required by cohttp]
  - install uucp                14.0.0   [required by progress]
  - install uutf                1.0.3    [required by irmin]
  - install vector              1.0.0    [required by progress]
  - install webmachine          0.7.0    [required by irmin-http]
  - install x509                0.16.5   [required by tls, awa, ca-certs-nss, tls-mirage]
  - install yaml                3.2.0    [required by irmin-unix]
  - install yojson              1.7.0    [required by graphql, graphql-cohttp]
  - install zarith              1.13     [required by awa]

The following system packages will first need to be installed:
    libffi-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" "libffi-dev"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libffi-dev:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 18793 files and directories currently installed.)
- Preparing to unpack .../libffi-dev_3.4.4-1_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.4-1) ...
- Setting up libffi-dev:amd64 (3.4.4-1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.0  (cached)
-> retrieved arp.3.1.0  (cached)
-> retrieved asn1-combinators.0.2.6  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved awa.0.0.5, awa-mirage.0.0.5  (cached)
-> retrieved base.v0.16.3  (cached)
-> retrieved base64.3.5.1  (cached)
-> retrieved bheap.2.0.0  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved bigstringaf.0.8.0  (cached)
-> retrieved biniou.1.2.2  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved ca-certs.0.2.3  (cached)
-> retrieved ca-certs-nss.3.74  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved carton.0.4.3, carton-git.0.4.3, carton-lwt.0.4.3  (cached)
-> retrieved cf.0.5.0, cf-lwt.0.5.0  (cached)
-> retrieved checkseum.0.5.2  (cached)
-> retrieved cmdliner.1.0.4  (cached)
-> retrieved cohttp.5.1.0, cohttp-lwt.5.1.0, cohttp-lwt-unix.5.1.0  (cached)
-> retrieved conduit.6.2.1, conduit-lwt.6.2.1, conduit-lwt-unix.6.2.1  (cached)
-> retrieved cppo.1.6.9  (cached)
-> installed conf-bash.1
-> installed conf-gmp-powm-sec.4
-> installed conf-libffi.2.0.0
-> retrieved crunch.3.2.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> 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  (cached)
-> retrieved ctypes.0.22.0, ctypes-foreign.0.22.0  (cached)
-> retrieved decompress.1.4.2  (cached)
-> retrieved digestif.1.2.0  (cached)
-> retrieved dispatch.0.5.0  (cached)
-> retrieved domain-name.0.4.0  (cached)
-> retrieved duff.0.5  (cached)
-> retrieved dune.3.15.0, dune-configurator.3.15.0  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved easy-format.1.3.4  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved emile.1.1  (cached)
-> retrieved encore.0.8  (cached)
-> retrieved eqaf.0.9  (cached)
-> retrieved ethernet.3.2.0  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved fsevents.0.3.0, fsevents-lwt.0.3.0  (cached)
-> installed cmdliner.1.0.4
-> retrieved git.3.6.0, git-cohttp.3.6.0, git-cohttp-unix.3.6.0, git-unix.3.6.0  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved graphql.0.13.0  (cached)
-> retrieved graphql-cohttp.0.14.0, graphql-lwt.0.14.0, graphql_parser.0.14.0  (cached)
-> retrieved hkdf.1.0.4  (cached)
-> retrieved hxd.0.3.1  (cached)
-> retrieved index.1.5.0  (cached)
-> retrieved inotify.2.5  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved ipaddr.5.5.0, ipaddr-sexp.5.5.0, macaddr.5.5.0, macaddr-cstruct.5.5.0  (cached)
-> retrieved irmin.2.9.0, irmin-fs.2.9.0, irmin-git.2.9.0, irmin-graphql.2.9.0, irmin-http.2.9.0, irmin-layers.2.9.0, irmin-pack.2.9.0, irmin-unix.2.9.0, ppx_irmin.2.9.0  (cached)
-> retrieved irmin-watcher.0.5.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved ke.0.6  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved lru.0.3.1  (cached)
-> retrieved lwt.5.7.0  (cached)
-> retrieved lwt-dllist.1.0.1  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved menhir.20231231, menhirCST.20231231, menhirLib.20231231, menhirSdk.20231231  (cached)
-> retrieved metrics.0.4.1  (cached)
-> retrieved mimic.0.0.6  (cached)
-> retrieved mirage-clock.4.2.0, mirage-clock-unix.4.2.0  (cached)
-> retrieved mirage-crypto.0.10.7, mirage-crypto-ec.0.10.7, mirage-crypto-pk.0.10.7, mirage-crypto-rng.0.10.7  (cached)
-> retrieved mirage-flow.3.0.0  (cached)
-> retrieved mirage-kv.6.1.1  (cached)
-> retrieved mirage-net.4.0.0  (cached)
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> retrieved mirage-profile.0.9.1  (cached)
-> retrieved mirage-random.3.0.0  (cached)
-> retrieved mirage-time.3.0.0  (cached)
-> retrieved mmap.1.2.0  (cached)
-> retrieved mtime.1.4.0  (cached)
-> retrieved num.1.5  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.14.3  (cached)
-> retrieved ocamlfind.1.9.6  (cached)
-> retrieved ocamlgraph.2.1.0  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved optint.0.3.0  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> retrieved pbkdf.1.2.0  (cached)
-> retrieved pecu.0.7  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.5.2.1  (cached)
-> retrieved ppx_repr.0.5.0, repr.0.5.0  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppxlib.0.32.0  (cached)
-> retrieved progress.0.2.1, terminal.0.2.1  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved ptime.1.1.0  (cached)
-> retrieved randomconv.0.1.3  (cached)
-> retrieved re.1.11.0  (cached)
-> retrieved result.1.5  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved semaphore-compat.1.0.1  (cached)
-> installed seq.base
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved tcpip.7.1.2  (cached)
-> retrieved tls.0.15.4, tls-mirage.0.15.4  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> retrieved uucp.14.0.0  (cached)
-> retrieved uutf.1.0.3  (cached)
-> retrieved vector.1.0.0  (cached)
-> retrieved webmachine.0.7.0  (cached)
-> installed num.1.5
-> retrieved x509.0.16.5  (cached)
-> retrieved yaml.3.2.0  (cached)
-> retrieved yojson.1.7.0  (cached)
-> retrieved zarith.1.13  (cached)
-> installed ocamlfind.1.9.6
-> installed base-bytes.base
-> installed ocamlbuild.0.14.3
-> installed zarith.1.13
-> installed topkg.1.0.7
-> installed rresult.0.7.0
-> installed uutf.1.0.3
-> installed mtime.1.4.0
-> installed fmt.0.9.0
-> installed ptime.1.1.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed dune.3.15.0
-> installed bheap.2.0.0
-> installed easy-format.1.3.4
-> installed csexp.1.5.2
-> installed lwt-dllist.1.0.1
-> installed base64.3.5.1
-> installed bigarray-compat.1.1.0
-> installed camlp-streams.5.0.1
-> installed cppo.1.6.9
-> installed crunch.3.2.0
-> installed domain-name.0.4.0
-> installed duff.0.5
-> installed duration.0.2.1
-> installed either.1.0.0
-> installed gmap.0.3.0
-> installed ke.0.6
-> installed macaddr.5.5.0
-> installed magic-mime.1.3.1
-> installed menhirCST.20231231
-> installed menhirLib.20231231
-> installed menhirSdk.20231231
-> installed metrics.0.4.1
-> installed mirage-clock.4.2.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed optint.0.3.0
-> installed pecu.0.7
-> installed ppx_derivers.1.2.1
-> installed psq.0.2.1
-> installed re.1.11.0
-> installed result.1.5
-> installed semaphore-compat.1.0.1
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed vector.1.0.0
-> installed bigstringaf.0.8.0
-> installed cstruct.6.0.1
-> installed mmap.1.2.0
-> installed ocplib-endian.1.2
-> installed lru.0.3.1
-> installed dispatch.0.5.0
-> installed ipaddr.5.5.0
-> installed biniou.1.2.2
-> installed cstruct-unix.6.0.1
-> installed mirage-random.3.0.0
-> installed randomconv.0.1.3
-> installed macaddr-cstruct.5.5.0
-> installed integers.0.7.0
-> installed eqaf.0.9
-> installed angstrom.0.16.0
-> installed asn1-combinators.0.2.6
-> installed repr.0.5.0
-> installed encore.0.8
-> installed emile.1.1
-> installed parsexp.v0.16.0
-> installed digestif.1.2.0
-> installed dune-configurator.3.15.0
-> installed yojson.1.7.0
-> installed ocamlgraph.2.1.0
-> installed mirage-clock-unix.4.2.0
-> installed uri.4.4.0
-> installed sexplib.v0.16.0
-> installed checkseum.0.5.2
-> installed cstruct-sexp.6.0.1
-> installed mirage-crypto.0.10.7
-> installed decompress.1.4.2
-> installed hkdf.1.0.4
-> installed pbkdf.1.2.0
-> installed lwt.5.7.0
-> installed mirage-net.4.0.0
-> installed cstruct-lwt.6.0.1
-> installed mirage-time.3.0.0
-> installed mirage-flow.3.0.0
-> installed mirage-kv.6.1.1
-> installed inotify.2.5
-> installed hxd.0.3.1
-> installed logs.0.7.0
-> installed ethernet.3.2.0
-> installed ctypes.0.22.0
-> installed mimic.0.0.6
-> installed mirage-crypto-rng.0.10.7
-> installed arp.3.1.0
-> installed mirage-crypto-pk.0.10.7
-> installed base.v0.16.3
-> installed bos.0.2.1
-> installed ctypes-foreign.0.22.0
-> installed cf.0.5.0
-> installed fsevents.0.3.0
-> installed cf-lwt.0.5.0
-> installed fsevents-lwt.0.3.0
-> installed irmin-watcher.0.5.0
-> installed carton.0.4.3
-> installed carton-lwt.0.4.3
-> installed carton-git.0.4.3
-> installed yaml.3.2.0
-> installed ppxlib.0.32.0
-> installed uucp.14.0.0
-> installed mirage-crypto-ec.0.10.7
-> installed menhir.20231231
-> installed terminal.0.2.1
-> installed git.3.6.0
-> installed graphql_parser.0.14.0
-> installed x509.0.16.5
-> installed graphql.0.13.0
-> installed ca-certs.0.2.3
-> installed progress.0.2.1
-> installed graphql-lwt.0.14.0
-> installed ca-certs-nss.3.74
-> installed ppx_cstruct.6.0.1
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving.5.2.1
-> installed mirage-profile.0.9.1
-> installed uri-sexp.4.4.0
-> installed ipaddr-sexp.5.5.0
-> installed conduit.6.2.1
-> installed ppx_repr.0.5.0
-> installed awa.0.0.5
-> installed cohttp.5.1.0
-> installed ppx_irmin.2.9.0
-> installed awa-mirage.0.0.5
-> installed tls.0.15.4
-> installed tcpip.7.1.2
-> installed conduit-lwt.6.2.1
-> installed graphql-cohttp.0.14.0
-> installed tls-mirage.0.15.4
-> installed webmachine.0.7.0
-> installed cohttp-lwt.5.1.0
-> installed index.1.5.0
-> installed git-cohttp.3.6.0
-> installed conduit-lwt-unix.6.2.1
-> installed cohttp-lwt-unix.5.1.0
-> installed git-cohttp-unix.3.6.0
-> installed irmin.2.9.0
-> installed irmin-fs.2.9.0
-> installed irmin-graphql.2.9.0
-> installed git-unix.3.6.0
-> installed irmin-layers.2.9.0
-> installed irmin-http.2.9.0
-> installed irmin-git.2.9.0
-> installed irmin-pack.2.9.0
-> installed irmin-unix.2.9.0
Done.
# Run eval $(opam env) to update the current shell environment
2024-04-18 04:42.20 ---> saved as "cedd2299e0b3b66efe1c225cf4292bc1c528189040248c6bc21637bc00069b82"

/home/opam: (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test irmin-unix.2.9.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile irmin-unix   2.9.0
=== install 5 packages
  - install   alcotest     1.5.0 [required by irmin-unix]
  - install   conf-gnuplot 0.1   [required by metrics-unix]
  - install   irmin-test   2.9.0 [required by irmin-unix]
  - install   metrics-unix 0.4.1 [required by irmin-test]
  - install   uuidm        0.9.7 [required by metrics-unix]

The following system packages will first need to be installed:
    gnuplot-x11

<><> 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"
- 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 ... 18828 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+deb12u1_amd64.deb ...
- Unpacking libfdisk1:amd64 (2.38.1-5+deb12u1) ...
- 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.22-1~deb12u1_amd64.deb ...
- Unpacking libsystemd-shared:amd64 (252.22-1~deb12u1) ...
- Selecting previously unselected package systemd.
- Preparing to unpack .../10-systemd_252.22-1~deb12u1_amd64.deb ...
- Unpacking systemd (252.22-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+deb12u1) ...
- 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.22-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.22-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 ... 19743 files and directories currently installed.)
- Preparing to unpack .../00-systemd-sysv_252.22-1~deb12u1_amd64.deb ...
- Unpacking systemd-sysv (252.22-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.22-1~deb12u1_amd64.deb ...
- Unpacking libnss-systemd:amd64 (252.22-1~deb12u1) ...
- Selecting previously unselected package libpam-systemd:amd64.
- Preparing to unpack .../08-libpam-systemd_252.22-1~deb12u1_amd64.deb ...
- Unpacking libpam-systemd:amd64 (252.22-1~deb12u1) ...
- Selecting previously unselected package systemd-timesyncd.
- Preparing to unpack .../09-systemd-timesyncd_252.22-1~deb12u1_amd64.deb ...
- Unpacking systemd-timesyncd (252.22-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_all.deb ...
- Unpacking libgdk-pixbuf2.0-common (2.42.10+dfsg-1) ...
- Selecting previously unselected package libglib2.0-0:amd64.
- Preparing to unpack .../12-libglib2.0-0_2.74.6-2_amd64.deb ...
- Unpacking libglib2.0-0:amd64 (2.74.6-2) ...
- 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+b1_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+b1) ...
- Selecting previously unselected package gtk-update-icon-cache.
- Preparing to unpack .../17-gtk-update-icon-cache_3.24.38-2~deb12u1_amd64.deb ...
- Unpacking gtk-update-icon-cache (3.24.38-2~deb12u1) ...
- 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_amd64.deb ...
- Unpacking liblua5.4-0:amd64 (5.4.4-3) ...
- 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_amd64.deb ...
- Unpacking libavahi-common-data:amd64 (0.8-10) ...
- Selecting previously unselected package libavahi-common3:amd64.
- Preparing to unpack .../56-libavahi-common3_0.8-10_amd64.deb ...
- Unpacking libavahi-common3:amd64 (0.8-10) ...
- Selecting previously unselected package libavahi-client3:amd64.
- Preparing to unpack .../57-libavahi-client3_0.8-10_amd64.deb ...
- Unpacking libavahi-client3:amd64 (0.8-10) ...
- Selecting previously unselected package libcups2:amd64.
- Preparing to unpack .../58-libcups2_2.4.2-3+deb12u5_amd64.deb ...
- Unpacking libcups2:amd64 (2.4.2-3+deb12u5) ...
- 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~deb12u1_all.deb ...
- Unpacking libgtk-3-common (3.24.38-2~deb12u1) ...
- Selecting previously unselected package libgtk-3-0:amd64.
- Preparing to unpack .../72-libgtk-3-0_3.24.38-2~deb12u1_amd64.deb ...
- Unpacking libgtk-3-0:amd64 (3.24.38-2~deb12u1) ...
- 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+b1_amd64.deb ...
- Unpacking libgdk-pixbuf2.0-bin (2.42.10+dfsg-1+b1) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../79-libglib2.0-data_2.74.6-2_all.deb ...
- Unpacking libglib2.0-data (2.74.6-2) ...
- Selecting previously unselected package libgtk-3-bin.
- Preparing to unpack .../80-libgtk-3-bin_3.24.38-2~deb12u1_amd64.deb ...
- Unpacking libgtk-3-bin (3.24.38-2~deb12u1) ...
- Selecting previously unselected package librsvg2-2:amd64.
- Preparing to unpack .../81-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 .../82-librsvg2-common_2.54.7+dfsg-1~deb12u1_amd64.deb ...
- Unpacking librsvg2-common:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../83-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.22-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) ...
- Setting up libgdk-pixbuf2.0-common (2.42.10+dfsg-1) ...
- 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.22-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) ...
- 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) ...
- 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.22-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 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) ...
- 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 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) ...
- 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 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 libwayland-cursor0:amd64 (1.21.0-1) ...
- Setting up libpam-systemd:amd64 (252.22-1~deb12u1) ...
- Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+b1) ...
- Setting up libsm6:amd64 (2:1.2.3-1) ...
- Setting up libavahi-client3:amd64 (0.8-10) ...
- Setting up gtk-update-icon-cache (3.24.38-2~deb12u1) ...
- 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+deb12u5) ...
- Setting up libgdk-pixbuf2.0-bin (2.42.10+dfsg-1+b1) ...
- 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~deb12u1) ...
- Setting up gsettings-desktop-schemas (43.0-1) ...
- Setting up libgtk-3-0:amd64 (3.24.38-2~deb12u1) ...
- Setting up libgtk-3-bin (3.24.38-2~deb12u1) ...
- 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+deb12u4) ...
- Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+b1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.5.0  (https://github.com/mirage/alcotest/releases/download/1.5.0/alcotest-js-1.5.0.tbz)
-> installed conf-gnuplot.0.1
-> retrieved irmin-test.2.9.0, irmin-unix.2.9.0  (https://github.com/mirage/irmin/releases/download/2.9.0/irmin-2.9.0.tbz)
-> installed alcotest.1.5.0
-> retrieved metrics-unix.0.4.1  (https://github.com/mirage/metrics/releases/download/v0.4.1/metrics-0.4.1.tbz)
-> retrieved uuidm.0.9.7  (https://erratique.ch/software/uuidm/releases/uuidm-0.9.7.tbz)
-> removed   irmin-unix.2.9.0
-> installed uuidm.0.9.7
-> installed metrics-unix.0.4.1
-> installed irmin-test.2.9.0
-> installed irmin-unix.2.9.0
Done.
# Run eval $(opam env) to update the current shell environment
2024-04-18 04:44.16 ---> saved as "70ea96c29e64ec09e84492b500fed61ad6b00bc9be99d96c2dc9842139fbacf2"

/home/opam: (run (shell  "opam reinstall --with-test --verbose irmin-unix.2.9.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\" != 'irmin-unix.2.9.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 irmin-unix 2.9.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4:
-> retrieved irmin-unix.2.9.0  (cached)
Processing  2/4: [irmin-unix: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "irmin-unix" "-j" "31" (CWD=/home/opam/.opam/4.14/.opam-switch/build/irmin-unix.2.9.0)
Processing  2/4: [irmin-unix: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "irmin-unix" "-j" "31" (CWD=/home/opam/.opam/4.14/.opam-switch/build/irmin-unix.2.9.0)
- (cd _build/default && test/irmin-unix/test.exe -q --color=always)
- Testing `irmin-unix'.
- This run has ID `W91ZHBXR'.
- 
-   [OK]          FS                        0   Basic operations on contents.
-   [OK]          FS                        1   Basic operations on nodes.
-   [OK]          FS                        2   Basic operations on commits.
-   [OK]          FS                        3   Basic operations on branches.
-   [OK]          FS                        4   Hash operations on trees.
-   [OK]          FS                        5   Basic merge operations.
-   [OK]          FS                        6   Basic operations on slices.
-   [OK]          FS                        7   Test merges on tree updates.
-   [OK]          FS                        8   Tree caches and hashconsing.
-   [OK]          FS                        9   Complex histories.
-   [OK]          FS                       10   Empty stores.
-   [OK]          FS                       11   Private node manipulation.
-   [OK]          FS                       12   High-level store operations.
-   [OK]          FS                       13   High-level operations on trees.
-   [OK]          FS                       14   High-level store synchronisation.
-   [OK]          FS                       15   High-level store merges.
-   [OK]          FS                       16   Unrelated merges.
-   [OK]          FS                       17   Low-level concurrency.
-   [OK]          FS                       18   Concurrent updates.
-   [OK]          FS                       19   with_tree strategies.
-   [OK]          FS                       20   Concurrent head updates.
-   [OK]          FS                       21   Concurrent merges.
-   [OK]          FS                       22   Shallow objects.
-   [OK]          FS                       23   Closure with disconnected commits.
-   [OK]          FS                       24   Clear.
-   [OK]          FS                       25   Graph.Iter.
-   [OK]          FS                       26   Watch.Callbacks and exceptions.
-   [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 synchronisation.
-   [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 commits.
-   [OK]          GIT                      24   Clear.
-   [OK]          GIT                      25   Graph.Iter.
-   [OK]          GIT                      26   Watch.Callbacks and exceptions.
-   [OK]          HTTP.FS                   0   Basic operations on contents.
-   [OK]          HTTP.FS                   1   Basic operations on nodes.
-   [OK]          HTTP.FS                   2   Basic operations on commits.
-   [OK]          HTTP.FS                   3   Basic operations on branches.
-   [OK]          HTTP.FS                   4   Hash operations on trees.
-   [OK]          HTTP.FS                   5   Basic merge operations.
-   [OK]          HTTP.FS                   6   Basic operations on slices.
-   [OK]          HTTP.FS                   7   Test merges on tree updates.
-   [OK]          HTTP.FS                   8   Tree caches and hashconsing.
-   [OK]          HTTP.FS                   9   Complex histories.
-   [OK]          HTTP.FS                  10   Empty stores.
-   [OK]          HTTP.FS                  11   Private node manipulation.
-   [OK]          HTTP.FS                  12   High-level store operations.
-   [OK]          HTTP.FS                  13   High-level operations on trees.
-   [OK]          HTTP.FS                  14   High-level store synchronisation.
-   [OK]          HTTP.FS                  15   High-level store merges.
-   [OK]          HTTP.FS                  16   Unrelated merges.
-   [OK]          HTTP.FS                  17   Low-level concurrency.
-   [OK]          HTTP.FS                  18   Concurrent updates.
-   [OK]          HTTP.FS                  19   with_tree strategies.
-   [OK]          HTTP.FS                  20   Concurrent head updates.
-   [OK]          HTTP.FS                  21   Concurrent merges.
-   [OK]          HTTP.FS                  22   Shallow objects.
-   [OK]          HTTP.FS                  23   Closure with disconnected commits.
-   [OK]          HTTP.FS                  24   Clear.
-   [OK]          HTTP.FS                  25   Graph.Iter.
-   [OK]          HTTP.FS                  26   Watch.Callbacks and exceptions.
-   [OK]          HTTP.GIT                  0   Basic operations on contents.
-   [OK]          HTTP.GIT                  1   Basic operations on nodes.
-   [OK]          HTTP.GIT                  2   Basic operations on commits.
-   [OK]          HTTP.GIT                  3   Basic operations on branches.
-   [OK]          HTTP.GIT                  4   Hash operations on trees.
-   [OK]          HTTP.GIT                  5   Basic merge operations.
-   [OK]          HTTP.GIT                  6   Basic operations on slices.
-   [OK]          HTTP.GIT                  7   Test merges on tree updates.
-   [OK]          HTTP.GIT                  8   Tree caches and hashconsing.
-   [OK]          HTTP.GIT                  9   Complex histories.
-   [OK]          HTTP.GIT                 10   Empty stores.
-   [OK]          HTTP.GIT                 11   Private node manipulation.
-   [OK]          HTTP.GIT                 12   High-level store operations.
-   [OK]          HTTP.GIT                 13   High-level operations on trees.
-   [OK]          HTTP.GIT                 14   High-level store synchronisation.
-   [OK]          HTTP.GIT                 15   High-level store merges.
-   [OK]          HTTP.GIT                 16   Unrelated merges.
-   [OK]          HTTP.GIT                 17   Low-level concurrency.
-   [OK]          HTTP.GIT                 18   Concurrent updates.
-   [OK]          HTTP.GIT                 19   with_tree strategies.
-   [OK]          HTTP.GIT                 20   Concurrent head updates.
-   [OK]          HTTP.GIT                 21   Concurrent merges.
-   [OK]          HTTP.GIT                 22   Shallow objects.
-   [OK]          HTTP.GIT                 23   Closure with disconnected commits.
-   [OK]          HTTP.GIT                 24   Clear.
-   [OK]          HTTP.GIT                 25   Graph.Iter.
-   [OK]          HTTP.GIT                 26   Watch.Callbacks and exceptions.
-   [OK]          bare                      0   non-bare.
-   [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-unix.2.9.0/_build/default/_build/_tests/irmin-unix'.
- Test Successful in 54.783s. 115 tests run.
- +70930us 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 ()))
- +71471us irmin.git       [DEBUG] Tree.encode_bin
- +73332us irmin.git       [DEBUG] Tree.encode_bin
- +75517us irmin.git       [DEBUG] Tree.encode_bin
- +76853us irmin.git       [DEBUG] Tree.encode_bin
- +111355us irmin.git       [DEBUG] Tree.encode_bin
- +115117us irmin.git       [DEBUG] Tree.encode_bin
- +116664us irmin.git       [DEBUG] Tree.encode_bin
- +127443us irmin.git       [DEBUG] Tree.encode_bin
-> compiled  irmin-unix.2.9.0
-> removed   irmin-unix.2.9.0
-> installed irmin-unix.2.9.0
Done.
# Run eval $(opam env) to update the current shell environment
2024-04-18 04:46.13 ---> saved as "ea49220e32a2714d38e0bcb8cd541027574921d8fc735b599ab6c17e609839ca"
Job succeeded
2024-04-18 04:46.24: Job succeeded