- github
- ocaml
- opam-repository
- 48fdb7
- distributions,archlinux-ocaml-5.3,irmin-bench.3.11.0,tests
(not at the head of any monitored branch or PR)
2025-06-22 15:08.55: New job: test irmin-bench.3.11.0, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/28048/head (48fdb7b54bcc9118691798729e3e6d75987a782e)
on archlinux-ocaml-5.3/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/28048/head" && git reset --hard 48fdb7b5
git fetch origin master
git merge --no-edit 2cd8e78594a8943245b8061dbdabd39e7ca492fb
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-5.3@sha256:a8784e4f13ade50579e5e13d971235e955a044f4331b97933711828e7e17608d
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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 irmin-bench.3.11.0 3.11.0
RUN opam reinstall irmin-bench.3.11.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'irmin-bench.3.11.0' && 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 irmin-bench.3.11.0) || true
RUN opam reinstall --with-test --verbose irmin-bench.3.11.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'irmin-bench.3.11.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-06-22 15:08.55: Using cache hint "ocaml/opam:archlinux-ocaml-5.3@sha256:a8784e4f13ade50579e5e13d971235e955a044f4331b97933711828e7e17608d-irmin-bench.3.11.0-48fdb7b54bcc9118691798729e3e6d75987a782e"
2025-06-22 15:08.55: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-5.3@sha256:a8784e4f13ade50579e5e13d971235e955a044f4331b97933711828e7e17608d)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.3 /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 irmin-bench.3.11.0 3.11.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall irmin-bench.3.11.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'irmin-bench.3.11.0' && 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 irmin-bench.3.11.0) || true"))
(run (shell "opam reinstall --with-test --verbose irmin-bench.3.11.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'irmin-bench.3.11.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-06-22 15:08.55: Waiting for resource in pool OCluster
2025-06-22 15:17.02: Waiting for worker…
2025-06-22 15:20.42: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 2cd8e78594 Merge pull request #28046 from valoran-M/master
Merge made by the 'ort' strategy.
packages/irmin-bench/irmin-bench.3.11.0/opam | 60 +++++++++++++++++++
packages/irmin-chunk/irmin-chunk.3.11.0/opam | 36 +++++++++++
packages/irmin-cli/irmin-cli.3.11.0/opam | 70 ++++++++++++++++++++++
packages/irmin-client/irmin-client.3.11.0/opam | 43 +++++++++++++
.../irmin-containers/irmin-containers.3.11.0/opam | 43 +++++++++++++
packages/irmin-fs/irmin-fs.3.11.0/opam | 38 ++++++++++++
packages/irmin-git/irmin-git.3.11.0/opam | 54 +++++++++++++++++
packages/irmin-graphql/irmin-graphql.3.11.0/opam | 46 ++++++++++++++
.../irmin-mirage-git/irmin-mirage-git.3.11.0/opam | 37 ++++++++++++
.../irmin-mirage-graphql.3.11.0/opam | 36 +++++++++++
packages/irmin-mirage/irmin-mirage.3.11.0/opam | 33 ++++++++++
.../irmin-pack-tools/irmin-pack-tools.3.11.0/opam | 50 ++++++++++++++++
packages/irmin-pack/irmin-pack.3.11.0/opam | 45 ++++++++++++++
packages/irmin-server/irmin-server.3.11.0/opam | 46 ++++++++++++++
packages/irmin-test/irmin-test.3.11.0/opam | 51 ++++++++++++++++
packages/irmin-tezos/irmin-tezos.3.11.0/opam | 39 ++++++++++++
packages/irmin/irmin.3.11.0/opam | 65 ++++++++++++++++++++
packages/libirmin/libirmin.3.11.0/opam | 35 +++++++++++
packages/ppx_irmin/ppx_irmin.3.11.0/opam | 35 +++++++++++
19 files changed, 862 insertions(+)
create mode 100644 packages/irmin-bench/irmin-bench.3.11.0/opam
create mode 100644 packages/irmin-chunk/irmin-chunk.3.11.0/opam
create mode 100644 packages/irmin-cli/irmin-cli.3.11.0/opam
create mode 100644 packages/irmin-client/irmin-client.3.11.0/opam
create mode 100644 packages/irmin-containers/irmin-containers.3.11.0/opam
create mode 100644 packages/irmin-fs/irmin-fs.3.11.0/opam
create mode 100644 packages/irmin-git/irmin-git.3.11.0/opam
create mode 100644 packages/irmin-graphql/irmin-graphql.3.11.0/opam
create mode 100644 packages/irmin-mirage-git/irmin-mirage-git.3.11.0/opam
create mode 100644 packages/irmin-mirage-graphql/irmin-mirage-graphql.3.11.0/opam
create mode 100644 packages/irmin-mirage/irmin-mirage.3.11.0/opam
create mode 100644 packages/irmin-pack-tools/irmin-pack-tools.3.11.0/opam
create mode 100644 packages/irmin-pack/irmin-pack.3.11.0/opam
create mode 100644 packages/irmin-server/irmin-server.3.11.0/opam
create mode 100644 packages/irmin-test/irmin-test.3.11.0/opam
create mode 100644 packages/irmin-tezos/irmin-tezos.3.11.0/opam
create mode 100644 packages/irmin/irmin.3.11.0/opam
create mode 100644 packages/libirmin/libirmin.3.11.0/opam
create mode 100644 packages/ppx_irmin/ppx_irmin.3.11.0/opam
(from ocaml/opam:archlinux-ocaml-5.3@sha256:a8784e4f13ade50579e5e13d971235e955a044f4331b97933711828e7e17608d)
2025-06-22 15:20.46 ---> using "e9ce39c22a50bb1e462e4f6f078beb80c6216921e61e783ec8e881e7078e188e" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-06-22 15:20.46 ---> using "60bcead9133e5095d43a171f723099dd9dc13de841c2d5b44e63969973cfe0a0" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [y/n] y
[NOTE] The 'jobs' option was reset, its value was 255 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=255 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-06-22 15:20.46 ---> using "932dbe6ef419b19734277704572181f78ae2eccb728a7ccc251c37a1087abf96" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=arch os-version=20250608.0.361578
# 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.3
# invariant ["ocaml-base-compiler" {= "5.3.0"}]
# compiler-packages ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.3.0
2025-06-22 15:20.46 ---> using "bbb019e1ffa926e0be0ea48597e830904253e9657c5c90bd392411d9b62162ed" 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-06-22 15:20.46 ---> using "8750cc386c23718cb9940917fdffc7c3e0677dcf1cd75ad542b7f50356f1cb5b" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-06-22 15:20.47 ---> using "c4dc419aa4d1c4e1375ed3eb00e8d60d0be556a6875f2727fe8b08ff998b4570" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-06-22 15:20.47 ---> using "058e6e51195f242eb44fa514fb89212576416659cb26cc5ca116331ecf032b22" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2025-06-22 15:20.47 ---> using "05a3cfb3c65c34bc32d96802d7b33a39db4b4af7272451e183335b8bea4ed293" from cache
/home/opam: (run (shell "opam pin add -k version -yn irmin-bench.3.11.0 3.11.0"))
irmin-bench is now pinned to version 3.11.0
2025-06-22 15:20.47 ---> using "46b2127ca3aa1110de714b7d242f2801d7f445a333eded006e6a259651d10b2f" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall irmin-bench.3.11.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'irmin-bench.3.11.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
irmin-bench.3.11.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 69 packages
∗ alcotest 1.9.0 [required by alcotest-lwt]
∗ alcotest-lwt 1.9.0 [required by irmin-test]
∗ angstrom 0.16.1 [required by uri]
∗ astring 0.8.5 [required by irmin-test]
∗ base-bytes base [required by ocplib-endian]
∗ base64 3.5.1 [required by repr]
∗ bentov 1 [required by irmin-bench]
∗ bheap 2.0.0 [required by irmin]
∗ bigstringaf 0.10.0 [required by irmin]
∗ checkseum 0.5.2 [required by irmin-pack]
∗ cmdliner 1.3.0 [required by irmin-bench]
∗ conf-gmp 5 [required by zarith]
∗ conf-gnuplot 0.1 [required by metrics-unix]
∗ conf-pkg-config 4 [required by zarith]
∗ cppo 1.8.0 [required by lwt, ppx_deriving]
∗ csexp 1.5.2 [required by dune-configurator]
∗ digestif 1.3.0 [required by irmin-tezos]
∗ dune 3.19.1 [required by irmin-bench]
∗ dune-configurator 3.19.1 [required by checkseum]
∗ either 1.0.0 [required by repr]
∗ eqaf 0.10 [required by digestif]
∗ fmt 0.10.0 [required by irmin-bench]
∗ index 1.6.2 [required by irmin-pack]
∗ irmin 3.11.0 [required by irmin-test, irmin-pack, irmin-tezos]
∗ irmin-bench 3.11.0 (pinned)
∗ irmin-pack 3.11.0 [required by irmin-bench]
∗ irmin-test 3.11.0 [required by irmin-bench]
∗ irmin-tezos 3.11.0 [required by irmin-bench]
∗ jsonm 1.0.2 [required by irmin-test]
∗ logs 0.7.0 [required by irmin-bench]
∗ lru 0.3.1 [required by index]
∗ lwt 5.9.1 [required by irmin-bench]
∗ metrics 0.5.0 [required by irmin-test]
∗ metrics-unix 0.5.0 [required by irmin-test]
∗ mtime 2.1.0 [required by irmin-bench]
∗ ocaml-compiler-libs v0.17.0 [required by ppxlib]
∗ ocaml-syntax-shims 1.0.0 [required by irmin-test]
∗ ocamlbuild 0.16.1 [required by fmt]
∗ ocamlfind 1.9.8 [required by fmt]
∗ ocamlgraph 2.2.0 [required by irmin]
∗ ocplib-endian 1.2 [required by lwt]
∗ optint 0.3.0 [required by irmin-pack]
∗ ppx_derivers 1.2.1 [required by ppx_deriving]
∗ ppx_deriving 6.0.3 [required by irmin-bench]
∗ ppx_irmin 3.11.0 [required by irmin-test, irmin-pack, irmin-tezos]
∗ ppx_repr 0.7.0 [required by irmin-bench]
∗ ppxlib 0.35.0 [required by ppx_repr, ppx_irmin]
∗ printbox 0.12 [required by irmin-bench]
∗ printbox-text 0.12 [required by irmin-bench]
∗ progress 0.4.0 [required by irmin-bench]
∗ psq 0.2.1 [required by lru]
∗ re 1.12.0 [required by irmin-bench]
∗ repr 0.7.0 [required by irmin-bench]
∗ rusage 1.0.0 [required by irmin-bench]
∗ semaphore-compat 1.0.2 [required by index]
∗ seq base [required by psq, re]
∗ sexplib0 v0.17.0 [required by ppxlib]
∗ stdlib-shims 0.3.0 [required by index]
∗ stringext 1.6.0 [required by uri]
∗ terminal 0.4.0 [required by progress]
∗ tezos-base58 1.0.0 [required by irmin-tezos]
∗ topkg 1.0.8 [required by fmt]
∗ uri 4.4.0 [required by irmin]
∗ uucp 16.0.0 [required by irmin-bench]
∗ uuidm 0.9.10 [required by irmin-bench]
∗ uutf 1.0.4 [required by irmin-bench]
∗ vector 1.0.0 [required by progress]
∗ yojson 3.0.0 [required by irmin-tezos]
∗ zarith 1.14 [required by tezos-base58]
The following system packages will first need to be installed:
gnuplot pkgconf
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
2. Display the recommended pacman command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/sbin/sudo "pacman" "-Su" "--noconfirm" "gnuplot" "pkgconf"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
- warning: dependency cycle detected:
- warning: harfbuzz will be installed before its freetype2 dependency
- warning: dependency cycle detected:
- warning: mesa will be installed before its libglvnd dependency
-
- Package (152) Old Version New Version Net Change Download Size
-
- extra/adwaita-cursors 48.1-1 11.41 MiB 0.35 MiB
- extra/adwaita-fonts 48.2-1 7.12 MiB 2.09 MiB
- extra/adwaita-icon-theme 48.1-1 1.15 MiB 0.19 MiB
- extra/adwaita-icon-theme-legacy 46.2-3 2.23 MiB 2.17 MiB
- extra/aom 3.12.1-1 8.63 MiB 2.74 MiB
- extra/at-spi2-core 2.56.2-1 3.96 MiB 0.56 MiB
- extra/avahi 1:0.8+r194+g3f79789-3 1.88 MiB 0.42 MiB
- core/ca-certificates-mozilla 3.112-1 3.113-1 0.00 MiB 0.38 MiB
- extra/cairo 1.18.4-1 1.59 MiB 0.61 MiB
- extra/dav1d 1.5.1-1 1.77 MiB 0.62 MiB
- core/dbus-broker 36-4 37-2 0.00 MiB 0.14 MiB
- core/dbus-broker-units 36-4 37-2 0.00 MiB 0.00 MiB
- core/dbus-units 36-4 37-2 0.00 MiB 0.00 MiB
- extra/dconf 0.40.0-3 0.45 MiB 0.10 MiB
- extra/default-cursors 3-1 0.00 MiB 0.00 MiB
- extra/desktop-file-utils 0.28-1 0.18 MiB 0.04 MiB
- extra/double-conversion 3.3.1-1 0.19 MiB 0.06 MiB
- extra/duktape 2.7.0-7 0.78 MiB 0.17 MiB
- extra/fontconfig 2:2.16.2-1 1.11 MiB 0.36 MiB
- extra/freeglut 3.6.0-2 0.34 MiB 0.10 MiB
- extra/freetype2 2.13.3-3 1.62 MiB 0.51 MiB
- extra/fribidi 1.0.16-2 0.24 MiB 0.07 MiB
- extra/gd 2.3.3-8 0.65 MiB 0.15 MiB
- extra/gdk-pixbuf2 2.42.12-2 2.99 MiB 0.51 MiB
- extra/giflib 5.2.2-2 0.27 MiB 0.08 MiB
- extra/git 2.49.0-2 2.50.0-1 0.76 MiB 6.72 MiB
- extra/glib-networking 1:2.80.1-1 0.65 MiB 0.14 MiB
- core/glib2 2.84.2-1 2.84.3-1 0.00 MiB 4.91 MiB
- extra/glu 9.0.3-2 0.35 MiB 0.15 MiB
- extra/graphene 1.10.8-2 0.98 MiB 0.10 MiB
- extra/graphite 1:1.3.14-4 0.20 MiB 0.08 MiB
- extra/gsettings-desktop-schemas 48.0-1 5.39 MiB 0.72 MiB
- extra/gsettings-system-schemas 48.0-1 0.01 MiB 0.01 MiB
- extra/gssdp 1.6.3-2 0.24 MiB 0.06 MiB
- extra/gst-plugins-bad-libs 1.26.2-2 12.55 MiB 2.85 MiB
- extra/gst-plugins-base-libs 1.26.2-2 12.42 MiB 2.34 MiB
- extra/gstreamer 1.26.2-2 11.40 MiB 2.02 MiB
- extra/gtk-update-icon-cache 1:4.18.6-1 0.04 MiB 0.02 MiB
- extra/gtk3 1:3.24.49-2 53.14 MiB 8.68 MiB
- extra/gupnp 1:1.6.8-2 0.70 MiB 0.12 MiB
- extra/gupnp-igd 1.6.0-2 0.11 MiB 0.03 MiB
- extra/harfbuzz 11.2.1-1 4.22 MiB 1.09 MiB
- extra/hicolor-icon-theme 0.18-1 0.05 MiB 0.01 MiB
- extra/hidapi 0.15.0-1 0.13 MiB 0.04 MiB
- core/iana-etc 20250502-1 20250612-1 0.00 MiB 0.39 MiB
- extra/imlib2 1.12.5-1 1.47 MiB 0.56 MiB
- extra/iso-codes 4.18.0-1 21.40 MiB 3.41 MiB
- extra/jbigkit 2.1-8 0.16 MiB 0.05 MiB
- extra/json-glib 1.10.6-1 1.01 MiB 0.17 MiB
- extra/lcms2 2.17-1 0.67 MiB 0.21 MiB
- extra/libavif 1.3.0-1 0.76 MiB 0.27 MiB
- extra/libb2 0.98.1-3 0.13 MiB 0.04 MiB
- extra/libcaca 0.99.beta20-5 2.68 MiB 0.42 MiB
- extra/libcerf 1:3.0-1 0.18 MiB 0.07 MiB
- extra/libcloudproviders 0.3.6-2 0.47 MiB 0.06 MiB
- extra/libcolord 1.4.7-2 1.24 MiB 0.18 MiB
- extra/libcups 2:2.4.12-2 0.77 MiB 0.27 MiB
- extra/libdaemon 0.14-6 0.06 MiB 0.02 MiB
- extra/libdatrie 0.2.13-4 0.48 MiB 0.11 MiB
- extra/libde265 1.0.16-1 0.72 MiB 0.26 MiB
- extra/libdrm 2.4.125-1 1.26 MiB 0.34 MiB
- core/libedit 20250104_3.1-1 0.26 MiB 0.11 MiB
- extra/libepoxy 1.5.10-3 2.64 MiB 0.30 MiB
- extra/libevdev 1.13.4-1 0.21 MiB 0.06 MiB
- extra/libglvnd 1.7.0-3 3.34 MiB 0.32 MiB
- extra/libgudev 238-3 0.38 MiB 0.04 MiB
- extra/libheif 1.19.8-3 1.69 MiB 0.52 MiB
- extra/libice 1.1.2-1 0.36 MiB 0.08 MiB
- extra/libinput 1.28.1-1 1.15 MiB 0.30 MiB
- extra/libjpeg-turbo 3.1.0-1 2.39 MiB 0.56 MiB
- extra/libmspack 1:1.11-1 0.16 MiB 0.05 MiB
- core/libnghttp2 1.65.0-1 1.66.0-1 0.00 MiB 0.09 MiB
- extra/libnice 0.1.22-2 1.80 MiB 0.30 MiB
- extra/libnotify 0.8.6-1 0.14 MiB 0.03 MiB
- extra/libpciaccess 0.18.1-2 0.06 MiB 0.02 MiB
- extra/libpng 1.6.49-1 0.57 MiB 0.25 MiB
- extra/libproxy 0.5.9-1 0.10 MiB 0.03 MiB
- extra/librsvg 2:2.60.0-2 10.65 MiB 2.30 MiB
- extra/libsm 1.2.6-1 0.26 MiB 0.04 MiB
- extra/libsoup3 3.6.5-1 1.95 MiB 0.38 MiB
- extra/libstemmer 3.0.1-1 0.60 MiB 0.13 MiB
- extra/libthai 0.1.29-3 1.22 MiB 0.27 MiB
- extra/libtiff 4.7.0-1 1.78 MiB 0.48 MiB
- extra/libunwind 1.8.1-3 0.29 MiB 0.12 MiB
- extra/libva 2.22.0-1 0.97 MiB 0.19 MiB
- extra/libwacom 2.16.1-1 1.50 MiB 0.17 MiB
- extra/libwebp 1.5.0-1 1.16 MiB 0.36 MiB
- extra/libxcomposite 0.4.6-2 0.02 MiB 0.01 MiB
- extra/libxcursor 1.2.3-1 0.07 MiB 0.03 MiB
- extra/libxdamage 1.1.6-2 0.02 MiB 0.01 MiB
- extra/libxext 1.3.6-1 0.30 MiB 0.10 MiB
- extra/libxfixes 6.0.1-2 0.04 MiB 0.01 MiB
- extra/libxft 2.3.9-1 0.13 MiB 0.06 MiB
- extra/libxi 1.8.2-1 0.48 MiB 0.15 MiB
- extra/libxinerama 1.1.5-2 0.02 MiB 0.01 MiB
- extra/libxkbcommon 1.10.0-1 0.90 MiB 0.24 MiB
- extra/libxkbcommon-x11 1.10.0-1 0.09 MiB 0.03 MiB
- core/libxml2 2.14.3-1 2.14.4-1 0.00 MiB 0.78 MiB
- extra/libxmu 1.2.1-1 0.33 MiB 0.07 MiB
- extra/libxpm 3.5.17-2 0.16 MiB 0.07 MiB
- extra/libxrandr 1.5.4-1 0.07 MiB 0.03 MiB
- extra/libxrender 0.9.12-1 0.09 MiB 0.03 MiB
- extra/libxshmfence 1.3.3-1 0.02 MiB 0.01 MiB
- extra/libxt 1.3.1-1 2.02 MiB 0.52 MiB
- extra/libxtst 1.2.5-1 0.11 MiB 0.03 MiB
- extra/libxv 1.0.13-1 0.06 MiB 0.03 MiB
- extra/libxxf86vm 1.1.6-1 0.03 MiB 0.02 MiB
- extra/libyuv r2426+464c51a03-1 1.82 MiB 0.30 MiB
- extra/llvm-libs 20.1.6-3 150.00 MiB 37.76 MiB
- extra/lm_sensors 1:3.6.2-1 0.48 MiB 0.13 MiB
- extra/lua 5.4.8-2 1.50 MiB 0.35 MiB
- core/lzo 2.10-5 0.38 MiB 0.09 MiB
- extra/md4c 0.5.2-1 0.25 MiB 0.08 MiB
- extra/mesa 1:25.1.4-1 40.77 MiB 10.17 MiB
- extra/mtdev 1.1.7-1 0.05 MiB 0.02 MiB
- core/nano 8.4-1 8.5-1 0.01 MiB 0.58 MiB
- extra/orc 0.4.41-1 1.29 MiB 0.26 MiB
- core/pam 1.7.0-2 1.7.1-1 0.01 MiB 0.58 MiB
- extra/pango 1:1.56.3-1 2.32 MiB 0.41 MiB
- core/pcre 8.45-4 3.50 MiB 0.98 MiB
- extra/pixman 0.46.2-1 0.74 MiB 0.28 MiB
- extra/qt6-5compat 6.9.1-1 1.77 MiB 0.46 MiB
- extra/qt6-base 6.9.1-1 59.61 MiB 14.33 MiB
- extra/qt6-shadertools 6.9.1-1 4.82 MiB 1.58 MiB
- extra/qt6-svg 6.9.1-1 0.97 MiB 0.27 MiB
- extra/qt6-translations 6.9.1-1 13.98 MiB 1.81 MiB
- extra/rav1e 0.7.1-1 7.52 MiB 1.56 MiB
- extra/sdl2-compat 2.32.56-1 2.79 MiB 0.40 MiB
- extra/sdl3 3.2.16-1 6.13 MiB 1.38 MiB
- extra/shared-mime-info 2.4-2 4.57 MiB 0.60 MiB
- extra/slang 2.3.3-3 3.31 MiB 0.79 MiB
- extra/spirv-tools 1:1.4.313.0-1 7.22 MiB 1.73 MiB
- extra/svt-av1 3.0.2-1 5.69 MiB 1.99 MiB
- extra/tinysparql 3.9.2-2 3.83 MiB 1.04 MiB
- extra/tslib 1.23-1 0.47 MiB 0.10 MiB
- extra/vulkan-icd-loader 1.4.313.0-1 0.55 MiB 0.14 MiB
- extra/wayland 1.23.1-2 0.80 MiB 0.14 MiB
- extra/wxwidgets-common 3.2.8.1-2 15.22 MiB 2.92 MiB
- extra/wxwidgets-gtk3 3.2.8.1-2 16.61 MiB 4.53 MiB
- extra/x265 4.1-1 20.84 MiB 1.94 MiB
- extra/xcb-util 0.4.1-2 0.03 MiB 0.01 MiB
- extra/xcb-util-cursor 0.1.5-1 0.03 MiB 0.01 MiB
- extra/xcb-util-image 0.4.1-3 0.05 MiB 0.02 MiB
- extra/xcb-util-keysyms 0.4.1-5 0.02 MiB 0.01 MiB
- extra/xcb-util-renderutil 0.3.10-2 0.03 MiB 0.01 MiB
- extra/xcb-util-wm 0.4.2-2 0.21 MiB 0.03 MiB
- extra/xdg-utils 1.2.1-1 0.30 MiB 0.06 MiB
- extra/xkeyboard-config 2.45-1 10.16 MiB 0.85 MiB
- extra/xorg-xprop 1.2.8-1 0.05 MiB 0.03 MiB
- extra/xorg-xset 1.2.5-2 0.04 MiB 0.02 MiB
- extra/gnuplot 6.0.3-1 3.58 MiB 1.29 MiB
- core/pkgconf 2.5.0-1 0.20 MiB 0.07 MiB
-
- Total Download Size: 151.16 MiB
- Total Installed Size: 700.70 MiB
- Net Upgrade Size: 620.46 MiB
-
- :: Proceed with installation? [Y/n]
- :: Retrieving packages...
- llvm-libs-20.1.6-3-x86_64 downloading...
- qt6-base-6.9.1-1-x86_64 downloading...
- mesa-1:25.1.4-1-x86_64 downloading...
- gtk3-1:3.24.49-2-x86_64 downloading...
- git-2.50.0-1-x86_64 downloading...
- glib2-2.84.3-1-x86_64 downloading...
- wxwidgets-gtk3-3.2.8.1-2-x86_64 downloading...
- iso-codes-4.18.0-1-any downloading...
- wxwidgets-common-3.2.8.1-2-x86_64 downloading...
- gst-plugins-bad-libs-1.26.2-2-x86_64 downloading...
- aom-3.12.1-1-x86_64 downloading...
- gst-plugins-base-libs-1.26.2-2-x86_64 downloading...
- librsvg-2:2.60.0-2-x86_64 downloading...
- adwaita-icon-theme-legacy-46.2-3-any downloading...
- adwaita-fonts-48.2-1-any downloading...
- gstreamer-1.26.2-2-x86_64 downloading...
- svt-av1-3.0.2-1-x86_64 downloading...
- x265-4.1-1-x86_64 downloading...
- qt6-translations-6.9.1-1-any downloading...
- spirv-tools-1:1.4.313.0-1-x86_64 downloading...
- qt6-shadertools-6.9.1-1-x86_64 downloading...
- rav1e-0.7.1-1-x86_64 downloading...
- sdl3-3.2.16-1-x86_64 downloading...
- gnuplot-6.0.3-1-x86_64 downloading...
- harfbuzz-11.2.1-1-x86_64 downloading...
- tinysparql-3.9.2-2-x86_64 downloading...
- pcre-8.45-4-x86_64 downloading...
- xkeyboard-config-2.45-1-any downloading...
- slang-2.3.3-3-x86_64 downloading...
- libxml2-2.14.4-1-x86_64 downloading...
- gsettings-desktop-schemas-48.0-1-any downloading...
- dav1d-1.5.1-1-x86_64 downloading...
- cairo-1.18.4-1-x86_64 downloading...
- shared-mime-info-2.4-2-x86_64 downloading...
- nano-8.5-1-x86_64 downloading...
- pam-1.7.1-1-x86_64 downloading...
- imlib2-1.12.5-1-x86_64 downloading...
- at-spi2-core-2.56.2-1-x86_64 downloading...
- libjpeg-turbo-3.1.0-1-x86_64 downloading...
- libheif-1.19.8-3-x86_64 downloading...
- libxt-1.3.1-1-x86_64 downloading...
- freetype2-2.13.3-3-x86_64 downloading...
- gdk-pixbuf2-2.42.12-2-x86_64 downloading...
- libtiff-4.7.0-1-x86_64 downloading...
- qt6-5compat-6.9.1-1-x86_64 downloading...
- libcaca-0.99.beta20-5-x86_64 downloading...
- avahi-1:0.8+r194+g3f79789-3-x86_64 downloading...
- pango-1:1.56.3-1-x86_64 downloading...
- sdl2-compat-2.32.56-1-x86_64 downloading...
- iana-etc-20250612-1-any downloading...
- libsoup3-3.6.5-1-x86_64 downloading...
- ca-certificates-mozilla-3.113-1-x86_64 downloading...
- libwebp-1.5.0-1-x86_64 downloading...
- fontconfig-2:2.16.2-1-x86_64 downloading...
- lua-5.4.8-2-x86_64 downloading...
- adwaita-cursors-48.1-1-any downloading...
- libdrm-2.4.125-1-x86_64 downloading...
- libglvnd-1.7.0-3-x86_64 downloading...
- libnice-0.1.22-2-x86_64 downloading...
- libinput-1.28.1-1-x86_64 downloading...
- libepoxy-1.5.10-3-x86_64 downloading...
- libyuv-r2426+464c51a03-1-x86_64 downloading...
- pixman-0.46.2-1-x86_64 downloading...
- qt6-svg-6.9.1-1-x86_64 downloading...
- libthai-0.1.29-3-x86_64 downloading...
- libavif-1.3.0-1-x86_64 downloading...
- libcups-2:2.4.12-2-x86_64 downloading...
- orc-0.4.41-1-x86_64 downloading...
- libde265-1.0.16-1-x86_64 downloading...
- libpng-1.6.49-1-x86_64 downloading...
- libxkbcommon-1.10.0-1-x86_64 downloading...
- lcms2-2.17-1-x86_64 downloading...
- adwaita-icon-theme-48.1-1-any downloading...
- libva-2.22.0-1-x86_64 downloading...
- libcolord-1.4.7-2-x86_64 downloading...
- duktape-2.7.0-7-x86_64 downloading...
- libwacom-2.16.1-1-x86_64 downloading...
- json-glib-1.10.6-1-x86_64 downloading...
- gd-2.3.3-8-x86_64 downloading...
- glu-9.0.3-2-x86_64 downloading...
- libxi-1.8.2-1-x86_64 downloading...
- dbus-broker-37-2-x86_64 downloading...
- vulkan-icd-loader-1.4.313.0-1-x86_64 downloading...
- glib-networking-1:2.80.1-1-x86_64 downloading...
- wayland-1.23.1-2-x86_64 downloading...
- libstemmer-3.0.1-1-x86_64 downloading...
- lm_sensors-1:3.6.2-1-x86_64 downloading...
- libunwind-1.8.1-3-x86_64 downloading...
- gupnp-1:1.6.8-2-x86_64 downloading...
- libdatrie-0.2.13-4-x86_64 downloading...
- libedit-20250104_3.1-1-x86_64 downloading...
- graphene-1.10.8-2-x86_64 downloading...
- libxext-1.3.6-1-x86_64 downloading...
- dconf-0.40.0-3-x86_64 downloading...
- freeglut-3.6.0-2-x86_64 downloading...
- tslib-1.23-1-x86_64 downloading...
- libnghttp2-1.66.0-1-x86_64 downloading...
- lzo-2.10-5-x86_64 downloading...
- graphite-1:1.3.14-4-x86_64 downloading...
- md4c-0.5.2-1-x86_64 downloading...
- libice-1.1.2-1-x86_64 downloading...
- giflib-5.2.2-2-x86_64 downloading...
- libxmu-1.2.1-1-x86_64 downloading...
- pkgconf-2.5.0-1-x86_64 downloading...
- libxpm-3.5.17-2-x86_64 downloading...
- fribidi-1.0.16-2-x86_64 downloading...
- libcerf-1:3.0-1-x86_64 downloading...
- libcloudproviders-0.3.6-2-x86_64 downloading...
- libxft-2.3.9-1-x86_64 downloading...
- xdg-utils-1.2.1-1-any downloading...
- double-conversion-3.3.1-1-x86_64 downloading...
- libevdev-1.13.4-1-x86_64 downloading...
- gssdp-1.6.3-2-x86_64 downloading...
- libmspack-1:1.11-1-x86_64 downloading...
- jbigkit-2.1-8-x86_64 downloading...
- libsm-1.2.6-1-x86_64 downloading...
- libb2-0.98.1-3-x86_64 downloading...
- libgudev-238-3-x86_64 downloading...
- desktop-file-utils-0.28-1-x86_64 downloading...
- hidapi-0.15.0-1-x86_64 downloading...
- libxv-1.0.13-1-x86_64 downloading...
- libnotify-0.8.6-1-x86_64 downloading...
- xcb-util-wm-0.4.2-2-x86_64 downloading...
- libxcursor-1.2.3-1-x86_64 downloading...
- libproxy-0.5.9-1-x86_64 downloading...
- libxrender-0.9.12-1-x86_64 downloading...
- libxtst-1.2.5-1-x86_64 downloading...
- gupnp-igd-1.6.0-2-x86_64 downloading...
- libxrandr-1.5.4-1-x86_64 downloading...
- libxkbcommon-x11-1.10.0-1-x86_64 downloading...
- xorg-xprop-1.2.8-1-x86_64 downloading...
- libpciaccess-0.18.1-2-x86_64 downloading...
- xorg-xset-1.2.5-2-x86_64 downloading...
- libdaemon-0.14-6-x86_64 downloading...
- xcb-util-image-0.4.1-3-x86_64 downloading...
- mtdev-1.1.7-1-x86_64 downloading...
- gtk-update-icon-cache-1:4.18.6-1-x86_64 downloading...
- libxxf86vm-1.1.6-1-x86_64 downloading...
- libxfixes-6.0.1-2-x86_64 downloading...
- hicolor-icon-theme-0.18-1-any downloading...
- xcb-util-cursor-0.1.5-1-x86_64 downloading...
- xcb-util-0.4.1-2-x86_64 downloading...
- libxcomposite-0.4.6-2-x86_64 downloading...
- libxinerama-1.1.5-2-x86_64 downloading...
- xcb-util-renderutil-0.3.10-2-x86_64 downloading...
- xcb-util-keysyms-0.4.1-5-x86_64 downloading...
- libxdamage-1.1.6-2-x86_64 downloading...
- libxshmfence-1.3.3-1-x86_64 downloading...
- gsettings-system-schemas-48.0-1-any downloading...
- dbus-broker-units-37-2-x86_64 downloading...
- default-cursors-3-1-any downloading...
- dbus-units-37-2-x86_64 downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- upgrading iana-etc...
- installing libpng...
- upgrading glib2...
- installing graphite...
- Optional dependencies for graphite
- graphite-docs: Documentation
- installing harfbuzz...
- Optional dependencies for harfbuzz
- harfbuzz-utils: utilities
- installing freetype2...
- installing fontconfig...
- Creating fontconfig configuration...
- Rebuilding fontconfig cache...
- installing libxext...
- installing libxrender...
- installing lzo...
- installing pixman...
- installing cairo...
- installing libice...
- installing libsm...
- installing libxt...
- installing libxpm...
- installing giflib...
- installing libjpeg-turbo...
- Optional dependencies for libjpeg-turbo
- java-runtime>11: for TurboJPEG Java wrapper
- installing jbigkit...
- installing libtiff...
- Optional dependencies for libtiff
- freeglut: for using tiffgt [pending]
- installing libwebp...
- installing aom...
- installing dav1d...
- Optional dependencies for dav1d
- dav1d-doc: HTML documentation
- installing libyuv...
- installing rav1e...
- installing svt-av1...
- installing libavif...
- installing libde265...
- Optional dependencies for libde265
- ffmpeg: for sherlock265
- qt5-base: for sherlock265
- sdl: dec265 YUV overlay output
- installing x265...
- installing libheif...
- Optional dependencies for libheif
- libjpeg-turbo: for heif-convert and heif-enc [installed]
- libpng: for heif-convert and heif-enc [installed]
- dav1d: dav1d encoder [installed]
- ffmpeg: hardware decode
- rav1e: rav1e encoder [installed]
- svt-av1: svt-av1 encoder [installed]
- installing gd...
- Optional dependencies for gd
- perl: bdftogd script [installed]
- installing adwaita-fonts...
- installing hicolor-icon-theme...
- installing adwaita-icon-theme-legacy...
- installing adwaita-cursors...
- installing adwaita-icon-theme...
- installing dconf...
- installing gsettings-system-schemas...
- installing gsettings-desktop-schemas...
- installing libxfixes...
- installing libxi...
- installing libxtst...
- installing xorg-xprop...
- upgrading pam...
- installing at-spi2-core...
- installing desktop-file-utils...
- installing fribidi...
- upgrading libxml2...
- installing shared-mime-info...
- installing gdk-pixbuf2...
- Optional dependencies for gdk-pixbuf2
- libwmf: Load .wmf and .apm
- libopenraw: Load .dng, .cr2, .crw, .nef, .orf, .pef, .arw, .erf, .mrw, and .raf
- libavif: Load .avif [installed]
- libheif: Load .heif, .heic, and .avif [installed]
- libjxl: Load .jxl
- librsvg: Load .svg, .svgz, and .svg.gz [pending]
- webp-pixbuf-loader: Load .webp
- installing iso-codes...
- installing libcloudproviders...
- installing lcms2...
- upgrading dbus-broker...
- upgrading dbus-broker-units...
- upgrading dbus-units...
- upgrading libnghttp2...
- upgrading ca-certificates-mozilla...
- installing libcolord...
- installing libdaemon...
- installing avahi...
- Optional dependencies for avahi
- gtk3: avahi-discover, avahi-discover-standalone, bshell, bssh, bvnc [pending]
- libevent: libevent bindings [installed]
- nss-mdns: NSS support for mDNS
- python-dbus: avahi-bookmarks, avahi-discover
- python-gobject: avahi-bookmarks, avahi-discover
- python-twisted: avahi-bookmarks
- qt5-base: qt5 bindings
- installing libcups...
- installing libpciaccess...
- installing libdrm...
- Optional dependencies for libdrm
- cairo: needed for modetest tool [installed]
- installing libxshmfence...
- installing libxxf86vm...
- installing libedit...
- installing llvm-libs...
- installing lm_sensors...
- Optional dependencies for lm_sensors
- rrdtool: for logging with sensord
- perl: for sensor detection and configuration convert [installed]
- installing spirv-tools...
- installing default-cursors...
- Optional dependencies for default-cursors
- adwaita-cursors: default cursor theme [installed]
- installing wayland...
- installing mesa...
- Optional dependencies for mesa
- opengl-man-pages: for the OpenGL API man pages
- installing libglvnd...
- installing libepoxy...
- installing libdatrie...
- installing libthai...
- installing libxft...
- installing pango...
- installing librsvg...
- installing libxcomposite...
- installing libxcursor...
- installing libxdamage...
- installing libxinerama...
- installing xkeyboard-config...
- installing libxkbcommon...
- Optional dependencies for libxkbcommon
- libxkbcommon-x11: xkbcli interactive-x11 [pending]
- wayland: xkbcli interactive-wayland [installed]
- installing libxrandr...
- installing json-glib...
- installing duktape...
- installing libproxy...
- installing glib-networking...
- installing libsoup3...
- Optional dependencies for libsoup3
- samba: Windows Domain SSO
- installing libstemmer...
- installing tinysparql...
- installing gtk-update-icon-cache...
- installing gtk3...
- Optional dependencies for gtk3
- evince: Default print preview command
- installing freeglut...
- installing glu...
- installing imlib2...
- Optional dependencies for imlib2
- libheif: HEIF loader (for AVIF) [installed]
- libid3tag: ID3 loader
- libjxl: JXL loader
- librsvg: SVG loader [installed]
- libspectre: PS loader
- libwebp: WEBP loader [installed]
- openjpeg2: J2K loader
- installing pcre...
- installing slang...
- installing libcaca...
- Optional dependencies for libcaca
- python: Python bindings
- installing libcerf...
- installing lua...
- installing double-conversion...
- installing libb2...
- installing mtdev...
- installing libevdev...
- installing libgudev...
- installing libwacom...
- Optional dependencies for libwacom
- python-libevdev: for libwacom-show-stylus
- python-pyudev: for libwacom-show-stylus
- installing libinput...
- Optional dependencies for libinput
- gtk4: libinput debug-gui
- python-pyudev: libinput measure
- python-libevdev: libinput measure
- python-yaml: used by various tools
- installing libxkbcommon-x11...
- installing md4c...
- installing tslib...
- installing xcb-util-renderutil...
- installing xcb-util...
- installing xcb-util-image...
- installing xcb-util-cursor...
- installing xcb-util-keysyms...
- installing xcb-util-wm...
- installing libxmu...
- installing xorg-xset...
- installing xdg-utils...
- Optional dependencies for xdg-utils
- kde-cli-tools: for KDE Plasma5 support in xdg-open
- exo: for Xfce support in xdg-open
- pcmanfm: for LXDE support in xdg-open
- perl-file-mimeinfo: for generic support in xdg-open
- perl-net-dbus: Perl extension to dbus used in xdg-screensaver
- perl-x11-protocol: Perl X11 protocol used in xdg-screensaver
- installing qt6-translations...
- installing qt6-base...
- Optional dependencies for qt6-base
- freetds: MS SQL driver
- gdk-pixbuf2: GTK platform plugin [installed]
- gtk3: GTK platform plugin [installed]
- libfbclient: Firebird/iBase driver
- mariadb-libs: MariaDB driver
- pango: GTK platform plugin [installed]
- perl: for syncqt [installed]
- postgresql-libs: PostgreSQL driver
- qt6-wayland: to run Qt6 applications in a Wayland session
- unixodbc: ODBC driver
- installing qt6-shadertools...
- installing qt6-5compat...
- Optional dependencies for qt6-5compat
- qt6-declarative: for QtGraphicalEffects
- installing qt6-svg...
- installing wxwidgets-common...
- installing libunwind...
- installing gstreamer...
- Optional dependencies for gstreamer
- python: gst-plugins-doc-cache-generator
- installing graphene...
- installing libxv...
- installing orc...
- installing gst-plugins-base-libs...
- installing gssdp...
- Optional dependencies for gssdp
- gtk4: gssdp-device-sniffer
- installing gupnp...
- Optional dependencies for gupnp
- python: gupnp-binding-tool
- installing gupnp-igd...
- installing libnice...
- Optional dependencies for libnice
- gstreamer: "nice" GStreamer plugin [installed]
- installing libva...
- Optional dependencies for libva
- intel-media-driver: backend for Intel GPUs (>= Broadwell)
- libva-intel-driver: backend for Intel GPUs (<= Haswell)
- libva-mesa-driver: backend for AMD and NVIDIA GPUs [installed]
- installing vulkan-icd-loader...
- Optional dependencies for vulkan-icd-loader
- vulkan-driver: packaged vulkan driver
- installing gst-plugins-bad-libs...
- installing libnotify...
- installing libmspack...
- installing hidapi...
- Optional dependencies for hidapi
- libusb: for hidapi-libusb [installed]
- installing sdl3...
- Optional dependencies for sdl3
- alsa-lib: ALSA audio driver
- libpulse: PulseAudio audio driver
- jack: JACK audio driver
- pipewire: PipeWire audio driver
- vulkan-driver: vulkan renderer
- sndio: sndio audio driver
- libdecor: Wayland client decorations
- installing sdl2-compat...
- installing wxwidgets-gtk3...
- Optional dependencies for wxwidgets-gtk3
- webkit2gtk-4.1: for webview support
- installing gnuplot...
- installing pkgconf...
- upgrading git...
- upgrading nano...
- :: Running post-transaction hooks...
- ( 1/20) Creating system user accounts...
- Creating group 'avahi' with GID 970.
- Creating user 'avahi' (Avahi mDNS/DNS-SD daemon) with UID 970 and GID 970.
- ( 2/20) Updating journal message catalog...
- ( 3/20) Reloading system manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 4/20) Reloading user manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 5/20) Updating udev hardware database...
- ( 6/20) Restarting marked services...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 7/20) Creating temporary files...
- /usr/lib/tmpfiles.d/journal-nocow.conf:26: Failed to resolve specifier: uninitialized /etc/ detected, skipping.
- All rules containing unresolvable specifiers will be skipped.
- ( 8/20) Reloading device manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Device manager is not running.
- ( 9/20) Arming ConditionNeedsUpdate...
- (10/20) Updating the MIME type database...
- (11/20) Updating fontconfig configuration...
- (12/20) Rebuilding certificate stores...
- (13/20) Reloading system bus configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (14/20) Updating fontconfig cache...
- (15/20) Probing GDK-Pixbuf loader modules...
- (16/20) Updating GIO module cache...
- (17/20) Compiling GSettings XML schema files...
- (18/20) Probing GTK3 input method modules...
- (19/20) Updating icon theme caches...
- (20/20) Updating the desktop file MIME type cache...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved alcotest.1.9.0, alcotest-lwt.1.9.0 (cached)
⬇ retrieved angstrom.0.16.1 (cached)
⬇ retrieved astring.0.8.5 (cached)
⬇ retrieved base64.3.5.1 (cached)
⬇ retrieved bentov.1 (cached)
⬇ retrieved bheap.2.0.0 (cached)
⬇ retrieved bigstringaf.0.10.0 (cached)
⬇ retrieved checkseum.0.5.2 (cached)
⬇ retrieved cmdliner.1.3.0 (cached)
⬇ retrieved conf-gmp.5 (cached)
⬇ retrieved cppo.1.8.0 (cached)
⬇ retrieved csexp.1.5.2 (cached)
∗ installed conf-gmp.5
∗ installed conf-pkg-config.4
∗ installed conf-gnuplot.0.1
⬇ retrieved digestif.1.3.0 (cached)
⬇ retrieved dune.3.19.1, dune-configurator.3.19.1 (cached)
⬇ retrieved either.1.0.0 (cached)
⬇ retrieved eqaf.0.10 (cached)
⬇ retrieved fmt.0.10.0 (cached)
⬇ retrieved index.1.6.2 (cached)
∗ installed cmdliner.1.3.0
⬇ retrieved irmin.3.11.0, irmin-bench.3.11.0, irmin-pack.3.11.0, irmin-test.3.11.0, irmin-tezos.3.11.0, ppx_irmin.3.11.0 (cached)
⬇ retrieved jsonm.1.0.2 (cached)
⬇ retrieved logs.0.7.0 (cached)
⬇ retrieved lru.0.3.1 (cached)
⬇ retrieved lwt.5.9.1 (cached)
⬇ retrieved metrics.0.5.0, metrics-unix.0.5.0 (cached)
⬇ retrieved mtime.2.1.0 (cached)
⬇ retrieved ocaml-compiler-libs.v0.17.0 (cached)
⬇ retrieved ocaml-syntax-shims.1.0.0 (cached)
⬇ retrieved ocamlbuild.0.16.1 (cached)
⬇ retrieved ocamlfind.1.9.8 (cached)
⬇ retrieved ocamlgraph.2.2.0 (cached)
⬇ retrieved ocplib-endian.1.2 (cached)
⬇ retrieved optint.0.3.0 (cached)
⬇ retrieved ppx_derivers.1.2.1 (cached)
⬇ retrieved ppx_deriving.6.0.3 (cached)
⬇ retrieved ppx_repr.0.7.0, repr.0.7.0 (cached)
⬇ retrieved ppxlib.0.35.0 (cached)
⬇ retrieved printbox.0.12, printbox-text.0.12 (cached)
⬇ retrieved progress.0.4.0, terminal.0.4.0 (cached)
⬇ retrieved psq.0.2.1 (cached)
⬇ retrieved re.1.12.0 (cached)
⬇ retrieved rusage.1.0.0 (cached)
⬇ retrieved semaphore-compat.1.0.2 (cached)
⬇ retrieved seq.base (cached)
∗ installed seq.base
⬇ retrieved sexplib0.v0.17.0 (cached)
⬇ retrieved stdlib-shims.0.3.0 (cached)
⬇ retrieved stringext.1.6.0 (cached)
⬇ retrieved tezos-base58.1.0.0 (cached)
⬇ retrieved topkg.1.0.8 (cached)
⬇ retrieved uri.4.4.0 (cached)
⬇ retrieved uucp.16.0.0 (cached)
⬇ retrieved uuidm.0.9.10 (cached)
⬇ retrieved uutf.1.0.4 (cached)
⬇ retrieved vector.1.0.0 (cached)
⬇ retrieved yojson.3.0.0 (cached)
⬇ retrieved zarith.1.14 (cached)
∗ installed ocamlfind.1.9.8
∗ installed base-bytes.base
∗ installed ocamlbuild.0.16.1
∗ installed zarith.1.14
∗ installed topkg.1.0.8
∗ installed uuidm.0.9.10
∗ installed uutf.1.0.4
∗ installed mtime.2.1.0
∗ installed fmt.0.10.0
∗ installed astring.0.8.5
∗ installed jsonm.1.0.2
∗ installed dune.3.19.1
∗ installed bheap.2.0.0
∗ installed csexp.1.5.2
∗ installed base64.3.5.1
∗ installed bentov.1
∗ installed either.1.0.0
∗ installed eqaf.0.10
∗ installed metrics.0.5.0
∗ installed optint.0.3.0
∗ installed ocaml-syntax-shims.1.0.0
∗ installed ppx_derivers.1.2.1
∗ installed printbox.0.12
∗ installed psq.0.2.1
∗ installed rusage.1.0.0
∗ installed semaphore-compat.1.0.2
∗ installed sexplib0.v0.17.0
∗ installed stdlib-shims.0.3.0
∗ installed stringext.1.6.0
∗ installed vector.1.0.0
∗ installed cppo.1.8.0
∗ installed ocaml-compiler-libs.v0.17.0
∗ installed re.1.12.0
∗ installed lru.0.3.1
∗ installed yojson.3.0.0
∗ installed ocplib-endian.1.2
∗ installed digestif.1.3.0
∗ installed ocamlgraph.2.2.0
∗ installed repr.0.7.0
∗ installed tezos-base58.1.0.0
∗ installed alcotest.1.9.0
∗ installed dune-configurator.3.19.1
∗ installed bigstringaf.0.10.0
∗ installed checkseum.0.5.2
∗ installed angstrom.0.16.1
∗ installed uri.4.4.0
∗ installed lwt.5.9.1
∗ installed metrics-unix.0.5.0
∗ installed logs.0.7.0
∗ installed alcotest-lwt.1.9.0
∗ installed uucp.16.0.0
∗ installed printbox-text.0.12
∗ installed terminal.0.4.0
∗ installed ppxlib.0.35.0
∗ installed progress.0.4.0
∗ installed ppx_deriving.6.0.3
∗ installed ppx_repr.0.7.0
∗ installed index.1.6.2
∗ installed ppx_irmin.3.11.0
∗ installed irmin.3.11.0
∗ installed irmin-test.3.11.0
∗ installed irmin-pack.3.11.0
∗ installed irmin-tezos.3.11.0
∗ installed irmin-bench.3.11.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-22 15:24.06 ---> saved as "a2adb8e1c3c072b50548281ac5ac1ce4ffbafbe3ed40f9fa2e62243363210e2a"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test irmin-bench.3.11.0) || true"))
The following actions will be performed:
=== recompile 1 package
↻ irmin-bench 3.11.0 (pinned)
=== install 1 package
∗ fpath 0.7.3 [required by irmin-bench]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved fpath.0.7.3 (https://opam.ocaml.org/cache)
⊘ removed irmin-bench.3.11.0
∗ installed fpath.0.7.3
∗ installed irmin-bench.3.11.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-22 15:24.29 ---> saved as "addd4b166c0ef4f2d4ddbef713ed24b84f8f3534f32017487fb0f6bfe8546099"
/home/opam: (run (shell "opam reinstall --with-test --verbose irmin-bench.3.11.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'irmin-bench.3.11.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
↻ irmin-bench 3.11.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [irmin-bench: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "irmin-bench" "-j" "71" (CWD=/home/opam/.opam/5.3/.opam-switch/build/irmin-bench.3.11.0)
λ compiled irmin-bench.3.11.0
⊘ removed irmin-bench.3.11.0
∗ installed irmin-bench.3.11.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-22 15:24.44 ---> saved as "2c36863f14d9cab8f53de199421c4c14f03d87f4159fad3fe6ca6ab35be2db56"
Job succeeded
2025-06-22 15:24.51: Job succeeded