(for PR #29950)
2026-05-23 21:42.42: New job: test camlp5-buildscripts.0.07, using opam 2.1
from https://github.com/ocaml/opam-repository.git#refs/pull/29950/head (d950ec257351a2d586e81a5b4815cdaf7be65f34)
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/29950/head" && git reset --hard d950ec25
git fetch origin master
git merge --no-edit 493123878a032e3f829b102f34e8690b3b2a4fd4
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:f9700a48fc9ceee25e58aabe0b5d3c4d88bf2427ddb44e9208e4f5acbfe4dfdc
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn camlp5-buildscripts.0.07 0.07
RUN opam reinstall camlp5-buildscripts.0.07; \
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" != 'camlp5-buildscripts.0.07' && 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 camlp5-buildscripts.0.07) || true
RUN opam reinstall --with-test --verbose camlp5-buildscripts.0.07; \
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" != 'camlp5-buildscripts.0.07' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-05-23 21:42.42: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:f9700a48fc9ceee25e58aabe0b5d3c4d88bf2427ddb44e9208e4f5acbfe4dfdc-camlp5-buildscripts.0.07-d950ec257351a2d586e81a5b4815cdaf7be65f34"
2026-05-23 21:42.42: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:f9700a48fc9ceee25e58aabe0b5d3c4d88bf2427ddb44e9208e4f5acbfe4dfdc)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn camlp5-buildscripts.0.07 0.07"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall camlp5-buildscripts.0.07;\
\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\" != 'camlp5-buildscripts.0.07' && 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 camlp5-buildscripts.0.07) || true"))
(run (shell "opam reinstall --with-test --verbose camlp5-buildscripts.0.07;\
\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\" != 'camlp5-buildscripts.0.07' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-05-23 21:42.42: Waiting for resource in pool OCluster
2026-05-23 21:42.42: Waiting for worker…
2026-05-23 21:42.46: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 493123878a Merge pull request #29931 from chetmurthy/release-pa_ppx-package-suite-at-8.05.01
Updating 493123878a..d950ec2573
Fast-forward
.../camlp5-buildscripts.0.07/opam | 49 ++++++++++++++++++++++
1 file changed, 49 insertions(+)
create mode 100644 packages/camlp5-buildscripts/camlp5-buildscripts.0.07/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:f9700a48fc9ceee25e58aabe0b5d3c4d88bf2427ddb44e9208e4f5acbfe4dfdc)
2026-05-23 21:43.13 ---> using "ac1995f8abd260285fd7f15d3dfa37a0c18d5abe2573e173c9117b295287210f" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam"))
2026-05-23 21:43.13 ---> using "688c46b3729d4d44e6294b5dbc3144fe1e77e349148dba56ba52c65c8751cc00" 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.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2026-05-23 21:43.13 ---> using "6ff9f227318ced3826ee778e564a5faf9a9fe6a9f10d2b1fdc59b2c6b07c4b22" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.1.6 (263921263e1f745613e2882745114b7b08f3608b)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria
# upgrade-criteria
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.1
2026-05-23 21:43.13 ---> using "aece597466071897f2129e44649ddf826792545d59d101a324ae52628f20e447" 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/"))
2026-05-23 21:43.13 ---> using "4fc0fb55a46ad50477689d187ff56b603e4a1c4e16d14967eb2a4beb2751fe7c" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-05-23 21:43.22 ---> saved as "a81267f7159eca3e98ef7649f16b3a2c8efbae3efa3476370dc5f1ca4ce52e6c"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-23 21:43.34 ---> saved as "4fd9ad1816a5b30e72e4d108f4be5d60a2dd24a9ff0c824bb04e1be58d8ef976"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [171 kB]
- Fetched 10.1 MB in 2s (5919 kB/s)
- Reading package lists...
-
2026-05-23 21:43.39 ---> saved as "a8e8bb9686b99c2ec93e97c67c1de36af53dee18c84a471222a60ceeab7031e8"
/home/opam: (run (shell "opam pin add -k version -yn camlp5-buildscripts.0.07 0.07"))
camlp5-buildscripts is now pinned to version 0.07
2026-05-23 21:43.42 ---> saved as "aeaf6ff5537387a49e7f8b8866833caef15eefd4c6e4b2fb5359072563d02c0c"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall camlp5-buildscripts.0.07;\
\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\" != 'camlp5-buildscripts.0.07' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
camlp5-buildscripts.0.07 is not installed. Install it? [Y/n] y
The following actions will be performed:
- install conf-m4 1 [required by not-ocamlfind]
- recompile ocaml-compiler 5.4.1 [upstream or system changes]
- install conf-which 1 [required by not-ocamlfind]
- recompile ocaml-base-compiler 5.4.1* [uses ocaml-compiler]
- recompile ocaml-config 3 [uses ocaml-base-compiler]
- recompile ocaml 5.4.1 [upstream or system changes]
- install ocamlfind 1.9.8 [required by bos, not-ocamlfind]
- install ocamlbuild 0.16.1 [required by bos]
- install dune 3.23.1 [required by re]
- recompile opam-depext 1.2.3 [uses ocaml]
- recompile base-effects base [uses ocaml]
- recompile base-domains base [uses ocaml]
- install topkg 1.1.1 [required by bos]
- install re 1.14.0 [required by camlp5-buildscripts]
- install ocamlgraph 2.2.0 [required by not-ocamlfind]
- install camlp-streams 5.0.1 [required by not-ocamlfind]
- recompile base-nnp base [uses base-domains]
- install rresult 0.7.0 [required by camlp5-buildscripts]
- install fmt 0.11.0 [required by camlp5-buildscripts]
- install astring 0.8.5 [required by bos]
- install not-ocamlfind 0.14 [required by camlp5-buildscripts]
- install logs 0.10.0 [required by bos]
- install fpath 0.7.3 [required by bos]
- install bos 0.3.0 [required by camlp5-buildscripts]
- install camlp5-buildscripts 0.07*
===== 17 to install | 8 to recompile =====
The following system packages will first need to be installed:
m4 xdot
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
Let opam run your package manager to install the required system packages?
(answer 'n' for other options) [Y/n] y
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "m4" "xdot"
- 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 ... 20654 files and directories currently installed.)
- Preparing to unpack .../libsystemd-shared_257.13-1~deb13u1_amd64.deb ...
- Unpacking libsystemd-shared:amd64 (257.13-1~deb13u1) ...
- Preparing to unpack .../libsystemd0_257.13-1~deb13u1_amd64.deb ...
- Unpacking libsystemd0:amd64 (257.13-1~deb13u1) over (257.9-1~deb13u1) ...
- Setting up libsystemd0:amd64 (257.13-1~deb13u1) ...
- Setting up libsystemd-shared:amd64 (257.13-1~deb13u1) ...
- 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 ... 20662 files and directories currently installed.)
- Preparing to unpack .../systemd_257.13-1~deb13u1_amd64.deb ...
- Unpacking systemd (257.13-1~deb13u1) ...
- Setting up systemd (257.13-1~deb13u1) ...
- 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 ... 21595 files and directories currently installed.)
- Preparing to unpack .../0-systemd-sysv_257.13-1~deb13u1_amd64.deb ...
- Unpacking systemd-sysv (257.13-1~deb13u1) ...
- 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+deb13u2_amd64.deb ...
- Unpacking libpython3.13-minimal:amd64 (3.13.5-2+deb13u2) ...
- Selecting previously unselected package python3.13-minimal.
- Preparing to unpack .../8-python3.13-minimal_3.13.5-2+deb13u2_amd64.deb ...
- Unpacking python3.13-minimal (3.13.5-2+deb13u2) ...
- Setting up libpython3.13-minimal:amd64 (3.13.5-2+deb13u2) ...
- Setting up python3.13-minimal (3.13.5-2+deb13u2) ...
- 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 ... 22012 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+deb13u2_amd64.deb ...
- Unpacking libpython3.13-stdlib:amd64 (3.13.5-2+deb13u2) ...
- Selecting previously unselected package python3.13.
- Preparing to unpack .../5-python3.13_3.13.5-2+deb13u2_amd64.deb ...
- Unpacking python3.13 (3.13.5-2+deb13u2) ...
- 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 ... 22498 files and directories currently installed.)
- Preparing to unpack .../0-python3_3.13.5-1_amd64.deb ...
- Unpacking python3 (3.13.5-1) ...
- Selecting previously unselected package python3-numpy-dev:amd64.
- Preparing to unpack .../1-python3-numpy-dev_1%3a2.2.4+ds-1_amd64.deb ...
- Unpacking python3-numpy-dev:amd64 (1:2.2.4+ds-1) ...
- Selecting previously unselected package libblas3:amd64.
- Preparing to unpack .../2-libblas3_3.12.1-6_amd64.deb ...
- Unpacking libblas3:amd64 (3.12.1-6) ...
- Selecting previously unselected package libgfortran5:amd64.
- Preparing to unpack .../3-libgfortran5_14.2.0-19_amd64.deb ...
- Unpacking libgfortran5:amd64 (14.2.0-19) ...
- Selecting previously unselected package liblapack3:amd64.
- Preparing to unpack .../4-liblapack3_3.12.1-6_amd64.deb ...
- Unpacking liblapack3:amd64 (3.12.1-6) ...
- Selecting previously unselected package python3-numpy.
- Preparing to unpack .../5-python3-numpy_1%3a2.2.4+ds-1_amd64.deb ...
- Unpacking python3-numpy (1:2.2.4+ds-1) ...
- Preparing to unpack .../6-libudev1_257.13-1~deb13u1_amd64.deb ...
- Unpacking libudev1:amd64 (257.13-1~deb13u1) over (257.9-1~deb13u1) ...
- Setting up libudev1:amd64 (257.13-1~deb13u1) ...
- Selecting previously unselected package libnss-systemd: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 ... 23522 files and directories currently installed.)
- Preparing to unpack .../000-libnss-systemd_257.13-1~deb13u1_amd64.deb ...
- Unpacking libnss-systemd:amd64 (257.13-1~deb13u1) ...
- Selecting previously unselected package libpam-systemd:amd64.
- Preparing to unpack .../001-libpam-systemd_257.13-1~deb13u1_amd64.deb ...
- Unpacking libpam-systemd:amd64 (257.13-1~deb13u1) ...
- Selecting previously unselected package systemd-timesyncd.
- Preparing to unpack .../002-systemd-timesyncd_257.13-1~deb13u1_amd64.deb ...
- Unpacking systemd-timesyncd (257.13-1~deb13u1) ...
- Selecting previously unselected package libgdk-pixbuf2.0-common.
- Preparing to unpack .../003-libgdk-pixbuf2.0-common_2.42.12+dfsg-4+deb13u1_all.deb ...
- Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-4+deb13u1) ...
- Selecting previously unselected package libglib2.0-0t64:amd64.
- Preparing to unpack .../004-libglib2.0-0t64_2.84.4-3~deb13u3_amd64.deb ...
- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u3) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../005-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../006-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 .../007-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 .../008-libpng16-16t64_1.6.48-1+deb13u5_amd64.deb ...
- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u5) ...
- Selecting previously unselected package libdeflate0:amd64.
- Preparing to unpack .../009-libdeflate0_1.23-2_amd64.deb ...
- Unpacking libdeflate0:amd64 (1.23-2) ...
- Selecting previously unselected package libjbig0:amd64.
- Preparing to unpack .../010-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 .../011-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 .../012-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 .../013-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 .../014-libtiff6_4.7.0-3+deb13u2_amd64.deb ...
- Unpacking libtiff6:amd64 (4.7.0-3+deb13u2) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64.
- Preparing to unpack .../015-libgdk-pixbuf-2.0-0_2.42.12+dfsg-4+deb13u1_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4+deb13u1) ...
- Selecting previously unselected package gtk-update-icon-cache.
- Preparing to unpack .../016-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 .../017-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 .../018-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 .../019-at-spi2-common_2.56.2-1+deb13u1_all.deb ...
- Unpacking at-spi2-common (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../020-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 .../021-libatspi2.0-0t64_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatspi2.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../022-x11-common_1%3a7.7+24+deb13u1_all.deb ...
- Unpacking x11-common (1:7.7+24+deb13u1) ...
- Selecting previously unselected package libxtst6:amd64.
- Preparing to unpack .../023-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 .../024-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 .../025-libdconf1_0.40.0-5_amd64.deb ...
- Unpacking libdconf1:amd64 (0.40.0-5) ...
- Selecting previously unselected package dconf-service.
- Preparing to unpack .../026-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 .../027-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 .../028-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 .../029-at-spi2-core_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking at-spi2-core (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libdevmapper1.02.1:amd64.
- Preparing to unpack .../030-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 .../031-dmsetup_2%3a1.02.205-2_amd64.deb ...
- Unpacking dmsetup (2:1.02.205-2) ...
- Selecting previously unselected package libfreetype6:amd64.
- Preparing to unpack .../032-libfreetype6_2.13.3+dfsg-1+deb13u1_amd64.deb ...
- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Selecting previously unselected package fonts-dejavu-mono.
- Preparing to unpack .../033-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 .../034-fonts-dejavu-core_2.37-8_all.deb ...
- Unpacking fonts-dejavu-core (2.37-8) ...
- Selecting previously unselected package fonts-liberation.
- Preparing to unpack .../035-fonts-liberation_1%3a2.1.5-3_all.deb ...
- Unpacking fonts-liberation (1:2.1.5-3) ...
- Selecting previously unselected package fontconfig-config.
- Preparing to unpack .../036-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 .../037-libfontconfig1_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package fontconfig.
- Preparing to unpack .../038-fontconfig_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig (2.15.0-2.3) ...
- Selecting previously unselected package fonts-liberation-sans-narrow.
- Preparing to unpack .../039-fonts-liberation-sans-narrow_1%3a1.07.6-4_all.deb ...
- Unpacking fonts-liberation-sans-narrow (1:1.07.6-4) ...
- Selecting previously unselected package gir1.2-glib-2.0:amd64.
- Preparing to unpack .../040-gir1.2-glib-2.0_2.84.4-3~deb13u3_amd64.deb ...
- Unpacking gir1.2-glib-2.0:amd64 (2.84.4-3~deb13u3) ...
- Selecting previously unselected package libatk1.0-0t64:amd64.
- Preparing to unpack .../041-libatk1.0-0t64_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatk1.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package gir1.2-atk-1.0:amd64.
- Preparing to unpack .../042-gir1.2-atk-1.0_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking gir1.2-atk-1.0:amd64 (2.56.2-1+deb13u1) ...
- 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-gdkpixbuf-2.0:amd64.
- Preparing to unpack .../050-gir1.2-gdkpixbuf-2.0_2.42.12+dfsg-4+deb13u1_amd64.deb ...
- Unpacking gir1.2-gdkpixbuf-2.0:amd64 (2.42.12+dfsg-4+deb13u1) ...
- Selecting previously unselected package libgirepository-1.0-1:amd64.
- Preparing to unpack .../051-libgirepository-1.0-1_1.84.0-1_amd64.deb ...
- Unpacking libgirepository-1.0-1:amd64 (1.84.0-1) ...
- Selecting previously unselected package gir1.2-girepository-2.0:amd64.
- Preparing to unpack .../052-gir1.2-girepository-2.0_1.84.0-1_amd64.deb ...
- Unpacking gir1.2-girepository-2.0:amd64 (1.84.0-1) ...
- Selecting previously unselected package libgraphite2-3:amd64.
- Preparing to unpack .../053-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 .../054-libharfbuzz0b_10.2.0-1+deb13u1_amd64.deb ...
- Unpacking libharfbuzz0b:amd64 (10.2.0-1+deb13u1) ...
- Selecting previously unselected package libharfbuzz-gobject0:amd64.
- Preparing to unpack .../055-libharfbuzz-gobject0_10.2.0-1+deb13u1_amd64.deb ...
- Unpacking libharfbuzz-gobject0:amd64 (10.2.0-1+deb13u1) ...
- Selecting previously unselected package gir1.2-harfbuzz-0.0:amd64.
- Preparing to unpack .../056-gir1.2-harfbuzz-0.0_10.2.0-1+deb13u1_amd64.deb ...
- Unpacking gir1.2-harfbuzz-0.0:amd64 (10.2.0-1+deb13u1) ...
- Selecting previously unselected package libfribidi0:amd64.
- Preparing to unpack .../057-libfribidi0_1.0.16-1_amd64.deb ...
- Unpacking libfribidi0:amd64 (1.0.16-1) ...
- Selecting previously unselected package libthai-data.
- Preparing to unpack .../058-libthai-data_0.1.29-2_all.deb ...
- Unpacking libthai-data (0.1.29-2) ...
- Selecting previously unselected package libdatrie1:amd64.
- Preparing to unpack .../059-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 .../060-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 .../061-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 .../062-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 .../063-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 .../064-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 .../065-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 .../066-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 .../067-libatk-bridge2.0-0t64_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatk-bridge2.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libcloudproviders0:amd64.
- Preparing to unpack .../068-libcloudproviders0_0.3.6-2_amd64.deb ...
- Unpacking libcloudproviders0:amd64 (0.3.6-2) ...
- Selecting previously unselected package liblcms2-2:amd64.
- Preparing to unpack .../069-liblcms2-2_2.16-2+deb13u2_amd64.deb ...
- Unpacking liblcms2-2:amd64 (2.16-2+deb13u2) ...
- Selecting previously unselected package libcolord2:amd64.
- Preparing to unpack .../070-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 .../071-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 .../072-libavahi-common3_0.8-16_amd64.deb ...
- Unpacking libavahi-common3:amd64 (0.8-16) ...
- Selecting previously unselected package libavahi-client3:amd64.
- Preparing to unpack .../073-libavahi-client3_0.8-16_amd64.deb ...
- Unpacking libavahi-client3:amd64 (0.8-16) ...
- Selecting previously unselected package libcups2t64:amd64.
- Preparing to unpack .../074-libcups2t64_2.4.10-3+deb13u2_amd64.deb ...
- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u2) ...
- Selecting previously unselected package libepoxy0:amd64.
- Preparing to unpack .../075-libepoxy0_1.5.10-2_amd64.deb ...
- Unpacking libepoxy0:amd64 (1.5.10-2) ...
- Selecting previously unselected package libwayland-client0:amd64.
- Preparing to unpack .../076-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 .../077-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 .../078-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 .../079-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 .../080-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 .../081-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 .../082-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 .../083-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 .../084-xkb-data_2.42-1_all.deb ...
- Unpacking xkb-data (2.42-1) ...
- Selecting previously unselected package libxkbcommon0:amd64.
- Preparing to unpack .../085-libxkbcommon0_1.7.0-2_amd64.deb ...
- Unpacking libxkbcommon0:amd64 (1.7.0-2) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../086-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 .../087-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 .../088-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 .../089-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 libann0.
- Preparing to unpack .../090-libann0_1.1.2+doc-9+b1_amd64.deb ...
- Unpacking libann0 (1.1.2+doc-9+b1) ...
- Selecting previously unselected package libcdt5:amd64.
- Preparing to unpack .../091-libcdt5_2.42.4-3_amd64.deb ...
- Unpacking libcdt5:amd64 (2.42.4-3) ...
- Selecting previously unselected package libcgraph6:amd64.
- Preparing to unpack .../092-libcgraph6_2.42.4-3_amd64.deb ...
- Unpacking libcgraph6:amd64 (2.42.4-3) ...
- Selecting previously unselected package libaom3:amd64.
- Preparing to unpack .../093-libaom3_3.12.1-1_amd64.deb ...
- Unpacking libaom3:amd64 (3.12.1-1) ...
- Selecting previously unselected package libdav1d7:amd64.
- Preparing to unpack .../094-libdav1d7_1.5.1-1_amd64.deb ...
- Unpacking libdav1d7:amd64 (1.5.1-1) ...
- Selecting previously unselected package libabsl20240722:amd64.
- Preparing to unpack .../095-libabsl20240722_20240722.0-4_amd64.deb ...
- Unpacking libabsl20240722:amd64 (20240722.0-4) ...
- Selecting previously unselected package libgav1-1:amd64.
- Preparing to unpack .../096-libgav1-1_0.19.0-3+b1_amd64.deb ...
- Unpacking libgav1-1:amd64 (0.19.0-3+b1) ...
- Selecting previously unselected package librav1e0.7:amd64.
- Preparing to unpack .../097-librav1e0.7_0.7.1-9+b2_amd64.deb ...
- Unpacking librav1e0.7:amd64 (0.7.1-9+b2) ...
- Selecting previously unselected package libsvtav1enc2:amd64.
- Preparing to unpack .../098-libsvtav1enc2_2.3.0+dfsg-1_amd64.deb ...
- Unpacking libsvtav1enc2:amd64 (2.3.0+dfsg-1) ...
- Selecting previously unselected package libyuv0:amd64.
- Preparing to unpack .../099-libyuv0_0.0.1904.20250204-1_amd64.deb ...
- Unpacking libyuv0:amd64 (0.0.1904.20250204-1) ...
- Selecting previously unselected package libavif16:amd64.
- Preparing to unpack .../100-libavif16_1.2.1-1.2_amd64.deb ...
- Unpacking libavif16:amd64 (1.2.1-1.2) ...
- Selecting previously unselected package libheif-plugin-dav1d:amd64.
- Preparing to unpack .../101-libheif-plugin-dav1d_1.19.8-1_amd64.deb ...
- Unpacking libheif-plugin-dav1d:amd64 (1.19.8-1) ...
- Selecting previously unselected package libde265-0:amd64.
- Preparing to unpack .../102-libde265-0_1.0.15-1+b3_amd64.deb ...
- Unpacking libde265-0:amd64 (1.0.15-1+b3) ...
- Selecting previously unselected package libheif-plugin-libde265:amd64.
- Preparing to unpack .../103-libheif-plugin-libde265_1.19.8-1_amd64.deb ...
- Unpacking libheif-plugin-libde265:amd64 (1.19.8-1) ...
- Selecting previously unselected package libheif1:amd64.
- Preparing to unpack .../104-libheif1_1.19.8-1_amd64.deb ...
- Unpacking libheif1:amd64 (1.19.8-1) ...
- Selecting previously unselected package libimagequant0:amd64.
- Preparing to unpack .../105-libimagequant0_2.18.0-1+b2_amd64.deb ...
- Unpacking libimagequant0:amd64 (2.18.0-1+b2) ...
- Selecting previously unselected package libxpm4:amd64.
- Preparing to unpack .../106-libxpm4_1%3a3.5.17-1+b3_amd64.deb ...
- Unpacking libxpm4:amd64 (1:3.5.17-1+b3) ...
- Selecting previously unselected package libgd3:amd64.
- Preparing to unpack .../107-libgd3_2.3.3-13_amd64.deb ...
- Unpacking libgd3:amd64 (2.3.3-13) ...
- Selecting previously unselected package libgts-0.7-5t64:amd64.
- Preparing to unpack .../108-libgts-0.7-5t64_0.7.6+darcs121130-5.2+b1_amd64.deb ...
- Unpacking libgts-0.7-5t64:amd64 (0.7.6+darcs121130-5.2+b1) ...
- Selecting previously unselected package libltdl7:amd64.
- Preparing to unpack .../109-libltdl7_2.5.4-4_amd64.deb ...
- Unpacking libltdl7:amd64 (2.5.4-4) ...
- Selecting previously unselected package libpathplan4:amd64.
- Preparing to unpack .../110-libpathplan4_2.42.4-3_amd64.deb ...
- Unpacking libpathplan4:amd64 (2.42.4-3) ...
- Selecting previously unselected package libgvc6.
- Preparing to unpack .../111-libgvc6_2.42.4-3_amd64.deb ...
- Unpacking libgvc6 (2.42.4-3) ...
- Selecting previously unselected package libgvpr2:amd64.
- Preparing to unpack .../112-libgvpr2_2.42.4-3_amd64.deb ...
- Unpacking libgvpr2:amd64 (2.42.4-3) ...
- Selecting previously unselected package liblab-gamut1:amd64.
- Preparing to unpack .../113-liblab-gamut1_2.42.4-3_amd64.deb ...
- Unpacking liblab-gamut1:amd64 (2.42.4-3) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../114-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 .../115-libsm6_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libxt6t64:amd64.
- Preparing to unpack .../116-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...
- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...
- Selecting previously unselected package libxmu6:amd64.
- Preparing to unpack .../117-libxmu6_2%3a1.1.3-3+b4_amd64.deb ...
- Unpacking libxmu6:amd64 (2:1.1.3-3+b4) ...
- Selecting previously unselected package libxaw7:amd64.
- Preparing to unpack .../118-libxaw7_2%3a1.0.16-1_amd64.deb ...
- Unpacking libxaw7:amd64 (2:1.0.16-1) ...
- Selecting previously unselected package graphviz.
- Preparing to unpack .../119-graphviz_2.42.4-3_amd64.deb ...
- Unpacking graphviz (2.42.4-3) ...
- Selecting previously unselected package libjson-c5:amd64.
- Preparing to unpack .../120-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 .../121-libcryptsetup12_2%3a2.7.5-2_amd64.deb ...
- Unpacking libcryptsetup12:amd64 (2:2.7.5-2) ...
- Selecting previously unselected package libgdk-pixbuf2.0-bin.
- Preparing to unpack .../122-libgdk-pixbuf2.0-bin_2.42.12+dfsg-4+deb13u1_amd64.deb ...
- Unpacking libgdk-pixbuf2.0-bin (2.42.12+dfsg-4+deb13u1) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../123-libglib2.0-data_2.84.4-3~deb13u3_all.deb ...
- Unpacking libglib2.0-data (2.84.4-3~deb13u3) ...
- Selecting previously unselected package libgtk-3-bin.
- Preparing to unpack .../124-libgtk-3-bin_3.24.49-3_amd64.deb ...
- Unpacking libgtk-3-bin (3.24.49-3) ...
- Selecting previously unselected package libgts-bin.
- Preparing to unpack .../125-libgts-bin_0.7.6+darcs121130-5.2+b1_amd64.deb ...
- Unpacking libgts-bin (0.7.6+darcs121130-5.2+b1) ...
- Selecting previously unselected package libheif-plugin-aomenc:amd64.
- Preparing to unpack .../126-libheif-plugin-aomenc_1.19.8-1_amd64.deb ...
- Unpacking libheif-plugin-aomenc:amd64 (1.19.8-1) ...
- Selecting previously unselected package libnuma1:amd64.
- Preparing to unpack .../127-libnuma1_2.0.19-1_amd64.deb ...
- Unpacking libnuma1:amd64 (2.0.19-1) ...
- Selecting previously unselected package libx265-215:amd64.
- Preparing to unpack .../128-libx265-215_4.1-2_amd64.deb ...
- Unpacking libx265-215:amd64 (4.1-2) ...
- Selecting previously unselected package libheif-plugin-x265:amd64.
- Preparing to unpack .../129-libheif-plugin-x265_1.19.8-1_amd64.deb ...
- Unpacking libheif-plugin-x265:amd64 (1.19.8-1) ...
- Selecting previously unselected package libkmod2:amd64.
- Preparing to unpack .../130-libkmod2_34.2-2_amd64.deb ...
- Unpacking libkmod2:amd64 (34.2-2) ...
- Selecting previously unselected package librsvg2-2:amd64.
- Preparing to unpack .../131-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 .../132-librsvg2-common_2.60.0+dfsg-1_amd64.deb ...
- Unpacking librsvg2-common:amd64 (2.60.0+dfsg-1) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../133-m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package python3-cairo.
- Preparing to unpack .../134-python3-cairo_1.27.0-2_amd64.deb ...
- Unpacking python3-cairo (1.27.0-2) ...
- Selecting previously unselected package python3-gi.
- Preparing to unpack .../135-python3-gi_3.50.0-4+b1_amd64.deb ...
- Unpacking python3-gi (3.50.0-4+b1) ...
- Selecting previously unselected package python3-gi-cairo.
- Preparing to unpack .../136-python3-gi-cairo_3.50.0-4+b1_amd64.deb ...
- Unpacking python3-gi-cairo (3.50.0-4+b1) ...
- Selecting previously unselected package python3-packaging.
- Preparing to unpack .../137-python3-packaging_25.0-1_all.deb ...
- Unpacking python3-packaging (25.0-1) ...
- Selecting previously unselected package systemd-cryptsetup.
- Preparing to unpack .../138-systemd-cryptsetup_257.13-1~deb13u1_amd64.deb ...
- Unpacking systemd-cryptsetup (257.13-1~deb13u1) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../139-xdg-user-dirs_0.18-2_amd64.deb ...
- Unpacking xdg-user-dirs (0.18-2) ...
- Selecting previously unselected package xdot.
- Preparing to unpack .../140-xdot_1.4-1_all.deb ...
- Unpacking xdot (1.4-1) ...
- Setting up media-types (13.0.0) ...
- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...
- Setting up liblcms2-2:amd64 (2.16-2+deb13u2) ...
- Setting up libpixman-1-0:amd64 (0.44.0-3) ...
- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...
- Setting up libaom3:amd64 (3.12.1-1) ...
- Setting up systemd-sysv (257.13-1~deb13u1) ...
- Setting up libxdamage1:amd64 (1:1.1.6-1+b2) ...
- Setting up liblerc4:amd64 (4.0.0+ds-5) ...
- Setting up libxpm4:amd64 (1:3.5.17-1+b3) ...
- 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 liblab-gamut1:amd64 (2.42.4-3) ...
- Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-4+deb13u1) ...
- Setting up x11-common (1:7.7+24+deb13u1) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libdeflate0:amd64 (1.23-2) ...
- Setting up m4 (1.4.19-8) ...
- Setting up libnss-systemd:amd64 (257.13-1~deb13u1) ...
- Setting up xkb-data (2.42-1) ...
- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Setting up libabsl20240722:amd64 (20240722.0-4) ...
- Setting up libjbig0:amd64 (2.1-6.1+b2) ...
- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u3) ...
- Setting up libblas3:amd64 (3.12.1-6) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
- Setting up libglib2.0-data (2.84.4-3~deb13u3) ...
- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Setting up libsvtav1enc2:amd64 (2.3.0+dfsg-1) ...
- Setting up libepoxy0:amd64 (1.5.10-2) ...
- Setting up libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Setting up libpathplan4:amd64 (2.42.4-3) ...
- Setting up libavahi-common-data:amd64 (0.8-16) ...
- Setting up libann0 (1.1.2+doc-9+b1) ...
- 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 libimagequant0:amd64 (2.18.0-1+b2) ...
- Setting up fonts-dejavu-mono (2.37-8) ...
- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u5) ...
- Setting up python3-numpy-dev:amd64 (1:2.2.4+ds-1) ...
- Setting up systemd-timesyncd (257.13-1~deb13u1) ...
- 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 libgav1-1:amd64 (0.19.0-3+b1) ...
- Setting up gir1.2-glib-2.0:amd64 (2.84.4-3~deb13u3) ...
- Setting up libltdl7:amd64 (2.5.4-4) ...
- Setting up libgfortran5:amd64 (14.2.0-19) ...
- Setting up libwebp7:amd64 (1.5.0-0.1) ...
- Setting up libnuma1:amd64 (2.0.19-1) ...
- Setting up libdav1d7:amd64 (1.5.1-1) ...
- Setting up at-spi2-common (2.56.2-1+deb13u1) ...
- Setting up libtiff6:amd64 (4.7.0-3+deb13u2) ...
- Setting up dbus-session-bus-common (1.16.2-2) ...
- Setting up librav1e0.7:amd64 (0.7.1-9+b2) ...
- Setting up fonts-liberation (1:2.1.5-3) ...
- Setting up libthai-data (0.1.29-2) ...
- Setting up libgirepository-1.0-1:amd64 (1.84.0-1) ...
- Setting up libgts-0.7-5t64:amd64 (0.7.6+darcs121130-5.2+b1) ...
- Setting up libcdt5:amd64 (2.42.4-3) ...
- Setting up libcgraph6:amd64 (2.42.4-3) ...
- Setting up libwayland-egl1:amd64 (1.23.1-3) ...
- Setting up fonts-liberation-sans-narrow (1:1.07.6-4) ...
- 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 libde265-0:amd64 (1.0.15-1+b3) ...
- Setting up libx265-215:amd64 (4.1-2) ...
- Setting up libyuv0:amd64 (0.0.1904.20250204-1) ...
- Setting up libxcomposite1:amd64 (1:0.4.6-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+deb13u2) ...
- Setting up dbus-bin (1.16.2-2) ...
- Setting up libkmod2:amd64 (34.2-2) ...
- Setting up libxkbcommon0:amd64 (1.7.0-2) ...
- Setting up libwayland-client0:amd64 (1.23.1-3) ...
- Setting up libgts-bin (0.7.6+darcs121130-5.2+b1) ...
- Setting up libice6:amd64 (2:1.1.1-1) ...
- Setting up libavif16:amd64 (1.2.1-1.2) ...
- Setting up liblapack3:amd64 (3.12.1-6) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
- Setting up libatk1.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Setting up gir1.2-atk-1.0:amd64 (2.56.2-1+deb13u1) ...
- Setting up fontconfig-config (2.15.0-2.3) ...
- Setting up libxtst6:amd64 (2:1.2.5-1) ...
- Setting up libxcursor1:amd64 (1:1.2.3-1) ...
- Setting up libavahi-common3:amd64 (0.8-16) ...
- Setting up libcloudproviders0:amd64 (0.3.6-2) ...
- Setting up dbus-daemon (1.16.2-2) ...
- Setting up libcolord2:amd64 (1.4.7-3) ...
- Setting up libdconf1:amd64 (0.40.0-5) ...
- Setting up libthai0:amd64 (0.1.29-2+b1) ...
- Setting up libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Setting up gir1.2-girepository-2.0:amd64 (1.84.0-1) ...
- Setting up libatspi2.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- 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 libreadline8t64:amd64 (8.2-6) ...
- Setting up libgvpr2:amd64 (2.42.4-3) ...
- Setting up libwayland-cursor0:amd64 (1.23.1-3) ...
- Setting up libpam-systemd:amd64 (257.13-1~deb13u1) ...
- Setting up libharfbuzz0b:amd64 (10.2.0-1+deb13u1) ...
- Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4+deb13u1) ...
- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...
- Setting up libsm6:amd64 (2:1.2.6-1) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.5-2+deb13u2) ...
- Setting up libavahi-client3:amd64 (0.8-16) ...
- Setting up libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up libatk-bridge2.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- 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 gir1.2-gdkpixbuf-2.0:amd64 (2.42.12+dfsg-4+deb13u1) ...
- Setting up python3.13 (3.13.5-2+deb13u2) ...
- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...
- 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+deb13u1) ...
- Setting up libcairo2:amd64 (1.18.4-1+b1) ...
- Setting up dbus-user-session (1.16.2-2) ...
- Setting up python3-packaging (25.0-1) ...
- 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 python3-gi (3.50.0-4+b1) ...
- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...
- Setting up python3-numpy (1:2.2.4+ds-1) ...
- Setting up libgdk-pixbuf2.0-bin (2.42.12+dfsg-4+deb13u1) ...
- 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+deb13u2) ...
- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...
- Setting up libxmu6:amd64 (2:1.1.3-3+b4) ...
- Setting up gir1.2-freedesktop:amd64 (1.84.0-1) ...
- Setting up python3-cairo (1.27.0-2) ...
- Setting up libpangoxft-1.0-0:amd64 (1.56.3-1) ...
- Setting up dconf-service (0.40.0-5) ...
- Setting up libxaw7:amd64 (2:1.0.16-1) ...
- Setting up gir1.2-harfbuzz-0.0:amd64 (10.2.0-1+deb13u1) ...
- Setting up librsvg2-2:amd64 (2.60.0+dfsg-1) ...
- Setting up gir1.2-pango-1.0:amd64 (1.56.3-1) ...
- Setting up librsvg2-common:amd64 (2.60.0+dfsg-1) ...
- Setting up python3-gi-cairo (3.50.0-4+b1) ...
- Setting up dconf-gsettings-backend:amd64 (0.40.0-5) ...
- Setting up libgtk-3-common (3.24.49-3) ...
- Setting up gsettings-desktop-schemas (48.0-1) ...
- Setting up libgtk-3-0t64:amd64 (3.24.49-3) ...
- Setting up at-spi2-core (2.56.2-1+deb13u1) ...
- Setting up gir1.2-gtk-3.0:amd64 (3.24.49-3) ...
- Setting up libgtk-3-bin (3.24.49-3) ...
- Setting up dmsetup (2:1.02.205-2) ...
- Setting up libheif-plugin-dav1d:amd64 (1.19.8-1) ...
- Setting up libheif-plugin-libde265:amd64 (1.19.8-1) ...
- Setting up libheif1:amd64 (1.19.8-1) ...
- Setting up libgd3:amd64 (2.3.3-13) ...
- Setting up libgvc6 (2.42.4-3) ...
- Setting up libdevmapper1.02.1:amd64 (2:1.02.205-2) ...
- Setting up libcryptsetup12:amd64 (2:2.7.5-2) ...
- Setting up graphviz (2.42.4-3) ...
- Setting up xdot (1.4-1) ...
- Setting up libheif-plugin-x265:amd64 (1.19.8-1) ...
- Setting up libheif-plugin-aomenc:amd64 (1.19.8-1) ...
- Setting up systemd-cryptsetup (257.13-1~deb13u1) ...
- 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.eno33np0.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.eno34np1.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.enp161s0f0.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.enp161s0f1.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.enp161s0f2.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.enp161s0f3.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.eno33np0.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.eno34np1.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.enp161s0f0.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.enp161s0f1.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.enp161s0f2.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.enp161s0f3.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.eno33np0.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.eno34np1.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.enp161s0f0.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.enp161s0f1.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.enp161s0f2.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.enp161s0f3.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+deb13u2) ...
- Processing triggers for systemd (257.13-1~deb13u1) ...
- Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved bos.0.3.0 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved camlp5-buildscripts.0.07 (https://github.com/camlp5/camlp5-buildscripts/archive/refs/tags/0.07.tar.gz)
-> retrieved dune.3.23.1 (cached)
-> installed conf-m4.1
-> installed conf-which.1
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved not-ocamlfind.0.14 (cached)
-> retrieved ocaml-compiler.5.4.1 (cached)
-> retrieved ocaml-config.3 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocamlgraph.2.2.0 (cached)
-> retrieved opam-depext.1.2.3 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> removed base-effects.base
-> removed base-nnp.base
-> removed base-domains.base
-> removed opam-depext.1.2.3
-> removed ocaml.5.4.1
-> removed ocaml-config.3
-> removed ocaml-base-compiler.5.4.1
-> removed ocaml-compiler.5.4.1
-> installed ocaml-compiler.5.4.1
-> installed ocaml-base-compiler.5.4.1
-> installed ocaml-config.3
-> installed ocaml.5.4.1
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed logs.0.10.0
-> installed fpath.0.7.3
-> installed bos.0.3.0
-> installed dune.3.23.1
-> installed camlp-streams.5.0.1
-> installed re.1.14.0
-> installed ocamlgraph.2.2.0
-> installed not-ocamlfind.0.14
-> installed camlp5-buildscripts.0.07
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# Run eval $(opam env) to update the current shell environment
2026-05-23 21:46.48 ---> saved as "ceb55df82e6ec3ca74e0aad7e1a380e1a5cda9544773259e7b80fb15a6b669c6"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test camlp5-buildscripts.0.07) || true"))
The following actions will be performed:
- install cmdliner 2.1.1 [required by mdx]
- install result 1.5 [required by mdx]
- install ocaml-version 4.1.1 [required by mdx]
- install cppo 1.8.0 [required by mdx]
- install csexp 1.5.2 [required by mdx]
- recompile fmt 0.11.0 [uses cmdliner]
- recompile not-ocamlfind 0.14 [uses fmt]
- recompile logs 0.10.0 [uses cmdliner]
- install mdx 2.5.2 [required by camlp5-buildscripts]
- recompile bos 0.3.0 [uses fmt]
- recompile camlp5-buildscripts 0.07*
===== 6 to install | 5 to recompile =====
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bos.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.1 (https://opam.ocaml.org/cache)
-> retrieved cppo.1.8.0 (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0 (https://opam.ocaml.org/cache)
-> installed csexp.1.5.2
-> retrieved mdx.2.5.2 (https://opam.ocaml.org/cache)
-> retrieved not-ocamlfind.0.14 (https://opam.ocaml.org/cache)
-> retrieved ocaml-version.4.1.1 (https://opam.ocaml.org/cache)
-> installed cppo.1.8.0
-> retrieved result.1.5 (https://opam.ocaml.org/cache)
-> installed ocaml-version.4.1.1
-> installed result.1.5
-> removed camlp5-buildscripts.0.07
-> removed bos.0.3.0
-> removed logs.0.10.0
-> removed not-ocamlfind.0.14
-> removed fmt.0.11.0
-> installed cmdliner.2.1.1
-> installed fmt.0.11.0
-> installed logs.0.10.0
-> installed not-ocamlfind.0.14
-> installed mdx.2.5.2
-> installed bos.0.3.0
-> installed camlp5-buildscripts.0.07
Done.
# Run eval $(opam env) to update the current shell environment
2026-05-23 21:47.11 ---> saved as "1c9584f585d5966c366bb3e7280f0ceaef5436e0ac5a9046e04730d0476a6f40"
/home/opam: (run (shell "opam reinstall --with-test --verbose camlp5-buildscripts.0.07;\
\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\" != 'camlp5-buildscripts.0.07' && 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 camlp5-buildscripts 0.07*
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [camlp5-buildscripts: make sys]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "sys" (CWD=/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07)
- set -e; for i in src; do cd $i; make all; cd ..; done
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src'
- ocamlfind ocamlc -linkpkg -linkall -package re,fmt,unix,bos,rresult ya_wrap_ocamlfind.ml -o ya-wrap-ocamlfind
- ocamlfind ocamlc -linkpkg -linkall -package re,fmt,unix,bos,rresult fixin.ml -o fixin
- ocamlfind ocamlc -linkpkg -linkall -package re,fmt,unix,bos,rresult join_meta.ml -o join_meta
- ocamlfind ocamlc -linkpkg -linkall -package re,fmt,unix,bos,rresult LAUNCH.ml -o LAUNCH
- make DESTDIR=/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install/ install
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src'
- mkdir -p /home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install//lib
- touch META
- not-ocamlfind reinstall-if-diff camlp5-buildscripts -destdir /home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install//lib META ya-wrap-ocamlfind fixin join_meta LAUNCH
- ocamlfind: [WARNING] No such directory: /home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install//lib/camlp5-buildscripts
- reinstall-if-diff: remove and install lists have differing lengths
- + ocamlfind remove -destdir /home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install//lib camlp5-buildscripts
- ocamlfind: [WARNING] No such file: /home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install//lib/camlp5-buildscripts/META
- + ocamlfind install camlp5-buildscripts -destdir /home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install//lib META ya-wrap-ocamlfind fixin join_meta LAUNCH
- Installed /home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install//lib/camlp5-buildscripts/LAUNCH
- Installed /home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install//lib/camlp5-buildscripts/join_meta
- Installed /home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install//lib/camlp5-buildscripts/fixin
- Installed /home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install//lib/camlp5-buildscripts/ya-wrap-ocamlfind
- Installed /home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install//lib/camlp5-buildscripts/META
- rm -f META
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src'
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src'
Processing 2/4: [camlp5-buildscripts: make test]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "test" (CWD=/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07)
- set -e; for i in src; do cd $i; make all; cd ..; done
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src'
- make DESTDIR=/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install/ install
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src'
- mkdir -p /home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install//lib
- touch META
- not-ocamlfind reinstall-if-diff camlp5-buildscripts -destdir /home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install//lib META ya-wrap-ocamlfind fixin join_meta LAUNCH
- rm -f META
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src'
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src'
- mkdir -p local-install/bin
- set -e; for i in test; do cd $i; make all; cd ..; done
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test'
- set -e; for i in simple packages fail; do cd $i; make all; cd ..; done
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/simple'
- make[2]: Nothing to be done for 'all'.
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/simple'
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages'
- set -e; for i in foo bar test; do cd $i; make all; cd ..; done
- make[3]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages/foo'
- TOP=../../.. ../../../src/LAUNCH -vv -- ocamlfind camlp5-buildscripts/LAUNCH -- ocamlfind ocamlc -c foo.ml
- LAUNCH: PATH="../../../local-install/bin:/home/opam/.opam/5.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- LAUNCH: OCAMLPATH="../../../local-install/lib:"
- LAUNCH: command 'ocamlfind' 'camlp5-buildscripts/LAUNCH' '--' 'ocamlfind' 'ocamlc' '-c' 'foo.ml'
- TOP=../../.. ../../../src/LAUNCH -vv -- ocamlfind camlp5-buildscripts/LAUNCH -- ocamlfind ocamlopt -c foo.ml
- LAUNCH: PATH="../../../local-install/bin:/home/opam/.opam/5.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- LAUNCH: OCAMLPATH="../../../local-install/lib:"
- LAUNCH: command 'ocamlfind' 'camlp5-buildscripts/LAUNCH' '--' 'ocamlfind' 'ocamlopt' '-c' 'foo.ml'
- TOP=../../.. ../../../src/LAUNCH -vv -- ocamlfind camlp5-buildscripts/LAUNCH -- ocamlfind install -destdir ../../../local-install/lib foo META foo.cmo foo.cmi foo.cmx foo.o || true
- LAUNCH: PATH="../../../local-install/bin:/home/opam/.opam/5.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- LAUNCH: OCAMLPATH="../../../local-install/lib:"
- LAUNCH: command 'ocamlfind' 'camlp5-buildscripts/LAUNCH' '--' 'ocamlfind' 'install' '-destdir' '../../../local-install/lib' 'foo' 'META' 'foo.cmo' 'foo.cmi' 'foo.cmx' 'foo.o'
- Installed ../../../local-install/lib/foo/foo.o
- Installed ../../../local-install/lib/foo/foo.cmx
- Installed ../../../local-install/lib/foo/foo.cmi
- Installed ../../../local-install/lib/foo/foo.cmo
- Installed ../../../local-install/lib/foo/META
- make[3]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages/foo'
- make[3]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages/bar'
- TOP=../../.. ../../../src/LAUNCH -vv -- ocamlfind camlp5-buildscripts/LAUNCH -- ocamlfind ocamlc -package foo -c bar.ml
- LAUNCH: PATH="../../../local-install/bin:/home/opam/.opam/5.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- LAUNCH: OCAMLPATH="../../../local-install/lib:"
- LAUNCH: command 'ocamlfind' 'camlp5-buildscripts/LAUNCH' '--' 'ocamlfind' 'ocamlc' '-package' 'foo' '-c' 'bar.ml'
- TOP=../../.. ../../../src/LAUNCH -vv -- ocamlfind camlp5-buildscripts/LAUNCH -- ocamlfind ocamlopt -package foo -c bar.ml
- LAUNCH: PATH="../../../local-install/bin:/home/opam/.opam/5.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- LAUNCH: OCAMLPATH="../../../local-install/lib:"
- LAUNCH: command 'ocamlfind' 'camlp5-buildscripts/LAUNCH' '--' 'ocamlfind' 'ocamlopt' '-package' 'foo' '-c' 'bar.ml'
- TOP=../../.. ../../../src/LAUNCH -vv -- ocamlfind camlp5-buildscripts/LAUNCH -- ocamlfind ocamlc -package foo -c buzz.ml
- LAUNCH: PATH="../../../local-install/bin:/home/opam/.opam/5.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- LAUNCH: OCAMLPATH="../../../local-install/lib:"
- LAUNCH: command 'ocamlfind' 'camlp5-buildscripts/LAUNCH' '--' 'ocamlfind' 'ocamlc' '-package' 'foo' '-c' 'buzz.ml'
- TOP=../../.. ../../../src/LAUNCH -vv -- ocamlfind camlp5-buildscripts/LAUNCH -- ocamlfind ocamlopt -package foo -c buzz.ml
- LAUNCH: PATH="../../../local-install/bin:/home/opam/.opam/5.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- LAUNCH: OCAMLPATH="../../../local-install/lib:"
- LAUNCH: command 'ocamlfind' 'camlp5-buildscripts/LAUNCH' '--' 'ocamlfind' 'ocamlopt' '-package' 'foo' '-c' 'buzz.ml'
- TOP=../../.. ../../../src/LAUNCH -vv -- ocamlfind camlp5-buildscripts/LAUNCH -- ocamlfind install -destdir ../../../local-install/lib bar META bar.cmo bar.cmi bar.cmx bar.o buzz.cmo buzz.cmi buzz.cmx buzz.o || true
- LAUNCH: PATH="../../../local-install/bin:/home/opam/.opam/5.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- LAUNCH: OCAMLPATH="../../../local-install/lib:"
- LAUNCH: command 'ocamlfind' 'camlp5-buildscripts/LAUNCH' '--' 'ocamlfind' 'install' '-destdir' '../../../local-install/lib' 'bar' 'META' 'bar.cmo' 'bar.cmi' 'bar.cmx' 'bar.o' 'buzz.cmo' 'buzz.cmi' 'buzz.cmx' 'buzz.o'
- Installed ../../../local-install/lib/bar/buzz.o
- Installed ../../../local-install/lib/bar/buzz.cmx
- Installed ../../../local-install/lib/bar/buzz.cmi
- Installed ../../../local-install/lib/bar/buzz.cmo
- Installed ../../../local-install/lib/bar/bar.o
- Installed ../../../local-install/lib/bar/bar.cmx
- Installed ../../../local-install/lib/bar/bar.cmi
- Installed ../../../local-install/lib/bar/bar.cmo
- Installed ../../../local-install/lib/bar/META
- make[3]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages/bar'
- make[3]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages/test'
- TOP=../../.. ../../../src/LAUNCH -vv -- ocamlfind camlp5-buildscripts/LAUNCH -- ocamlfind ocamlc -verbose -package foo -linkall -linkpkg justfoo.ml -o justfoo
- LAUNCH: PATH="../../../local-install/bin:/home/opam/.opam/5.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- LAUNCH: OCAMLPATH="../../../local-install/lib:"
- LAUNCH: command 'ocamlfind' 'camlp5-buildscripts/LAUNCH' '--' 'ocamlfind' 'ocamlc' '-verbose' '-package' 'foo' '-linkall' '-linkpkg' 'justfoo.ml' '-o' 'justfoo'
- Effective set of compiler predicates: pkg_foo,autolink,byte
- + ocamlc.opt -verbose -linkall -o justfoo -I ../../../local-install/lib/foo ../../../local-install/lib/foo/foo.cmo justfoo.ml
- TOP=../../.. ../../../src/LAUNCH -vv -- ocamlfind camlp5-buildscripts/LAUNCH -- ocamlfind ocamlc -verbose -package fmt,bar -linkall -linkpkg foobar.ml -o foobar
- LAUNCH: PATH="../../../local-install/bin:/home/opam/.opam/5.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- LAUNCH: OCAMLPATH="../../../local-install/lib:"
- LAUNCH: command 'ocamlfind' 'camlp5-buildscripts/LAUNCH' '--' 'ocamlfind' 'ocamlc' '-verbose' '-package' 'fmt,bar' '-linkall' '-linkpkg' 'foobar.ml' '-o' 'foobar'
- Effective set of compiler predicates: pkg_fmt,pkg_foo,pkg_bar,autolink,byte
- + ocamlc.opt -verbose -linkall -o foobar -I /home/opam/.opam/5.4/lib/fmt -I ../../../local-install/lib/foo -I ../../../local-install/lib/bar /home/opam/.opam/5.4/lib/fmt/fmt.cma ../../../local-install/lib/foo/foo.cmo ../../../local-install/lib/bar/bar.cmo foobar.ml
- TOP=../../.. ../../../src/LAUNCH -vv -- ocamlfind camlp5-buildscripts/LAUNCH -- ocamlfind ocamlc -verbose -package bar -linkall -linkpkg buzz.cmo andbuzz.ml -o andbuzz
- LAUNCH: PATH="../../../local-install/bin:/home/opam/.opam/5.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- LAUNCH: OCAMLPATH="../../../local-install/lib:"
- LAUNCH: command 'ocamlfind' 'camlp5-buildscripts/LAUNCH' '--' 'ocamlfind' 'ocamlc' '-verbose' '-package' 'bar' '-linkall' '-linkpkg' 'buzz.cmo' 'andbuzz.ml' '-o' 'andbuzz'
- Effective set of compiler predicates: pkg_foo,pkg_bar,autolink,byte
- + ocamlc.opt -verbose -linkall -o andbuzz -I ../../../local-install/lib/foo -I ../../../local-install/lib/bar ../../../local-install/lib/foo/foo.cmo ../../../local-install/lib/bar/bar.cmo buzz.cmo andbuzz.ml
- TOP=../../.. ../../../src/LAUNCH -vv -- ocamlfind camlp5-buildscripts/LAUNCH -- ocamlfind ocamlc -verbose -package fmt,bar -linkall -linkpkg foobar.ml -o foobar buzz.cmo
- LAUNCH: PATH="../../../local-install/bin:/home/opam/.opam/5.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- LAUNCH: OCAMLPATH="../../../local-install/lib:"
- LAUNCH: command 'ocamlfind' 'camlp5-buildscripts/LAUNCH' '--' 'ocamlfind' 'ocamlc' '-verbose' '-package' 'fmt,bar' '-linkall' '-linkpkg' 'foobar.ml' '-o' 'foobar' 'buzz.cmo'
- Effective set of compiler predicates: pkg_fmt,pkg_foo,pkg_bar,autolink,byte
- + ocamlc.opt -verbose -linkall -o foobar -I /home/opam/.opam/5.4/lib/fmt -I ../../../local-install/lib/foo -I ../../../local-install/lib/bar /home/opam/.opam/5.4/lib/fmt/fmt.cma ../../../local-install/lib/foo/foo.cmo ../../../local-install/lib/bar/bar.cmo foobar.ml buzz.cmo
- cp foobar ../../../local-install/bin/foobar
- cp foobar ../../../local-install/bin/foobar
- cp foobar ../../../local-install/bin/foobar.opt
- make[3]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages/test'
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages'
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/fail'
- make[2]: Nothing to be done for 'all'.
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/fail'
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test'
- set -e; for i in test; do cd $i; make test; cd ..; done
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test'
- set -e; for i in simple packages fail; do cd $i; make test; cd ..; done
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/simple'
- rm -f LAUNCH.md.corrected
- ocaml-mdx test --force-output LAUNCH.md
- test '!' -f LAUNCH.md.corrected || diff -I stublibs -I '```' -Bwiu LAUNCH.md LAUNCH.md.corrected
- rm -f join_meta.md.corrected
- ocaml-mdx test --force-output join_meta.md
- test '!' -f join_meta.md.corrected || diff -I stublibs -I '```' -Bwiu join_meta.md join_meta.md.corrected
- rm -f ya-wrap-ocamlfind.md.corrected
- ocaml-mdx test --force-output ya-wrap-ocamlfind.md
- test '!' -f ya-wrap-ocamlfind.md.corrected || diff -I stublibs -I '```' -Bwiu ya-wrap-ocamlfind.md ya-wrap-ocamlfind.md.corrected
- ./LAUNCH.sh
- ================
- Failure("LAUNCH: environment variable TOP *must* be set to use this wrapper")
- expect-this
- ================
- foo
- ================
- bar
- ================
- DONE
- ./LAUNCH.sh > LAUNCH.sh.output 2>&1
- diff -Bwiu t/LAUNCH/LAUNCH.sh.expected LAUNCH.sh.output
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/simple'
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages'
- set -e; for i in foo bar test; do cd $i; make test; cd ..; done
- make[3]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages/foo'
- make[3]: Nothing to be done for 'test'.
- make[3]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages/foo'
- make[3]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages/bar'
- make[3]: Nothing to be done for 'test'.
- make[3]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages/bar'
- make[3]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages/test'
- make[3]: Nothing to be done for 'test'.
- make[3]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages/test'
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/packages'
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/fail'
- rm -f FAILED
- if [ -f FAILED ] ; then false; fi
- ocamlfind fmt/NONEXISTENT || touch FAILED
- ocamlfind: Cannot find command: /home/opam/.opam/5.4/lib/fmt/NONEXISTENT
- if [ ! -f FAILED ] ; then false; fi
- rm -f FAILED
- TOP=../.. ../../src/LAUNCH -- ocamlfind fmt/NONEXISTENT || touch FAILED
- ocamlfind: Cannot find command: /home/opam/.opam/5.4/lib/fmt/NONEXISTENT
- if [ ! -f FAILED ] ; then false; fi
- rm -f FAILED
- TOP=../.. ../../src/LAUNCH -- ocamlfind camlp5-buildscripts/LAUNCH -- touch SUCCESS
- if [ ! -f SUCCESS ] ; then false; fi
- rm -f SUCCESS
- echo "==== ALL PASSED ===="
- ==== ALL PASSED ====
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test/fail'
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/test'
-> compiled camlp5-buildscripts.0.07
-> removed camlp5-buildscripts.0.07
Processing 4/4: [camlp5-buildscripts: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07)
- set -e; for i in src; do cd $i; make all; cd ..; done
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src'
- make DESTDIR=/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install/ install
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src'
- mkdir -p /home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install//lib
- touch META
- not-ocamlfind reinstall-if-diff camlp5-buildscripts -destdir /home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src/../local-install//lib META ya-wrap-ocamlfind fixin join_meta LAUNCH
- rm -f META
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src'
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/camlp5-buildscripts.0.07/src'
- ocamlfind remove camlp5-buildscripts || true
- ocamlfind: [WARNING] No such file: /home/opam/.opam/5.4/lib/camlp5-buildscripts/META
- ocamlfind install camlp5-buildscripts local-install/lib/camlp5-buildscripts/*
- Installed /home/opam/.opam/5.4/lib/camlp5-buildscripts/ya-wrap-ocamlfind
- Installed /home/opam/.opam/5.4/lib/camlp5-buildscripts/join_meta
- Installed /home/opam/.opam/5.4/lib/camlp5-buildscripts/fixin
- Installed /home/opam/.opam/5.4/lib/camlp5-buildscripts/LAUNCH
- Installed /home/opam/.opam/5.4/lib/camlp5-buildscripts/META
-> installed camlp5-buildscripts.0.07
Done.
# Run eval $(opam env) to update the current shell environment
2026-05-23 21:47.24 ---> saved as "bb82abaa4c3b428dc1300cce5b2e1a00e7df337ddc801b846b32ab443e9b6d48"
Job succeeded
2026-05-23 21:47.29: Job succeeded