(not at the head of any monitored branch or PR)
2025-12-29 02:05.02: New job: test jupyter.3.0.1, using opam 2.1
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29142/head (cda25a760e335405c39d61ccc19b95cdffcf1f03)
                              on debian-13-ocaml-5.4/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29142/head" && git reset --hard cda25a76
git fetch origin master
git merge --no-edit 8143977d6e6160e4f178d19fb7addd4c2c272ac7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.1 /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 jupyter.3.0.1 3.0.1
RUN opam reinstall jupyter.3.0.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'jupyter.3.0.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test jupyter.3.0.1) || true
RUN opam reinstall --with-test --verbose jupyter.3.0.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'jupyter.3.0.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2025-12-29 02:05.02: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04-jupyter.3.0.1-cda25a760e335405c39d61ccc19b95cdffcf1f03"
2025-12-29 02:05.02: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.1 /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 jupyter.3.0.1 3.0.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall jupyter.3.0.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'jupyter.3.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test jupyter.3.0.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose jupyter.3.0.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'jupyter.3.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-12-29 02:05.02: Waiting for resource in pool OCluster
2025-12-29 02:05.02: Waiting for worker…
2025-12-29 02:06.02: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
HEAD is now at 8143977d6e Merge pull request #29131 from anmonteiro/release-opam-check-npm-deps-4.1.0
Merge made by the 'ort' strategy.
 packages/jupyter/jupyter.3.0.1/opam | 62 +++++++++++++++++++++++++++++++++++++
 1 file changed, 62 insertions(+)
 create mode 100644 packages/jupyter/jupyter.3.0.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04' locally
docker.io/ocaml/opam@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04: Pulling from ocaml/opam
75a759b14a01: Pulling fs layer
75a759b14a01: Verifying Checksum
75a759b14a01: Download complete
75a759b14a01: Pull complete
Digest: sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04
Status: Downloaded newer image for ocaml/opam@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04
2025-12-29 02:07.05 ---> using "5f87df8c1f6f0886e7311dfd3df40b8bbb961cc34c83c0d033c6dd248c84bc7d" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam"))
2025-12-29 02:07.05 ---> using "7ff13938240a08408a26030c66f2b428414ae976242aba17a99b7672ea8494f3" 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.1, which can't be reverted.
You may want to back it up before going further.

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-29 02:07.05 ---> using "8e6b612cd3acb921cf2d3a5186c75183ee9371be16789b0e85a99bd1e23091f7" 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.1.6 (263921263e1f745613e2882745114b7b08f3608b) 
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     
# upgrade-criteria     
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2025-12-29 02:07.05 ---> using "5c4cd168bd75aad870f6576ff729cdc915cc1eccd0ec6d372463937384d7b05f" 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-12-29 02:07.05 ---> using "ae5a32f7810d6f111a01883b8b42a09ffd3225d9680f9acec1fdaf83d5160556" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-29 02:07.14 ---> saved as "bd7d6163450745cec676046f4d92b07bb054dcf16def0ce76bbc15e80380cf4a"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-29 02:07.29 ---> saved as "f369fb7b851a3647da5665a746cdd7d500eb4308c97262d1800329191cd1687d"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [93.7 kB]
- Fetched 184 kB in 0s (1455 kB/s)
- Reading package lists...
- 
2025-12-29 02:07.30 ---> saved as "c18d8ea14fc1a69007a05f2fb93c7d4772b16735547db210c798ab460773fd02"

/home/opam: (run (shell "opam pin add -k version -yn jupyter.3.0.1 3.0.1"))
jupyter is now pinned to version 3.0.1
2025-12-29 02:07.31 ---> saved as "2f1615c33d3621ea1209ed8e9c10a57a2a3f484e4763ab133e3d46aebb14a8ff"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall jupyter.3.0.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'jupyter.3.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
jupyter.3.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
  - recompile ocaml-config            3            [upstream or system changes]
  - install   conf-gmp                5            [required by conf-gmp-powm-sec, zarith]
  - install   conf-pkg-config         4            [required by zarith, conf-zlib, conf-zmq]
  - recompile ocaml                   5.4.0        [uses ocaml-config]
  - install   conf-gmp-powm-sec       4            [required by cryptokit]
  - install   conf-zmq                0.1          [required by zmq]
  - install   conf-zlib               1            [required by cryptokit]
  - install   ocamlfind               1.9.8        [required by ppx_deriving, logs, uuidm]
  - install   ocamlbuild              0.16.1       [required by logs, uuidm]
  - install   dune                    3.20.2       [required by jupyter]
  - recompile opam-depext             1.2.3        [uses ocaml]
  - recompile base-effects            base         [uses ocaml]
  - recompile base-domains            base         [uses ocaml]
  - install   zarith                  1.14         [required by cryptokit]
  - install   base-bytes              base         [required by ocplib-endian]
  - install   topkg                   1.1.1        [required by logs, uuidm]
  - install   yojson                  3.0.0        [required by jupyter]
  - install   stdlib-shims            0.3.0        [required by ppxlib]
  - install   stdint                  0.7.2        [required by jupyter]
  - install   sexplib0                v0.17.0      [required by ppxlib, base]
  - install   ppx_derivers            1.2.1        [required by ppx_deriving]
  - install   octavius                1.2.2        [required by ppx_js_style]
  - install   ocaml-compiler-libs     v0.17.0      [required by ppxlib]
  - install   ocaml_intrinsics_kernel v0.17.1      [required by base]
  - install   csexp                   1.5.2        [required by dune-configurator]
  - install   cppo                    1.8.0        [required by ppx_deriving]
  - install   base64                  3.5.2        [required by jupyter]
  - recompile base-nnp                base         [uses base-domains]
  - install   uuidm                   0.9.10       [required by jupyter]
  - install   ppx_yojson_conv_lib     v0.17.0      [required by ppx_yojson_conv]
  - install   ppxlib                  0.37.0       [required by ppx_deriving, lwt_ppx, ppx_yojson_conv]
  - install   dune-configurator       3.20.2       [required by cryptokit, zmq]
  - install   ocplib-endian           1.2          [required by lwt]
  - install   ppx_deriving            6.1.1        [required by jupyter]
  - install   zmq                     5.3.0        [required by jupyter]
  - install   cryptokit               1.20         [required by jupyter]
  - install   base                    v0.17.3      [required by ppx_yojson_conv]
  - install   lwt                     6.0.0-beta01 [required by jupyter]
  - install   ppx_js_style            v0.17.1      [required by ppx_yojson_conv]
  - install   zmq-lwt                 5.3.0        [required by jupyter]
  - install   lwt_ppx                 6.0.0-beta01 [required by jupyter]
  - install   logs                    0.10.0       [required by jupyter]
  - install   ppx_yojson_conv         v0.17.1      [required by jupyter]
  - install   jupyter                 3.0.1*
===== 38 to install | 6 to recompile =====

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

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
Let opam run your package manager to install the required system packages?
(answer 'n' for other options) [Y/n] y
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "libzmq3-dev" "pkg-config" "zlib1g-dev"
- Selecting previously unselected package comerr-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 ... 20653 files and directories currently installed.)
- Preparing to unpack .../00-comerr-dev_2.1-1.47.2-3+b3_amd64.deb ...
- Unpacking comerr-dev:amd64 (2.1-1.47.2-3+b3) ...
- Selecting previously unselected package libnorm1t64:amd64.
- Preparing to unpack .../01-libnorm1t64_1.5.9+dfsg-3.1+b2_amd64.deb ...
- Unpacking libnorm1t64:amd64 (1.5.9+dfsg-3.1+b2) ...
- Selecting previously unselected package libpgm-5.3-0t64:amd64.
- Preparing to unpack .../02-libpgm-5.3-0t64_5.3.128~dfsg-2.1+b1_amd64.deb ...
- Unpacking libpgm-5.3-0t64:amd64 (5.3.128~dfsg-2.1+b1) ...
- Selecting previously unselected package libsodium23:amd64.
- Preparing to unpack .../03-libsodium23_1.0.18-1+b2_amd64.deb ...
- Unpacking libsodium23:amd64 (1.0.18-1+b2) ...
- Selecting previously unselected package libzmq5:amd64.
- Preparing to unpack .../04-libzmq5_4.3.5-1+b3_amd64.deb ...
- Unpacking libzmq5:amd64 (4.3.5-1+b3) ...
- Selecting previously unselected package libpgm-dev:amd64.
- Preparing to unpack .../05-libpgm-dev_5.3.128~dfsg-2.1+b1_amd64.deb ...
- Unpacking libpgm-dev:amd64 (5.3.128~dfsg-2.1+b1) ...
- Selecting previously unselected package libsodium-dev:amd64.
- Preparing to unpack .../06-libsodium-dev_1.0.18-1+b2_amd64.deb ...
- Unpacking libsodium-dev:amd64 (1.0.18-1+b2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../07-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libxml2-dev:amd64.
- Preparing to unpack .../08-libxml2-dev_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libnorm-dev:amd64.
- Preparing to unpack .../09-libnorm-dev_1.5.9+dfsg-3.1+b2_amd64.deb ...
- Unpacking libnorm-dev:amd64 (1.5.9+dfsg-3.1+b2) ...
- Selecting previously unselected package libgssrpc4t64:amd64.
- Preparing to unpack .../10-libgssrpc4t64_1.21.3-5_amd64.deb ...
- Unpacking libgssrpc4t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5clnt-mit12:amd64.
- Preparing to unpack .../11-libkadm5clnt-mit12_1.21.3-5_amd64.deb ...
- Unpacking libkadm5clnt-mit12:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkdb5-10t64:amd64.
- Preparing to unpack .../12-libkdb5-10t64_1.21.3-5_amd64.deb ...
- Unpacking libkdb5-10t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5srv-mit12:amd64.
- Preparing to unpack .../13-libkadm5srv-mit12_1.21.3-5_amd64.deb ...
- Unpacking libkadm5srv-mit12:amd64 (1.21.3-5) ...
- Selecting previously unselected package krb5-multidev:amd64.
- Preparing to unpack .../14-krb5-multidev_1.21.3-5_amd64.deb ...
- Unpacking krb5-multidev:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkrb5-dev:amd64.
- Preparing to unpack .../15-libkrb5-dev_1.21.3-5_amd64.deb ...
- Unpacking libkrb5-dev:amd64 (1.21.3-5) ...
- Selecting previously unselected package libmd-dev:amd64.
- Preparing to unpack .../16-libmd-dev_1.1.0-2+b1_amd64.deb ...
- Unpacking libmd-dev:amd64 (1.1.0-2+b1) ...
- Selecting previously unselected package libbsd-dev:amd64.
- Preparing to unpack .../17-libbsd-dev_0.12.2-2_amd64.deb ...
- Unpacking libbsd-dev:amd64 (0.12.2-2) ...
- Selecting previously unselected package libzmq3-dev:amd64.
- Preparing to unpack .../18-libzmq3-dev_4.3.5-1+b3_amd64.deb ...
- Unpacking libzmq3-dev:amd64 (4.3.5-1+b3) ...
- Selecting previously unselected package cppzmq-dev:amd64.
- Preparing to unpack .../19-cppzmq-dev_4.10.0-1+b2_amd64.deb ...
- Unpacking cppzmq-dev:amd64 (4.10.0-1+b2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../20-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../21-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../22-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../23-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../24-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../25-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../26-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libnorm1t64:amd64 (1.5.9+dfsg-3.1+b2) ...
- Setting up libsodium23:amd64 (1.0.18-1+b2) ...
- Setting up libpgm-5.3-0t64:amd64 (5.3.128~dfsg-2.1+b1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libgssrpc4t64:amd64 (1.21.3-5) ...
- Setting up libpgm-dev:amd64 (5.3.128~dfsg-2.1+b1) ...
- Setting up comerr-dev:amd64 (2.1-1.47.2-3+b3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libsodium-dev:amd64 (1.0.18-1+b2) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libmd-dev:amd64 (1.1.0-2+b1) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libbsd-dev:amd64 (0.12.2-2) ...
- Setting up libkadm5clnt-mit12:amd64 (1.21.3-5) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libzmq5:amd64 (4.3.5-1+b3) ...
- Setting up libkdb5-10t64:amd64 (1.21.3-5) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libkadm5srv-mit12:amd64 (1.21.3-5) ...
- Setting up krb5-multidev:amd64 (1.21.3-5) ...
- Setting up libnorm-dev:amd64 (1.5.9+dfsg-3.1+b2) ...
- Setting up libkrb5-dev:amd64 (1.21.3-5) ...
- Setting up libzmq3-dev:amd64 (4.3.5-1+b3) ...
- Setting up cppzmq-dev:amd64 (4.10.0-1+b2) ...
- Processing triggers for libc-bin (2.41-12) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved conf-zmq.0.1  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved cryptokit.1.20  (cached)
-> installed conf-gmp-powm-sec.4
-> installed conf-zlib.1
-> retrieved csexp.1.5.2  (cached)
-> installed conf-zmq.0.1
-> retrieved dune.3.20.2  (cached)
-> retrieved dune-configurator.3.20.2  (cached)
-> retrieved jupyter.3.0.1  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt.6.0.0-beta01  (cached)
-> retrieved lwt_ppx.6.0.0-beta01  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-config.3  (cached)
-> removed   base-effects.base
-> removed   base-nnp.base
-> removed   base-domains.base
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved octavius.1.2.2  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> removed   opam-depext.1.2.3
-> removed   ocaml.5.4.0
-> removed   ocaml-config.3
-> installed ocaml-config.3
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppx_js_style.v0.17.1  (cached)
-> retrieved ppx_yojson_conv.v0.17.1  (cached)
-> retrieved ppx_yojson_conv_lib.v0.17.0  (cached)
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdint.0.7.2  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uuidm.0.9.10  (cached)
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> retrieved zmq.5.3.0  (cached)
-> retrieved zmq-lwt.5.3.0  (cached)
-> installed opam-depext.1.2.3
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed uuidm.0.9.10
-> installed dune.3.20.2
-> installed ppx_derivers.1.2.1
-> installed base64.3.5.2
-> installed csexp.1.5.2
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed stdint.0.7.2
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed octavius.1.2.2
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed ppx_yojson_conv_lib.v0.17.0
-> installed dune-configurator.3.20.2
-> installed zmq.5.3.0
-> installed cryptokit.1.20
-> installed lwt.6.0.0-beta01
-> installed zmq-lwt.5.3.0
-> installed logs.0.10.0
-> installed base.v0.17.3
-> installed ppxlib.0.37.0
-> installed lwt_ppx.6.0.0-beta01
-> installed ppx_js_style.v0.17.1
-> installed ppx_deriving.6.1.1
-> installed ppx_yojson_conv.v0.17.1
-> installed jupyter.3.0.1
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead

<><> jupyter.3.0.1 installed successfully <><><><><><><><><><><><><><><><><><><>
=> Please run for registration of ocaml-jupyter kernel:
=> 
=> $ ocaml-jupyter-opam-genspec
=> $ jupyter kernelspec install --name ocaml-jupyter \
=> /home/opam/.opam/5.4/share/jupyter
# Run eval $(opam env) to update the current shell environment
2025-12-29 02:09.16 ---> saved as "694aa3e41a44dddb335eb056705ad3b67a79343e2a5748aa91f061cd6ab58646"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test jupyter.3.0.1) || true"))
The following actions will be performed:
  - install   seq        base   [required by ounit2]
  - install   cmdliner   2.1.0  [required by ocp-indent]
  - install   ounit2     2.2.7  [required by jupyter]
  - install   ocp-indent 1.9.0  [required by jupyter]
  - recompile uuidm      0.9.10 [uses cmdliner]
  - recompile logs       0.10.0 [uses cmdliner]
  - recompile jupyter    3.0.1*
===== 4 to install | 3 to recompile =====

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved jupyter.3.0.1  (https://github.com/akabe/ocaml-jupyter/archive/refs/tags/v3.0.1.tar.gz)
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved ocp-indent.1.9.0  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved uuidm.0.9.10  (https://opam.ocaml.org/cache)
-> installed ounit2.2.2.7
-> removed   jupyter.3.0.1
-> removed   logs.0.10.0
-> removed   uuidm.0.9.10
-> installed cmdliner.2.1.0
-> installed uuidm.0.9.10
-> installed logs.0.10.0
-> installed ocp-indent.1.9.0
-> installed jupyter.3.0.1
Done.

<><> ocp-indent.1.9.0 installed successfully ><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Install package 'user-setup', or manually:

   * for Emacs, add these lines to ~/.emacs:
     (add-to-list 'load-path "/home/opam/.opam/5.4/share/emacs/site-lisp")
     (require 'ocp-indent)

   * for Vim, add this line to ~/.vimrc:
     set rtp^="/home/opam/.opam/5.4/share/ocp-indent/vim"

<><> jupyter.3.0.1 installed successfully <><><><><><><><><><><><><><><><><><><>
=> Please run for registration of ocaml-jupyter kernel:
=> 
=> $ ocaml-jupyter-opam-genspec
=> $ jupyter kernelspec install --name ocaml-jupyter \
=> /home/opam/.opam/5.4/share/jupyter
# Run eval $(opam env) to update the current shell environment
2025-12-29 02:09.40 ---> saved as "0ac486e6cee1673b23dccde0ef40d9e283dccd4e15ddeb93dd3a223693a834d2"

/home/opam: (run (shell  "opam reinstall --with-test --verbose jupyter.3.0.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'jupyter.3.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
  - recompile jupyter 3.0.1*

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4:
-> retrieved jupyter.3.0.1  (cached)
Processing  2/4: [jupyter: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "jupyter" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/jupyter.3.0.1)
-> compiled  jupyter.3.0.1
-> removed   jupyter.3.0.1
-> installed jupyter.3.0.1
Done.

<><> jupyter.3.0.1 installed successfully <><><><><><><><><><><><><><><><><><><>
=> Please run for registration of ocaml-jupyter kernel:
=> 
=> $ ocaml-jupyter-opam-genspec
=> $ jupyter kernelspec install --name ocaml-jupyter \
=> /home/opam/.opam/5.4/share/jupyter
# Run eval $(opam env) to update the current shell environment
2025-12-29 02:09.54 ---> saved as "4745b983ac339472361a5abcbf8471e7726fc6903f85ffd35ea734ab1386d4d3"
Job succeeded
2025-12-29 02:10.02: Job succeeded