Build:
- 0
2026-03-26 15:23.48: New job: build current_examples.0.7.4, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29606/head (4e07f997e5a403e3e284236003dd2dff6b1992f9)
on archlinux-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/29606/head" && git reset --hard 4e07f997
git fetch origin master
git merge --no-edit 46f289cd3749314bbebddeede62fc05f9858f680
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-4.14@sha256:b1ce62ffb84917fd71804c57b18847afea0c50e6511ebf5a89e2465704fd4d67
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /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 current_examples.0.7.4 0.7.4
RUN opam reinstall current_examples.0.7.4; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'current_examples.0.7.4' && 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 .
2026-03-26 15:23.48: Using cache hint "ocaml/opam:archlinux-ocaml-4.14@sha256:b1ce62ffb84917fd71804c57b18847afea0c50e6511ebf5a89e2465704fd4d67-current_examples.0.7.4-4e07f997e5a403e3e284236003dd2dff6b1992f9"
2026-03-26 15:23.48: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:b1ce62ffb84917fd71804c57b18847afea0c50e6511ebf5a89e2465704fd4d67)
(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 "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 current_examples.0.7.4 0.7.4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall current_examples.0.7.4;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'current_examples.0.7.4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-26 15:23.48: Waiting for resource in pool OCluster
2026-03-26 15:35.26: Waiting for worker…
2026-03-26 15:37.57: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 46f289cd37 Merge pull request #29563 from NathanReb/release-ppxlib-0.38.0
Updating 46f289cd37..4e07f997e5
Fast-forward
packages/current/current.0.7.4/opam | 94 ++++++++++++++++++
packages/current_docker/current_docker.0.7.4/opam | 83 ++++++++++++++++
.../current_examples/current_examples.0.7.4/opam | 98 +++++++++++++++++++
packages/current_git/current_git.0.7.4/opam | 88 +++++++++++++++++
packages/current_github/current_github.0.7.4/opam | 97 +++++++++++++++++++
packages/current_gitlab/current_gitlab.0.7.4/opam | 59 ++++++++++++
packages/current_rpc/current_rpc.0.7.4/opam | 84 +++++++++++++++++
packages/current_slack/current_slack.0.7.4/opam | 77 +++++++++++++++
packages/current_ssh/current_ssh.0.7.4/opam | 43 +++++++++
packages/current_web/current_web.0.7.4/opam | 105 +++++++++++++++++++++
10 files changed, 828 insertions(+)
create mode 100644 packages/current/current.0.7.4/opam
create mode 100644 packages/current_docker/current_docker.0.7.4/opam
create mode 100644 packages/current_examples/current_examples.0.7.4/opam
create mode 100644 packages/current_git/current_git.0.7.4/opam
create mode 100644 packages/current_github/current_github.0.7.4/opam
create mode 100644 packages/current_gitlab/current_gitlab.0.7.4/opam
create mode 100644 packages/current_rpc/current_rpc.0.7.4/opam
create mode 100644 packages/current_slack/current_slack.0.7.4/opam
create mode 100644 packages/current_ssh/current_ssh.0.7.4/opam
create mode 100644 packages/current_web/current_web.0.7.4/opam
(from ocaml/opam:archlinux-ocaml-4.14@sha256:b1ce62ffb84917fd71804c57b18847afea0c50e6511ebf5a89e2465704fd4d67)
2026-03-26 15:38.38 ---> saved as "1b9a3ac48ee9f82b89df78ab29ad6ca1d94e2e36823fc9f16bff704cb0965e8a"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-26 15:38.39 ---> saved as "1e158d511c269ba8f8a8e99622b2fc88fb5cec5f2525499d3334475e80856d52"
/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 version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-26 15:39.02 ---> saved as "48fb0020d8ac96420a828021fa8c358d9599a853bd340da0672232b28430c138"
/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.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=arch os-version=20260315.0.500537
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-26 15:39.03 ---> saved as "a2286ea4f127ce2d2a6a8f04b3c82ba65a3a6c302f1f26af2e8f851a785f997d"
/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/"))
2026-03-26 15:39.17 ---> saved as "a15ed3c21515e2829203e6b442d12f9b2458bef214dca2159bd229831d5bfffe"
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-26 15:39.35 ---> saved as "02b6def1c2b44373ae94842dd18a58f2b2375c3429cf5ba72848a6c7e3a915a0"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-26 15:39.56 ---> saved as "51b5a9f992b0031a419db6bcebd2dae86a23ecd64a73f415928df1d4d0b2e249"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2026-03-26 15:39.59 ---> saved as "f9b8f281f8347208d9a16f3d63745c11c64932b60d6ab266dd18a1d693f1d89e"
/home/opam: (run (shell "opam pin add -k version -yn current_examples.0.7.4 0.7.4"))
current_examples is now pinned to version 0.7.4
2026-03-26 15:40.01 ---> saved as "c323572d81289441566fe8a832a819c707327c239d4494f9daafb8edfddfe6b3"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall current_examples.0.7.4;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'current_examples.0.7.4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
current_examples.0.7.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 157 packages
∗ angstrom 0.16.1 [required by uri]
∗ ansi 0.7.0 [required by current_web]
∗ asetmap 0.8.1 [required by capnp-rpc-lwt, capnp-rpc, capnp-rpc-net]
∗ asn1-combinators 0.2.6 [required by capnp-rpc-net]
∗ astring 0.8.5 [required by current_docker, capnp-rpc-unix, capnp-rpc-lwt, etc.]
∗ atd 2.16.0 [required by atdgen]
∗ atdgen 2.15.0 [required by gitlab]
∗ atdgen-runtime 2.16.0 [required by github-data]
∗ base v0.16.4 [required by capnp]
∗ base-bytes base [required by extunix]
∗ base64 3.5.2 [required by capnp-rpc-unix, capnp-rpc-net, current_github]
∗ bigstringaf 0.10.0 [required by angstrom, multipart_form-lwt]
∗ biniou 1.2.2 [required by atdgen]
∗ bos 0.2.1 [required by current, current_docker]
∗ bstr 0.0.4 [required by prettym]
∗ ca-certs 0.2.3 [required by conduit-lwt-unix]
∗ camlp-streams 5.0.1 [required by biniou]
∗ capnp 3.6.0 [required by capnp-rpc-net, capnp-rpc-lwt, current_rpc]
∗ capnp-rpc 1.2.3 [required by current_examples]
∗ capnp-rpc-lwt 1.2.3 [required by current_examples]
∗ capnp-rpc-net 1.2.3 [required by current_examples]
∗ capnp-rpc-unix 1.2.3 [required by current_examples]
∗ cf 0.5.0 [required by cf-lwt]
∗ cf-lwt 0.5.0 [required by irmin-watcher]
∗ cmdliner 1.3.0 [required by current_examples]
∗ cohttp 6.0.0 [required by github-unix, cohttp-lwt-unix, gitlab-unix]
∗ cohttp-lwt 6.0.0 [required by cohttp-lwt-unix]
∗ cohttp-lwt-unix 6.0.0 [required by current_github, current_gitlab]
∗ conduit 6.2.3 [required by conduit-lwt]
∗ conduit-lwt 6.2.3 [required by cohttp-lwt-unix]
∗ conduit-lwt-unix 6.2.3 [required by cohttp-lwt-unix, current_web]
∗ conf-capnproto 2 [required by capnp-rpc-lwt, capnp-rpc-net]
∗ conf-git 1.1 [required by current_git]
∗ conf-gmp 5 [required by zarith]
∗ conf-gmp-powm-sec 4 [required by mirage-crypto-pk]
∗ conf-graphviz 0.1 [required by current_web]
∗ conf-libev 4-13 [required by current]
∗ conf-libffi 2.0.0 [required by ctypes-foreign]
∗ conf-pkg-config 4 [required by zarith, conf-sqlite3]
∗ conf-sqlite3 1 [required by sqlite3]
∗ cppo 1.8.0 [required by ppx_deriving]
∗ crunch 4.0.0 [required by current_web]
∗ csexp 1.5.2 [required by dune-configurator]
∗ cstruct 6.2.0 [required by capnp-rpc-net, current_github]
∗ cstruct-lwt 6.2.0 [required by capnp-rpc-unix]
∗ csv 2.4 [required by current_web]
∗ ctypes 0.24.0 [required by cf, fsevents]
∗ ctypes-foreign 0.24.0 [required by cf]
∗ current 0.7.4 [required by current_examples]
∗ current_docker 0.7.4 [required by current_examples]
∗ current_examples 0.7.4 (pinned)
∗ current_git 0.7.4 [required by current_examples]
∗ current_github 0.7.4 [required by current_examples]
∗ current_gitlab 0.7.4 [required by current_examples]
∗ current_incr 0.6.1 [required by current]
∗ current_rpc 0.7.4 [required by current_examples]
∗ current_ssh 0.7.4 [required by current_examples]
∗ current_web 0.7.4 [required by current_examples]
∗ dockerfile 8.3.4 [required by current_examples]
∗ domain-name 0.5.0 [required by tls]
∗ dune 3.22.0 [required by current_examples]
∗ dune-compiledb 0.6.0 [required by sqlite3]
∗ dune-configurator 3.22.0 [required by extunix, mirage-crypto, mirage-crypto-rng, sqlite3]
∗ duration 0.2.1 [required by current_examples]
∗ easy-format 1.3.4 [required by atd]
∗ eqaf 0.9 [required by mirage-crypto]
∗ extunix 0.4.3 [required by capnp-rpc-unix]
∗ ezjsonm 1.3.0 [required by dune-compiledb]
∗ fmt 0.11.0 [required by current_examples]
∗ fpath 0.7.3 [required by current_examples]
∗ fsevents 0.3.0 [required by fsevents-lwt]
∗ fsevents-lwt 0.3.0 [required by irmin-watcher]
∗ github 4.5.0 [required by github-unix]
∗ github-data 4.5.0 [required by github]
∗ github-unix 4.5.0 [required by current_github]
∗ gitlab 0.1.8 [required by gitlab-unix]
∗ gitlab-unix 0.1.8 [required by current_gitlab]
∗ gmap 0.3.0 [required by x509]
∗ hex 1.5.0 [required by current_github]
∗ hkdf 1.0.4 (deprecated) [required by tls]
∗ http 6.0.0 [required by cohttp-lwt-unix]
∗ ISO8601 0.2.6 [required by gitlab]
∗ inotify 2.6 [required by irmin-watcher]
∗ integers 0.7.0 [required by ctypes]
∗ ipaddr 5.6.2 [required by tls]
∗ ipaddr-sexp 5.6.2 [required by conduit-lwt-unix]
∗ irmin-watcher 0.5.0 [required by current_git]
∗ jsonm 1.0.2 [required by ezjsonm]
∗ ke 0.6 [required by multipart_form-lwt]
∗ logs 0.10.0 [required by current_examples]
∗ lwt 6.1.1 [required by current_examples]
∗ lwt-dllist 1.1.0 [required by current]
∗ macaddr 5.6.2 [required by ipaddr]
∗ magic-mime 1.3.1 [required by cohttp-lwt-unix]
∗ menhir 20260209 [required by atd]
∗ menhirCST 20260209 [required by menhir]
∗ menhirGLR 20260209 [required by menhir]
∗ menhirLib 20260209 [required by menhir]
∗ menhirSdk 20260209 [required by menhir]
∗ mirage-clock 4.2.0 [required by tls-mirage]
∗ mirage-crypto 0.11.3 [required by capnp-rpc-net, current_github]
∗ mirage-crypto-ec 0.11.3 [required by tls]
∗ mirage-crypto-pk 0.11.3 [required by current_github]
∗ mirage-crypto-rng 0.11.3 [required by capnp-rpc-net]
∗ mirage-crypto-rng-lwt 0.11.3 [required by capnp-rpc-unix]
∗ mirage-flow 3.0.0 [required by capnp-rpc-net, capnp-rpc-unix]
∗ mirage-kv 6.1.1 [required by tls-mirage]
∗ mtime 2.1.0 [required by mirage-crypto-rng-lwt]
∗ multipart_form 0.8.0 [required by multipart_form-lwt]
∗ multipart_form-lwt 0.8.0 [required by current_web]
∗ num 1.6 [required by sexplib]
∗ ocaml-compiler-libs v0.12.4 [required by ppxlib]
∗ ocaml-syntax-shims 1.0.0 [required by angstrom]
∗ ocamlbuild 0.16.1 [required by logs, astring, asetmap, etc.]
∗ ocamlfind 1.9.8 [required by bos, fmt, asetmap, etc.]
∗ ocplib-endian 1.2 [required by capnp]
∗ optint 0.3.0 [required by mirage-kv]
∗ parsexp v0.16.0 [required by sexplib]
∗ pbkdf 1.2.0 [required by x509]
∗ pecu 0.7 [required by multipart_form]
∗ ppx_derivers 1.2.1 [required by ppx_deriving]
∗ ppx_deriving 6.0.3 [required by current_examples]
∗ ppx_deriving_yojson 3.9.1 [required by current_examples]
∗ ppx_sexp_conv v0.16.0 [required by dockerfile]
∗ ppxlib 0.35.0 [required by extunix, ppx_deriving]
∗ prettym 0.0.4 [required by multipart_form]
∗ prometheus 1.3 [required by current_examples]
∗ prometheus-app 1.3 [required by current_examples]
∗ ptime 1.2.0 [required by current_github, capnp-rpc-net, current_gitlab]
∗ re 1.14.0 [required by current]
∗ res 5.0.2 [required by capnp]
∗ result 1.5 [required by current_examples]
∗ routes 2.0.0 [required by current_examples]
∗ rresult 0.7.0 [required by current_github, current_gitlab]
∗ seq base [required by yojson, tyxml]
∗ session 0.5.0 [required by current_web]
∗ session-cohttp 0.5.0 [required by session-cohttp-lwt]
∗ session-cohttp-lwt 0.5.0 [required by current_web]
∗ sexplib v0.16.0 [required by current_web]
∗ sexplib0 v0.16.0 [required by dockerfile]
∗ sqlite3 5.4.0 [required by current]
∗ stdint 0.7.2 [required by capnp-rpc-lwt, capnp-rpc, current_rpc]
∗ stdio v0.16.0 [required by capnp]
∗ stdlib-shims 0.3.0 [required by ppxlib]
∗ stringext 1.6.0 [required by github-unix, uri, gitlab-unix]
∗ tls 0.17.3 [required by capnp-rpc-net]
∗ tls-lwt 0.17.3 [required by current_github]
∗ tls-mirage 0.17.3 [required by capnp-rpc-net]
∗ topkg 1.1.1 [required by logs, astring, asetmap, etc.]
∗ tyxml 4.6.0 [required by current_github]
∗ unstrctrd 0.4 [required by multipart_form]
∗ uri 4.4.0 [required by current_examples]
∗ uri-sexp 4.4.0 [required by cohttp]
∗ uutf 1.0.4 [required by tyxml, ezjsonm, multipart_form]
∗ x509 0.16.5 [required by capnp-rpc-net, current_github]
∗ yojson 2.2.2 [required by current_examples]
∗ zarith 1.14 [required by asn1-combinators]
The following system packages will first need to be installed:
capnproto graphviz libev pkgconf
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
2. Display the recommended pacman 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/sbin/sudo "pacman" "-Su" "--noconfirm" "capnproto" "graphviz" "libev" "pkgconf"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
-
- Package (71) Old Version New Version Net Change Download Size
-
- extra/aom 3.13.2-1 9.16 MiB 2.91 MiB
- core/archlinux-keyring 20260301-1 20260323-1 0.00 MiB 1.20 MiB
- extra/avahi 1:0.9rc3-1 1.98 MiB 0.43 MiB
- extra/cairo 1.18.4-1 1.59 MiB 0.61 MiB
- extra/dav1d 1.5.3-1 1.78 MiB 0.63 MiB
- extra/fontconfig 2:2.17.1-1 1.12 MiB 0.37 MiB
- extra/freetype2 2.14.3-1 1.66 MiB 0.52 MiB
- extra/fribidi 1.0.16-2 0.24 MiB 0.07 MiB
- extra/gd 2.3.3-9 0.64 MiB 0.15 MiB
- extra/gdk-pixbuf2 2.44.4-1 2.95 MiB 0.48 MiB
- extra/ghostscript 10.07.0-1 43.77 MiB 20.03 MiB
- extra/giflib 5.2.2-2 0.27 MiB 0.08 MiB
- extra/glycin 2.0.8-1 18.91 MiB 3.76 MiB
- extra/gperftools 2.18.1-1 2.01 MiB 0.49 MiB
- extra/graphite 1:1.3.14-6 0.20 MiB 0.08 MiB
- extra/gsfonts 20200910-6 3.11 MiB 1.59 MiB
- extra/gtest 1.17.0-2 1.63 MiB 0.38 MiB
- extra/gts 0.7.6.121130-5 0.67 MiB 0.20 MiB
- extra/harfbuzz 13.2.1-1 4.55 MiB 1.22 MiB
- extra/highway 1.3.0-2 9.87 MiB 1.16 MiB
- extra/ijs 0.35-6 0.12 MiB 0.05 MiB
- extra/jbig2dec 0.20-1 0.15 MiB 0.06 MiB
- extra/jbigkit 2.1-8 0.16 MiB 0.05 MiB
- extra/l-smash 2.14.5-4 1.02 MiB 0.31 MiB
- extra/lcms2 2.18-1 0.68 MiB 0.22 MiB
- core/leancrypto 1.6.0-1 1.7.0-1 0.14 MiB 1.39 MiB
- extra/libavif 1.4.1-1 0.84 MiB 0.30 MiB
- extra/libcups 2:2.4.16-2 0.77 MiB 0.27 MiB
- extra/libdaemon 0.14-6 0.06 MiB 0.02 MiB
- extra/libdatrie 0.2.14-1 0.49 MiB 0.11 MiB
- extra/libde265 1.0.18-1 0.84 MiB 0.30 MiB
- extra/libdeflate 1.25-1 0.14 MiB 0.06 MiB
- extra/libheif 1.21.2-2 2.29 MiB 0.70 MiB
- extra/libice 1.1.2-1 0.36 MiB 0.08 MiB
- extra/libidn 1.43-1 0.85 MiB 0.29 MiB
- extra/libjpeg-turbo 3.1.3-1 2.42 MiB 0.56 MiB
- extra/libjxl 0.11.2-2 9.65 MiB 2.18 MiB
- extra/libpaper 2.2.7-1 0.16 MiB 0.05 MiB
- extra/libpng 1.6.56-1 0.58 MiB 0.25 MiB
- extra/librsvg 2:2.61.4-1 10.13 MiB 2.32 MiB
- extra/libsm 1.2.6-1 0.26 MiB 0.04 MiB
- extra/libthai 0.1.30-1 1.24 MiB 0.26 MiB
- extra/libtiff 4.7.1-1 1.26 MiB 0.38 MiB
- core/libtool 2.6.0-4 2.33 MiB 0.42 MiB
- extra/libunwind 1.8.2-1 0.29 MiB 0.13 MiB
- extra/libwebp 1.6.0-2 1.04 MiB 0.32 MiB
- extra/libxext 1.3.7-1 0.30 MiB 0.10 MiB
- extra/libxft 2.3.9-1 0.13 MiB 0.06 MiB
- extra/libxpm 3.5.18-1 0.16 MiB 0.07 MiB
- extra/libxrender 0.9.12-1 0.09 MiB 0.03 MiB
- extra/libxt 1.3.1-1 2.02 MiB 0.52 MiB
- extra/libyuv r2426+464c51a03-1 1.82 MiB 0.30 MiB
- core/lzo 2.10-5 0.38 MiB 0.09 MiB
- extra/netpbm 10.86.48-1 7.00 MiB 1.32 MiB
- extra/openh264 2.6.0-2 2.22 MiB 0.64 MiB
- extra/openjpeg2 2.5.4-1 13.37 MiB 0.87 MiB
- extra/pango 1:1.57.1-1 2.33 MiB 0.42 MiB
- extra/pixman 0.46.4-1 0.74 MiB 0.28 MiB
- extra/poppler-data 0.4.12-2 12.34 MiB 1.90 MiB
- extra/rav1e 0.8.1-2 7.61 MiB 1.60 MiB
- extra/shared-mime-info 2.4-3 4.58 MiB 0.60 MiB
- extra/svt-av1 4.0.1-1 5.26 MiB 1.93 MiB
- core/systemd 260-1 260.1-1 0.00 MiB 9.68 MiB
- core/systemd-libs 260-1 260.1-1 0.00 MiB 1.27 MiB
- core/systemd-sysvcompat 260-1 260.1-1 0.00 MiB 0.01 MiB
- extra/x264 3:0.165.r3222.b35605a-2 3.79 MiB 0.75 MiB
- extra/x265 4.1-1 20.84 MiB 1.94 MiB
- extra/capnproto 1.2.0-1 8.15 MiB 1.92 MiB
- extra/graphviz 14.1.4-2 10.79 MiB 3.78 MiB
- extra/libev 4.33-5 0.19 MiB 0.12 MiB
- core/pkgconf 2.5.1-1 0.20 MiB 0.07 MiB
-
- Total Download Size: 77.72 MiB
- Total Installed Size: 296.79 MiB
- Net Upgrade Size: 248.67 MiB
-
- :: Proceed with installation? [Y/n]
- :: Retrieving packages...
- ghostscript-10.07.0-1-x86_64 downloading...
- systemd-260.1-1-x86_64 downloading...
- graphviz-14.1.4-2-x86_64 downloading...
- glycin-2.0.8-1-x86_64 downloading...
- aom-3.13.2-1-x86_64 downloading...
- librsvg-2:2.61.4-1-x86_64 downloading...
- libjxl-0.11.2-2-x86_64 downloading...
- x265-4.1-1-x86_64 downloading...
- svt-av1-4.0.1-1-x86_64 downloading...
- capnproto-1.2.0-1-x86_64 downloading...
- poppler-data-0.4.12-2-any downloading...
- rav1e-0.8.1-2-x86_64 downloading...
- gsfonts-20200910-6-any downloading...
- leancrypto-1.7.0-1-x86_64 downloading...
- netpbm-10.86.48-1-x86_64 downloading...
- systemd-libs-260.1-1-x86_64 downloading...
- harfbuzz-13.2.1-1-x86_64 downloading...
- archlinux-keyring-20260323-1-any downloading...
- highway-1.3.0-2-x86_64 downloading...
- openjpeg2-2.5.4-1-x86_64 downloading...
- x264-3:0.165.r3222.b35605a-2-x86_64 downloading...
- libheif-1.21.2-2-x86_64 downloading...
- openh264-2.6.0-2-x86_64 downloading...
- dav1d-1.5.3-1-x86_64 downloading...
- cairo-1.18.4-1-x86_64 downloading...
- shared-mime-info-2.4-3-x86_64 downloading...
- libjpeg-turbo-3.1.3-1-x86_64 downloading...
- freetype2-2.14.3-1-x86_64 downloading...
- libxt-1.3.1-1-x86_64 downloading...
- gperftools-2.18.1-1-x86_64 downloading...
- gdk-pixbuf2-2.44.4-1-x86_64 downloading...
- avahi-1:0.9rc3-1-x86_64 downloading...
- pango-1:1.57.1-1-x86_64 downloading...
- libtool-2.6.0-4-x86_64 downloading...
- libtiff-4.7.1-1-x86_64 downloading...
- gtest-1.17.0-2-x86_64 downloading...
- fontconfig-2:2.17.1-1-x86_64 downloading...
- libwebp-1.6.0-2-x86_64 downloading...
- l-smash-2.14.5-4-x86_64 downloading...
- libde265-1.0.18-1-x86_64 downloading...
- libyuv-r2426+464c51a03-1-x86_64 downloading...
- libavif-1.4.1-1-x86_64 downloading...
- libidn-1.43-1-x86_64 downloading...
- pixman-0.46.4-1-x86_64 downloading...
- libcups-2:2.4.16-2-x86_64 downloading...
- libthai-0.1.30-1-x86_64 downloading...
- libpng-1.6.56-1-x86_64 downloading...
- lcms2-2.18-1-x86_64 downloading...
- gts-0.7.6.121130-5-x86_64 downloading...
- gd-2.3.3-9-x86_64 downloading...
- libunwind-1.8.2-1-x86_64 downloading...
- libev-4.33-5-x86_64 downloading...
- libdatrie-0.2.14-1-x86_64 downloading...
- libxext-1.3.7-1-x86_64 downloading...
- lzo-2.10-5-x86_64 downloading...
- graphite-1:1.3.14-6-x86_64 downloading...
- libice-1.1.2-1-x86_64 downloading...
- giflib-5.2.2-2-x86_64 downloading...
- pkgconf-2.5.1-1-x86_64 downloading...
- libxpm-3.5.18-1-x86_64 downloading...
- fribidi-1.0.16-2-x86_64 downloading...
- libdeflate-1.25-1-x86_64 downloading...
- jbig2dec-0.20-1-x86_64 downloading...
- libxft-2.3.9-1-x86_64 downloading...
- ijs-0.35-6-x86_64 downloading...
- jbigkit-2.1-8-x86_64 downloading...
- libpaper-2.2.7-1-x86_64 downloading...
- libsm-1.2.6-1-x86_64 downloading...
- libxrender-0.9.12-1-x86_64 downloading...
- libdaemon-0.14-6-x86_64 downloading...
- systemd-sysvcompat-260.1-1-x86_64 downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- installing capnproto...
- installing libtool...
- installing libpng...
- installing freetype2...
- Optional dependencies for freetype2
- harfbuzz: Improved autohinting [pending]
- installing fontconfig...
- Creating fontconfig configuration...
- Rebuilding fontconfig cache...
- installing libice...
- installing libsm...
- installing libxt...
- installing libxext...
- installing libxpm...
- installing libwebp...
- Optional dependencies for libwebp
- libwebp-utils: WebP conversion and inspection tools
- installing aom...
- installing dav1d...
- Optional dependencies for dav1d
- dav1d-doc: HTML documentation
- installing libjpeg-turbo...
- Optional dependencies for libjpeg-turbo
- java-runtime>11: for TurboJPEG Java wrapper
- installing libyuv...
- installing rav1e...
- installing svt-av1...
- installing libavif...
- installing libde265...
- Optional dependencies for libde265
- sdl2-compat: for the decoder tool
- installing openh264...
- installing l-smash...
- installing x264...
- installing x265...
- installing libheif...
- Optional dependencies for libheif
- libjpeg-turbo: for heif-dec and heif-enc [installed]
- libpng: for heif-dec and heif-enc [installed]
- libtiff: for heif-dec and heif-enc [pending]
- dav1d: dav1d encoder [installed]
- ffmpeg: hardware decode
- openjpeg2: JPEG2000 decoder [pending]
- rav1e: rav1e encoder [installed]
- svt-av1: svt-av1 encoder [installed]
- installing gd...
- Optional dependencies for gd
- perl: bdftogd script [installed]
- installing libxrender...
- installing lzo...
- installing pixman...
- installing cairo...
- installing jbigkit...
- installing libdeflate...
- installing libtiff...
- Optional dependencies for libtiff
- freeglut: for using tiffgt
- installing lcms2...
- installing giflib...
- installing libunwind...
- installing gperftools...
- installing gtest...
- Optional dependencies for gtest
- python: gmock generator
- installing highway...
- installing libjxl...
- Optional dependencies for libjxl
- java-runtime: for JNI bindings
- upgrading systemd-libs...
- installing glycin...
- Optional dependencies for glycin
- libheif: Load .avif, .heic and .heif [installed]
- installing shared-mime-info...
- installing gdk-pixbuf2...
- Optional dependencies for gdk-pixbuf2
- libheif: Load .avif, .heic and .heif [installed]
- libopenraw: Load .arw, .cr2, .crw, .dng, .erf, .mrw, .nef, .orf, .pef and .raf
- libwmf: Load .apm and .wmf
- installing graphite...
- Optional dependencies for graphite
- graphite-docs: Documentation
- installing harfbuzz...
- Optional dependencies for harfbuzz
- harfbuzz-utils: utilities
- installing fribidi...
- installing libdatrie...
- installing libthai...
- installing libxft...
- installing pango...
- installing librsvg...
- installing libdaemon...
- installing avahi...
- Optional dependencies for avahi
- gtk3: avahi-discover, avahi-discover-standalone, bshell, bssh, bvnc
- libevent: libevent bindings [installed]
- nss-mdns: NSS support for mDNS
- python-dbus: avahi-bookmarks, avahi-discover
- python-gobject: avahi-bookmarks, avahi-discover
- python-twisted: avahi-bookmarks
- upgrading leancrypto...
- installing libcups...
- installing jbig2dec...
- installing libpaper...
- installing ijs...
- installing openjpeg2...
- installing libidn...
- installing poppler-data...
- installing ghostscript...
- Optional dependencies for ghostscript
- gtk3: needed for gsx
- installing netpbm...
- installing gts...
- installing gsfonts...
- installing graphviz...
- Optional dependencies for graphviz
- mono: sharp bindings
- guile: guile bindings [installed]
- lua: lua bindings
- perl: perl bindings [installed]
- python: python bindings
- r: r bindings
- tcl: tcl bindings
- qt6-base: gvedit
- xterm: vimdot
- installing libev...
- installing pkgconf...
- upgrading systemd...
- Creating group 'avahi' with GID 968.
- Creating user 'avahi' (Avahi mDNS/DNS-SD daemon) with UID 968 and GID 968.
- upgrading archlinux-keyring...
- ==> ERROR: There is no secret key available to sign with.
- ==> Use 'pacman-key --init' to generate a default secret key.
- error: command failed to execute correctly
- upgrading systemd-sysvcompat...
- :: Running post-transaction hooks...
- ( 1/15) Creating system user accounts...
- ( 2/15) Creating temporary files...
- /usr/lib/tmpfiles.d/journal-nocow.conf:26: Failed to resolve specifier: uninitialized /etc/ detected, skipping.
- All rules containing unresolvable specifiers will be skipped.
- ( 3/15) Updating journal message catalog...
- ( 4/15) Updating udev hardware database...
- ( 5/15) Applying kernel sysctl settings...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 6/15) Reloading system manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 7/15) Reloading user manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 8/15) Updating the MIME type database...
- ( 9/15) Enqueuing marked services...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (10/15) Reloading device manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (11/15) Arming ConditionNeedsUpdate...
- (12/15) Updating fontconfig configuration...
- (13/15) Reloading system bus configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (14/15) Checking for old perl modules...
- (15/15) Updating fontconfig cache...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved angstrom.0.16.1 (cached)
⬇ retrieved ansi.0.7.0 (cached)
⬇ retrieved asetmap.0.8.1 (cached)
⬇ retrieved asn1-combinators.0.2.6 (cached)
⬇ retrieved astring.0.8.5 (cached)
⬇ retrieved atd.2.16.0, atdgen-runtime.2.16.0 (cached)
⬇ retrieved atdgen.2.15.0 (cached)
⬇ retrieved base.v0.16.4 (cached)
⬇ retrieved base64.3.5.2 (cached)
⬇ retrieved bigstringaf.0.10.0 (cached)
⬇ retrieved biniou.1.2.2 (cached)
⬇ retrieved bos.0.2.1 (cached)
⬇ retrieved bstr.0.0.4 (cached)
⬇ retrieved ca-certs.0.2.3 (cached)
⬇ retrieved camlp-streams.5.0.1 (cached)
⬇ retrieved capnp.3.6.0 (cached)
⬇ retrieved capnp-rpc.1.2.3, capnp-rpc-lwt.1.2.3, capnp-rpc-net.1.2.3, capnp-rpc-unix.1.2.3 (cached)
⬇ retrieved cf.0.5.0, cf-lwt.0.5.0 (cached)
⬇ retrieved cmdliner.1.3.0 (cached)
⬇ retrieved cohttp.6.0.0, cohttp-lwt.6.0.0, cohttp-lwt-unix.6.0.0, http.6.0.0 (cached)
⬇ retrieved conduit.6.2.3, conduit-lwt.6.2.3, conduit-lwt-unix.6.2.3 (cached)
⬇ retrieved conf-gmp.5 (cached)
⬇ retrieved conf-gmp-powm-sec.4 (cached)
⬇ retrieved conf-libev.4-13 (cached)
⬇ retrieved cppo.1.8.0 (cached)
⬇ retrieved crunch.4.0.0 (cached)
⬇ retrieved csexp.1.5.2 (cached)
⬇ retrieved cstruct.6.2.0, cstruct-lwt.6.2.0 (cached)
∗ installed conf-capnproto.2
∗ installed conf-git.1.1
∗ installed conf-gmp.5
∗ installed conf-graphviz.0.1
∗ installed conf-pkg-config.4
⬇ retrieved csv.2.4 (cached)
⬇ retrieved ctypes.0.24.0, ctypes-foreign.0.24.0 (cached)
∗ installed conf-libev.4-13
∗ installed conf-gmp-powm-sec.4
∗ installed conf-libffi.2.0.0
∗ installed conf-sqlite3.1
⬇ retrieved current.0.7.4, current_docker.0.7.4, current_examples.0.7.4, current_git.0.7.4, current_github.0.7.4, current_gitlab.0.7.4, current_rpc.0.7.4, current_ssh.0.7.4, current_web.0.7.4 (cached)
⬇ retrieved current_incr.0.6.1 (cached)
⬇ retrieved dockerfile.8.3.4 (cached)
⬇ retrieved domain-name.0.5.0 (cached)
⬇ retrieved dune.3.22.0, dune-configurator.3.22.0 (cached)
⬇ retrieved dune-compiledb.0.6.0 (cached)
⬇ retrieved duration.0.2.1 (cached)
⬇ retrieved easy-format.1.3.4 (cached)
⬇ retrieved eqaf.0.9 (cached)
⬇ retrieved extunix.0.4.3 (cached)
⬇ retrieved ezjsonm.1.3.0 (cached)
⬇ retrieved fmt.0.11.0 (cached)
⬇ retrieved fpath.0.7.3 (cached)
⬇ retrieved fsevents.0.3.0, fsevents-lwt.0.3.0 (cached)
⬇ retrieved github.4.5.0, github-data.4.5.0, github-unix.4.5.0 (cached)
∗ installed cmdliner.1.3.0
⬇ retrieved gitlab.0.1.8, gitlab-unix.0.1.8 (cached)
⬇ retrieved gmap.0.3.0 (cached)
⬇ retrieved hex.1.5.0 (cached)
⬇ retrieved hkdf.1.0.4 (cached)
⬇ retrieved ISO8601.0.2.6 (cached)
⬇ retrieved inotify.2.6 (cached)
⬇ retrieved integers.0.7.0 (cached)
⬇ retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2 (cached)
⬇ retrieved irmin-watcher.0.5.0 (cached)
⬇ retrieved jsonm.1.0.2 (cached)
⬇ retrieved ke.0.6 (cached)
⬇ retrieved logs.0.10.0 (cached)
⬇ retrieved lwt.6.1.1 (cached)
⬇ retrieved lwt-dllist.1.1.0 (cached)
⬇ retrieved magic-mime.1.3.1 (cached)
⬇ retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
⬇ retrieved mirage-clock.4.2.0 (cached)
⬇ retrieved mirage-crypto.0.11.3, mirage-crypto-ec.0.11.3, mirage-crypto-pk.0.11.3, mirage-crypto-rng.0.11.3, mirage-crypto-rng-lwt.0.11.3 (cached)
⬇ retrieved mirage-flow.3.0.0 (cached)
⬇ retrieved mirage-kv.6.1.1 (cached)
⬇ retrieved mtime.2.1.0 (cached)
⬇ retrieved multipart_form.0.8.0, multipart_form-lwt.0.8.0 (cached)
⬇ retrieved num.1.6 (cached)
⬇ retrieved ocaml-compiler-libs.v0.12.4 (cached)
⬇ retrieved ocaml-syntax-shims.1.0.0 (cached)
⬇ retrieved ocamlbuild.0.16.1 (cached)
⬇ retrieved ocamlfind.1.9.8 (cached)
⬇ retrieved ocplib-endian.1.2 (cached)
⬇ retrieved 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.6.0.3 (cached)
⬇ retrieved ppx_deriving_yojson.3.9.1 (cached)
⬇ retrieved ppx_sexp_conv.v0.16.0 (cached)
⬇ retrieved ppxlib.0.35.0 (cached)
⬇ retrieved prettym.0.0.4 (cached)
⬇ retrieved prometheus.1.3, prometheus-app.1.3 (cached)
⬇ retrieved ptime.1.2.0 (cached)
⬇ retrieved re.1.14.0 (cached)
⬇ retrieved res.5.0.2 (cached)
⬇ retrieved result.1.5 (cached)
⬇ retrieved routes.2.0.0 (cached)
⬇ retrieved rresult.0.7.0 (cached)
⬇ retrieved seq.base (cached)
∗ installed seq.base
⬇ retrieved session.0.5.0, session-cohttp.0.5.0, session-cohttp-lwt.0.5.0 (cached)
⬇ retrieved sexplib.v0.16.0 (cached)
⬇ retrieved sexplib0.v0.16.0 (cached)
⬇ retrieved sqlite3.5.4.0 (cached)
⬇ retrieved stdint.0.7.2 (cached)
⬇ retrieved stdio.v0.16.0 (cached)
⬇ retrieved stdlib-shims.0.3.0 (cached)
⬇ retrieved stringext.1.6.0 (cached)
⬇ retrieved tls.0.17.3, tls-lwt.0.17.3, tls-mirage.0.17.3 (cached)
⬇ retrieved topkg.1.1.1 (cached)
⬇ retrieved tyxml.4.6.0 (cached)
⬇ retrieved unstrctrd.0.4 (cached)
⬇ retrieved uri.4.4.0, uri-sexp.4.4.0 (cached)
⬇ retrieved uutf.1.0.4 (cached)
⬇ retrieved x509.0.16.5 (cached)
⬇ retrieved yojson.2.2.2 (cached)
⬇ retrieved zarith.1.14 (cached)
∗ installed num.1.6
∗ installed ocamlfind.1.9.8
∗ installed base-bytes.base
∗ installed ocamlbuild.0.16.1
∗ installed zarith.1.14
∗ installed topkg.1.1.1
∗ installed asetmap.0.8.1
∗ installed rresult.0.7.0
∗ installed uutf.1.0.4
∗ installed fmt.0.11.0
∗ installed mtime.2.1.0
∗ installed ptime.1.2.0
∗ installed astring.0.8.5
∗ installed jsonm.1.0.2
∗ installed fpath.0.7.3
∗ installed dune.3.22.0
∗ installed base64.3.5.2
∗ installed bstr.0.0.4
∗ installed camlp-streams.5.0.1
∗ installed crunch.4.0.0
∗ installed csexp.1.5.2
∗ installed cppo.1.8.0
∗ installed cstruct.6.2.0
∗ installed csv.2.4
∗ installed current_incr.0.6.1
∗ installed domain-name.0.5.0
∗ installed duration.0.2.1
∗ installed easy-format.1.3.4
∗ installed gmap.0.3.0
∗ installed http.6.0.0
∗ installed ISO8601.0.2.6
∗ installed ke.0.6
∗ installed lwt-dllist.1.1.0
∗ installed macaddr.5.6.2
∗ installed magic-mime.1.3.1
∗ installed menhirCST.20260209
∗ installed menhirGLR.20260209
∗ installed menhirLib.20260209
∗ installed menhirSdk.20260209
∗ 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 re.1.14.0
∗ installed res.5.0.2
∗ installed result.1.5
∗ installed sexplib0.v0.16.0
∗ installed stdint.0.7.2
∗ installed stdlib-shims.0.3.0
∗ installed stringext.1.6.0
∗ installed yojson.2.2.2
∗ installed ocplib-endian.1.2
∗ installed asn1-combinators.0.2.6
∗ installed eqaf.0.9
∗ installed hex.1.5.0
∗ installed biniou.1.2.2
∗ installed prettym.0.0.4
∗ installed ipaddr.5.6.2
∗ installed routes.2.0.0
∗ installed dune-configurator.3.22.0
∗ installed integers.0.7.0
∗ installed ezjsonm.1.3.0
∗ installed atdgen-runtime.2.16.0
∗ installed bigstringaf.0.10.0
∗ installed parsexp.v0.16.0
∗ installed angstrom.0.16.1
∗ installed unstrctrd.0.4
∗ installed sexplib.v0.16.0
∗ installed mirage-crypto.0.11.3
∗ installed tyxml.4.6.0
∗ installed dune-compiledb.0.6.0
∗ installed pbkdf.1.2.0
∗ installed hkdf.1.0.4
∗ installed uri.4.4.0
∗ installed ansi.0.7.0
∗ installed lwt.6.1.1
∗ installed cstruct-lwt.6.2.0
∗ installed mirage-flow.3.0.0
∗ installed mirage-kv.6.1.1
∗ installed inotify.2.6
∗ installed prometheus.1.3
∗ installed sqlite3.5.4.0
∗ installed logs.0.10.0
∗ installed base.v0.16.4
∗ installed mirage-crypto-rng.0.11.3
∗ installed stdio.v0.16.0
∗ installed menhir.20260209
∗ installed multipart_form.0.8.0
∗ installed mirage-crypto-rng-lwt.0.11.3
∗ installed session.0.5.0
∗ installed capnp-rpc.1.2.3
∗ installed mirage-crypto-pk.0.11.3
∗ installed multipart_form-lwt.0.8.0
∗ installed ctypes.0.24.0
∗ installed atd.2.16.0
∗ installed bos.0.2.1
∗ installed ctypes-foreign.0.24.0
∗ installed atdgen.2.15.0
∗ installed cf.0.5.0
∗ installed fsevents.0.3.0
∗ installed cf-lwt.0.5.0
∗ installed fsevents-lwt.0.3.0
∗ installed capnp.3.6.0
∗ installed irmin-watcher.0.5.0
∗ installed mirage-crypto-ec.0.11.3
∗ installed x509.0.16.5
∗ installed ppxlib.0.35.0
∗ installed capnp-rpc-lwt.1.2.3
∗ installed ca-certs.0.2.3
∗ installed tls.0.17.3
∗ installed tls-mirage.0.17.3
∗ installed tls-lwt.0.17.3
∗ installed github-data.4.5.0
∗ installed capnp-rpc-net.1.2.3
∗ installed ppx_sexp_conv.v0.16.0
∗ installed ppx_deriving.6.0.3
∗ installed ipaddr-sexp.5.6.2
∗ installed uri-sexp.4.4.0
∗ installed dockerfile.8.3.4
∗ installed ppx_deriving_yojson.3.9.1
∗ installed current.0.7.4
∗ installed conduit.6.2.3
∗ installed current_ssh.0.7.4
∗ installed cohttp.6.0.0
∗ installed session-cohttp.0.5.0
∗ installed conduit-lwt.6.2.3
∗ installed current_git.0.7.4
∗ installed cohttp-lwt.6.0.0
∗ installed session-cohttp-lwt.0.5.0
∗ installed conduit-lwt-unix.6.2.3
∗ installed current_docker.0.7.4
∗ installed extunix.0.4.3
∗ installed github.4.5.0
∗ installed capnp-rpc-unix.1.2.3
∗ installed cohttp-lwt-unix.6.0.0
∗ installed prometheus-app.1.3
∗ installed github-unix.4.5.0
∗ installed current_web.0.7.4
∗ installed current_rpc.0.7.4
∗ installed current_github.0.7.4
∗ installed gitlab.0.1.8
∗ installed gitlab-unix.0.1.8
∗ installed current_gitlab.0.7.4
∗ installed current_examples.0.7.4
Done.
<><> hkdf.1.0.4 installed successfully ><><><><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 15:41.36 ---> saved as "16a583efbbe4c6fb58f644d42fab2a67e70b47617f1d678b3ebff63883cf9fef"
Job succeeded
2026-03-26 15:41.46: Job succeeded