(for PR #28894)
2025-11-14 15:10.50: New job: test doculib.1.3.1 with lwt.6.0.0-beta01, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28894/head (b3a6ad64ea3115b9993ddd431f777dde4e6ec63f)
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/28894/head" && git reset --hard b3a6ad64
git fetch origin master
git merge --no-edit 2ec6d6cc9216d1f4ec93aec16f34d7a35a7ef543
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58
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 lwt.6.0.0-beta01 6.0.0-beta01
RUN opam reinstall lwt.6.0.0-beta01; \
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" != 'lwt.6.0.0-beta01' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall doculib.1.3.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" != 'doculib.1.3.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 doculib.1.3.1) || true
RUN opam reinstall --with-test --verbose doculib.1.3.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" != 'doculib.1.3.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-11-14 15:10.50: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58-lwt.6.0.0-beta01-doculib.1.3.1-b3a6ad64ea3115b9993ddd431f777dde4e6ec63f"
2025-11-14 15:10.50: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58)
(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 lwt.6.0.0-beta01 6.0.0-beta01"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.6.0.0-beta01;\
\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\" != 'lwt.6.0.0-beta01' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall doculib.1.3.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\" != 'doculib.1.3.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 doculib.1.3.1) || true"))
(run (shell "opam reinstall --with-test --verbose doculib.1.3.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\" != 'doculib.1.3.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-11-14 15:10.50: Waiting for resource in pool OCluster
2025-11-14 15:37.13: Waiting for worker…
2025-11-14 15:41.20: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files: 64% (12064/18769)
Updating files: 65% (12200/18769)
Updating files: 66% (12388/18769)
Updating files: 67% (12576/18769)
Updating files: 68% (12763/18769)
Updating files: 69% (12951/18769)
Updating files: 70% (13139/18769)
Updating files: 71% (13326/18769)
Updating files: 72% (13514/18769)
Updating files: 73% (13702/18769)
Updating files: 74% (13890/18769)
Updating files: 75% (14077/18769)
Updating files: 76% (14265/18769)
Updating files: 77% (14453/18769)
Updating files: 78% (14640/18769)
Updating files: 79% (14828/18769)
Updating files: 80% (15016/18769)
Updating files: 81% (15203/18769)
Updating files: 82% (15391/18769)
Updating files: 83% (15579/18769)
Updating files: 84% (15766/18769)
Updating files: 85% (15954/18769)
Updating files: 86% (16142/18769)
Updating files: 87% (16330/18769)
Updating files: 88% (16517/18769)
Updating files: 89% (16705/18769)
Updating files: 90% (16893/18769)
Updating files: 91% (17080/18769)
Updating files: 92% (17268/18769)
Updating files: 93% (17456/18769)
Updating files: 94% (17643/18769)
Updating files: 95% (17831/18769)
Updating files: 96% (18019/18769)
Updating files: 97% (18206/18769)
Updating files: 98% (18394/18769)
Updating files: 99% (18582/18769)
Updating files: 100% (18769/18769)
Updating files: 100% (18769/18769), done.
HEAD is now at 2ec6d6cc92 Merge pull request #28891 from c-cube/release-moonpool-v0.10
Updating 2ec6d6cc92..b3a6ad64ea
Fast-forward
packages/lwt/lwt.6.0.0-beta01/opam | 66 ++++++++++++++++++++++
packages/lwt_direct/lwt_direct.6.0.0-beta01/opam | 42 ++++++++++++++
packages/lwt_ppx/lwt_ppx.6.0.0-beta01/opam | 43 ++++++++++++++
.../lwt_runtime_events.6.0.0-beta01/opam | 40 +++++++++++++
4 files changed, 191 insertions(+)
create mode 100644 packages/lwt/lwt.6.0.0-beta01/opam
create mode 100644 packages/lwt_direct/lwt_direct.6.0.0-beta01/opam
create mode 100644 packages/lwt_ppx/lwt_ppx.6.0.0-beta01/opam
create mode 100644 packages/lwt_runtime_events/lwt_runtime_events.6.0.0-beta01/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58)
2025-11-14 15:41.23 ---> using "9f1bc9b76367c8d29be355965b06cbbd4aeb05818e6e1915136daad8eabad361" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-14 15:41.23 ---> using "7167cf2609d50147b3cfe8b00e0f1981e785c56c3c47bd6356e0f3732d6bafd7" 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 version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-14 15:41.23 ---> using "db7b310c65b31b91b9590efe8919a126934a7e42418115cd912ed2612662d318" 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.5.0~alpha1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# 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-11-14 15:41.23 ---> using "370daf58656f453890b2ebe0d8367763e6fea8bbb7471d68f3d783ad40f9e8ee" 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-11-14 15:41.23 ---> using "d7d7d34009e7cd5bb4f41663ceab70bbd4c419269902dabc72ab91552d36d91d" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-14 15:41.25 ---> using "f4e0d154356e420692cfb10cd4c9ed97b3fcf07a48747b5f2231088722b5f868" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-14 15:41.25 ---> using "a78aa14caebefb8ed0eb62f4e7f186d11e21cc8bd0f230f1dd3f71f819f9ee76" 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 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 [71.4 kB]
- Fetched 162 kB in 0s (653 kB/s)
- Reading package lists...
-
2025-11-14 15:41.25 ---> using "2bf2182934e4625955cb0125ab1be29f9d725c5244e58f4af6292536d339099c" from cache
/home/opam: (run (shell "opam pin add -k version -yn lwt.6.0.0-beta01 6.0.0-beta01"))
lwt is now pinned to version 6.0.0-beta01
2025-11-14 15:41.25 ---> using "bad90ce549ec42ab94c0724f208b28f5f088e63a0725e1999e3ed4ce8671fd52" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.6.0.0-beta01;\
\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\" != 'lwt.6.0.0-beta01' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lwt.6.0.0-beta01 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
- install base-bytes base [required by ocplib-endian]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.20.2 [required by lwt]
- install dune-configurator 3.20.2 [required by lwt]
- install lwt 6.0.0-beta01 (pinned)
- install ocamlfind 1.9.8 [required by base-bytes]
- install ocplib-endian 1.2 [required by lwt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved lwt.6.0.0-beta01 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.20.2
-> installed lwt.6.0.0-beta01
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-14 15:41.25 ---> using "ab4fcf7261abdce9b871a0cec5a55dcde4f58e70a210d9246bdd073f337a938f" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall doculib.1.3.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\" != 'doculib.1.3.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
doculib.1.3.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 66 packages
- install angstrom 0.16.1 [required by uri]
- install asn1-combinators 0.2.6 [required by x509]
- install astring 0.8.5 [required by conduit, ca-certs]
- install base v0.17.3 [required by ppx_sexp_conv]
- install base64 3.5.2 [required by cohttp]
- install bigstringaf 0.10.0 [required by angstrom]
- install bos 0.2.1 [required by ca-certs]
- install ca-certs 0.2.3 [required by conduit-lwt-unix]
- install cairo2 0.6.5 [required by lablgtk3]
- install camlp-streams 5.0.1 [required by lablgtk3]
- install cmdliner 2.0.0 [required by cohttp-lwt-unix]
- install cohttp 6.1.1 [required by cohttp-lwt-unix]
- install cohttp-lwt 6.1.1 [required by cohttp-lwt-unix]
- install cohttp-lwt-unix 6.1.1 [required by doculib]
- install conduit 8.0.0 [required by conduit-lwt]
- install conduit-lwt 8.0.0 [required by cohttp-lwt-unix]
- install conduit-lwt-unix 8.0.0 [required by cohttp-lwt-unix]
- install conf-cairo 1 [required by cairo2]
- install conf-gmp 5 [required by zarith, conf-gmp-powm-sec]
- install conf-gmp-powm-sec 4 [required by mirage-crypto-pk]
- install conf-gtk3 18 [required by lablgtk3]
- install conf-pkg-config 4 [required by conf-gtk3]
- install cstruct 6.2.0 [required by tls]
- install doculib 1.3.1
- install domain-name 0.5.0 [required by tls]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install eqaf 0.9 [required by mirage-crypto]
- install fileutils 0.6.6 [required by metadb]
- install fmt 0.11.0 [required by cohttp-lwt-unix, tls]
- install fpath 0.7.3 [required by ca-certs]
- install gmap 0.3.0 [required by x509]
- install hkdf 1.0.4 (deprecated) [required by tls]
- install http 6.1.1 [required by cohttp-lwt-unix]
- install ipaddr 5.6.1 [required by tls]
- install ipaddr-sexp 5.6.1 [required by conduit-lwt-unix]
- install lablgtk3 3.1.5 [required by doculib]
- install logs 0.10.0 [required by cohttp-lwt-unix, tls]
- install macaddr 5.6.1 [required by ipaddr]
- install magic-mime 1.3.1 [required by cohttp-lwt-unix]
- install metadb 1.0.1 [required by doculib]
- install mirage-crypto 0.11.3 [required by tls]
- install mirage-crypto-ec 0.11.3 [required by tls]
- install mirage-crypto-pk 0.11.3 [required by tls]
- install mirage-crypto-rng 0.11.3 [required by tls]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ocamlbuild 0.16.1 [required by logs]
- install pbkdf 1.2.0 [required by x509]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppx_sexp_conv v0.17.1 [required by cohttp-lwt-unix]
- install ppxlib 0.37.0 [required by ppx_sexp_conv]
- install ppxlib_jane v0.17.4 [required by ppx_sexp_conv]
- install ptime 1.2.0 [required by ca-certs]
- install re 1.14.0 [required by cohttp]
- install rresult 0.7.0 [required by bos]
- install sexplib0 v0.17.0 [required by cohttp-lwt, cohttp, conduit-lwt]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install stringext 1.6.0 [required by cohttp]
- install tls 0.17.5 [required by doculib]
- install topkg 1.1.1 [required by logs]
- install uri 4.4.0 [required by cohttp-lwt, cohttp, conduit-lwt-unix]
- install uri-sexp 4.4.0 [required by cohttp]
- install x509 0.16.5 [required by tls]
- install yojson 3.0.0 [required by metadb]
- install zarith 1.14 [required by asn1-combinators, mirage-crypto-pk]
The following system packages will first need to be installed:
libcairo2-dev libexpat1-dev libgmp-dev libgtk-3-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" "libcairo2-dev" "libexpat1-dev" "libgmp-dev" "libgtk-3-dev" "pkg-config"
- Preconfiguring packages ...
- Selecting previously unselected package libsystemd-shared: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 .../libsystemd-shared_257.8-1~deb13u2_amd64.deb ...
- Unpacking libsystemd-shared:amd64 (257.8-1~deb13u2) ...
- Setting up libsystemd-shared:amd64 (257.8-1~deb13u2) ...
- Selecting previously unselected package systemd.
- (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 ... 20661 files and directories currently installed.)
- Preparing to unpack .../systemd_257.8-1~deb13u2_amd64.deb ...
- Unpacking systemd (257.8-1~deb13u2) ...
- Setting up systemd (257.8-1~deb13u2) ...
- Created symlink '/etc/systemd/system/getty.target.wants/getty@tty1.service' → '/usr/lib/systemd/system/getty@.service'.
- Created symlink '/etc/systemd/system/multi-user.target.wants/remote-fs.target' → '/usr/lib/systemd/system/remote-fs.target'.
- Created symlink '/etc/systemd/system/sysinit.target.wants/systemd-pstore.service' → '/usr/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.
- /usr/lib/tmpfiles.d/legacy.conf:14: Duplicate line for path "/run/lock", ignoring.
- 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 ... 21594 files and directories currently installed.)
- Preparing to unpack .../0-systemd-sysv_257.8-1~deb13u2_amd64.deb ...
- Unpacking systemd-sysv (257.8-1~deb13u2) ...
- Selecting previously unselected package libdbus-1-3:amd64.
- Preparing to unpack .../1-libdbus-1-3_1.16.2-2_amd64.deb ...
- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...
- Selecting previously unselected package dbus-bin.
- Preparing to unpack .../2-dbus-bin_1.16.2-2_amd64.deb ...
- Unpacking dbus-bin (1.16.2-2) ...
- Selecting previously unselected package dbus-session-bus-common.
- Preparing to unpack .../3-dbus-session-bus-common_1.16.2-2_all.deb ...
- Unpacking dbus-session-bus-common (1.16.2-2) ...
- Selecting previously unselected package dbus-daemon.
- Preparing to unpack .../4-dbus-daemon_1.16.2-2_amd64.deb ...
- Unpacking dbus-daemon (1.16.2-2) ...
- Selecting previously unselected package dbus-system-bus-common.
- Preparing to unpack .../5-dbus-system-bus-common_1.16.2-2_all.deb ...
- Unpacking dbus-system-bus-common (1.16.2-2) ...
- Selecting previously unselected package dbus.
- Preparing to unpack .../6-dbus_1.16.2-2_amd64.deb ...
- Unpacking dbus (1.16.2-2) ...
- Selecting previously unselected package libpython3.13-minimal:amd64.
- Preparing to unpack .../7-libpython3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-minimal:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13-minimal.
- Preparing to unpack .../8-python3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking python3.13-minimal (3.13.5-2) ...
- Setting up libpython3.13-minimal:amd64 (3.13.5-2) ...
- Setting up python3.13-minimal (3.13.5-2) ...
- Selecting previously unselected package python3-minimal.
- (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 ... 22011 files and directories currently installed.)
- Preparing to unpack .../0-python3-minimal_3.13.5-1_amd64.deb ...
- Unpacking python3-minimal (3.13.5-1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../1-media-types_13.0.0_all.deb ...
- Unpacking media-types (13.0.0) ...
- Selecting previously unselected package readline-common.
- Preparing to unpack .../2-readline-common_8.2-6_all.deb ...
- Unpacking readline-common (8.2-6) ...
- Selecting previously unselected package libreadline8t64:amd64.
- Preparing to unpack .../3-libreadline8t64_8.2-6_amd64.deb ...
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
- Unpacking libreadline8t64:amd64 (8.2-6) ...
- Selecting previously unselected package libpython3.13-stdlib:amd64.
- Preparing to unpack .../4-libpython3.13-stdlib_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13.
- Preparing to unpack .../5-python3.13_3.13.5-2_amd64.deb ...
- Unpacking python3.13 (3.13.5-2) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../6-libpython3-stdlib_3.13.5-1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up python3-minimal (3.13.5-1) ...
- Selecting previously unselected package python3.
- (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 ... 22497 files and directories currently installed.)
- Preparing to unpack .../000-python3_3.13.5-1_amd64.deb ...
- Unpacking python3 (3.13.5-1) ...
- Selecting previously unselected package libnss-systemd:amd64.
- Preparing to unpack .../001-libnss-systemd_257.8-1~deb13u2_amd64.deb ...
- Unpacking libnss-systemd:amd64 (257.8-1~deb13u2) ...
- Selecting previously unselected package libpam-systemd:amd64.
- Preparing to unpack .../002-libpam-systemd_257.8-1~deb13u2_amd64.deb ...
- Unpacking libpam-systemd:amd64 (257.8-1~deb13u2) ...
- Selecting previously unselected package systemd-timesyncd.
- Preparing to unpack .../003-systemd-timesyncd_257.8-1~deb13u2_amd64.deb ...
- Unpacking systemd-timesyncd (257.8-1~deb13u2) ...
- Selecting previously unselected package libgdk-pixbuf2.0-common.
- Preparing to unpack .../004-libgdk-pixbuf2.0-common_2.42.12+dfsg-4_all.deb ...
- Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-4) ...
- Selecting previously unselected package libglib2.0-0t64:amd64.
- Preparing to unpack .../005-libglib2.0-0t64_2.84.4-3~deb13u1_amd64.deb ...
- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u1) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../006-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u1_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../007-shared-mime-info_2.4-5+b2_amd64.deb ...
- Unpacking shared-mime-info (2.4-5+b2) ...
- Selecting previously unselected package libjpeg62-turbo:amd64.
- Preparing to unpack .../008-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libpng16-16t64:amd64.
- Preparing to unpack .../009-libpng16-16t64_1.6.48-1_amd64.deb ...
- Unpacking libpng16-16t64:amd64 (1.6.48-1) ...
- Selecting previously unselected package libdeflate0:amd64.
- Preparing to unpack .../010-libdeflate0_1.23-2_amd64.deb ...
- Unpacking libdeflate0:amd64 (1.23-2) ...
- Selecting previously unselected package libjbig0:amd64.
- Preparing to unpack .../011-libjbig0_2.1-6.1+b2_amd64.deb ...
- Unpacking libjbig0:amd64 (2.1-6.1+b2) ...
- Selecting previously unselected package liblerc4:amd64.
- Preparing to unpack .../012-liblerc4_4.0.0+ds-5_amd64.deb ...
- Unpacking liblerc4:amd64 (4.0.0+ds-5) ...
- Selecting previously unselected package libsharpyuv0:amd64.
- Preparing to unpack .../013-libsharpyuv0_1.5.0-0.1_amd64.deb ...
- Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebp7:amd64.
- Preparing to unpack .../014-libwebp7_1.5.0-0.1_amd64.deb ...
- Unpacking libwebp7:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libtiff6:amd64.
- Preparing to unpack .../015-libtiff6_4.7.0-3+deb13u1_amd64.deb ...
- Unpacking libtiff6:amd64 (4.7.0-3+deb13u1) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64.
- Preparing to unpack .../016-libgdk-pixbuf-2.0-0_2.42.12+dfsg-4_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4) ...
- Selecting previously unselected package gtk-update-icon-cache.
- Preparing to unpack .../017-gtk-update-icon-cache_4.18.6+ds-2_amd64.deb ...
- No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed.
- No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed.
- Unpacking gtk-update-icon-cache (4.18.6+ds-2) ...
- Selecting previously unselected package hicolor-icon-theme.
- Preparing to unpack .../018-hicolor-icon-theme_0.18-2_all.deb ...
- Unpacking hicolor-icon-theme (0.18-2) ...
- Selecting previously unselected package adwaita-icon-theme.
- Preparing to unpack .../019-adwaita-icon-theme_48.1-1_all.deb ...
- Unpacking adwaita-icon-theme (48.1-1) ...
- Selecting previously unselected package at-spi2-common.
- Preparing to unpack .../020-at-spi2-common_2.56.2-1_all.deb ...
- Unpacking at-spi2-common (2.56.2-1) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../021-libxi6_2%3a1.8.2-1_amd64.deb ...
- Unpacking libxi6:amd64 (2:1.8.2-1) ...
- Selecting previously unselected package libatspi2.0-0t64:amd64.
- Preparing to unpack .../022-libatspi2.0-0t64_2.56.2-1_amd64.deb ...
- Unpacking libatspi2.0-0t64:amd64 (2.56.2-1) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../023-x11-common_1%3a7.7+24_all.deb ...
- Unpacking x11-common (1:7.7+24) ...
- Selecting previously unselected package libxtst6:amd64.
- Preparing to unpack .../024-libxtst6_2%3a1.2.5-1_amd64.deb ...
- Unpacking libxtst6:amd64 (2:1.2.5-1) ...
- Selecting previously unselected package dbus-user-session.
- Preparing to unpack .../025-dbus-user-session_1.16.2-2_amd64.deb ...
- Unpacking dbus-user-session (1.16.2-2) ...
- Selecting previously unselected package libdconf1:amd64.
- Preparing to unpack .../026-libdconf1_0.40.0-5_amd64.deb ...
- Unpacking libdconf1:amd64 (0.40.0-5) ...
- Selecting previously unselected package dconf-service.
- Preparing to unpack .../027-dconf-service_0.40.0-5_amd64.deb ...
- Unpacking dconf-service (0.40.0-5) ...
- Selecting previously unselected package dconf-gsettings-backend:amd64.
- Preparing to unpack .../028-dconf-gsettings-backend_0.40.0-5_amd64.deb ...
- Unpacking dconf-gsettings-backend:amd64 (0.40.0-5) ...
- Selecting previously unselected package gsettings-desktop-schemas.
- Preparing to unpack .../029-gsettings-desktop-schemas_48.0-1_all.deb ...
- Unpacking gsettings-desktop-schemas (48.0-1) ...
- Selecting previously unselected package at-spi2-core.
- Preparing to unpack .../030-at-spi2-core_2.56.2-1_amd64.deb ...
- Unpacking at-spi2-core (2.56.2-1) ...
- Selecting previously unselected package bzip2-doc.
- Preparing to unpack .../031-bzip2-doc_1.0.8-6_all.deb ...
- Unpacking bzip2-doc (1.0.8-6) ...
- Selecting previously unselected package libdevmapper1.02.1:amd64.
- Preparing to unpack .../032-libdevmapper1.02.1_2%3a1.02.205-2_amd64.deb ...
- Unpacking libdevmapper1.02.1:amd64 (2:1.02.205-2) ...
- Selecting previously unselected package dmsetup.
- Preparing to unpack .../033-dmsetup_2%3a1.02.205-2_amd64.deb ...
- Unpacking dmsetup (2:1.02.205-2) ...
- Selecting previously unselected package libfreetype6:amd64.
- Preparing to unpack .../034-libfreetype6_2.13.3+dfsg-1_amd64.deb ...
- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1) ...
- Selecting previously unselected package fonts-dejavu-mono.
- Preparing to unpack .../035-fonts-dejavu-mono_2.37-8_all.deb ...
- Unpacking fonts-dejavu-mono (2.37-8) ...
- Selecting previously unselected package fonts-dejavu-core.
- Preparing to unpack .../036-fonts-dejavu-core_2.37-8_all.deb ...
- Unpacking fonts-dejavu-core (2.37-8) ...
- Selecting previously unselected package fontconfig-config.
- Preparing to unpack .../037-fontconfig-config_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig-config (2.15.0-2.3) ...
- Selecting previously unselected package libfontconfig1:amd64.
- Preparing to unpack .../038-libfontconfig1_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package fontconfig.
- Preparing to unpack .../039-fontconfig_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig (2.15.0-2.3) ...
- Selecting previously unselected package gir1.2-glib-2.0:amd64.
- Preparing to unpack .../040-gir1.2-glib-2.0_2.84.4-3~deb13u1_amd64.deb ...
- Unpacking gir1.2-glib-2.0:amd64 (2.84.4-3~deb13u1) ...
- Selecting previously unselected package libatk1.0-0t64:amd64.
- Preparing to unpack .../041-libatk1.0-0t64_2.56.2-1_amd64.deb ...
- Unpacking libatk1.0-0t64:amd64 (2.56.2-1) ...
- Selecting previously unselected package gir1.2-atk-1.0:amd64.
- Preparing to unpack .../042-gir1.2-atk-1.0_2.56.2-1_amd64.deb ...
- Unpacking gir1.2-atk-1.0:amd64 (2.56.2-1) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../043-libpixman-1-0_0.44.0-3_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...
- Selecting previously unselected package libxcb-render0:amd64.
- Preparing to unpack .../044-libxcb-render0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../045-libxcb-shm0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../046-libxrender1_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libcairo2:amd64.
- Preparing to unpack .../047-libcairo2_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package libcairo-gobject2:amd64.
- Preparing to unpack .../048-libcairo-gobject2_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo-gobject2:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package gir1.2-freedesktop:amd64.
- Preparing to unpack .../049-gir1.2-freedesktop_1.84.0-1_amd64.deb ...
- Unpacking gir1.2-freedesktop:amd64 (1.84.0-1) ...
- Selecting previously unselected package gir1.2-atspi-2.0:amd64.
- Preparing to unpack .../050-gir1.2-atspi-2.0_2.56.2-1_amd64.deb ...
- Unpacking gir1.2-atspi-2.0:amd64 (2.56.2-1) ...
- Selecting previously unselected package libcloudproviders0:amd64.
- Preparing to unpack .../051-libcloudproviders0_0.3.6-2_amd64.deb ...
- Unpacking libcloudproviders0:amd64 (0.3.6-2) ...
- Selecting previously unselected package gir1.2-cloudproviders-0.3.0:amd64.
- Preparing to unpack .../052-gir1.2-cloudproviders-0.3.0_0.3.6-2_amd64.deb ...
- Unpacking gir1.2-cloudproviders-0.3.0:amd64 (0.3.6-2) ...
- Selecting previously unselected package gir1.2-glib-2.0-dev:amd64.
- Preparing to unpack .../053-gir1.2-glib-2.0-dev_2.84.4-3~deb13u1_amd64.deb ...
- Unpacking gir1.2-glib-2.0-dev:amd64 (2.84.4-3~deb13u1) ...
- Selecting previously unselected package gir1.2-freedesktop-dev:amd64.
- Preparing to unpack .../054-gir1.2-freedesktop-dev_1.84.0-1_amd64.deb ...
- Unpacking gir1.2-freedesktop-dev:amd64 (1.84.0-1) ...
- Selecting previously unselected package gir1.2-gdkpixbuf-2.0:amd64.
- Preparing to unpack .../055-gir1.2-gdkpixbuf-2.0_2.42.12+dfsg-4_amd64.deb ...
- Unpacking gir1.2-gdkpixbuf-2.0:amd64 (2.42.12+dfsg-4) ...
- Selecting previously unselected package libgraphite2-3:amd64.
- Preparing to unpack .../056-libgraphite2-3_1.3.14-2+b1_amd64.deb ...
- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...
- Selecting previously unselected package libharfbuzz0b:amd64.
- Preparing to unpack .../057-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libharfbuzz-gobject0:amd64.
- Preparing to unpack .../058-libharfbuzz-gobject0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-gobject0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package gir1.2-harfbuzz-0.0:amd64.
- Preparing to unpack .../059-gir1.2-harfbuzz-0.0_10.2.0-1+b1_amd64.deb ...
- Unpacking gir1.2-harfbuzz-0.0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libfribidi0:amd64.
- Preparing to unpack .../060-libfribidi0_1.0.16-1_amd64.deb ...
- Unpacking libfribidi0:amd64 (1.0.16-1) ...
- Selecting previously unselected package libthai-data.
- Preparing to unpack .../061-libthai-data_0.1.29-2_all.deb ...
- Unpacking libthai-data (0.1.29-2) ...
- Selecting previously unselected package libdatrie1:amd64.
- Preparing to unpack .../062-libdatrie1_0.2.13-3+b1_amd64.deb ...
- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...
- Selecting previously unselected package libthai0:amd64.
- Preparing to unpack .../063-libthai0_0.1.29-2+b1_amd64.deb ...
- Unpacking libthai0:amd64 (0.1.29-2+b1) ...
- Selecting previously unselected package libpango-1.0-0:amd64.
- Preparing to unpack .../064-libpango-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libpangoft2-1.0-0:amd64.
- Preparing to unpack .../065-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libpangocairo-1.0-0:amd64.
- Preparing to unpack .../066-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libxft2:amd64.
- Preparing to unpack .../067-libxft2_2.3.6-1+b4_amd64.deb ...
- Unpacking libxft2:amd64 (2.3.6-1+b4) ...
- Selecting previously unselected package libpangoxft-1.0-0:amd64.
- Preparing to unpack .../068-libpangoxft-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangoxft-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package gir1.2-pango-1.0:amd64.
- Preparing to unpack .../069-gir1.2-pango-1.0_1.56.3-1_amd64.deb ...
- Unpacking gir1.2-pango-1.0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libatk-bridge2.0-0t64:amd64.
- Preparing to unpack .../070-libatk-bridge2.0-0t64_2.56.2-1_amd64.deb ...
- Unpacking libatk-bridge2.0-0t64:amd64 (2.56.2-1) ...
- Selecting previously unselected package liblcms2-2:amd64.
- Preparing to unpack .../071-liblcms2-2_2.16-2_amd64.deb ...
- Unpacking liblcms2-2:amd64 (2.16-2) ...
- Selecting previously unselected package libcolord2:amd64.
- Preparing to unpack .../072-libcolord2_1.4.7-3_amd64.deb ...
- Unpacking libcolord2:amd64 (1.4.7-3) ...
- Selecting previously unselected package libavahi-common-data:amd64.
- Preparing to unpack .../073-libavahi-common-data_0.8-16_amd64.deb ...
- Unpacking libavahi-common-data:amd64 (0.8-16) ...
- Selecting previously unselected package libavahi-common3:amd64.
- Preparing to unpack .../074-libavahi-common3_0.8-16_amd64.deb ...
- Unpacking libavahi-common3:amd64 (0.8-16) ...
- Selecting previously unselected package libavahi-client3:amd64.
- Preparing to unpack .../075-libavahi-client3_0.8-16_amd64.deb ...
- Unpacking libavahi-client3:amd64 (0.8-16) ...
- Selecting previously unselected package libcups2t64:amd64.
- Preparing to unpack .../076-libcups2t64_2.4.10-3+deb13u1_amd64.deb ...
- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u1) ...
- Selecting previously unselected package libepoxy0:amd64.
- Preparing to unpack .../077-libepoxy0_1.5.10-2_amd64.deb ...
- Unpacking libepoxy0:amd64 (1.5.10-2) ...
- Selecting previously unselected package libwayland-client0:amd64.
- Preparing to unpack .../078-libwayland-client0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-client0:amd64 (1.23.1-3) ...
- Selecting previously unselected package libwayland-cursor0:amd64.
- Preparing to unpack .../079-libwayland-cursor0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-cursor0:amd64 (1.23.1-3) ...
- Selecting previously unselected package libwayland-egl1:amd64.
- Preparing to unpack .../080-libwayland-egl1_1.23.1-3_amd64.deb ...
- Unpacking libwayland-egl1:amd64 (1.23.1-3) ...
- Selecting previously unselected package libxcomposite1:amd64.
- Preparing to unpack .../081-libxcomposite1_1%3a0.4.6-1_amd64.deb ...
- Unpacking libxcomposite1:amd64 (1:0.4.6-1) ...
- Selecting previously unselected package libxfixes3:amd64.
- Preparing to unpack .../082-libxfixes3_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxcursor1:amd64.
- Preparing to unpack .../083-libxcursor1_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxcursor1:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libxdamage1:amd64.
- Preparing to unpack .../084-libxdamage1_1%3a1.1.6-1+b2_amd64.deb ...
- Unpacking libxdamage1:amd64 (1:1.1.6-1+b2) ...
- Selecting previously unselected package libxinerama1:amd64.
- Preparing to unpack .../085-libxinerama1_2%3a1.1.4-3+b4_amd64.deb ...
- Unpacking libxinerama1:amd64 (2:1.1.4-3+b4) ...
- Selecting previously unselected package xkb-data.
- Preparing to unpack .../086-xkb-data_2.42-1_all.deb ...
- Unpacking xkb-data (2.42-1) ...
- Selecting previously unselected package libxkbcommon0:amd64.
- Preparing to unpack .../087-libxkbcommon0_1.7.0-2_amd64.deb ...
- Unpacking libxkbcommon0:amd64 (1.7.0-2) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../088-libxrandr2_2%3a1.5.4-1+b3_amd64.deb ...
- Unpacking libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Selecting previously unselected package libgtk-3-common.
- Preparing to unpack .../089-libgtk-3-common_3.24.49-3_all.deb ...
- Unpacking libgtk-3-common (3.24.49-3) ...
- Selecting previously unselected package libgtk-3-0t64:amd64.
- Preparing to unpack .../090-libgtk-3-0t64_3.24.49-3_amd64.deb ...
- Unpacking libgtk-3-0t64:amd64 (3.24.49-3) ...
- Selecting previously unselected package gir1.2-gtk-3.0:amd64.
- Preparing to unpack .../091-gir1.2-gtk-3.0_3.24.49-3_amd64.deb ...
- Unpacking gir1.2-gtk-3.0:amd64 (3.24.49-3) ...
- Selecting previously unselected package native-architecture.
- Preparing to unpack .../092-native-architecture_0.2.6_all.deb ...
- Unpacking native-architecture (0.2.6) ...
- Selecting previously unselected package libgirepository-2.0-0:amd64.
- Preparing to unpack .../093-libgirepository-2.0-0_2.84.4-3~deb13u1_amd64.deb ...
- Unpacking libgirepository-2.0-0:amd64 (2.84.4-3~deb13u1) ...
- Selecting previously unselected package girepository-tools:amd64.
- Preparing to unpack .../094-girepository-tools_2.84.4-3~deb13u1_amd64.deb ...
- Unpacking girepository-tools:amd64 (2.84.4-3~deb13u1) ...
- Selecting previously unselected package libicu76:amd64.
- Preparing to unpack .../095-libicu76_76.1-4_amd64.deb ...
- Unpacking libicu76:amd64 (76.1-4) ...
- Selecting previously unselected package icu-devtools.
- Preparing to unpack .../096-icu-devtools_76.1-4_amd64.deb ...
- Unpacking icu-devtools (76.1-4) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../097-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../098-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../099-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../100-libffi-dev_3.4.8-2_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.8-2) ...
- Selecting previously unselected package uuid-dev:amd64.
- Preparing to unpack .../101-uuid-dev_2.41-5_amd64.deb ...
- Unpacking uuid-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libblkid-dev:amd64.
- Preparing to unpack .../102-libblkid-dev_2.41-5_amd64.deb ...
- Unpacking libblkid-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libsepol-dev:amd64.
- Preparing to unpack .../103-libsepol-dev_3.8.1-1_amd64.deb ...
- Unpacking libsepol-dev:amd64 (3.8.1-1) ...
- Selecting previously unselected package libpcre2-16-0:amd64.
- Preparing to unpack .../104-libpcre2-16-0_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-16-0:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpcre2-32-0:amd64.
- Preparing to unpack .../105-libpcre2-32-0_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-32-0:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpcre2-posix3:amd64.
- Preparing to unpack .../106-libpcre2-posix3_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-posix3:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpcre2-dev:amd64.
- Preparing to unpack .../107-libpcre2-dev_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-dev:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libselinux1-dev:amd64.
- Preparing to unpack .../108-libselinux1-dev_3.8.1-1_amd64.deb ...
- Unpacking libselinux1-dev:amd64 (3.8.1-1) ...
- Selecting previously unselected package libmount-dev:amd64.
- Preparing to unpack .../109-libmount-dev_2.41-5_amd64.deb ...
- Unpacking libmount-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libsysprof-capture-4-dev:amd64.
- Preparing to unpack .../110-libsysprof-capture-4-dev_48.0-2_amd64.deb ...
- Unpacking libsysprof-capture-4-dev:amd64 (48.0-2) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../111-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) ...
- Selecting previously unselected package libgio-2.0-dev:amd64.
- Preparing to unpack .../112-libgio-2.0-dev_2.84.4-3~deb13u1_amd64.deb ...
- Unpacking libgio-2.0-dev:amd64 (2.84.4-3~deb13u1) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../113-libglib2.0-data_2.84.4-3~deb13u1_all.deb ...
- Unpacking libglib2.0-data (2.84.4-3~deb13u1) ...
- Selecting previously unselected package libelf1t64:amd64.
- Preparing to unpack .../114-libelf1t64_0.192-4_amd64.deb ...
- Unpacking libelf1t64:amd64 (0.192-4) ...
- Selecting previously unselected package libglib2.0-bin.
- Preparing to unpack .../115-libglib2.0-bin_2.84.4-3~deb13u1_amd64.deb ...
- Unpacking libglib2.0-bin (2.84.4-3~deb13u1) ...
- Selecting previously unselected package python3-packaging.
- Preparing to unpack .../116-python3-packaging_25.0-1_all.deb ...
- Unpacking python3-packaging (25.0-1) ...
- Selecting previously unselected package libgio-2.0-dev-bin.
- Preparing to unpack .../117-libgio-2.0-dev-bin_2.84.4-3~deb13u1_amd64.deb ...
- Unpacking libgio-2.0-dev-bin (2.84.4-3~deb13u1) ...
- Selecting previously unselected package libglib2.0-dev-bin.
- Preparing to unpack .../118-libglib2.0-dev-bin_2.84.4-3~deb13u1_amd64.deb ...
- Unpacking libglib2.0-dev-bin (2.84.4-3~deb13u1) ...
- Selecting previously unselected package libglib2.0-dev:amd64.
- Preparing to unpack .../119-libglib2.0-dev_2.84.4-3~deb13u1_amd64.deb ...
- Unpacking libglib2.0-dev:amd64 (2.84.4-3~deb13u1) ...
- Selecting previously unselected package libatk1.0-dev:amd64.
- Preparing to unpack .../120-libatk1.0-dev_2.56.2-1_amd64.deb ...
- Unpacking libatk1.0-dev:amd64 (2.56.2-1) ...
- Selecting previously unselected package libsystemd-dev:amd64.
- Preparing to unpack .../121-libsystemd-dev_257.8-1~deb13u2_amd64.deb ...
- Unpacking libsystemd-dev:amd64 (257.8-1~deb13u2) ...
- Selecting previously unselected package sgml-base.
- Preparing to unpack .../122-sgml-base_1.31+nmu1_all.deb ...
- Unpacking sgml-base (1.31+nmu1) ...
- Selecting previously unselected package xml-core.
- Preparing to unpack .../123-xml-core_0.19_all.deb ...
- Unpacking xml-core (0.19) ...
- Selecting previously unselected package libdbus-1-dev:amd64.
- Preparing to unpack .../124-libdbus-1-dev_1.16.2-2_amd64.deb ...
- Unpacking libdbus-1-dev:amd64 (1.16.2-2) ...
- Selecting previously unselected package libxext-dev:amd64.
- Preparing to unpack .../125-libxext-dev_2%3a1.3.4-1+b3_amd64.deb ...
- Unpacking libxext-dev:amd64 (2:1.3.4-1+b3) ...
- Selecting previously unselected package libxfixes-dev:amd64.
- Preparing to unpack .../126-libxfixes-dev_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes-dev:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxi-dev:amd64.
- Preparing to unpack .../127-libxi-dev_2%3a1.8.2-1_amd64.deb ...
- Unpacking libxi-dev:amd64 (2:1.8.2-1) ...
- Selecting previously unselected package libxtst-dev:amd64.
- Preparing to unpack .../128-libxtst-dev_2%3a1.2.5-1_amd64.deb ...
- Unpacking libxtst-dev:amd64 (2:1.2.5-1) ...
- Selecting previously unselected package libatspi2.0-dev:amd64.
- Preparing to unpack .../129-libatspi2.0-dev_2.56.2-1_amd64.deb ...
- Unpacking libatspi2.0-dev:amd64 (2.56.2-1) ...
- Selecting previously unselected package libatk-bridge2.0-dev:amd64.
- Preparing to unpack .../130-libatk-bridge2.0-dev_2.56.2-1_amd64.deb ...
- Unpacking libatk-bridge2.0-dev:amd64 (2.56.2-1) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../131-libbrotli-dev_1.1.0-2+b7_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Selecting previously unselected package libbz2-dev:amd64.
- Preparing to unpack .../132-libbz2-dev_1.0.8-6_amd64.deb ...
- Unpacking libbz2-dev:amd64 (1.0.8-6) ...
- Selecting previously unselected package liblzo2-2:amd64.
- Preparing to unpack .../133-liblzo2-2_2.10-3+b1_amd64.deb ...
- Unpacking liblzo2-2:amd64 (2.10-3+b1) ...
- Selecting previously unselected package libcairo-script-interpreter2:amd64.
- Preparing to unpack .../134-libcairo-script-interpreter2_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo-script-interpreter2:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package libexpat1-dev:amd64.
- Preparing to unpack .../135-libexpat1-dev_2.7.1-2_amd64.deb ...
- Unpacking libexpat1-dev:amd64 (2.7.1-2) ...
- Selecting previously unselected package libpng-dev:amd64.
- Preparing to unpack .../136-libpng-dev_1.6.48-1_amd64.deb ...
- Unpacking libpng-dev:amd64 (1.6.48-1) ...
- Selecting previously unselected package libfreetype-dev:amd64.
- Preparing to unpack .../137-libfreetype-dev_2.13.3+dfsg-1_amd64.deb ...
- Unpacking libfreetype-dev:amd64 (2.13.3+dfsg-1) ...
- Selecting previously unselected package libfontconfig-dev:amd64.
- Preparing to unpack .../138-libfontconfig-dev_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig-dev:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package libpixman-1-dev:amd64.
- Preparing to unpack .../139-libpixman-1-dev_0.44.0-3_amd64.deb ...
- Unpacking libpixman-1-dev:amd64 (0.44.0-3) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../140-libice6_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice6:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../141-libsm6_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libice-dev:amd64.
- Preparing to unpack .../142-libice-dev_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice-dev:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package libsm-dev:amd64.
- Preparing to unpack .../143-libsm-dev_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm-dev:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libxcb-render0-dev:amd64.
- Preparing to unpack .../144-libxcb-render0-dev_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-render0-dev:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-shm0-dev:amd64.
- Preparing to unpack .../145-libxcb-shm0-dev_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-shm0-dev:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxrender-dev:amd64.
- Preparing to unpack .../146-libxrender-dev_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender-dev:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libcairo2-dev:amd64.
- Preparing to unpack .../147-libcairo2-dev_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo2-dev:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package libcloudproviders-dev:amd64.
- Preparing to unpack .../148-libcloudproviders-dev_0.3.6-2_amd64.deb ...
- Unpacking libcloudproviders-dev:amd64 (0.3.6-2) ...
- Selecting previously unselected package libjson-c5:amd64.
- Preparing to unpack .../149-libjson-c5_0.18+ds-1_amd64.deb ...
- Unpacking libjson-c5:amd64 (0.18+ds-1) ...
- Selecting previously unselected package libcryptsetup12:amd64.
- Preparing to unpack .../150-libcryptsetup12_2%3a2.7.5-2_amd64.deb ...
- Unpacking libcryptsetup12:amd64 (2:2.7.5-2) ...
- Selecting previously unselected package libdatrie-dev:amd64.
- Preparing to unpack .../151-libdatrie-dev_0.2.13-3+b1_amd64.deb ...
- Unpacking libdatrie-dev:amd64 (0.2.13-3+b1) ...
- Selecting previously unselected package libdav1d7:amd64.
- Preparing to unpack .../152-libdav1d7_1.5.1-1_amd64.deb ...
- Unpacking libdav1d7:amd64 (1.5.1-1) ...
- Selecting previously unselected package libdeflate-dev:amd64.
- Preparing to unpack .../153-libdeflate-dev_1.23-2_amd64.deb ...
- Unpacking libdeflate-dev:amd64 (1.23-2) ...
- Selecting previously unselected package libdrm-common.
- Preparing to unpack .../154-libdrm-common_2.4.124-2_all.deb ...
- Unpacking libdrm-common (2.4.124-2) ...
- Selecting previously unselected package libdrm2:amd64.
- Preparing to unpack .../155-libdrm2_2.4.124-2_amd64.deb ...
- Unpacking libdrm2:amd64 (2.4.124-2) ...
- Selecting previously unselected package libdrm-amdgpu1:amd64.
- Preparing to unpack .../156-libdrm-amdgpu1_2.4.124-2_amd64.deb ...
- Unpacking libdrm-amdgpu1:amd64 (2.4.124-2) ...
- Selecting previously unselected package libpciaccess0:amd64.
- Preparing to unpack .../157-libpciaccess0_0.17-3+b3_amd64.deb ...
- Unpacking libpciaccess0:amd64 (0.17-3+b3) ...
- Selecting previously unselected package libdrm-intel1:amd64.
- Preparing to unpack .../158-libdrm-intel1_2.4.124-2_amd64.deb ...
- Unpacking libdrm-intel1:amd64 (2.4.124-2) ...
- Selecting previously unselected package libglvnd0:amd64.
- Preparing to unpack .../159-libglvnd0_1.7.0-1+b2_amd64.deb ...
- Unpacking libglvnd0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libwayland-server0:amd64.
- Preparing to unpack .../160-libwayland-server0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-server0:amd64 (1.23.1-3) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../161-libz3-4_4.13.3-1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.13.3-1) ...
- Selecting previously unselected package libllvm19:amd64.
- Preparing to unpack .../162-libllvm19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libllvm19:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libsensors-config.
- Preparing to unpack .../163-libsensors-config_1%3a3.6.2-2_all.deb ...
- Unpacking libsensors-config (1:3.6.2-2) ...
- Selecting previously unselected package libsensors5:amd64.
- Preparing to unpack .../164-libsensors5_1%3a3.6.2-2_amd64.deb ...
- Unpacking libsensors5:amd64 (1:3.6.2-2) ...
- Selecting previously unselected package libx11-xcb1:amd64.
- Preparing to unpack .../165-libx11-xcb1_2%3a1.8.12-1_amd64.deb ...
- Unpacking libx11-xcb1:amd64 (2:1.8.12-1) ...
- Selecting previously unselected package libxcb-dri3-0:amd64.
- Preparing to unpack .../166-libxcb-dri3-0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-dri3-0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-present0:amd64.
- Preparing to unpack .../167-libxcb-present0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-present0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-randr0:amd64.
- Preparing to unpack .../168-libxcb-randr0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-randr0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-sync1:amd64.
- Preparing to unpack .../169-libxcb-sync1_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-sync1:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-xfixes0:amd64.
- Preparing to unpack .../170-libxcb-xfixes0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxshmfence1:amd64.
- Preparing to unpack .../171-libxshmfence1_1.3.3-1_amd64.deb ...
- Unpacking libxshmfence1:amd64 (1.3.3-1) ...
- Selecting previously unselected package mesa-libgallium:amd64.
- Preparing to unpack .../172-mesa-libgallium_25.0.7-2_amd64.deb ...
- Unpacking mesa-libgallium:amd64 (25.0.7-2) ...
- Selecting previously unselected package libgbm1:amd64.
- Preparing to unpack .../173-libgbm1_25.0.7-2_amd64.deb ...
- Unpacking libgbm1:amd64 (25.0.7-2) ...
- Selecting previously unselected package libegl-mesa0:amd64.
- Preparing to unpack .../174-libegl-mesa0_25.0.7-2_amd64.deb ...
- Unpacking libegl-mesa0:amd64 (25.0.7-2) ...
- Selecting previously unselected package libegl1:amd64.
- Preparing to unpack .../175-libegl1_1.7.0-1+b2_amd64.deb ...
- Unpacking libegl1:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libxcb-glx0:amd64.
- Preparing to unpack .../176-libxcb-glx0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-glx0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxxf86vm1:amd64.
- Preparing to unpack .../177-libxxf86vm1_1%3a1.1.4-1+b4_amd64.deb ...
- Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b4) ...
- Selecting previously unselected package libvulkan1:amd64.
- Preparing to unpack .../178-libvulkan1_1.4.309.0-1_amd64.deb ...
- Unpacking libvulkan1:amd64 (1.4.309.0-1) ...
- Selecting previously unselected package libgl1-mesa-dri:amd64.
- Preparing to unpack .../179-libgl1-mesa-dri_25.0.7-2_amd64.deb ...
- Unpacking libgl1-mesa-dri:amd64 (25.0.7-2) ...
- Selecting previously unselected package libglx-mesa0:amd64.
- Preparing to unpack .../180-libglx-mesa0_25.0.7-2_amd64.deb ...
- Unpacking libglx-mesa0:amd64 (25.0.7-2) ...
- Selecting previously unselected package libglx0:amd64.
- Preparing to unpack .../181-libglx0_1.7.0-1+b2_amd64.deb ...
- Unpacking libglx0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgl1:amd64.
- Preparing to unpack .../182-libgl1_1.7.0-1+b2_amd64.deb ...
- Unpacking libgl1:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libglx-dev:amd64.
- Preparing to unpack .../183-libglx-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libglx-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgl-dev:amd64.
- Preparing to unpack .../184-libgl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libgl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libegl-dev:amd64.
- Preparing to unpack .../185-libegl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libegl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libglvnd-core-dev:amd64.
- Preparing to unpack .../186-libglvnd-core-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libglvnd-core-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgles1:amd64.
- Preparing to unpack .../187-libgles1_1.7.0-1+b2_amd64.deb ...
- Unpacking libgles1:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgles2:amd64.
- Preparing to unpack .../188-libgles2_1.7.0-1+b2_amd64.deb ...
- Unpacking libgles2:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgles-dev:amd64.
- Preparing to unpack .../189-libgles-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libgles-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libopengl0:amd64.
- Preparing to unpack .../190-libopengl0_1.7.0-1+b2_amd64.deb ...
- Unpacking libopengl0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libopengl-dev:amd64.
- Preparing to unpack .../191-libopengl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libopengl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libglvnd-dev:amd64.
- Preparing to unpack .../192-libglvnd-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libglvnd-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libegl1-mesa-dev:amd64.
- Preparing to unpack .../193-libegl1-mesa-dev_25.0.7-2_amd64.deb ...
- Unpacking libegl1-mesa-dev:amd64 (25.0.7-2) ...
- Selecting previously unselected package libepoxy-dev:amd64.
- Preparing to unpack .../194-libepoxy-dev_1.5.10-2_amd64.deb ...
- Unpacking libepoxy-dev:amd64 (1.5.10-2) ...
- Selecting previously unselected package libfribidi-dev:amd64.
- Preparing to unpack .../195-libfribidi-dev_1.0.16-1_amd64.deb ...
- Unpacking libfribidi-dev:amd64 (1.0.16-1) ...
- Selecting previously unselected package libgdk-pixbuf2.0-bin.
- Preparing to unpack .../196-libgdk-pixbuf2.0-bin_2.42.12+dfsg-4_amd64.deb ...
- Unpacking libgdk-pixbuf2.0-bin (2.42.12+dfsg-4) ...
- Selecting previously unselected package libjpeg62-turbo-dev:amd64.
- Preparing to unpack .../197-libjpeg62-turbo-dev_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg62-turbo-dev:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libjpeg-dev:amd64.
- Preparing to unpack .../198-libjpeg-dev_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg-dev:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libjbig-dev:amd64.
- Preparing to unpack .../199-libjbig-dev_2.1-6.1+b2_amd64.deb ...
- Unpacking libjbig-dev:amd64 (2.1-6.1+b2) ...
- Selecting previously unselected package liblzma-dev:amd64.
- Preparing to unpack .../200-liblzma-dev_5.8.1-1_amd64.deb ...
- Unpacking liblzma-dev:amd64 (5.8.1-1) ...
- Selecting previously unselected package libwebpdemux2:amd64.
- Preparing to unpack .../201-libwebpdemux2_1.5.0-0.1_amd64.deb ...
- Unpacking libwebpdemux2:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebpmux3:amd64.
- Preparing to unpack .../202-libwebpmux3_1.5.0-0.1_amd64.deb ...
- Unpacking libwebpmux3:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebpdecoder3:amd64.
- Preparing to unpack .../203-libwebpdecoder3_1.5.0-0.1_amd64.deb ...
- Unpacking libwebpdecoder3:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libsharpyuv-dev:amd64.
- Preparing to unpack .../204-libsharpyuv-dev_1.5.0-0.1_amd64.deb ...
- Unpacking libsharpyuv-dev:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebp-dev:amd64.
- Preparing to unpack .../205-libwebp-dev_1.5.0-0.1_amd64.deb ...
- Unpacking libwebp-dev:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libtiffxx6:amd64.
- Preparing to unpack .../206-libtiffxx6_4.7.0-3+deb13u1_amd64.deb ...
- Unpacking libtiffxx6:amd64 (4.7.0-3+deb13u1) ...
- Selecting previously unselected package liblerc-dev:amd64.
- Preparing to unpack .../207-liblerc-dev_4.0.0+ds-5_amd64.deb ...
- Unpacking liblerc-dev:amd64 (4.0.0+ds-5) ...
- Selecting previously unselected package libtiff-dev:amd64.
- Preparing to unpack .../208-libtiff-dev_4.7.0-3+deb13u1_amd64.deb ...
- Unpacking libtiff-dev:amd64 (4.7.0-3+deb13u1) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-dev:amd64.
- Preparing to unpack .../209-libgdk-pixbuf-2.0-dev_2.42.12+dfsg-4_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-dev:amd64 (2.42.12+dfsg-4) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../210-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 .../211-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgraphite2-dev:amd64.
- Preparing to unpack .../212-libgraphite2-dev_1.3.14-2+b1_amd64.deb ...
- Unpacking libgraphite2-dev:amd64 (1.3.14-2+b1) ...
- Selecting previously unselected package libgtk-3-bin.
- Preparing to unpack .../213-libgtk-3-bin_3.24.49-3_amd64.deb ...
- Unpacking libgtk-3-bin (3.24.49-3) ...
- Selecting previously unselected package libharfbuzz-icu0:amd64.
- Preparing to unpack .../214-libharfbuzz-icu0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-icu0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libharfbuzz-subset0:amd64.
- Preparing to unpack .../215-libharfbuzz-subset0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-subset0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libharfbuzz-cairo0:amd64.
- Preparing to unpack .../216-libharfbuzz-cairo0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-cairo0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libicu-dev:amd64.
- Preparing to unpack .../217-libicu-dev_76.1-4_amd64.deb ...
- Unpacking libicu-dev:amd64 (76.1-4) ...
- Selecting previously unselected package libharfbuzz-dev:amd64.
- Preparing to unpack .../218-libharfbuzz-dev_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-dev:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libthai-dev:amd64.
- Preparing to unpack .../219-libthai-dev_0.1.29-2+b1_amd64.deb ...
- Unpacking libthai-dev:amd64 (0.1.29-2+b1) ...
- Selecting previously unselected package libxft-dev:amd64.
- Preparing to unpack .../220-libxft-dev_2.3.6-1+b4_amd64.deb ...
- Unpacking libxft-dev:amd64 (2.3.6-1+b4) ...
- Selecting previously unselected package pango1.0-tools.
- Preparing to unpack .../221-pango1.0-tools_1.56.3-1_amd64.deb ...
- Unpacking pango1.0-tools (1.56.3-1) ...
- Selecting previously unselected package libpango1.0-dev:amd64.
- Preparing to unpack .../222-libpango1.0-dev_1.56.3-1_amd64.deb ...
- Unpacking libpango1.0-dev:amd64 (1.56.3-1) ...
- Selecting previously unselected package libwayland-bin.
- Preparing to unpack .../223-libwayland-bin_1.23.1-3_amd64.deb ...
- Unpacking libwayland-bin (1.23.1-3) ...
- Selecting previously unselected package libwayland-dev:amd64.
- Preparing to unpack .../224-libwayland-dev_1.23.1-3_amd64.deb ...
- Unpacking libwayland-dev:amd64 (1.23.1-3) ...
- Selecting previously unselected package libxcomposite-dev:amd64.
- Preparing to unpack .../225-libxcomposite-dev_1%3a0.4.6-1_amd64.deb ...
- Unpacking libxcomposite-dev:amd64 (1:0.4.6-1) ...
- Selecting previously unselected package libxcursor-dev:amd64.
- Preparing to unpack .../226-libxcursor-dev_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxcursor-dev:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libxdamage-dev:amd64.
- Preparing to unpack .../227-libxdamage-dev_1%3a1.1.6-1+b2_amd64.deb ...
- Unpacking libxdamage-dev:amd64 (1:1.1.6-1+b2) ...
- Selecting previously unselected package libxinerama-dev:amd64.
- Preparing to unpack .../228-libxinerama-dev_2%3a1.1.4-3+b4_amd64.deb ...
- Unpacking libxinerama-dev:amd64 (2:1.1.4-3+b4) ...
- Selecting previously unselected package libxkbcommon-dev:amd64.
- Preparing to unpack .../229-libxkbcommon-dev_1.7.0-2_amd64.deb ...
- Unpacking libxkbcommon-dev:amd64 (1.7.0-2) ...
- Selecting previously unselected package libxrandr-dev:amd64.
- Preparing to unpack .../230-libxrandr-dev_2%3a1.5.4-1+b3_amd64.deb ...
- Unpacking libxrandr-dev:amd64 (2:1.5.4-1+b3) ...
- Selecting previously unselected package wayland-protocols.
- Preparing to unpack .../231-wayland-protocols_1.44-1_all.deb ...
- Unpacking wayland-protocols (1.44-1) ...
- Selecting previously unselected package libgtk-3-dev:amd64.
- Preparing to unpack .../232-libgtk-3-dev_3.24.49-3_amd64.deb ...
- Unpacking libgtk-3-dev:amd64 (3.24.49-3) ...
- Selecting previously unselected package libkmod2:amd64.
- Preparing to unpack .../233-libkmod2_34.2-2_amd64.deb ...
- Unpacking libkmod2:amd64 (34.2-2) ...
- Selecting previously unselected package libpng-tools.
- Preparing to unpack .../234-libpng-tools_1.6.48-1_amd64.deb ...
- Unpacking libpng-tools (1.6.48-1) ...
- Selecting previously unselected package librsvg2-2:amd64.
- Preparing to unpack .../235-librsvg2-2_2.60.0+dfsg-1_amd64.deb ...
- Unpacking librsvg2-2:amd64 (2.60.0+dfsg-1) ...
- Selecting previously unselected package librsvg2-common:amd64.
- Preparing to unpack .../236-librsvg2-common_2.60.0+dfsg-1_amd64.deb ...
- Unpacking librsvg2-common:amd64 (2.60.0+dfsg-1) ...
- Selecting previously unselected package mesa-vulkan-drivers:amd64.
- Preparing to unpack .../237-mesa-vulkan-drivers_25.0.7-2_amd64.deb ...
- Unpacking mesa-vulkan-drivers:amd64 (25.0.7-2) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../238-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package systemd-cryptsetup.
- Preparing to unpack .../239-systemd-cryptsetup_257.8-1~deb13u2_amd64.deb ...
- Unpacking systemd-cryptsetup (257.8-1~deb13u2) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../240-xdg-user-dirs_0.18-2_amd64.deb ...
- Unpacking xdg-user-dirs (0.18-2) ...
- Setting up media-types (13.0.0) ...
- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...
- Setting up libxcb-dri3-0:amd64 (1.17.0-2+b1) ...
- Setting up liblcms2-2:amd64 (2.16-2) ...
- Setting up libpixman-1-0:amd64 (0.44.0-3) ...
- Setting up bzip2-doc (1.0.8-6) ...
- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...
- Setting up libwayland-server0:amd64 (1.23.1-3) ...
- Setting up libx11-xcb1:amd64 (2:1.8.12-1) ...
- Setting up libpciaccess0:amd64 (0.17-3+b3) ...
- Setting up systemd-sysv (257.8-1~deb13u2) ...
- Setting up libpixman-1-dev:amd64 (0.44.0-3) ...
- Setting up native-architecture (0.2.6) ...
- Setting up libxdamage1:amd64 (1:1.1.6-1+b2) ...
- Setting up libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
- Setting up liblerc4:amd64 (4.0.0+ds-5) ...
- Setting up libglvnd-core-dev:amd64 (1.7.0-1+b2) ...
- Setting up hicolor-icon-theme (0.18-2) ...
- Setting up libxi6:amd64 (2:1.8.2-1) ...
- Setting up libxrender1:amd64 (1:0.9.12-1) ...
- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...
- Setting up xdg-user-dirs (0.18-2) ...
- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...
- Setting up libglvnd0:amd64 (1.7.0-1+b2) ...
- Setting up libxcb-glx0:amd64 (1.17.0-2+b1) ...
- Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-4) ...
- Setting up x11-common (1:7.7+24) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libsensors-config (1:3.6.2-2) ...
- Setting up libdeflate0:amd64 (1.23-2) ...
- Setting up libwebpdecoder3:amd64 (1.5.0-0.1) ...
- Setting up libnss-systemd:amd64 (257.8-1~deb13u2) ...
- Setting up xkb-data (2.42-1) ...
- Setting up liblzo2-2:amd64 (2.10-3+b1) ...
- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Setting up libffi-dev:amd64 (3.4.8-2) ...
- Setting up libjbig0:amd64 (2.1-6.1+b2) ...
- Setting up libpcre2-16-0:amd64 (10.46-1~deb13u1) ...
- Setting up libopengl0:amd64 (1.7.0-1+b2) ...
- Setting up libelf1t64:amd64 (0.192-4) ...
- Setting up libxxf86vm1:amd64 (1:1.1.4-1+b4) ...
- Setting up libxcb-present0:amd64 (1.17.0-2+b1) ...
- Setting up libsysprof-capture-4-dev:amd64 (48.0-2) ...
- Setting up libxcb-shm0-dev:amd64 (1.17.0-2+b1) ...
- Setting up libgraphite2-dev:amd64 (1.3.14-2+b1) ...
- Setting up libz3-4:amd64 (4.13.3-1) ...
- Setting up libpcre2-32-0:amd64 (10.46-1~deb13u1) ...
- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u1) ...
- Setting up libglib2.0-data (2.84.4-3~deb13u1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libgles2:amd64 (1.7.0-1+b2) ...
- Setting up libexpat1-dev:amd64 (2.7.1-2) ...
- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Setting up libjpeg62-turbo-dev:amd64 (1:2.1.5-4) ...
- Setting up libepoxy0:amd64 (1.5.10-2) ...
- Setting up libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Setting up libxcb-sync1:amd64 (1.17.0-2+b1) ...
- Setting up uuid-dev:amd64 (2.41-5) ...
- Setting up libavahi-common-data:amd64 (0.8-16) ...
- Setting up libgles1:amd64 (1.7.0-1+b2) ...
- Setting up libdbus-1-3:amd64 (1.16.2-2) ...
- Setting up libfribidi0:amd64 (1.0.16-1) ...
- Setting up libxinerama1:amd64 (2:1.1.4-3+b4) ...
- Setting up fonts-dejavu-mono (2.37-8) ...
- Setting up libpng16-16t64:amd64 (1.6.48-1) ...
- Setting up systemd-timesyncd (257.8-1~deb13u2) ...
- 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' → '/usr/lib/systemd/system/systemd-timesyncd.service'.
- Created symlink '/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service' → '/usr/lib/systemd/system/systemd-timesyncd.service'.
- Setting up libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Setting up fonts-dejavu-core (2.37-8) ...
- Setting up libsepol-dev:amd64 (3.8.1-1) ...
- Setting up libxcb-render0-dev:amd64 (1.17.0-2+b1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up gir1.2-glib-2.0:amd64 (2.84.4-3~deb13u1) ...
- Setting up libsensors5:amd64 (1:3.6.2-2) ...
- Setting up liblerc-dev:amd64 (4.0.0+ds-5) ...
- Setting up libvulkan1:amd64 (1.4.309.0-1) ...
- Setting up libwebp7:amd64 (1.5.0-0.1) ...
- Setting up libxext-dev:amd64 (2:1.3.4-1+b3) ...
- Setting up liblzma-dev:amd64 (5.8.1-1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libpcre2-posix3:amd64 (10.46-1~deb13u1) ...
- Setting up wayland-protocols (1.44-1) ...
- Setting up libdav1d7:amd64 (1.5.1-1) ...
- Setting up gir1.2-glib-2.0-dev:amd64 (2.84.4-3~deb13u1) ...
- Setting up libxshmfence1:amd64 (1.3.3-1) ...
- Setting up at-spi2-common (2.56.2-1) ...
- Setting up libtiff6:amd64 (4.7.0-3+deb13u1) ...
- Setting up libxcb-randr0:amd64 (1.17.0-2+b1) ...
- Setting up dbus-session-bus-common (1.16.2-2) ...
- Setting up libthai-data (0.1.29-2) ...
- Setting up sgml-base (1.31+nmu1) ...
- Setting up libwayland-egl1:amd64 (1.23.1-3) ...
- Setting up libicu76:amd64 (76.1-4) ...
- Setting up libopengl-dev:amd64 (1.7.0-1+b2) ...
- Setting up dbus-system-bus-common (1.16.2-2) ...
- Creating group 'messagebus' with GID 996.
- Creating user 'messagebus' (System Message Bus) with UID 996 and GID 996.
- Setting up libsharpyuv-dev:amd64 (1.5.0-0.1) ...
- Setting up libwebpmux3:amd64 (1.5.0-0.1) ...
- Setting up libtiffxx6:amd64 (4.7.0-3+deb13u1) ...
- Setting up libdeflate-dev:amd64 (1.23-2) ...
- Setting up libdrm-common (2.4.124-2) ...
- Setting up libxcomposite1:amd64 (1:0.4.6-1) ...
- Setting up libxrender-dev:amd64 (1:0.9.12-1) ...
- Setting up libjson-c5:amd64 (0.18+ds-1) ...
- Setting up readline-common (8.2-6) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ...
- Setting up dbus-bin (1.16.2-2) ...
- Setting up libsystemd-dev:amd64 (257.8-1~deb13u2) ...
- Setting up libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Setting up libkmod2:amd64 (34.2-2) ...
- Setting up libbz2-dev:amd64 (1.0.8-6) ...
- Setting up libxkbcommon0:amd64 (1.7.0-2) ...
- Setting up libwayland-client0:amd64 (1.23.1-3) ...
- Setting up libblkid-dev:amd64 (2.41-5) ...
- Setting up libllvm19:amd64 (1:19.1.7-3+b1) ...
- Setting up libice6:amd64 (2:1.1.1-1) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libatk1.0-0t64:amd64 (2.56.2-1) ...
- Setting up libpcre2-dev:amd64 (10.46-1~deb13u1) ...
- Setting up libice-dev:amd64 (2:1.1.1-1) ...
- Setting up libpng-tools (1.6.48-1) ...
- Setting up libgirepository-2.0-0:amd64 (2.84.4-3~deb13u1) ...
- Setting up gir1.2-atk-1.0:amd64 (2.56.2-1) ...
- Setting up libselinux1-dev:amd64 (3.8.1-1) ...
- Setting up fontconfig-config (2.15.0-2.3) ...
- Setting up libxtst6:amd64 (2:1.2.5-1) ...
- Setting up libfribidi-dev:amd64 (1.0.16-1) ...
- Setting up libwebpdemux2:amd64 (1.5.0-0.1) ...
- Setting up libxkbcommon-dev:amd64 (1.7.0-2) ...
- Setting up libxcursor1:amd64 (1:1.2.3-1) ...
- Setting up libpng-dev:amd64 (1.6.48-1) ...
- Setting up libavahi-common3:amd64 (0.8-16) ...
- Setting up libjpeg-dev:amd64 (1:2.1.5-4) ...
- Setting up libjbig-dev:amd64 (2.1-6.1+b2) ...
- Setting up libcloudproviders0:amd64 (0.3.6-2) ...
- Setting up libglib2.0-bin (2.84.4-3~deb13u1) ...
- Setting up dbus-daemon (1.16.2-2) ...
- Setting up libcolord2:amd64 (1.4.7-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libdconf1:amd64 (0.40.0-5) ...
- Setting up libxfixes-dev:amd64 (1:6.0.0-2+b4) ...
- Setting up libthai0:amd64 (0.1.29-2+b1) ...
- Setting up libwayland-bin (1.23.1-3) ...
- Setting up libxrandr-dev:amd64 (2:1.5.4-1+b3) ...
- Setting up libwebp-dev:amd64 (1.5.0-0.1) ...
- Setting up libfreetype6:amd64 (2.13.3+dfsg-1) ...
- Setting up libtiff-dev:amd64 (4.7.0-3+deb13u1) ...
- Setting up libatspi2.0-0t64:amd64 (2.56.2-1) ...
- Setting up dbus (1.16.2-2) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up shared-mime-info (2.4-5+b2) ...
- Setting up icu-devtools (76.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libxinerama-dev:amd64 (2:1.1.4-3+b4) ...
- Setting up libreadline8t64:amd64 (8.2-6) ...
- Setting up libdrm2:amd64 (2.4.124-2) ...
- Setting up libdatrie-dev:amd64 (0.2.13-3+b1) ...
- Setting up gir1.2-cloudproviders-0.3.0:amd64 (0.3.6-2) ...
- Setting up libwayland-cursor0:amd64 (1.23.1-3) ...
- Setting up xml-core (0.19) ...
- Setting up libpam-systemd:amd64 (257.8-1~deb13u2) ...
- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...
- Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4) ...
- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...
- Setting up libxi-dev:amd64 (2:1.8.2-1) ...
- Setting up libsm6:amd64 (2:1.2.6-1) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Setting up libicu-dev:amd64 (76.1-4) ...
- Setting up libavahi-client3:amd64 (0.8-16) ...
- Setting up libmount-dev:amd64 (2.41-5) ...
- Setting up libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up libdrm-amdgpu1:amd64 (2.4.124-2) ...
- Setting up libxtst-dev:amd64 (2:1.2.5-1) ...
- Setting up libxdamage-dev:amd64 (1:1.1.6-1+b2) ...
- Setting up libatk-bridge2.0-0t64:amd64 (2.56.2-1) ...
- Setting up mesa-vulkan-drivers:amd64 (25.0.7-2) ...
- Setting up gtk-update-icon-cache (4.18.6+ds-2) ...
- Setting up fontconfig (2.15.0-2.3) ...
- Regenerating fonts cache...
- done.
- Setting up libxft2:amd64 (2.3.6-1+b4) ...
- Setting up libgio-2.0-dev:amd64 (2.84.4-3~deb13u1) ...
- Setting up libharfbuzz-icu0:amd64 (10.2.0-1+b1) ...
- Setting up girepository-tools:amd64 (2.84.4-3~deb13u1) ...
- Setting up gir1.2-gdkpixbuf-2.0:amd64 (2.42.12+dfsg-4) ...
- Setting up python3.13 (3.13.5-2) ...
- Setting up libsm-dev:amd64 (2:1.2.6-1) ...
- Setting up libxcomposite-dev:amd64 (1:0.4.6-1) ...
- Setting up libxcursor-dev:amd64 (1:1.2.3-1) ...
- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...
- Setting up libdrm-intel1:amd64 (2.4.124-2) ...
- Setting up python3 (3.13.5-1) ...
- running python rtupdate hooks for python3.13...
- running python post-rtupdate hooks for python3.13...
- Setting up libharfbuzz-gobject0:amd64 (10.2.0-1+b1) ...
- Setting up libwayland-dev:amd64 (1.23.1-3) ...
- Setting up libcairo2:amd64 (1.18.4-1+b1) ...
- Setting up libfreetype-dev:amd64 (2.13.3+dfsg-1) ...
- Setting up dbus-user-session (1.16.2-2) ...
- Setting up python3-packaging (25.0-1) ...
- Setting up libharfbuzz-cairo0:amd64 (10.2.0-1+b1) ...
- Setting up adwaita-icon-theme (48.1-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 libthai-dev:amd64 (0.1.29-2+b1) ...
- Setting up libgdk-pixbuf2.0-bin (2.42.12+dfsg-4) ...
- Setting up libharfbuzz-subset0:amd64 (10.2.0-1+b1) ...
- Setting up libcairo-gobject2:amd64 (1.18.4-1+b1) ...
- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...
- Setting up libcups2t64:amd64 (2.4.10-3+deb13u1) ...
- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...
- Setting up libcairo-script-interpreter2:amd64 (1.18.4-1+b1) ...
- Setting up mesa-libgallium:amd64 (25.0.7-2) ...
- Setting up libgio-2.0-dev-bin (2.84.4-3~deb13u1) ...
- Setting up gir1.2-freedesktop:amd64 (1.84.0-1) ...
- Setting up libpangoxft-1.0-0:amd64 (1.56.3-1) ...
- Setting up libgbm1:amd64 (25.0.7-2) ...
- Setting up libfontconfig-dev:amd64 (2.15.0-2.3) ...
- Setting up libgl1-mesa-dri:amd64 (25.0.7-2) ...
- Setting up pango1.0-tools (1.56.3-1) ...
- Setting up dconf-service (0.40.0-5) ...
- Setting up gir1.2-atspi-2.0:amd64 (2.56.2-1) ...
- Setting up gir1.2-harfbuzz-0.0:amd64 (10.2.0-1+b1) ...
- Setting up librsvg2-2:amd64 (2.60.0+dfsg-1) ...
- Setting up gir1.2-pango-1.0:amd64 (1.56.3-1) ...
- Setting up libegl-mesa0:amd64 (25.0.7-2) ...
- Setting up gir1.2-freedesktop-dev:amd64 (1.84.0-1) ...
- Setting up librsvg2-common:amd64 (2.60.0+dfsg-1) ...
- Setting up libegl1:amd64 (1.7.0-1+b2) ...
- Setting up libxft-dev:amd64 (2.3.6-1+b4) ...
- Setting up libglib2.0-dev-bin (2.84.4-3~deb13u1) ...
- Setting up libglx-mesa0:amd64 (25.0.7-2) ...
- Setting up libglx0:amd64 (1.7.0-1+b2) ...
- Setting up dconf-gsettings-backend:amd64 (0.40.0-5) ...
- Setting up libgl1:amd64 (1.7.0-1+b2) ...
- Setting up libglib2.0-dev:amd64 (2.84.4-3~deb13u1) ...
- Setting up libglx-dev:amd64 (1.7.0-1+b2) ...
- Setting up libcairo2-dev:amd64 (1.18.4-1+b1) ...
- Setting up libgl-dev:amd64 (1.7.0-1+b2) ...
- Setting up libgtk-3-common (3.24.49-3) ...
- Setting up libatk1.0-dev:amd64 (2.56.2-1) ...
- Setting up libgdk-pixbuf-2.0-dev:amd64 (2.42.12+dfsg-4) ...
- Setting up gsettings-desktop-schemas (48.0-1) ...
- Setting up libharfbuzz-dev:amd64 (10.2.0-1+b1) ...
- Setting up libegl-dev:amd64 (1.7.0-1+b2) ...
- Setting up libcloudproviders-dev:amd64 (0.3.6-2) ...
- Setting up libepoxy-dev:amd64 (1.5.10-2) ...
- Setting up libpango1.0-dev:amd64 (1.56.3-1) ...
- Setting up libgtk-3-0t64:amd64 (3.24.49-3) ...
- Setting up at-spi2-core (2.56.2-1) ...
- Setting up libgles-dev:amd64 (1.7.0-1+b2) ...
- Setting up gir1.2-gtk-3.0:amd64 (3.24.49-3) ...
- Setting up libglvnd-dev:amd64 (1.7.0-1+b2) ...
- Setting up libgtk-3-bin (3.24.49-3) ...
- Setting up libegl1-mesa-dev:amd64 (25.0.7-2) ...
- Setting up dmsetup (2:1.02.205-2) ...
- Setting up libdevmapper1.02.1:amd64 (2:1.02.205-2) ...
- Setting up libcryptsetup12:amd64 (2:2.7.5-2) ...
- Setting up systemd-cryptsetup (257.8-1~deb13u2) ...
- Processing triggers for procps (2:4.0.4-9) ...
- grep: /proc/1/environ: Permission denied
- procps: Applying updated sysctl configuration
- sysctl: permission denied on key "kernel.core_pattern"
- sysctl: permission denied on key "kernel.unprivileged_userns_clone"
- sysctl: permission denied on key "kernel.sysrq"
- sysctl: permission denied on key "kernel.core_uses_pid"
- sysctl: permission denied on key "net.ipv4.conf.default.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.docker0.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.eno1.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.eno2.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.eno3.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.eno4.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f0.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f1.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.lo.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.default.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.docker0.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.eno1.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.eno2.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.eno3.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.eno4.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f0.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f1.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.lo.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.default.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.docker0.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.eno1.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.eno2.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.eno3.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.eno4.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f0.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f1.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.lo.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.ping_group_range", ignoring
- sysctl: permission denied on key "net.core.default_qdisc", ignoring
- sysctl: permission denied on key "fs.protected_hardlinks"
- sysctl: permission denied on key "fs.protected_symlinks"
- sysctl: permission denied on key "fs.protected_regular"
- sysctl: permission denied on key "fs.protected_fifos"
- sysctl: permission denied on key "vm.max_map_count"
- sysctl: permission denied on key "kernel.pid_max"
- Processing triggers for libc-bin (2.41-12) ...
- Processing triggers for systemd (257.8-1~deb13u2) ...
- Processing triggers for sgml-base (1.31+nmu1) ...
- Setting up libdbus-1-dev:amd64 (1.16.2-2) ...
- Setting up libatspi2.0-dev:amd64 (2.56.2-1) ...
- Setting up libatk-bridge2.0-dev:amd64 (2.56.2-1) ...
- Setting up libgtk-3-dev:amd64 (3.24.49-3) ...
- Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved asn1-combinators.0.2.6 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.17.3 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved ca-certs.0.2.3 (cached)
-> retrieved cairo2.0.6.5 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved cmdliner.2.0.0 (cached)
-> retrieved cohttp.6.1.1, cohttp-lwt.6.1.1, cohttp-lwt-unix.6.1.1, http.6.1.1 (cached)
-> installed base64.3.5.2
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (cached)
-> installed camlp-streams.5.0.1
-> installed bigstringaf.0.10.0
-> installed conf-gmp.5
-> retrieved cstruct.6.2.0 (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp-powm-sec.4
-> installed conf-cairo.1
-> installed conf-gtk3.18
-> retrieved doculib.1.3.1, metadb.1.0.1 (https://opam.ocaml.org/cache)
-> retrieved domain-name.0.5.0 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.9 (cached)
-> retrieved fileutils.0.6.6 (cached)
-> installed http.6.1.1
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved hkdf.1.0.4 (cached)
-> retrieved ipaddr.5.6.1, ipaddr-sexp.5.6.1, macaddr.5.6.1 (cached)
-> installed duration.0.2.1
-> installed domain-name.0.5.0
-> installed gmap.0.3.0
-> retrieved lablgtk3.3.1.5 (cached)
-> installed macaddr.5.6.1
-> retrieved logs.0.10.0 (cached)
-> retrieved magic-mime.1.3.1 (cached)
-> installed fileutils.0.6.6
-> installed ipaddr.5.6.1
-> retrieved mirage-crypto.0.11.3, mirage-crypto-ec.0.11.3, mirage-crypto-pk.0.11.3, mirage-crypto-rng.0.11.3 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> installed magic-mime.1.3.1
-> retrieved pbkdf.1.2.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_sexp_conv.v0.17.1 (cached)
-> installed ocaml_intrinsics_kernel.v0.17.1
-> retrieved ppxlib.0.37.0 (cached)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib_jane.v0.17.4 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved tls.0.17.5 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached)
-> retrieved x509.0.16.5 (cached)
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> retrieved yojson.3.0.0 (cached)
-> installed cairo2.0.6.5
-> installed ocaml-syntax-shims.1.0.0
-> retrieved zarith.1.14 (cached)
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed angstrom.0.16.1
-> installed re.1.14.0
-> installed yojson.3.0.0
-> installed cmdliner.2.0.0
-> installed metadb.1.0.1
-> installed uri.4.4.0
-> installed zarith.1.14
-> installed lablgtk3.3.1.5
-> installed ocamlbuild.0.16.1
-> installed base.v0.17.3
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed cstruct.6.2.0
-> installed eqaf.0.9
-> installed asn1-combinators.0.2.6
-> installed fpath.0.7.3
-> installed logs.0.10.0
-> installed mirage-crypto.0.11.3
-> installed hkdf.1.0.4
-> installed pbkdf.1.2.0
-> installed mirage-crypto-rng.0.11.3
-> installed bos.0.2.1
-> installed mirage-crypto-pk.0.11.3
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_sexp_conv.v0.17.1
-> installed mirage-crypto-ec.0.11.3
-> installed uri-sexp.4.4.0
-> installed ipaddr-sexp.5.6.1
-> installed x509.0.16.5
-> installed ca-certs.0.2.3
-> installed conduit.8.0.0
-> installed cohttp.6.1.1
-> installed tls.0.17.5
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.6.1.1
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.6.1.1
-> installed doculib.1.3.1
Done.
<><> hkdf.1.0.4 installed successfully ><><><><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-11-14 15:43.28 ---> saved as "0d39585673ef1900e2dd41b3424ae0323ebd6ced507dd1cab2d99e0fbc273df6"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test doculib.1.3.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile doculib 1.3.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved doculib.1.3.1 (https://opam.ocaml.org/cache)
-> removed doculib.1.3.1
-> installed doculib.1.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-14 15:43.39 ---> saved as "cedc6e8f4265cde08316239225b2308649244725362561e7a6f854d3aa4b5880"
/home/opam: (run (shell "opam reinstall --with-test --verbose doculib.1.3.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\" != 'doculib.1.3.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile doculib 1.3.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [doculib.1.3.1: extract]
-> retrieved doculib.1.3.1 (cached)
Processing 2/4: [doculib: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "doculib" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/doculib.1.3.1)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/.doculib_gui.objs/byte -I src/.doculib_gui.objs/native -I /home/opam/.opam/5.4/lib/angstrom -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/base64 -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cairo2 -I /home/opam/.opam/5.4/lib/cohttp -I /home/opam/.opam/5.4/lib/cohttp-lwt -I /home/opam/.opam/5.4/lib/cohttp-lwt-unix -I /home/opam/.opam/5.4/lib/conduit -I /home/opam/.opam/5.4/lib/conduit-lwt -I /home/opam/.opam/5.4/lib/conduit-lwt-unix -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/fileutils -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/http -I /home/opam/.opam/5.4/lib/http/__private__/http_bytebuffer -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/ipaddr-sexp -I /home/opam/.opam/5.4/lib/ipaddr/unix -I /home/opam/.opam/5.4/lib/lablgtk3 -I /home/opam/.opam/5.4/lib/logs -I /home/opam/.opam/5.4/lib/logs/fmt -I /home/opam/.opam/5.4/lib/logs/lwt -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/macaddr -I /home/opam/.opam/5.4/lib/magic-mime -I /home/opam/.opam/5.4/lib/metadb -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stringext -I /home/opam/.opam/5.4/lib/uri -I /home/opam/.opam/5.4/lib/uri-sexp -I /home/opam/.opam/5.4/lib/uri/services -I /home/opam/.opam/5.4/lib/yojson -I lib/agrep/.agrep.objs/byte -I lib/agrep/.agrep.objs/native -cmi-file src/.doculib_gui.objs/byte/doculib_gui__Search.cmi -no-alias-deps -open Doculib_gui -o src/.doculib_gui.objs/native/doculib_gui__Search.cmx -c -impl src/search.ml)
- File "src/search.ml", line 40, characters 6-10:
- 40 | let code = resp |> Response.status |> Code.code_of_status in
- ^^^^
- Warning 26 [unused-var]: unused variable code.
-
- File "src/search.ml", line 54, characters 6-10:
- 54 | let code = resp |> Response.status |> Code.code_of_status in
- ^^^^
- Warning 26 [unused-var]: unused variable code.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/.doculib_gui.objs/byte -I src/.doculib_gui.objs/native -I /home/opam/.opam/5.4/lib/angstrom -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/base64 -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cairo2 -I /home/opam/.opam/5.4/lib/cohttp -I /home/opam/.opam/5.4/lib/cohttp-lwt -I /home/opam/.opam/5.4/lib/cohttp-lwt-unix -I /home/opam/.opam/5.4/lib/conduit -I /home/opam/.opam/5.4/lib/conduit-lwt -I /home/opam/.opam/5.4/lib/conduit-lwt-unix -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/fileutils -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/http -I /home/opam/.opam/5.4/lib/http/__private__/http_bytebuffer -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/ipaddr-sexp -I /home/opam/.opam/5.4/lib/ipaddr/unix -I /home/opam/.opam/5.4/lib/lablgtk3 -I /home/opam/.opam/5.4/lib/logs -I /home/opam/.opam/5.4/lib/logs/fmt -I /home/opam/.opam/5.4/lib/logs/lwt -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/macaddr -I /home/opam/.opam/5.4/lib/magic-mime -I /home/opam/.opam/5.4/lib/metadb -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stringext -I /home/opam/.opam/5.4/lib/uri -I /home/opam/.opam/5.4/lib/uri-sexp -I /home/opam/.opam/5.4/lib/uri/services -I /home/opam/.opam/5.4/lib/yojson -I lib/agrep/.agrep.objs/byte -I lib/agrep/.agrep.objs/native -cmi-file src/.doculib_gui.objs/byte/doculib_gui__Model.cmi -no-alias-deps -open Doculib_gui -o src/.doculib_gui.objs/native/doculib_gui__Model.cmx -c -impl src/model.ml)
- File "src/model.ml", line 148, characters 6-10:
- 148 | let year = m.store#get ~row ~column:Attr.year in
- ^^^^
- Warning 26 [unused-var]: unused variable year.
-
- File "src/model.ml", line 221, characters 12-17:
- 221 | let title = col#title in
- ^^^^^
- Warning 26 [unused-var]: unused variable title.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/.doculib_gui.objs/byte -I /home/opam/.opam/5.4/lib/angstrom -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/base64 -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cairo2 -I /home/opam/.opam/5.4/lib/cohttp -I /home/opam/.opam/5.4/lib/cohttp-lwt -I /home/opam/.opam/5.4/lib/cohttp-lwt-unix -I /home/opam/.opam/5.4/lib/conduit -I /home/opam/.opam/5.4/lib/conduit-lwt -I /home/opam/.opam/5.4/lib/conduit-lwt-unix -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/fileutils -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/http -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/ipaddr-sexp -I /home/opam/.opam/5.4/lib/ipaddr/unix -I /home/opam/.opam/5.4/lib/lablgtk3 -I /home/opam/.opam/5.4/lib/logs -I /home/opam/.opam/5.4/lib/logs/fmt -I /home/opam/.opam/5.4/lib/logs/lwt -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/macaddr -I /home/opam/.opam/5.4/lib/magic-mime -I /home/opam/.opam/5.4/lib/metadb -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stringext -I /home/opam/.opam/5.4/lib/uri -I /home/opam/.opam/5.4/lib/uri-sexp -I /home/opam/.opam/5.4/lib/uri/services -I /home/opam/.opam/5.4/lib/yojson -I lib/agrep/.agrep.objs/byte -no-alias-deps -open Doculib_gui -o src/.doculib_gui.objs/byte/doculib_gui__Gui.cmo -c -impl src/gui.ml)
- File "src/gui.ml", line 118, characters 35-48:
- 118 | let buffer = GText.buffer ~text:(String.concat "\n" help_text) () in
- ^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sep was omitted in the application of this
- function.
-
- File "src/gui.ml", line 141, characters 16-29:
- 141 | ~license:(String.concat "\n" licenses) ~show:true ()
- ^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sep was omitted in the application of this
- function.
-
- File "src/gui.ml", line 255, characters 2-11:
- 255 | List.iter (fun (library,_) ->
- ^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this
- function.
-
- File "src/gui.ml", line 332, characters 14-23:
- 332 | let docs = (List.mapi (fun i doc -> (Path.mk_rel (string_of_int i), doc)) docs) in
- ^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this
- function.
-
- File "src/gui.ml", line 349, characters 20-29:
- 349 | let docs = (List.mapi (fun i doc -> (Path.mk_rel (string_of_int i), doc)) docs) in
- ^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this
- function.
-
- File "src/gui.ml", line 411, characters 19-27:
- 411 | let libraries = (List.map (fun (name,desc) ->
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this
- function.
-
- File "src/gui.ml", line 427, characters 8-35:
- 427 | notebook#action_on_selected (fun model library key path ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label action was omitted in the application of
- this function.
-
- File "src/gui.ml", line 440, characters 8-30:
- 440 | notebook#edit_selected (fun path doc ->
- ^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label editor was omitted in the application of
- this function.
-
- File "src/gui.ml", line 453, characters 8-35:
- 453 | notebook#action_on_selected (fun model library key path ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label action was omitted in the application of
- this function.
-
- File "src/gui.ml", line 466, characters 8-35:
- 466 | notebook#action_on_selected (fun model library key path ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label action was omitted in the application of
- this function.
-
- File "src/gui.ml", line 476, characters 8-35:
- 476 | notebook#action_on_selected (fun model library key path ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label action was omitted in the application of
- this function.
-
- File "src/gui.ml", line 492, characters 18-45:
- 492 | | `OK -> notebook#action_on_selected (fun model library key path ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label action was omitted in the application of
- this function.
-
- File "src/gui.ml", line 119, characters 6-10:
- 119 | let view = GText.view ~buffer ~editable:false ~wrap_mode:`WORD_CHAR ~packing:(swindow#add) () in
- ^^^^
- Warning 26 [unused-var]: unused variable view.
-
- File "src/gui.ml", line 148, characters 6-20:
- 148 | let instructions_l = GMisc.label ~xpad:8 ~ypad:8
- ^^^^^^^^^^^^^^
- Warning 26 [unused-var]: unused variable instructions_l.
-
- File "src/gui.ml", line 153, characters 6-17:
- 153 | let root_path_l = GMisc.label ~text:"Location" ~packing:(grid#attach ~left:0 ~top:0) () in
- ^^^^^^^^^^^
- Warning 26 [unused-var]: unused variable root_path_l.
-
- File "src/gui.ml", line 155, characters 6-12:
- 155 | let name_l = GMisc.label ~text:"Name" ~packing:(grid#attach ~left:0 ~top:1) () in
- ^^^^^^
- Warning 26 [unused-var]: unused variable name_l.
-
- File "src/gui.ml", line 159, characters 6-16:
- 159 | let doc_type_l = GMisc.label ~text:"Type" ~packing:(grid#attach ~left:0 ~top:2) () in
- ^^^^^^^^^^
- Warning 26 [unused-var]: unused variable doc_type_l.
-
- File "src/gui.ml", line 162, characters 6-15:
- 162 | let warning_l = GMisc.label ~xpad:8 ~ypad:8
- ^^^^^^^^^
- Warning 26 [unused-var]: unused variable warning_l.
-
- File "src/gui.ml", line 319, characters 6-14:
- 319 | let search_l = GMisc.label ~text:"Query:" ~packing:(hbox#pack) () in
- ^^^^^^^^
- Warning 26 [unused-var]: unused variable search_l.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/.doculib_gui.objs/byte -I src/.doculib_gui.objs/native -I /home/opam/.opam/5.4/lib/angstrom -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/base64 -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cairo2 -I /home/opam/.opam/5.4/lib/cohttp -I /home/opam/.opam/5.4/lib/cohttp-lwt -I /home/opam/.opam/5.4/lib/cohttp-lwt-unix -I /home/opam/.opam/5.4/lib/conduit -I /home/opam/.opam/5.4/lib/conduit-lwt -I /home/opam/.opam/5.4/lib/conduit-lwt-unix -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/fileutils -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/http -I /home/opam/.opam/5.4/lib/http/__private__/http_bytebuffer -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/ipaddr-sexp -I /home/opam/.opam/5.4/lib/ipaddr/unix -I /home/opam/.opam/5.4/lib/lablgtk3 -I /home/opam/.opam/5.4/lib/logs -I /home/opam/.opam/5.4/lib/logs/fmt -I /home/opam/.opam/5.4/lib/logs/lwt -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/macaddr -I /home/opam/.opam/5.4/lib/magic-mime -I /home/opam/.opam/5.4/lib/metadb -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stringext -I /home/opam/.opam/5.4/lib/uri -I /home/opam/.opam/5.4/lib/uri-sexp -I /home/opam/.opam/5.4/lib/uri/services -I /home/opam/.opam/5.4/lib/yojson -I lib/agrep/.agrep.objs/byte -I lib/agrep/.agrep.objs/native -cmi-file src/.doculib_gui.objs/byte/doculib_gui__Notebook.cmi -no-alias-deps -open Doculib_gui -o src/.doculib_gui.objs/native/doculib_gui__Notebook.cmx -c -impl src/notebook.ml)
- File "src/notebook.ml", line 146, characters 4-14:
- 146 | Model.iter model (fun key path () ->
- ^^^^^^^^^^
- Warning 6 [labels-omitted]: label action was omitted in the application of
- this function.
-
- File "src/notebook.ml", line 227, characters 6-20:
- 227 | self#set_model library model;
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels library, model were omitted in the
- application of this function.
-
- File "src/notebook.ml", line 248, characters 4-14:
- 248 | Model.iter model (fun key path (library,dups) ->
- ^^^^^^^^^^
- Warning 6 [labels-omitted]: label action was omitted in the application of
- this function.
-
- File "src/notebook.ml", line 269, characters 4-23:
- 269 | Model.iter_selected lib#get_model (fun key path ->
- ^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label action was omitted in the application of
- this function.
-
- File "src/notebook.ml", line 276, characters 6-25:
- 276 | Model.iter_selected model (fun key path ->
- ^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label action was omitted in the application of
- this function.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/.doculib_gui.objs/byte -I src/.doculib_gui.objs/native -I /home/opam/.opam/5.4/lib/angstrom -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/base64 -I /home/opam/.opam/5.4/lib/bigstringaf -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cairo2 -I /home/opam/.opam/5.4/lib/cohttp -I /home/opam/.opam/5.4/lib/cohttp-lwt -I /home/opam/.opam/5.4/lib/cohttp-lwt-unix -I /home/opam/.opam/5.4/lib/conduit -I /home/opam/.opam/5.4/lib/conduit-lwt -I /home/opam/.opam/5.4/lib/conduit-lwt-unix -I /home/opam/.opam/5.4/lib/domain-name -I /home/opam/.opam/5.4/lib/fileutils -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/http -I /home/opam/.opam/5.4/lib/http/__private__/http_bytebuffer -I /home/opam/.opam/5.4/lib/ipaddr -I /home/opam/.opam/5.4/lib/ipaddr-sexp -I /home/opam/.opam/5.4/lib/ipaddr/unix -I /home/opam/.opam/5.4/lib/lablgtk3 -I /home/opam/.opam/5.4/lib/logs -I /home/opam/.opam/5.4/lib/logs/fmt -I /home/opam/.opam/5.4/lib/logs/lwt -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/macaddr -I /home/opam/.opam/5.4/lib/magic-mime -I /home/opam/.opam/5.4/lib/metadb -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stringext -I /home/opam/.opam/5.4/lib/uri -I /home/opam/.opam/5.4/lib/uri-sexp -I /home/opam/.opam/5.4/lib/uri/services -I /home/opam/.opam/5.4/lib/yojson -I lib/agrep/.agrep.objs/byte -I lib/agrep/.agrep.objs/native -cmi-file src/.doculib_gui.objs/byte/doculib_gui__Gui.cmi -no-alias-deps -open Doculib_gui -o src/.doculib_gui.objs/native/doculib_gui__Gui.cmx -c -impl src/gui.ml)
- File "src/gui.ml", line 118, characters 35-48:
- 118 | let buffer = GText.buffer ~text:(String.concat "\n" help_text) () in
- ^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sep was omitted in the application of this
- function.
-
- File "src/gui.ml", line 141, characters 16-29:
- 141 | ~license:(String.concat "\n" licenses) ~show:true ()
- ^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label sep was omitted in the application of this
- function.
-
- File "src/gui.ml", line 255, characters 2-11:
- 255 | List.iter (fun (library,_) ->
- ^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this
- function.
-
- File "src/gui.ml", line 332, characters 14-23:
- 332 | let docs = (List.mapi (fun i doc -> (Path.mk_rel (string_of_int i), doc)) docs) in
- ^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this
- function.
-
- File "src/gui.ml", line 349, characters 20-29:
- 349 | let docs = (List.mapi (fun i doc -> (Path.mk_rel (string_of_int i), doc)) docs) in
- ^^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this
- function.
-
- File "src/gui.ml", line 411, characters 19-27:
- 411 | let libraries = (List.map (fun (name,desc) ->
- ^^^^^^^^
- Warning 6 [labels-omitted]: label f was omitted in the application of this
- function.
-
- File "src/gui.ml", line 427, characters 8-35:
- 427 | notebook#action_on_selected (fun model library key path ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label action was omitted in the application of
- this function.
-
- File "src/gui.ml", line 440, characters 8-30:
- 440 | notebook#edit_selected (fun path doc ->
- ^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label editor was omitted in the application of
- this function.
-
- File "src/gui.ml", line 453, characters 8-35:
- 453 | notebook#action_on_selected (fun model library key path ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label action was omitted in the application of
- this function.
-
- File "src/gui.ml", line 466, characters 8-35:
- 466 | notebook#action_on_selected (fun model library key path ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label action was omitted in the application of
- this function.
-
- File "src/gui.ml", line 476, characters 8-35:
- 476 | notebook#action_on_selected (fun model library key path ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label action was omitted in the application of
- this function.
-
- File "src/gui.ml", line 492, characters 18-45:
- 492 | | `OK -> notebook#action_on_selected (fun model library key path ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label action was omitted in the application of
- this function.
-
- File "src/gui.ml", line 119, characters 6-10:
- 119 | let view = GText.view ~buffer ~editable:false ~wrap_mode:`WORD_CHAR ~packing:(swindow#add) () in
- ^^^^
- Warning 26 [unused-var]: unused variable view.
-
- File "src/gui.ml", line 148, characters 6-20:
- 148 | let instructions_l = GMisc.label ~xpad:8 ~ypad:8
- ^^^^^^^^^^^^^^
- Warning 26 [unused-var]: unused variable instructions_l.
-
- File "src/gui.ml", line 153, characters 6-17:
- 153 | let root_path_l = GMisc.label ~text:"Location" ~packing:(grid#attach ~left:0 ~top:0) () in
- ^^^^^^^^^^^
- Warning 26 [unused-var]: unused variable root_path_l.
-
- File "src/gui.ml", line 155, characters 6-12:
- 155 | let name_l = GMisc.label ~text:"Name" ~packing:(grid#attach ~left:0 ~top:1) () in
- ^^^^^^
- Warning 26 [unused-var]: unused variable name_l.
-
- File "src/gui.ml", line 159, characters 6-16:
- 159 | let doc_type_l = GMisc.label ~text:"Type" ~packing:(grid#attach ~left:0 ~top:2) () in
- ^^^^^^^^^^
- Warning 26 [unused-var]: unused variable doc_type_l.
-
- File "src/gui.ml", line 162, characters 6-15:
- 162 | let warning_l = GMisc.label ~xpad:8 ~ypad:8
- ^^^^^^^^^
- Warning 26 [unused-var]: unused variable warning_l.
-
- File "src/gui.ml", line 319, characters 6-14:
- 319 | let search_l = GMisc.label ~text:"Query:" ~packing:(hbox#pack) () in
- ^^^^^^^^
- Warning 26 [unused-var]: unused variable search_l.
Processing 2/4: [doculib: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "doculib" "--create-install-files" "doculib" (CWD=/home/opam/.opam/5.4/.opam-switch/build/doculib.1.3.1)
-> compiled doculib.1.3.1
-> removed doculib.1.3.1
-> installed doculib.1.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-14 15:43.52 ---> saved as "de5cc449e92611c1784108e6a3dd58513b3165e9ec4ff2d64809f45fdb445f5f"
Job succeeded
2025-11-14 15:45.10: Job succeeded