- github
- ocaml
- opam-repository
- 840d56
- distributions,centos-10-ocaml-5.4,ocgtk.0.1~preview0,tests
(not at the head of any monitored branch or PR)
2026-04-05 06:24.23: New job: test ocgtk.0.1~preview0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29623/head (840d56c72781bfe3e8253de0d7b9dbc81365b87c)
on centos-10-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/29623/head" && git reset --hard 840d56c7
git fetch origin master
git merge --no-edit 58be49813ccd4678f5762ae269409e93bce1ce7c
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-10-ocaml-5.4@sha256:066a711a6aa77903d71623cb77f68abf2a7bc100f809071c1f1528960004d702
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ocgtk.0.1~preview0 0.1~preview0
RUN opam reinstall ocgtk.0.1~preview0; \
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 "\"centos-10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocgtk.0.1~preview0' && 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 ocgtk.0.1~preview0) || true
RUN opam reinstall --with-test --verbose ocgtk.0.1~preview0; \
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 "\"centos-10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocgtk.0.1~preview0' && 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-04-05 06:24.23: Using cache hint "ocaml/opam:centos-10-ocaml-5.4@sha256:066a711a6aa77903d71623cb77f68abf2a7bc100f809071c1f1528960004d702-ocgtk.0.1~preview0-840d56c72781bfe3e8253de0d7b9dbc81365b87c"
2026-04-05 06:24.23: Using OBuilder spec:
((from ocaml/opam:centos-10-ocaml-5.4@sha256:066a711a6aa77903d71623cb77f68abf2a7bc100f809071c1f1528960004d702)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn ocgtk.0.1~preview0 0.1~preview0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocgtk.0.1~preview0;\
\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 \"\\\"centos-10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocgtk.0.1~preview0' && 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 ocgtk.0.1~preview0) || true"))
(run (shell "opam reinstall --with-test --verbose ocgtk.0.1~preview0;\
\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 \"\\\"centos-10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocgtk.0.1~preview0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-05 06:24.23: Waiting for resource in pool OCluster
2026-04-05 06:24.24: Waiting for worker…
2026-04-05 06:24.24: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 58be49813c Merge pull request #29649 from jmid/add-binsec-ocaml-bounds
Merge made by the 'ort' strategy.
packages/conf-gtk4/conf-gtk4.1/opam | 49 ++++++++++++++++++++++++++++++++++
packages/ocgtk/ocgtk.0.1~preview0/opam | 48 +++++++++++++++++++++++++++++++++
2 files changed, 97 insertions(+)
create mode 100644 packages/conf-gtk4/conf-gtk4.1/opam
create mode 100644 packages/ocgtk/ocgtk.0.1~preview0/opam
(from ocaml/opam:centos-10-ocaml-5.4@sha256:066a711a6aa77903d71623cb77f68abf2a7bc100f809071c1f1528960004d702)
2026-04-05 06:26.53 ---> using "12c44fdba1eeb955a8167326326a0c05d6adfadc75ab8c583b1aefb4144cfed8" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-05 06:26.53 ---> using "6a11dc85513c28675c8007c51738f207cfb97f27f7efe593e619477ad743e949" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-05 06:26.53 ---> using "c46969d803f1606b7861ee7076456a7edad800f6b9a94ef6d6343103cdac725e" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=centos os-version=10
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.1
2026-04-05 06:26.53 ---> using "c1d1fa63d43976e3bc50a740e597fc9bdc30f232541050b6d08e1c850209baa5" 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-04-05 06:26.53 ---> using "1cacb55d557fed2b6a2468d67f8d8cc8d79505bea0dd4f37056d8e7d8caa4e76" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-05 06:26.54 ---> using "0d8656530dfcb81467eaabd2672b36dcc717521433a5a7ecbef179c443109f90" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-05 06:26.54 ---> using "6c34b8e046159b18efdc0e02fdc893980225763a35fa331b38c592504fba81df" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 10 - BaseOS 1.4 kB/s | 15 kB 00:10
- CentOS Stream 10 - BaseOS 3.1 MB/s | 6.9 MB 00:02
- CentOS Stream 10 - AppStream 39 kB/s | 15 kB 00:00
- CentOS Stream 10 - AppStream 1.6 MB/s | 3.6 MB 00:02
- CentOS Stream 10 - CRB 380 kB/s | 15 kB 00:00
- CentOS Stream 10 - CRB 3.9 MB/s | 834 kB 00:00
- CentOS Stream 10 - Extras packages 43 kB/s | 17 kB 00:00
- Metadata cache created.
2026-04-05 06:27.03 ---> saved as "99f54be981913a9d6014cdd143abb3f694d63d97d55eca204bb489acb017a764"
/home/opam: (run (shell "opam pin add -k version -yn ocgtk.0.1~preview0 0.1~preview0"))
ocgtk is now pinned to version 0.1~preview0
2026-04-05 06:27.04 ---> saved as "16c326d17473aef50fcd1584e57d14d9335ab9c0b6230da22bdb8476639872a5"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocgtk.0.1~preview0;\
\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 \"\\\"centos-10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocgtk.0.1~preview0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocgtk.0.1~preview0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 29 packages
- install base v0.17.3 [required by ppx_sexp_conv]
- install cmdliner 2.1.0 [required by ocgtk]
- install conf-gtk4 1 [required by ocgtk]
- install conf-pkg-config 4 [required by conf-gtk4]
- install containers 3.18 [required by ocgtk]
- install cppo 1.8.0 [required by ppx_deriving]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.22.1 [required by ocgtk]
- install dune-configurator 3.22.1 [required by containers]
- install either 1.0.0 [required by containers]
- install logs 0.10.0 [required by ocgtk]
- install num 1.6 [required by sexplib]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ocamlbuild 0.16.1 [required by logs, xmlm]
- install ocamlfind 1.9.8 [required by ppx_deriving, logs, xmlm]
- install ocgtk 0.1~preview0 (pinned)
- install parsexp v0.17.0 [required by sexplib]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by ocgtk]
- install ppx_sexp_conv v0.17.1 [required by ocgtk]
- install ppxlib 0.38.0 [required by ocgtk]
- install ppxlib_jane v0.17.4 [required by ppx_sexp_conv]
- install re 1.14.0 [required by ocgtk]
- install sexplib v0.17.0 [required by ocgtk]
- install sexplib0 v0.17.0 [required by ppx_sexp_conv, sexplib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install topkg 1.1.1 [required by logs, xmlm]
- install xmlm 1.4.0 [required by ocgtk]
The following system packages will first need to be installed:
gtk4-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
2. Display the recommended yum command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "yum" "install" "-y" "gtk4-devel"
- Last metadata expiration check: 0:00:03 ago on Sun Apr 5 06:27:03 2026.
- Dependencies resolved.
- ================================================================================
- Package Arch Version Repo Size
- ================================================================================
- Installing:
- gtk4-devel x86_64 4.16.7-4.el10 appstream 4.2 M
- Installing dependencies:
- ModemManager-glib x86_64 1.22.0-7.el10 baseos 325 k
- adwaita-cursor-theme noarch 46.0-3.el10 appstream 524 k
- adwaita-icon-theme noarch 46.0-3.el10 appstream 457 k
- alsa-lib x86_64 1.2.15.3-2.el10 appstream 543 k
- at-spi2-atk x86_64 2.56.1-1.el10 appstream 88 k
- at-spi2-core x86_64 2.56.1-1.el10 appstream 389 k
- atk x86_64 2.56.1-1.el10 appstream 81 k
- avahi-glib x86_64 0.9~rc2-2.el10 appstream 15 k
- bluez-libs x86_64 5.86-1.el10 baseos 81 k
- brotli x86_64 1.1.0-7.el10 appstream 19 k
- brotli-devel x86_64 1.1.0-7.el10 appstream 34 k
- bzip2-devel x86_64 1.0.8-25.el10 appstream 215 k
- cairo-devel x86_64 1.18.2-2.el10 appstream 196 k
- cairo-gobject-devel x86_64 1.18.2-2.el10 appstream 12 k
- colord-libs x86_64 1.4.7-6.el10 appstream 233 k
- duktape x86_64 2.7.0-10.el10 baseos 170 k
- exempi x86_64 2.6.4-7.el10 appstream 590 k
- exiv2-libs x86_64 0.28.3-5.el10 appstream 904 k
- fdk-aac-free x86_64 2.0.0-15.el10 appstream 339 k
- fftw-libs-single x86_64 3.3.10-15.el10 appstream 1.1 M
- flac-libs x86_64 1.4.3-6.el10 appstream 265 k
- fontconfig-devel x86_64 2.15.0-7.el10 appstream 175 k
- freetype-devel x86_64 2.13.2-8.el10 appstream 966 k
- fribidi-devel x86_64 1.0.14-4.el10 appstream 28 k
- fuse-common x86_64 3.16.2-5.el10 baseos 9.7 k
- fuse3 x86_64 3.16.2-5.el10 baseos 59 k
- fuse3-libs x86_64 3.16.2-5.el10 baseos 95 k
- gdk-pixbuf2-devel x86_64 2.42.12-4.el10 appstream 381 k
- gdk-pixbuf2-modules x86_64 2.42.12-4.el10 appstream 29 k
- geoclue2 x86_64 2.7.2-1.el10 appstream 148 k
- giflib x86_64 5.2.1-22.el10 appstream 53 k
- glib2-devel x86_64 2.80.4-12.el10 appstream 1.5 M
- gobject-introspection x86_64 1.79.1-6.el10 baseos 109 k
- graphene x86_64 1.10.6-10.el10 appstream 62 k
- graphene-devel x86_64 1.10.6-10.el10 appstream 171 k
- graphite2-devel x86_64 1.3.14-17.el10 appstream 22 k
- gsettings-desktop-schemas x86_64 47.1-4.el10 baseos 784 k
- gsm x86_64 1.0.22-8.el10 appstream 37 k
- gstreamer1 x86_64 1.26.7-5.el10 appstream 1.7 M
- gstreamer1-plugins-bad-free-libs x86_64 1.26.7-1.el10 appstream 1.0 M
- gstreamer1-plugins-base x86_64 1.26.7-1.el10 appstream 2.3 M
- gtk-update-icon-cache x86_64 3.24.43-5.el10 appstream 33 k
- gtk3 x86_64 3.24.43-5.el10 appstream 5.6 M
- gtk4 x86_64 4.16.7-4.el10 appstream 6.0 M
- harfbuzz-cairo x86_64 8.4.0-6.el10 appstream 28 k
- harfbuzz-devel x86_64 8.4.0-6.el10 appstream 453 k
- harfbuzz-icu x86_64 8.4.0-6.el10 appstream 15 k
- hicolor-icon-theme noarch 0.17-20.el10 appstream 219 k
- hwdata noarch 0.379-10.8.el10 baseos 1.7 M
- inih x86_64 58-3.el10 baseos 19 k
- inih-cpp x86_64 58-3.el10 appstream 20 k
- iso-codes noarch 4.16.0-6.el10 appstream 3.7 M
- json-glib x86_64 1.8.0-5.el10 baseos 168 k
- kbd x86_64 2.6.4-7.el10 baseos 407 k
- kbd-legacy noarch 2.6.4-7.el10 baseos 592 k
- kbd-misc noarch 2.6.4-7.el10 baseos 1.7 M
- kmod x86_64 31-13.el10 baseos 136 k
- lame-libs x86_64 3.100-19.el10 appstream 339 k
- libXcomposite x86_64 0.4.6-5.el10 appstream 25 k
- libXcursor x86_64 1.2.1-9.el10 appstream 31 k
- libXdamage x86_64 1.1.6-5.el10 appstream 24 k
- libXext-devel x86_64 1.3.6-3.el10 appstream 87 k
- libXfixes x86_64 6.0.1-5.el10 appstream 20 k
- libXft-devel x86_64 2.3.8-8.el10 appstream 52 k
- libXi x86_64 1.8.1-7.el10 appstream 41 k
- libXinerama x86_64 1.1.5-8.el10 appstream 15 k
- libXrandr x86_64 1.5.4-5.el10 appstream 29 k
- libXrender-devel x86_64 0.9.11-8.el10 appstream 20 k
- libXtst x86_64 1.2.4-8.el10 appstream 22 k
- libXv x86_64 1.0.12-5.el10 appstream 20 k
- libXxf86vm x86_64 1.1.5-8.el10 appstream 19 k
- libasyncns x86_64 0.8-30.el10 appstream 31 k
- libatomic x86_64 14.3.1-4.4.el10 baseos 49 k
- libblkid-devel x86_64 2.40.2-19.el10 appstream 25 k
- libcamera x86_64 0.6.0-1.el10 appstream 662 k
- libcanberra x86_64 0.30-37.el10 appstream 91 k
- libdatrie-devel x86_64 0.2.13-11.el10 appstream 159 k
- libdex x86_64 0.8.1-1.el10 appstream 85 k
- libdrm x86_64 2.4.128-1.el10 baseos 164 k
- libepoxy x86_64 1.5.10-10.el10 appstream 227 k
- libexif x86_64 0.6.24-9.el10 appstream 454 k
- libffi-devel x86_64 3.4.4-10.el10 appstream 29 k
- libgexiv2 x86_64 0.14.3-3.el10 appstream 106 k
- libglvnd x86_64 1:1.7.0-7.el10 appstream 116 k
- libglvnd-egl x86_64 1:1.7.0-7.el10 appstream 37 k
- libglvnd-glx x86_64 1:1.7.0-7.el10 appstream 132 k
- libgsf x86_64 1.14.53-2.el10 appstream 258 k
- libgudev x86_64 238-7.el10 baseos 36 k
- libgusb x86_64 0.4.9-4.el10 baseos 67 k
- libgxps x86_64 0.3.2-11.el10 appstream 77 k
- libicu-devel x86_64 74.2-5.el10 appstream 966 k
- libiptcdata x86_64 1.0.5-20.el10 appstream 62 k
- libjpeg-turbo-devel x86_64 3.0.2-4.el10 appstream 98 k
- liblc3 x86_64 1.1.3-1.el10 appstream 104 k
- libldac x86_64 2.0.2.3-17.el10 appstream 42 k
- libmount-devel x86_64 2.40.2-19.el10 appstream 26 k
- libnotify x86_64 0.8.6-1.el10 appstream 53 k
- libogg x86_64 2:1.3.5-10.el10 appstream 34 k
- libosinfo x86_64 1.11.0-8.el10 appstream 317 k
- libpciaccess x86_64 0.16-16.el10 baseos 28 k
- libpng-devel x86_64 2:1.6.40-11.el10 appstream 293 k
- libportal x86_64 0.9.0-3.el10 appstream 84 k
- libproxy x86_64 0.5.5-4.el10 baseos 49 k
- libpsl x86_64 0.21.5-6.el10 baseos 65 k
- libsbc x86_64 2.0-7.el10 appstream 46 k
- libselinux-devel x86_64 3.10-1.el10 appstream 161 k
- libsepol-devel x86_64 3.10-1.el10 appstream 47 k
- libsndfile x86_64 1.2.2-6.el10 appstream 214 k
- libsoup3 x86_64 3.6.5-5.el10 appstream 396 k
- libtdb x86_64 1.4.14-100.el10 baseos 54 k
- libthai-devel x86_64 0.1.29-10.el10 appstream 151 k
- libtheora x86_64 1:1.1.1-39.el10 appstream 170 k
- libtiff-devel x86_64 4.6.0-8.el10 appstream 257 k
- libtracker-sparql x86_64 3.7.3-4.el10 appstream 376 k
- liburing x86_64 2.12-1.el10 baseos 43 k
- libusb1 x86_64 1.0.29-3.el10 baseos 77 k
- libva x86_64 2.22.0-2.el10 appstream 118 k
- libvorbis x86_64 1:1.3.7-12.el10 appstream 189 k
- libwayland-client x86_64 1.24.0-1.el10 appstream 34 k
- libwayland-cursor x86_64 1.24.0-1.el10 appstream 19 k
- libwayland-egl x86_64 1.24.0-1.el10 appstream 12 k
- libwayland-server x86_64 1.24.0-1.el10 appstream 41 k
- libwebp-devel x86_64 1.3.2-10.el10 appstream 40 k
- libxkbcommon x86_64 1.7.0-4.el10 appstream 145 k
- libxml2-devel x86_64 2.12.5-10.el10 appstream 533 k
- libxshmfence x86_64 1.3.2-5.el10 appstream 13 k
- linux-firmware-whence noarch 20260130-22.el10 baseos 119 k
- llvm-filesystem x86_64 21.1.8-1.el10 appstream 13 k
- llvm-libs x86_64 21.1.8-1.el10 appstream 31 M
- mesa-dri-drivers x86_64 25.2.7-5.el10 appstream 11 M
- mesa-filesystem x86_64 25.2.7-5.el10 appstream 10 k
- mesa-libEGL x86_64 25.2.7-5.el10 appstream 120 k
- mesa-libGL x86_64 25.2.7-5.el10 appstream 120 k
- mesa-libgbm x86_64 25.2.7-5.el10 appstream 16 k
- mpg123-libs x86_64 1.32.9-1.el10 appstream 353 k
- opus x86_64 1.4-6.el10 appstream 211 k
- orc x86_64 0.4.39-2.el10 appstream 229 k
- osinfo-db noarch 20250606-2.el10 appstream 564 k
- osinfo-db-tools x86_64 1.11.0-8.el10 appstream 74 k
- pango-devel x86_64 1.54.0-3.el10 appstream 161 k
- pcre2-devel x86_64 10.44-1.el10.3 appstream 532 k
- pcre2-utf16 x86_64 10.44-1.el10.3 appstream 227 k
- pcre2-utf32 x86_64 10.44-1.el10.3 appstream 215 k
- pipewire-jack-audio-connection-kit-libs
- x86_64 1.4.9-1.el10 appstream 147 k
- pipewire-libs x86_64 1.4.9-1.el10 appstream 2.5 M
- pixman-devel x86_64 0.43.4-2.el10 appstream 18 k
- polkit x86_64 125-4.el10 baseos 162 k
- polkit-libs x86_64 125-4.el10 baseos 67 k
- publicsuffix-list-dafsa noarch 20240107-5.el10 baseos 59 k
- pulseaudio-libs x86_64 17.0-6.el10 appstream 706 k
- python3-packaging noarch 24.2-2.el10 baseos 153 k
- rtkit x86_64 0.11-68.el10 appstream 57 k
- sound-theme-freedesktop noarch 0.8-23.el10 appstream 383 k
- spirv-tools-libs x86_64 2025.4-1.el10 appstream 1.6 M
- sysprof-capture-devel x86_64 47.2-1.el10 appstream 56 k
- systemd-udev x86_64 257-23.el10 baseos 2.3 M
- upower-libs x86_64 1.90.10-2.el10 appstream 60 k
- vulkan-headers noarch 1.4.328.1-1.el10 appstream 1.5 M
- vulkan-loader x86_64 1.4.328.1-1.el10 appstream 161 k
- vulkan-loader-devel x86_64 1.4.328.1-1.el10 appstream 11 k
- wayland-devel x86_64 1.24.0-1.el10 appstream 155 k
- webrtc-audio-processing x86_64 1.3-5.el10 appstream 527 k
- wireplumber x86_64 0.5.10-1.el10 appstream 121 k
- wireplumber-libs x86_64 0.5.10-1.el10 appstream 405 k
- xdg-desktop-portal x86_64 1.20.0-2.el10 appstream 532 k
- xkeyboard-config noarch 2.41-3.el10 appstream 1.0 M
- xprop x86_64 1.2.7-3.el10 appstream 36 k
- Installing weak dependencies:
- dconf x86_64 0.40.0-17.el10 appstream 114 k
- exiv2 x86_64 0.28.3-5.el10 appstream 2.1 M
- glib-networking x86_64 2.80.0-3.el10 baseos 204 k
- intel-vsc-firmware noarch 20260130-22.el10 baseos 7.8 M
- libcamera-ipa x86_64 0.6.0-1.el10 appstream 167 k
- libcanberra-gtk3 x86_64 0.30-37.el10 appstream 33 k
- low-memory-monitor x86_64 2.1-12.el10 appstream 35 k
- mesa-vulkan-drivers x86_64 25.2.7-5.el10 appstream 21 M
- pipewire x86_64 1.4.9-1.el10 appstream 133 k
- pipewire-alsa x86_64 1.4.9-1.el10 appstream 58 k
- pipewire-jack-audio-connection-kit x86_64 1.4.9-1.el10 appstream 9.9 k
- pipewire-plugin-libcamera x86_64 1.4.9-1.el10 appstream 73 k
- pipewire-pulseaudio x86_64 1.4.9-1.el10 appstream 211 k
- polkit-pkla-compat x86_64 0.1-30.el10 baseos 48 k
- tracker x86_64 3.7.3-4.el10 appstream 644 k
- tracker-miners x86_64 3.7.4-1.el10 appstream 982 k
- upower x86_64 1.90.10-2.el10 appstream 147 k
- xdg-desktop-portal-gtk x86_64 1.15.3-1.el10 appstream 145 k
-
- Transaction Summary
- ================================================================================
- Install 186 Packages
-
- Total download size: 141 M
- Installed size: 624 M
- Downloading Packages:
- (1/186): bluez-libs-5.86-1.el10.x86_64.rpm 2.5 MB/s | 81 kB 00:00
- (2/186): duktape-2.7.0-10.el10.x86_64.rpm 4.2 MB/s | 170 kB 00:00
- (3/186): fuse-common-3.16.2-5.el10.x86_64.rpm 1.2 MB/s | 9.7 kB 00:00
- (4/186): fuse3-3.16.2-5.el10.x86_64.rpm 773 kB/s | 59 kB 00:00
- (5/186): glib-networking-2.80.0-3.el10.x86_64.r 4.5 MB/s | 204 kB 00:00
- (6/186): gobject-introspection-1.79.1-6.el10.x8 6.3 MB/s | 109 kB 00:00
- (7/186): fuse3-libs-3.16.2-5.el10.x86_64.rpm 359 kB/s | 95 kB 00:00
- (8/186): gsettings-desktop-schemas-47.1-4.el10. 1.3 MB/s | 784 kB 00:00
- (9/186): inih-58-3.el10.x86_64.rpm 1.4 MB/s | 19 kB 00:00
- (10/186): ModemManager-glib-1.22.0-7.el10.x86_6 293 kB/s | 325 kB 00:01
- (11/186): hwdata-0.379-10.8.el10.noarch.rpm 2.1 MB/s | 1.7 MB 00:00
- (12/186): json-glib-1.8.0-5.el10.x86_64.rpm 8.1 MB/s | 168 kB 00:00
- (13/186): kbd-legacy-2.6.4-7.el10.noarch.rpm 7.7 MB/s | 592 kB 00:00
- (14/186): kbd-2.6.4-7.el10.x86_64.rpm 3.4 MB/s | 407 kB 00:00
- (15/186): kmod-31-13.el10.x86_64.rpm 2.6 MB/s | 136 kB 00:00
- (16/186): libatomic-14.3.1-4.4.el10.x86_64.rpm 1.9 MB/s | 49 kB 00:00
- (17/186): libdrm-2.4.128-1.el10.x86_64.rpm 2.5 MB/s | 164 kB 00:00
- (18/186): libgudev-238-7.el10.x86_64.rpm 1.8 MB/s | 36 kB 00:00
- (19/186): libgusb-0.4.9-4.el10.x86_64.rpm 2.4 MB/s | 67 kB 00:00
- (20/186): libpciaccess-0.16-16.el10.x86_64.rpm 1.9 MB/s | 28 kB 00:00
- (21/186): kbd-misc-2.6.4-7.el10.noarch.rpm 6.6 MB/s | 1.7 MB 00:00
- (22/186): libproxy-0.5.5-4.el10.x86_64.rpm 2.3 MB/s | 49 kB 00:00
- (23/186): libpsl-0.21.5-6.el10.x86_64.rpm 4.2 MB/s | 65 kB 00:00
- (24/186): liburing-2.12-1.el10.x86_64.rpm 3.2 MB/s | 43 kB 00:00
- (25/186): libtdb-1.4.14-100.el10.x86_64.rpm 2.0 MB/s | 54 kB 00:00
- (26/186): libusb1-1.0.29-3.el10.x86_64.rpm 4.9 MB/s | 77 kB 00:00
- (27/186): linux-firmware-whence-20260130-22.el1 1.3 MB/s | 119 kB 00:00
- (28/186): polkit-125-4.el10.x86_64.rpm 1.5 MB/s | 162 kB 00:00
- (29/186): polkit-pkla-compat-0.1-30.el10.x86_64 1.8 MB/s | 48 kB 00:00
- (30/186): polkit-libs-125-4.el10.x86_64.rpm 1.0 MB/s | 67 kB 00:00
- (31/186): publicsuffix-list-dafsa-20240107-5.el 2.1 MB/s | 59 kB 00:00
- (32/186): python3-packaging-24.2-2.el10.noarch. 1.6 MB/s | 153 kB 00:00
- (33/186): adwaita-cursor-theme-46.0-3.el10.noar 2.3 MB/s | 524 kB 00:00
- (34/186): adwaita-icon-theme-46.0-3.el10.noarch 1.9 MB/s | 457 kB 00:00
- (35/186): alsa-lib-1.2.15.3-2.el10.x86_64.rpm 2.2 MB/s | 543 kB 00:00
- (36/186): at-spi2-atk-2.56.1-1.el10.x86_64.rpm 1.7 MB/s | 88 kB 00:00
- (37/186): systemd-udev-257-23.el10.x86_64.rpm 2.5 MB/s | 2.3 MB 00:00
- (38/186): atk-2.56.1-1.el10.x86_64.rpm 2.3 MB/s | 81 kB 00:00
- (39/186): at-spi2-core-2.56.1-1.el10.x86_64.rpm 3.1 MB/s | 389 kB 00:00
- (40/186): avahi-glib-0.9~rc2-2.el10.x86_64.rpm 2.1 MB/s | 15 kB 00:00
- (41/186): brotli-1.1.0-7.el10.x86_64.rpm 2.5 MB/s | 19 kB 00:00
- (42/186): brotli-devel-1.1.0-7.el10.x86_64.rpm 2.1 MB/s | 34 kB 00:00
- (43/186): bzip2-devel-1.0.8-25.el10.x86_64.rpm 1.3 MB/s | 215 kB 00:00
- (44/186): cairo-devel-1.18.2-2.el10.x86_64.rpm 1.3 MB/s | 196 kB 00:00
- (45/186): cairo-gobject-devel-1.18.2-2.el10.x86 1.6 MB/s | 12 kB 00:00
- (46/186): dconf-0.40.0-17.el10.x86_64.rpm 1.7 MB/s | 114 kB 00:00
- (47/186): colord-libs-1.4.7-6.el10.x86_64.rpm 1.7 MB/s | 233 kB 00:00
- (48/186): exempi-2.6.4-7.el10.x86_64.rpm 1.8 MB/s | 590 kB 00:00
- (49/186): exiv2-libs-0.28.3-5.el10.x86_64.rpm 2.9 MB/s | 904 kB 00:00
- (50/186): fdk-aac-free-2.0.0-15.el10.x86_64.rpm 2.2 MB/s | 339 kB 00:00
- (51/186): exiv2-0.28.3-5.el10.x86_64.rpm 2.8 MB/s | 2.1 MB 00:00
- (52/186): flac-libs-1.4.3-6.el10.x86_64.rpm 1.8 MB/s | 265 kB 00:00
- (53/186): fontconfig-devel-2.15.0-7.el10.x86_64 2.0 MB/s | 175 kB 00:00
- (54/186): intel-vsc-firmware-20260130-22.el10.n 2.5 MB/s | 7.8 MB 00:03
- (55/186): fribidi-devel-1.0.14-4.el10.x86_64.rp 1.3 MB/s | 28 kB 00:00
- (56/186): gdk-pixbuf2-devel-2.42.12-4.el10.x86_ 4.2 MB/s | 381 kB 00:00
- (57/186): fftw-libs-single-3.3.10-15.el10.x86_6 2.5 MB/s | 1.1 MB 00:00
- (58/186): gdk-pixbuf2-modules-2.42.12-4.el10.x8 337 kB/s | 29 kB 00:00
- (59/186): giflib-5.2.1-22.el10.x86_64.rpm 1.8 MB/s | 53 kB 00:00
- (60/186): geoclue2-2.7.2-1.el10.x86_64.rpm 1.7 MB/s | 148 kB 00:00
- (61/186): graphene-1.10.6-10.el10.x86_64.rpm 819 kB/s | 62 kB 00:00
- (62/186): freetype-devel-2.13.2-8.el10.x86_64.r 2.7 MB/s | 966 kB 00:00
- (63/186): graphite2-devel-1.3.14-17.el10.x86_64 394 kB/s | 22 kB 00:00
- (64/186): gsm-1.0.22-8.el10.x86_64.rpm 1.4 MB/s | 37 kB 00:00
- (65/186): graphene-devel-1.10.6-10.el10.x86_64. 1.5 MB/s | 171 kB 00:00
- (66/186): gstreamer1-1.26.7-5.el10.x86_64.rpm 4.3 MB/s | 1.7 MB 00:00
- (67/186): gstreamer1-plugins-bad-free-libs-1.26 2.6 MB/s | 1.0 MB 00:00
- (68/186): gtk-update-icon-cache-3.24.43-5.el10. 702 kB/s | 33 kB 00:00
- (69/186): glib2-devel-2.80.4-12.el10.x86_64.rpm 2.0 MB/s | 1.5 MB 00:00
- (70/186): gstreamer1-plugins-base-1.26.7-1.el10 3.3 MB/s | 2.3 MB 00:00
- (71/186): gtk4-devel-4.16.7-4.el10.x86_64.rpm 3.3 MB/s | 4.2 MB 00:01
- (72/186): harfbuzz-cairo-8.4.0-6.el10.x86_64.rp 1.4 MB/s | 28 kB 00:00
- (73/186): gtk3-3.24.43-5.el10.x86_64.rpm 2.6 MB/s | 5.6 MB 00:02
- (74/186): harfbuzz-icu-8.4.0-6.el10.x86_64.rpm 1.6 MB/s | 15 kB 00:00
- (75/186): harfbuzz-devel-8.4.0-6.el10.x86_64.rp 2.1 MB/s | 453 kB 00:00
- (76/186): inih-cpp-58-3.el10.x86_64.rpm 942 kB/s | 20 kB 00:00
- (77/186): hicolor-icon-theme-0.17-20.el10.noarc 1.6 MB/s | 219 kB 00:00
- (78/186): lame-libs-3.100-19.el10.x86_64.rpm 2.9 MB/s | 339 kB 00:00
- (79/186): gtk4-4.16.7-4.el10.x86_64.rpm 2.5 MB/s | 6.0 MB 00:02
- (80/186): libXcomposite-0.4.6-5.el10.x86_64.rpm 114 kB/s | 25 kB 00:00
- (81/186): libXcursor-1.2.1-9.el10.x86_64.rpm 290 kB/s | 31 kB 00:00
- (82/186): libXdamage-1.1.6-5.el10.x86_64.rpm 402 kB/s | 24 kB 00:00
- (83/186): libXfixes-6.0.1-5.el10.x86_64.rpm 1.0 MB/s | 20 kB 00:00
- (84/186): libXft-devel-2.3.8-8.el10.x86_64.rpm 1.7 MB/s | 52 kB 00:00
- (85/186): libXi-1.8.1-7.el10.x86_64.rpm 2.9 MB/s | 41 kB 00:00
- (86/186): libXext-devel-1.3.6-3.el10.x86_64.rpm 1.1 MB/s | 87 kB 00:00
- (87/186): libXinerama-1.1.5-8.el10.x86_64.rpm 1.7 MB/s | 15 kB 00:00
- (88/186): libXrender-devel-0.9.11-8.el10.x86_64 245 kB/s | 20 kB 00:00
- (89/186): libXrandr-1.5.4-5.el10.x86_64.rpm 313 kB/s | 29 kB 00:00
- (90/186): libXtst-1.2.4-8.el10.x86_64.rpm 1.1 MB/s | 22 kB 00:00
- (91/186): libXv-1.0.12-5.el10.x86_64.rpm 899 kB/s | 20 kB 00:00
- (92/186): libXxf86vm-1.1.5-8.el10.x86_64.rpm 2.4 MB/s | 19 kB 00:00
- (93/186): libblkid-devel-2.40.2-19.el10.x86_64. 1.2 MB/s | 25 kB 00:00
- (94/186): libasyncns-0.8-30.el10.x86_64.rpm 1.4 MB/s | 31 kB 00:00
- (95/186): iso-codes-4.16.0-6.el10.noarch.rpm 4.6 MB/s | 3.7 MB 00:00
- (96/186): libcamera-ipa-0.6.0-1.el10.x86_64.rpm 1.7 MB/s | 167 kB 00:00
- (97/186): libcanberra-0.30-37.el10.x86_64.rpm 2.8 MB/s | 91 kB 00:00
- (98/186): libcanberra-gtk3-0.30-37.el10.x86_64. 1.2 MB/s | 33 kB 00:00
- (99/186): libcamera-0.6.0-1.el10.x86_64.rpm 4.7 MB/s | 662 kB 00:00
- (100/186): libdatrie-devel-0.2.13-11.el10.x86_6 4.0 MB/s | 159 kB 00:00
- (101/186): libdex-0.8.1-1.el10.x86_64.rpm 1.5 MB/s | 85 kB 00:00
- (102/186): libepoxy-1.5.10-10.el10.x86_64.rpm 3.9 MB/s | 227 kB 00:00
- (103/186): libffi-devel-3.4.4-10.el10.x86_64.rp 1.1 MB/s | 29 kB 00:00
- (104/186): libgexiv2-0.14.3-3.el10.x86_64.rpm 1.4 MB/s | 106 kB 00:00
- (105/186): libglvnd-1.7.0-7.el10.x86_64.rpm 1.7 MB/s | 116 kB 00:00
- (106/186): libexif-0.6.24-9.el10.x86_64.rpm 3.6 MB/s | 454 kB 00:00
- (107/186): libglvnd-egl-1.7.0-7.el10.x86_64.rpm 1.0 MB/s | 37 kB 00:00
- (108/186): libglvnd-glx-1.7.0-7.el10.x86_64.rpm 2.3 MB/s | 132 kB 00:00
- (109/186): libgxps-0.3.2-11.el10.x86_64.rpm 1.4 MB/s | 77 kB 00:00
- (110/186): libgsf-1.14.53-2.el10.x86_64.rpm 2.6 MB/s | 258 kB 00:00
- (111/186): libiptcdata-1.0.5-20.el10.x86_64.rpm 1.4 MB/s | 62 kB 00:00
- (112/186): libjpeg-turbo-devel-3.0.2-4.el10.x86 1.9 MB/s | 98 kB 00:00
- (113/186): liblc3-1.1.3-1.el10.x86_64.rpm 2.7 MB/s | 104 kB 00:00
- (114/186): libldac-2.0.2.3-17.el10.x86_64.rpm 4.6 MB/s | 42 kB 00:00
- (115/186): libmount-devel-2.40.2-19.el10.x86_64 2.3 MB/s | 26 kB 00:00
- (116/186): libogg-1.3.5-10.el10.x86_64.rpm 1.1 MB/s | 34 kB 00:00
- (117/186): libnotify-0.8.6-1.el10.x86_64.rpm 888 kB/s | 53 kB 00:00
- (118/186): libicu-devel-74.2-5.el10.x86_64.rpm 4.3 MB/s | 966 kB 00:00
- (119/186): libosinfo-1.11.0-8.el10.x86_64.rpm 3.6 MB/s | 317 kB 00:00
- (120/186): libpng-devel-1.6.40-11.el10.x86_64.r 3.6 MB/s | 293 kB 00:00
- (121/186): libsbc-2.0-7.el10.x86_64.rpm 640 kB/s | 46 kB 00:00
- (122/186): libselinux-devel-3.10-1.el10.x86_64. 2.2 MB/s | 161 kB 00:00
- (123/186): libsepol-devel-3.10-1.el10.x86_64.rp 480 kB/s | 47 kB 00:00
- (124/186): libsndfile-1.2.2-6.el10.x86_64.rpm 1.2 MB/s | 214 kB 00:00
- (125/186): libsoup3-3.6.5-5.el10.x86_64.rpm 3.3 MB/s | 396 kB 00:00
- (126/186): libthai-devel-0.1.29-10.el10.x86_64. 2.5 MB/s | 151 kB 00:00
- (127/186): libtheora-1.1.1-39.el10.x86_64.rpm 2.1 MB/s | 170 kB 00:00
- (128/186): libportal-0.9.0-3.el10.x86_64.rpm 207 kB/s | 84 kB 00:00
- (129/186): libva-2.22.0-2.el10.x86_64.rpm 2.8 MB/s | 118 kB 00:00
- (130/186): libtiff-devel-4.6.0-8.el10.x86_64.rp 1.7 MB/s | 257 kB 00:00
- (131/186): libvorbis-1.3.7-12.el10.x86_64.rpm 3.9 MB/s | 189 kB 00:00
- (132/186): libwayland-cursor-1.24.0-1.el10.x86_ 1.1 MB/s | 19 kB 00:00
- (133/186): libtracker-sparql-3.7.3-4.el10.x86_6 3.0 MB/s | 376 kB 00:00
- (134/186): libwayland-client-1.24.0-1.el10.x86_ 1.4 MB/s | 34 kB 00:00
- (135/186): libwayland-egl-1.24.0-1.el10.x86_64. 313 kB/s | 12 kB 00:00
- (136/186): libwayland-server-1.24.0-1.el10.x86_ 963 kB/s | 41 kB 00:00
- (137/186): libwebp-devel-1.3.2-10.el10.x86_64.r 820 kB/s | 40 kB 00:00
- (138/186): libxkbcommon-1.7.0-4.el10.x86_64.rpm 2.8 MB/s | 145 kB 00:00
- (139/186): libxshmfence-1.3.2-5.el10.x86_64.rpm 319 kB/s | 13 kB 00:00
- (140/186): llvm-filesystem-21.1.8-1.el10.x86_64 294 kB/s | 13 kB 00:00
- (141/186): libxml2-devel-2.12.5-10.el10.x86_64. 3.6 MB/s | 533 kB 00:00
- (142/186): low-memory-monitor-2.1-12.el10.x86_6 563 kB/s | 35 kB 00:00
- (143/186): mesa-filesystem-25.2.7-5.el10.x86_64 169 kB/s | 10 kB 00:00
- (144/186): mesa-libEGL-25.2.7-5.el10.x86_64.rpm 1.1 MB/s | 120 kB 00:00
- (145/186): mesa-libGL-25.2.7-5.el10.x86_64.rpm 1.8 MB/s | 120 kB 00:00
- (146/186): mesa-libgbm-25.2.7-5.el10.x86_64.rpm 105 kB/s | 16 kB 00:00
- (147/186): mesa-dri-drivers-25.2.7-5.el10.x86_6 2.9 MB/s | 11 MB 00:03
- (148/186): mpg123-libs-1.32.9-1.el10.x86_64.rpm 1.5 MB/s | 353 kB 00:00
- (149/186): opus-1.4-6.el10.x86_64.rpm 2.5 MB/s | 211 kB 00:00
- (150/186): orc-0.4.39-2.el10.x86_64.rpm 3.2 MB/s | 229 kB 00:00
- (151/186): osinfo-db-20250606-2.el10.noarch.rpm 3.2 MB/s | 564 kB 00:00
- (152/186): osinfo-db-tools-1.11.0-8.el10.x86_64 2.5 MB/s | 74 kB 00:00
- (153/186): pango-devel-1.54.0-3.el10.x86_64.rpm 2.0 MB/s | 161 kB 00:00
- (154/186): pcre2-devel-10.44-1.el10.3.x86_64.rp 2.8 MB/s | 532 kB 00:00
- (155/186): pcre2-utf16-10.44-1.el10.3.x86_64.rp 2.7 MB/s | 227 kB 00:00
- (156/186): pcre2-utf32-10.44-1.el10.3.x86_64.rp 2.2 MB/s | 215 kB 00:00
- (157/186): pipewire-1.4.9-1.el10.x86_64.rpm 1.3 MB/s | 133 kB 00:00
- (158/186): pipewire-alsa-1.4.9-1.el10.x86_64.rp 1.6 MB/s | 58 kB 00:00
- (159/186): pipewire-jack-audio-connection-kit-1 307 kB/s | 9.9 kB 00:00
- (160/186): pipewire-jack-audio-connection-kit-l 1.3 MB/s | 147 kB 00:00
- (161/186): pipewire-libs-1.4.9-1.el10.x86_64.rp 4.0 MB/s | 2.5 MB 00:00
- (162/186): pipewire-plugin-libcamera-1.4.9-1.el 680 kB/s | 73 kB 00:00
- (163/186): pipewire-pulseaudio-1.4.9-1.el10.x86 1.5 MB/s | 211 kB 00:00
- (164/186): pixman-devel-0.43.4-2.el10.x86_64.rp 171 kB/s | 18 kB 00:00
- (165/186): pulseaudio-libs-17.0-6.el10.x86_64.r 2.6 MB/s | 706 kB 00:00
- (166/186): mesa-vulkan-drivers-25.2.7-5.el10.x8 3.6 MB/s | 21 MB 00:05
- (167/186): rtkit-0.11-68.el10.x86_64.rpm 713 kB/s | 57 kB 00:00
- (168/186): sound-theme-freedesktop-0.8-23.el10. 2.7 MB/s | 383 kB 00:00
- (169/186): sysprof-capture-devel-47.2-1.el10.x8 566 kB/s | 56 kB 00:00
- (170/186): tracker-3.7.3-4.el10.x86_64.rpm 1.7 MB/s | 644 kB 00:00
- (171/186): spirv-tools-libs-2025.4-1.el10.x86_6 2.5 MB/s | 1.6 MB 00:00
- (172/186): upower-1.90.10-2.el10.x86_64.rpm 2.8 MB/s | 147 kB 00:00
- (173/186): upower-libs-1.90.10-2.el10.x86_64.rp 987 kB/s | 60 kB 00:00
- (174/186): tracker-miners-3.7.4-1.el10.x86_64.r 4.0 MB/s | 982 kB 00:00
- (175/186): vulkan-loader-1.4.328.1-1.el10.x86_6 1.8 MB/s | 161 kB 00:00
- (176/186): vulkan-loader-devel-1.4.328.1-1.el10 651 kB/s | 11 kB 00:00
- (177/186): wayland-devel-1.24.0-1.el10.x86_64.r 2.2 MB/s | 155 kB 00:00
- (178/186): vulkan-headers-1.4.328.1-1.el10.noar 4.1 MB/s | 1.5 MB 00:00
- (179/186): wireplumber-0.5.10-1.el10.x86_64.rpm 1.4 MB/s | 121 kB 00:00
- (180/186): webrtc-audio-processing-1.3-5.el10.x 1.8 MB/s | 527 kB 00:00
- (181/186): wireplumber-libs-0.5.10-1.el10.x86_6 2.1 MB/s | 405 kB 00:00
- (182/186): xdg-desktop-portal-1.20.0-2.el10.x86 2.8 MB/s | 532 kB 00:00
- (183/186): xdg-desktop-portal-gtk-1.15.3-1.el10 2.6 MB/s | 145 kB 00:00
- (184/186): xprop-1.2.7-3.el10.x86_64.rpm 1.2 MB/s | 36 kB 00:00
- (185/186): xkeyboard-config-2.41-3.el10.noarch. 5.7 MB/s | 1.0 MB 00:00
- (186/186): llvm-libs-21.1.8-1.el10.x86_64.rpm 3.5 MB/s | 31 MB 00:08
- --------------------------------------------------------------------------------
- Total 7.7 MB/s | 141 MB 00:18
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Preparing : 1/1
- Installing : libwayland-client-1.24.0-1.el10.x86_64 1/186
- Installing : libXi-1.8.1-7.el10.x86_64 2/186
- Installing : libXfixes-6.0.1-5.el10.x86_64 3/186
- Installing : gstreamer1-1.26.7-5.el10.x86_64 4/186
- Installing : json-glib-1.8.0-5.el10.x86_64 5/186
- Installing : libwayland-egl-1.24.0-1.el10.x86_64 6/186
- Installing : libogg-2:1.3.5-10.el10.x86_64 7/186
- Installing : libvorbis-1:1.3.7-12.el10.x86_64 8/186
- Installing : libwayland-cursor-1.24.0-1.el10.x86_64 9/186
- Installing : libpng-devel-2:1.6.40-11.el10.x86_64 10/186
- Installing : libXrender-devel-0.9.11-8.el10.x86_64 11/186
- Installing : graphene-1.10.6-10.el10.x86_64 12/186
- Installing : alsa-lib-1.2.15.3-2.el10.x86_64 13/186
- Installing : libXcursor-1.2.1-9.el10.x86_64 14/186
- Installing : libXdamage-1.1.6-5.el10.x86_64 15/186
- Installing : opus-1.4-6.el10.x86_64 16/186
- Installing : mesa-filesystem-25.2.7-5.el10.x86_64 17/186
- Installing : libepoxy-1.5.10-10.el10.x86_64 18/186
- Installing : libXrandr-1.5.4-5.el10.x86_64 19/186
- Installing : libXinerama-1.1.5-8.el10.x86_64 20/186
- Installing : avahi-glib-0.9~rc2-2.el10.x86_64 21/186
- Installing : polkit-libs-125-4.el10.x86_64 22/186
- Installing : libgudev-238-7.el10.x86_64 23/186
- Installing : hwdata-0.379-10.8.el10.noarch 24/186
- Installing : spirv-tools-libs-2025.4-1.el10.x86_64 25/186
- Installing : pixman-devel-0.43.4-2.el10.x86_64 26/186
- Installing : libxshmfence-1.3.2-5.el10.x86_64 27/186
- Installing : libjpeg-turbo-devel-3.0.2-4.el10.x86_64 28/186
- Installing : libglvnd-1:1.7.0-7.el10.x86_64 29/186
- Installing : libffi-devel-3.4.4-10.el10.x86_64 30/186
- Installing : libXext-devel-1.3.6-3.el10.x86_64 31/186
- Installing : hicolor-icon-theme-0.17-20.el10.noarch 32/186
- Installing : gtk-update-icon-cache-3.24.43-5.el10.x86_64 33/186
- Installing : gdk-pixbuf2-modules-2.42.12-4.el10.x86_64 34/186
- Installing : dconf-0.40.0-17.el10.x86_64 35/186
- Running scriptlet: dconf-0.40.0-17.el10.x86_64 35/186
- Installing : libusb1-1.0.29-3.el10.x86_64 36/186
- Installing : libtdb-1.4.14-100.el10.x86_64 37/186
- Installing : gsettings-desktop-schemas-47.1-4.el10.x86_64 38/186
- Installing : fuse3-libs-3.16.2-5.el10.x86_64 39/186
- Installing : duktape-2.7.0-10.el10.x86_64 40/186
- Running scriptlet: polkit-125-4.el10.x86_64 41/186
- Installing : polkit-125-4.el10.x86_64 41/186
- Running scriptlet: polkit-125-4.el10.x86_64 41/186
- Installing : polkit-pkla-compat-0.1-30.el10.x86_64 42/186
- Running scriptlet: rtkit-0.11-68.el10.x86_64 43/186
- Installing : rtkit-0.11-68.el10.x86_64 43/186
- Running scriptlet: rtkit-0.11-68.el10.x86_64 43/186
- Created symlink '/etc/systemd/system/graphical.target.wants/rtkit-daemon.service' → '/usr/lib/systemd/system/rtkit-daemon.service'.
-
- Installing : libproxy-0.5.5-4.el10.x86_64 44/186
- Installing : glib-networking-2.80.0-3.el10.x86_64 45/186
- Installing : libgusb-0.4.9-4.el10.x86_64 46/186
- Installing : colord-libs-1.4.7-6.el10.x86_64 47/186
- Installing : libpciaccess-0.16-16.el10.x86_64 48/186
- Installing : libdrm-2.4.128-1.el10.x86_64 49/186
- Installing : osinfo-db-20250606-2.el10.noarch 50/186
- Installing : flac-libs-1.4.3-6.el10.x86_64 51/186
- Installing : libtheora-1:1.1.1-39.el10.x86_64 52/186
- Installing : libXtst-1.2.4-8.el10.x86_64 53/186
- Installing : xprop-1.2.7-3.el10.x86_64 54/186
- Installing : at-spi2-core-2.56.1-1.el10.x86_64 55/186
- Installing : atk-2.56.1-1.el10.x86_64 56/186
- Installing : at-spi2-atk-2.56.1-1.el10.x86_64 57/186
- Installing : xkeyboard-config-2.41-3.el10.noarch 58/186
- Installing : libxkbcommon-1.7.0-4.el10.x86_64 59/186
- Installing : webrtc-audio-processing-1.3-5.el10.x86_64 60/186
-
- Installing : vulkan-headers-1.4.328.1-1.el10.noarch 61/186
- Installing : sysprof-capture-devel-47.2-1.el10.x86_64 62/186
- Installing : sound-theme-freedesktop-0.8-23.el10.noarch 63/186
- Running scriptlet: sound-theme-freedesktop-0.8-23.el10.noarch 63/186
- Installing : pcre2-utf32-10.44-1.el10.3.x86_64 64/186
- Installing : pcre2-utf16-10.44-1.el10.3.x86_64 65/186
- Installing : pcre2-devel-10.44-1.el10.3.x86_64 66/186
- Installing : orc-0.4.39-2.el10.x86_64 67/186
- Installing : mpg123-libs-1.32.9-1.el10.x86_64 68/186
- Installing : low-memory-monitor-2.1-12.el10.x86_64 69/186
- Running scriptlet: low-memory-monitor-2.1-12.el10.x86_64 69/186
- Installing : llvm-filesystem-21.1.8-1.el10.x86_64 70/186
- Installing : llvm-libs-21.1.8-1.el10.x86_64 71/186
- Installing : mesa-dri-drivers-25.2.7-5.el10.x86_64 72/186
- Installing : mesa-libgbm-25.2.7-5.el10.x86_64 73/186
- Installing : libglvnd-egl-1:1.7.0-7.el10.x86_64 74/186
- Installing : mesa-libEGL-25.2.7-5.el10.x86_64 75/186
- Installing : vulkan-loader-1.4.328.1-1.el10.x86_64 76/186
- Installing : mesa-vulkan-drivers-25.2.7-5.el10.x86_64 77/186
- Installing : vulkan-loader-devel-1.4.328.1-1.el10.x86_64 78/186
- Installing : libxml2-devel-2.12.5-10.el10.x86_64 79/186
- Installing : libwebp-devel-1.3.2-10.el10.x86_64 80/186
- Installing : libtiff-devel-4.6.0-8.el10.x86_64 81/186
- Installing : libwayland-server-1.24.0-1.el10.x86_64 82/186
- Installing : wayland-devel-1.24.0-1.el10.x86_64 83/186
- Installing : libsepol-devel-3.10-1.el10.x86_64 84/186
- Installing : libselinux-devel-3.10-1.el10.x86_64 85/186
-
- Installing : libsbc-2.0-7.el10.x86_64 86/186
- Installing : libportal-0.9.0-3.el10.x86_64 87/186
- Installing : libnotify-0.8.6-1.el10.x86_64 88/186
- Installing : libldac-2.0.2.3-17.el10.x86_64 89/186
- Installing : liblc3-1.1.3-1.el10.x86_64 90/186
- Installing : libiptcdata-1.0.5-20.el10.x86_64 91/186
- Installing : libicu-devel-74.2-5.el10.x86_64 92/186
- Installing : libgxps-0.3.2-11.el10.x86_64 93/186
- Installing : libgsf-1.14.53-2.el10.x86_64 94/186
- Installing : libexif-0.6.24-9.el10.x86_64 95/186
- Installing : libdatrie-devel-0.2.13-11.el10.x86_64 96/186
- Installing : libthai-devel-0.1.29-10.el10.x86_64 97/186
- Installing : libblkid-devel-2.40.2-19.el10.x86_64 98/186
- Installing : libmount-devel-2.40.2-19.el10.x86_64 99/186
- Installing : libasyncns-0.8-30.el10.x86_64 100/186
- Installing : libXxf86vm-1.1.5-8.el10.x86_64 101/186
- Installing : libglvnd-glx-1:1.7.0-7.el10.x86_64 102/186
- Installing : mesa-libGL-25.2.7-5.el10.x86_64 103/186
- Installing : libva-2.22.0-2.el10.x86_64 104/186
- Installing : libXv-1.0.12-5.el10.x86_64 105/186
- Installing : libXcomposite-0.4.6-5.el10.x86_64 106/186
- Installing : lame-libs-3.100-19.el10.x86_64 107/186
- Installing : iso-codes-4.16.0-6.el10.noarch 108/186
- Installing : gstreamer1-plugins-base-1.26.7-1.el10.x86_64 109/186
- Installing : gstreamer1-plugins-bad-free-libs-1.26.7-1.el10.x 110/186
- Installing : harfbuzz-icu-8.4.0-6.el10.x86_64 111/186
- Installing : harfbuzz-cairo-8.4.0-6.el10.x86_64 112/186
- Installing : gsm-1.0.22-8.el10.x86_64 113/186
- Installing : libsndfile-1.2.2-6.el10.x86_64 114/186
- Installing : pulseaudio-libs-17.0-6.el10.x86_64 115/186
- Installing : libcanberra-0.30-37.el10.x86_64 116/186
- Running scriptlet: libcanberra-0.30-37.el10.x86_64 116/186
- Installing : graphite2-devel-1.3.14-17.el10.x86_64 117/186
- Installing : giflib-5.2.1-22.el10.x86_64 118/186
- Installing : fribidi-devel-1.0.14-4.el10.x86_64 119/186
- Installing : fftw-libs-single-3.3.10-15.el10.x86_64 120/186
- Installing : fdk-aac-free-2.0.0-15.el10.x86_64 121/186
- Installing : exempi-2.6.4-7.el10.x86_64 122/186
- Installing : bzip2-devel-1.0.8-25.el10.x86_64 123/186
- Installing : brotli-1.1.0-7.el10.x86_64 124/186
- Installing : brotli-devel-1.1.0-7.el10.x86_64 125/186
- Installing : adwaita-cursor-theme-46.0-3.el10.noarch 126/186
- Installing : adwaita-icon-theme-46.0-3.el10.noarch 127/186
- Installing : python3-packaging-24.2-2.el10.noarch 128/186
- Installing : glib2-devel-2.80.4-12.el10.x86_64 129/186
- Installing : cairo-devel-1.18.2-2.el10.x86_64 130/186
- Installing : fontconfig-devel-2.15.0-7.el10.x86_64 131/186
- Installing : freetype-devel-2.13.2-8.el10.x86_64 132/186
- Installing : harfbuzz-devel-8.4.0-6.el10.x86_64 133/186
- Installing : cairo-gobject-devel-1.18.2-2.el10.x86_64 134/186
- Installing : libXft-devel-2.3.8-8.el10.x86_64 135/186
- Installing : pango-devel-1.54.0-3.el10.x86_64 136/186
- Installing : gdk-pixbuf2-devel-2.42.12-4.el10.x86_64 137/186
- Installing : graphene-devel-1.10.6-10.el10.x86_64 138/186
- Installing : publicsuffix-list-dafsa-20240107-5.el10.noarch 139/186
- Installing : libpsl-0.21.5-6.el10.x86_64 140/186
- Installing : libsoup3-3.6.5-5.el10.x86_64 141/186
- Installing : osinfo-db-tools-1.11.0-8.el10.x86_64 142/186
- Installing : libosinfo-1.11.0-8.el10.x86_64 143/186
- Installing : linux-firmware-whence-20260130-22.el10.noarch 144/186
- Installing : intel-vsc-firmware-20260130-22.el10.noarch 145/186
- Installing : libcamera-ipa-0.6.0-1.el10.x86_64 146/186
- Installing : libcamera-0.6.0-1.el10.x86_64 147/186
- Installing : liburing-2.12-1.el10.x86_64 148/186
- Installing : libatomic-14.3.1-4.4.el10.x86_64 149/186
- Installing : libdex-0.8.1-1.el10.x86_64 150/186
- Installing : kmod-31-13.el10.x86_64 151/186
- Installing : kbd-misc-2.6.4-7.el10.noarch 152/186
- Installing : kbd-legacy-2.6.4-7.el10.noarch 153/186
- Installing : kbd-2.6.4-7.el10.x86_64 154/186
- Installing : systemd-udev-257-23.el10.x86_64 155/186
- Running scriptlet: systemd-udev-257-23.el10.x86_64 155/186
-
- Created symlink '/etc/systemd/system/sysinit.target.wants/systemd-pstore.service' → '/usr/lib/systemd/system/systemd-pstore.service'.
- Created symlink '/etc/systemd/system/multi-user.target.wants/remote-cryptsetup.target' → '/usr/lib/systemd/system/remote-cryptsetup.target'.
-
- Installing : inih-58-3.el10.x86_64 156/186
- Installing : inih-cpp-58-3.el10.x86_64 157/186
- Installing : exiv2-0.28.3-5.el10.x86_64 158/186
- Installing : exiv2-libs-0.28.3-5.el10.x86_64 159/186
- Installing : libgexiv2-0.14.3-3.el10.x86_64 160/186
- Installing : gobject-introspection-1.79.1-6.el10.x86_64 161/186
- Installing : upower-1.90.10-2.el10.x86_64 162/186
- Running scriptlet: upower-1.90.10-2.el10.x86_64 162/186
- Created symlink '/etc/systemd/system/graphical.target.wants/upower.service' → '/usr/lib/systemd/system/upower.service'.
-
- Installing : upower-libs-1.90.10-2.el10.x86_64 163/186
- Installing : libtracker-sparql-3.7.3-4.el10.x86_64 164/186
- Installing : tracker-3.7.3-4.el10.x86_64 165/186
- Running scriptlet: tracker-3.7.3-4.el10.x86_64 165/186
- Installing : tracker-miners-3.7.4-1.el10.x86_64 166/186
- Running scriptlet: tracker-miners-3.7.4-1.el10.x86_64 166/186
- Installing : fuse-common-3.16.2-5.el10.x86_64 167/186
- Installing : fuse3-3.16.2-5.el10.x86_64 168/186
- Installing : bluez-libs-5.86-1.el10.x86_64 169/186
- Installing : pipewire-plugin-libcamera-1.4.9-1.el10.x86_64 170/186
- Installing : pipewire-1.4.9-1.el10.x86_64 171/186
- Running scriptlet: pipewire-1.4.9-1.el10.x86_64 171/186
- Created symlink '/etc/systemd/user/sockets.target.wants/pipewire.socket' → '/usr/lib/systemd/user/pipewire.socket'.
-
- Installing : pipewire-libs-1.4.9-1.el10.x86_64 172/186
- Installing : wireplumber-0.5.10-1.el10.x86_64 173/186
- Installing : wireplumber-libs-0.5.10-1.el10.x86_64 174/186
- Installing : pipewire-jack-audio-connection-kit-1.4.9-1.el10. 175/186
- Installing : pipewire-jack-audio-connection-kit-libs-1.4.9-1. 176/186
- Installing : ModemManager-glib-1.22.0-7.el10.x86_64 177/186
- Running scriptlet: geoclue2-2.7.2-1.el10.x86_64 178/186
- Installing : geoclue2-2.7.2-1.el10.x86_64 178/186
- Running scriptlet: geoclue2-2.7.2-1.el10.x86_64 178/186
- Installing : xdg-desktop-portal-1.20.0-2.el10.x86_64 179/186
- Running scriptlet: xdg-desktop-portal-1.20.0-2.el10.x86_64 179/186
- Installing : libcanberra-gtk3-0.30-37.el10.x86_64 180/186
- Installing : gtk3-3.24.43-5.el10.x86_64 181/186
- Installing : xdg-desktop-portal-gtk-1.15.3-1.el10.x86_64 182/186
- Running scriptlet: xdg-desktop-portal-gtk-1.15.3-1.el10.x86_64 182/186
- Installing : gtk4-4.16.7-4.el10.x86_64 183/186
- Installing : gtk4-devel-4.16.7-4.el10.x86_64 184/186
- Installing : pipewire-alsa-1.4.9-1.el10.x86_64 185/186
- Installing : pipewire-pulseaudio-1.4.9-1.el10.x86_64 186/186
- Running scriptlet: pipewire-pulseaudio-1.4.9-1.el10.x86_64 186/186
- Created symlink '/etc/systemd/user/sockets.target.wants/pipewire-pulse.socket' → '/usr/lib/systemd/user/pipewire-pulse.socket'.
-
- Running scriptlet: dconf-0.40.0-17.el10.x86_64 186/186
-
- Running scriptlet: wireplumber-0.5.10-1.el10.x86_64 186/186
- Created symlink '/etc/systemd/user/pipewire-session-manager.service' → '/usr/lib/systemd/user/wireplumber.service'.
- Created symlink '/etc/systemd/user/pipewire.service.wants/wireplumber.service' → '/usr/lib/systemd/user/wireplumber.service'.
-
- Running scriptlet: pipewire-pulseaudio-1.4.9-1.el10.x86_64 186/186
- Creating group 'pipewire' with GID 995.
- Creating user 'pipewire' (PipeWire System Daemon) with UID 995 and GID 995.
- Creating group 'systemd-coredump' with GID 994.
- Creating user 'systemd-coredump' (systemd Core Dumper) with UID 994 and GID 994.
-
-
- Installed:
- ModemManager-glib-1.22.0-7.el10.x86_64
- adwaita-cursor-theme-46.0-3.el10.noarch
- adwaita-icon-theme-46.0-3.el10.noarch
- alsa-lib-1.2.15.3-2.el10.x86_64
- at-spi2-atk-2.56.1-1.el10.x86_64
- at-spi2-core-2.56.1-1.el10.x86_64
- atk-2.56.1-1.el10.x86_64
- avahi-glib-0.9~rc2-2.el10.x86_64
- bluez-libs-5.86-1.el10.x86_64
- brotli-1.1.0-7.el10.x86_64
- brotli-devel-1.1.0-7.el10.x86_64
- bzip2-devel-1.0.8-25.el10.x86_64
- cairo-devel-1.18.2-2.el10.x86_64
- cairo-gobject-devel-1.18.2-2.el10.x86_64
- colord-libs-1.4.7-6.el10.x86_64
- dconf-0.40.0-17.el10.x86_64
- duktape-2.7.0-10.el10.x86_64
- exempi-2.6.4-7.el10.x86_64
- exiv2-0.28.3-5.el10.x86_64
- exiv2-libs-0.28.3-5.el10.x86_64
- fdk-aac-free-2.0.0-15.el10.x86_64
- fftw-libs-single-3.3.10-15.el10.x86_64
- flac-libs-1.4.3-6.el10.x86_64
- fontconfig-devel-2.15.0-7.el10.x86_64
- freetype-devel-2.13.2-8.el10.x86_64
- fribidi-devel-1.0.14-4.el10.x86_64
- fuse-common-3.16.2-5.el10.x86_64
- fuse3-3.16.2-5.el10.x86_64
- fuse3-libs-3.16.2-5.el10.x86_64
- gdk-pixbuf2-devel-2.42.12-4.el10.x86_64
- gdk-pixbuf2-modules-2.42.12-4.el10.x86_64
- geoclue2-2.7.2-1.el10.x86_64
- giflib-5.2.1-22.el10.x86_64
- glib-networking-2.80.0-3.el10.x86_64
- glib2-devel-2.80.4-12.el10.x86_64
- gobject-introspection-1.79.1-6.el10.x86_64
- graphene-1.10.6-10.el10.x86_64
- graphene-devel-1.10.6-10.el10.x86_64
- graphite2-devel-1.3.14-17.el10.x86_64
- gsettings-desktop-schemas-47.1-4.el10.x86_64
- gsm-1.0.22-8.el10.x86_64
- gstreamer1-1.26.7-5.el10.x86_64
- gstreamer1-plugins-bad-free-libs-1.26.7-1.el10.x86_64
- gstreamer1-plugins-base-1.26.7-1.el10.x86_64
- gtk-update-icon-cache-3.24.43-5.el10.x86_64
- gtk3-3.24.43-5.el10.x86_64
- gtk4-4.16.7-4.el10.x86_64
- gtk4-devel-4.16.7-4.el10.x86_64
- harfbuzz-cairo-8.4.0-6.el10.x86_64
- harfbuzz-devel-8.4.0-6.el10.x86_64
- harfbuzz-icu-8.4.0-6.el10.x86_64
- hicolor-icon-theme-0.17-20.el10.noarch
- hwdata-0.379-10.8.el10.noarch
- inih-58-3.el10.x86_64
- inih-cpp-58-3.el10.x86_64
- intel-vsc-firmware-20260130-22.el10.noarch
- iso-codes-4.16.0-6.el10.noarch
- json-glib-1.8.0-5.el10.x86_64
- kbd-2.6.4-7.el10.x86_64
- kbd-legacy-2.6.4-7.el10.noarch
- kbd-misc-2.6.4-7.el10.noarch
- kmod-31-13.el10.x86_64
- lame-libs-3.100-19.el10.x86_64
- libXcomposite-0.4.6-5.el10.x86_64
- libXcursor-1.2.1-9.el10.x86_64
- libXdamage-1.1.6-5.el10.x86_64
- libXext-devel-1.3.6-3.el10.x86_64
- libXfixes-6.0.1-5.el10.x86_64
- libXft-devel-2.3.8-8.el10.x86_64
- libXi-1.8.1-7.el10.x86_64
- libXinerama-1.1.5-8.el10.x86_64
- libXrandr-1.5.4-5.el10.x86_64
- libXrender-devel-0.9.11-8.el10.x86_64
- libXtst-1.2.4-8.el10.x86_64
- libXv-1.0.12-5.el10.x86_64
- libXxf86vm-1.1.5-8.el10.x86_64
- libasyncns-0.8-30.el10.x86_64
- libatomic-14.3.1-4.4.el10.x86_64
- libblkid-devel-2.40.2-19.el10.x86_64
- libcamera-0.6.0-1.el10.x86_64
- libcamera-ipa-0.6.0-1.el10.x86_64
- libcanberra-0.30-37.el10.x86_64
- libcanberra-gtk3-0.30-37.el10.x86_64
- libdatrie-devel-0.2.13-11.el10.x86_64
- libdex-0.8.1-1.el10.x86_64
- libdrm-2.4.128-1.el10.x86_64
- libepoxy-1.5.10-10.el10.x86_64
- libexif-0.6.24-9.el10.x86_64
- libffi-devel-3.4.4-10.el10.x86_64
- libgexiv2-0.14.3-3.el10.x86_64
- libglvnd-1:1.7.0-7.el10.x86_64
- libglvnd-egl-1:1.7.0-7.el10.x86_64
- libglvnd-glx-1:1.7.0-7.el10.x86_64
- libgsf-1.14.53-2.el10.x86_64
- libgudev-238-7.el10.x86_64
- libgusb-0.4.9-4.el10.x86_64
- libgxps-0.3.2-11.el10.x86_64
- libicu-devel-74.2-5.el10.x86_64
- libiptcdata-1.0.5-20.el10.x86_64
- libjpeg-turbo-devel-3.0.2-4.el10.x86_64
- liblc3-1.1.3-1.el10.x86_64
- libldac-2.0.2.3-17.el10.x86_64
- libmount-devel-2.40.2-19.el10.x86_64
- libnotify-0.8.6-1.el10.x86_64
- libogg-2:1.3.5-10.el10.x86_64
- libosinfo-1.11.0-8.el10.x86_64
- libpciaccess-0.16-16.el10.x86_64
- libpng-devel-2:1.6.40-11.el10.x86_64
- libportal-0.9.0-3.el10.x86_64
- libproxy-0.5.5-4.el10.x86_64
- libpsl-0.21.5-6.el10.x86_64
- libsbc-2.0-7.el10.x86_64
- libselinux-devel-3.10-1.el10.x86_64
- libsepol-devel-3.10-1.el10.x86_64
- libsndfile-1.2.2-6.el10.x86_64
- libsoup3-3.6.5-5.el10.x86_64
- libtdb-1.4.14-100.el10.x86_64
- libthai-devel-0.1.29-10.el10.x86_64
- libtheora-1:1.1.1-39.el10.x86_64
- libtiff-devel-4.6.0-8.el10.x86_64
- libtracker-sparql-3.7.3-4.el10.x86_64
- liburing-2.12-1.el10.x86_64
- libusb1-1.0.29-3.el10.x86_64
- libva-2.22.0-2.el10.x86_64
- libvorbis-1:1.3.7-12.el10.x86_64
- libwayland-client-1.24.0-1.el10.x86_64
- libwayland-cursor-1.24.0-1.el10.x86_64
- libwayland-egl-1.24.0-1.el10.x86_64
- libwayland-server-1.24.0-1.el10.x86_64
- libwebp-devel-1.3.2-10.el10.x86_64
- libxkbcommon-1.7.0-4.el10.x86_64
- libxml2-devel-2.12.5-10.el10.x86_64
- libxshmfence-1.3.2-5.el10.x86_64
- linux-firmware-whence-20260130-22.el10.noarch
- llvm-filesystem-21.1.8-1.el10.x86_64
- llvm-libs-21.1.8-1.el10.x86_64
- low-memory-monitor-2.1-12.el10.x86_64
- mesa-dri-drivers-25.2.7-5.el10.x86_64
- mesa-filesystem-25.2.7-5.el10.x86_64
- mesa-libEGL-25.2.7-5.el10.x86_64
- mesa-libGL-25.2.7-5.el10.x86_64
- mesa-libgbm-25.2.7-5.el10.x86_64
- mesa-vulkan-drivers-25.2.7-5.el10.x86_64
- mpg123-libs-1.32.9-1.el10.x86_64
- opus-1.4-6.el10.x86_64
- orc-0.4.39-2.el10.x86_64
- osinfo-db-20250606-2.el10.noarch
- osinfo-db-tools-1.11.0-8.el10.x86_64
- pango-devel-1.54.0-3.el10.x86_64
- pcre2-devel-10.44-1.el10.3.x86_64
- pcre2-utf16-10.44-1.el10.3.x86_64
- pcre2-utf32-10.44-1.el10.3.x86_64
- pipewire-1.4.9-1.el10.x86_64
- pipewire-alsa-1.4.9-1.el10.x86_64
- pipewire-jack-audio-connection-kit-1.4.9-1.el10.x86_64
- pipewire-jack-audio-connection-kit-libs-1.4.9-1.el10.x86_64
- pipewire-libs-1.4.9-1.el10.x86_64
- pipewire-plugin-libcamera-1.4.9-1.el10.x86_64
- pipewire-pulseaudio-1.4.9-1.el10.x86_64
- pixman-devel-0.43.4-2.el10.x86_64
- polkit-125-4.el10.x86_64
- polkit-libs-125-4.el10.x86_64
- polkit-pkla-compat-0.1-30.el10.x86_64
- publicsuffix-list-dafsa-20240107-5.el10.noarch
- pulseaudio-libs-17.0-6.el10.x86_64
- python3-packaging-24.2-2.el10.noarch
- rtkit-0.11-68.el10.x86_64
- sound-theme-freedesktop-0.8-23.el10.noarch
- spirv-tools-libs-2025.4-1.el10.x86_64
- sysprof-capture-devel-47.2-1.el10.x86_64
- systemd-udev-257-23.el10.x86_64
- tracker-3.7.3-4.el10.x86_64
- tracker-miners-3.7.4-1.el10.x86_64
- upower-1.90.10-2.el10.x86_64
- upower-libs-1.90.10-2.el10.x86_64
- vulkan-headers-1.4.328.1-1.el10.noarch
- vulkan-loader-1.4.328.1-1.el10.x86_64
- vulkan-loader-devel-1.4.328.1-1.el10.x86_64
- wayland-devel-1.24.0-1.el10.x86_64
- webrtc-audio-processing-1.3-5.el10.x86_64
- wireplumber-0.5.10-1.el10.x86_64
- wireplumber-libs-0.5.10-1.el10.x86_64
- xdg-desktop-portal-1.20.0-2.el10.x86_64
- xdg-desktop-portal-gtk-1.15.3-1.el10.x86_64
- xkeyboard-config-2.41-3.el10.noarch
- xprop-1.2.7-3.el10.x86_64
-
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "gtk4-devel"
- gtk4-devel-4.16.7-4.el10.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved containers.3.18 (cached)
-> installed conf-pkg-config.4
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-gtk4.1
-> retrieved dune.3.22.1, dune-configurator.3.22.1 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> installed cmdliner.2.1.0
-> retrieved ocgtk.0.1~preview0 (cached)
-> retrieved parsexp.v0.17.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> retrieved ppx_sexp_conv.v0.17.1 (cached)
-> retrieved ppxlib.0.38.0 (cached)
-> retrieved ppxlib_jane.v0.17.4 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved sexplib.v0.17.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved xmlm.1.4.0 (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed logs.0.10.0
-> installed xmlm.1.4.0
-> installed dune.3.22.1
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed either.1.0.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed dune-configurator.3.22.1
-> installed parsexp.v0.17.0
-> installed sexplib.v0.17.0
-> installed containers.3.18
-> installed base.v0.17.3
-> installed ppxlib.0.38.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_deriving.6.1.1
-> installed ppx_sexp_conv.v0.17.1
-> installed ocgtk.0.1~preview0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-05 06:28.37 ---> saved as "72a0caacefc1be89b1ece1e8291c83b8e582e95a83bfc86108c7fbe993fa5f89"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ocgtk.0.1~preview0) || true"))
The following actions will be performed:
=== recompile 2 packages
- recompile logs 0.10.0 [uses fmt]
- recompile ocgtk 0.1~preview0 (pinned)
=== install 5 packages
- install alcotest 1.9.1 [required by ocgtk]
- install astring 0.8.5 [required by alcotest]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (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)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> installed fmt.0.11.0
-> installed ocaml-syntax-shims.1.0.0
-> retrieved ocgtk.0.1~preview0 (https://github.com/chris-armstrong/ocgtk/archive/refs/tags/v0.1-preview0.tar.gz)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> removed ocgtk.0.1~preview0
-> removed logs.0.10.0
-> installed logs.0.10.0
-> installed uutf.1.0.4
-> installed alcotest.1.9.1
-> installed ocgtk.0.1~preview0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-05 06:29.04 ---> saved as "0efd6909664bce4197db58ab777376bb0ca86a93d1acbe056ce93909b8745bec"
/home/opam: (run (shell "opam reinstall --with-test --verbose ocgtk.0.1~preview0;\
\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 \"\\\"centos-10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocgtk.0.1~preview0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile ocgtk 0.1~preview0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [ocgtk.0.1~preview0: extract]
-> retrieved ocgtk.0.1~preview0 (cached)
Processing 2/4: [ocgtk: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ocgtk" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ocgtk.0.1~preview0)
- (cd _build/default/ocgtk/examples/calculator && ./test_calc_expr.exe)
- Testing `calc_expr'.
- This run has ID `GOD87ZQU'.
-
- [OK] basic-addition 0 basic addition.
- [OK] basic-subtraction 0 basic subtraction.
- [OK] basic-multiplication 0 basic multiplication.
- [OK] basic-division 0 basic division.
- [OK] operator-precedence 0 operator precedence.
- [OK] parentheses 0 parentheses.
- [OK] auto-close-parens 0 auto-close parentheses.
- [OK] division-by-zero 0 division by zero.
- [OK] empty-expression 0 empty expression.
- [OK] invalid-auto-close 0 invalid auto-close.
- [OK] decimals 0 decimals.
- [OK] whitespace 0 whitespace tolerance.
- [OK] negative-numbers 0 negative numbers.
- [OK] edge-cases 0 edge cases.
- [OK] format-result 0 format result.
- [OK] incomplete-expression 0 incomplete expression.
- [OK] get-display-text 0 get display text.
- [OK] multiple-unclosed-parens 0 multiple unclosed parens.
- [OK] deeply-nested 0 deeply nested expressions.
- [OK] safe-evaluate 0 safe evaluate.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/ocgtk.0.1~preview0/_build/default/ocgtk/examples/calculator/_build/_tests/calc_expr'.
- Test Successful in 0.002s. 20 tests run.
- (cd _build/default/ocgtk/examples/calculator && ./test_calc_state.exe)
- Testing `Calc_state'.
- This run has ID `N6WMTWYJ'.
-
- [OK] creation 0 create.
- [OK] append 0 digits.
- [OK] append 1 decimal.
- [OK] append 2 double decimal rejected.
- [OK] append 3 decimal in second operand.
- [OK] append 4 consecutive operators.
- [OK] append 5 leading minus.
- [OK] append 6 leading plus rejected.
- [OK] append 7 multiple operators.
- [OK] backspace 0 basic.
- [OK] backspace 1 in error.
- [OK] clear 0 clear.
- [OK] evaluate 0 basic.
- [OK] evaluate 1 incomplete.
- [OK] evaluate 2 error blocks append.
- [OK] evaluate 3 precedence.
- [OK] evaluate 4 parentheses.
- [OK] display 0 expression display.
- [OK] display 1 result display.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/ocgtk.0.1~preview0/_build/default/ocgtk/examples/calculator/_build/_tests/Calc_state'.
- Test Successful in 0.002s. 19 tests run.
- (cd _build/default/ocgtk/src/tools/test_gir_gen && ./test_gir_gen.exe)
- Testing `GIR Generator'.
- This run has ID `T776ZK7U'.
-
- [OK] Core 0 GIR f...
- [OK] Core 1 C cod...
- [OK] Core 2 Widge...
- [OK] Core 3 All m...
- [OK] Core 4 CAMLp...
- [OK] Core 5 Nulla...
- [OK] Core 6 Gener...
- [OK] Core 7 Help ...
- [OK] Parser 0 Parse...
- [OK] Parser 1 Parse...
- [OK] Parser 2 Parse...
- [OK] Parser 3 Parse...
- [OK] Parser 4 Parse...
- [OK] Parser 5 Parse...
- [OK] Parser 6 Parse...
- [OK] Parser 7 Parse...
- [OK] Parser 8 Parse...
- [OK] Parser 9 Parse...
- [OK] Parser 10 Parse...
- [OK] Parser 11 Parse...
- [OK] Parser 12 Parse...
- [OK] Parser 13 Parse...
- [OK] Parser 14 Parse...
- [OK] Parser 15 Parse...
- [OK] Parser 16 Parse...
- [OK] Parser 17 Parse...
- [OK] Parser 18 Parse...
- [OK] Parser 19 Parse...
- [OK] Parser 20 Parse...
- [OK] Parser 21 Parse...
- [OK] Parser 22 Parse...
- [OK] Parser 23 Parse...
- [OK] Parser 24 Parse...
- [OK] Parser 25 Parse...
- [OK] Parser 26 Parse...
- [OK] Parser 27 Parse...
- [OK] Parser 28 Parse...
- [OK] Parser 29 Parse...
- [OK] Parser 30 Parse...
- [OK] Parser 31 Parse...
- [OK] Parser 32 Parse...
- [OK] Parser 33 Parse...
- [OK] Parser 34 Parse...
- [OK] Parser 35 Parse...
- [OK] C Validation 0 asser...
- [OK] C Validation 1 asser...
- [OK] C Validation 2 asser...
- [OK] C Validation 3 asser...
- [OK] C Validation 4 asser...
- [OK] C Validation 5 asser...
- [OK] C Validation 6 parse...
- [OK] C Validation 7 parse...
- [OK] C Validation 8 extra...
- [OK] C Stubs 0 Simpl...
- [OK] C Stubs 1 Const...
- [OK] C Stubs 2 Const...
- [OK] C Stubs 3 Simpl...
- [OK] C Stubs 4 Metho...
- [OK] C Stubs 5 Metho...
- [OK] C Stubs 6 Metho...
- [OK] C Stubs 7 Const...
- [OK] C Stubs 8 Metho...
- [OK] C Stubs 9 Varia...
- [OK] C Stubs 10 Param...
- [OK] C Stubs 11 Bytec...
- [OK] C Stubs 12 Non-o...
- [OK] C Stubs 13 Non-o...
- [OK] C Stubs 14 Opaqu...
- [OK] C Stubs 15 Opaqu...
- [OK] C Stubs 16 Nulla...
- [OK] C Stubs 17 Nulla...
- [OK] C Stubs 18 Heade...
- [OK] C Stubs 19 Heade...
- [OK] Header Naming 0 Heade...
- [OK] Header Naming 1 Heade...
- [OK] Header Naming 2 Heade...
- [OK] Header Generation 0 Local...
- [OK] Header Generation 1 Exter...
- [OK] Header Generation 2 Local...
- [OK] Header Generation 3 Exter...
- [OK] Nullable 0 Nulla...
- [OK] Nullable 1 Non-n...
- [OK] Nullable 2 Nulla...
- [OK] Nullable 3 Multi...
- [OK] Nullable 4 Nulla...
- [OK] Error Handling 0 Metho...
- [OK] Error Handling 1 Error...
- [OK] Error Handling 2 Error...
- [OK] Error Handling 3 Error...
- [OK] Error Handling 4 Compl...
- [OK] Error Handling 5 Const...
- [OK] Out Params 0 Simpl...
- [OK] Out Params 1 Out p...
- [OK] Out Params 2 Out p...
- [OK] Out Params 3 InOut...
- [OK] Out Params 4 Multi...
- [OK] Out Params 5 Out p...
- [OK] Arrays 0 Zero-...
- [OK] Arrays 1 Zero-...
- [OK] Arrays 2 Array...
- [OK] Arrays 3 Out-p...
- [OK] Arrays 4 Out-p...
- [OK] Arrays 5 Array...
- [OK] Arrays 6 Array...
- [OK] Arrays 7 GPtrA...
- [OK] Arrays 8 GPtrA...
- [OK] Arrays 9 GPtrA...
- [OK] Arrays 10 Non-p...
- [OK] Arrays 11 Point...
- [OK] Arrays 12 gener...
- [OK] Type Conversion 0 gbool...
- [OK] Type Conversion 1 gint ...
- [OK] Type Conversion 2 gdoub...
- [OK] Type Conversion 3 utf8 ...
- [OK] Type Conversion 4 utf8 ...
- [OK] Type Conversion 5 Objec...
- [OK] Type Conversion 6 Enum ...
- [OK] Type Conversion 7 gbool...
- [OK] Type Conversion 8 Multi...
- [OK] Type Definitions (ML) 0 Abstr...
- [OK] Type Definitions (ML) 1 Polym...
- [OK] Type Definitions (ML) 2 Const...
- [OK] Type Definitions (ML) 3 Metho...
- [OK] Type Definitions (ML) 4 Metho...
- [OK] Type Definitions (ML) 5 Nulla...
- [OK] External Declarations (ML) 0 Metho...
- [OK] External Declarations (ML) 1 Metho...
- [OK] External Declarations (ML) 2 Metho...
- [OK] External Declarations (ML) 3 Metho...
- [OK] External Declarations (ML) 4 Const...
- [OK] External Declarations (ML) 5 Metho...
- [OK] External Declarations (ML) 6 Prope...
- [OK] External Declarations (ML) 7 Prope...
- [OK] External Declarations (ML) 8 Prope...
- [OK] Signatures (ML) 0 Type ...
- [OK] Signatures (ML) 1 Const...
- [OK] Signatures (ML) 2 Metho...
- [OK] Signatures (ML) 3 Multi...
- [OK] Properties 0 Prope...
- [OK] Properties 1 C pro...
- [OK] Properties 2 Prope...
- [OK] Signals 0 Signa...
- [OK] Enums 0 Enum ...
- [OK] Enums 1 Bitfi...
- [OK] Enums 2 Multi...
- [OK] Enums 3 Singl...
- [OK] Enums 4 Enum ...
- [OK] Records 0 Recor...
- [OK] Records 1 Non-o...
- [OK] Records 2 Opaqu...
- [OK] Records 3 Non-o...
- [OK] Edge Cases 0 Empty...
- [OK] Edge Cases 1 Class...
- [OK] Layer2 Method Wrappers 0 Hiera...
- [OK] Layer2 Method Wrappers 1 Nulla...
- [OK] Layer2 Method Wrappers 2 Retur...
- [OK] Layer2 Method Wrappers 3 Void ...
- [OK] Layer2 Method Wrappers 4 Multi...
- [OK] Layer2 Method Wrappers 5 Metho...
- [OK] Layer2 Method Wrappers 6 Same-...
- [OK] Layer2 Method Wrappers 7 Prope...
- [OK] Layer2 Method Wrappers 8 Prope...
- [OK] Layer2 Method Wrappers 9 Inher...
- [OK] Layer2 Method Wrappers 10 Signa...
- [OK] Layer2 Method Wrappers 11 Class...
- [OK] Layer2 Method Wrappers 12 Metho...
- [OK] Layer2 Method Wrappers 13 Layer...
- [OK] Layer2 Method Wrappers 14 Combi...
- [OK] Layer2 Method Wrappers 15 Throw...
- [OK] Layer2 Method Wrappers 16 Paren...
- [OK] Layer2 Method Wrappers 17 Paren...
- [OK] Layer2 Method Wrappers 18 Cycli...
- [OK] Constructor Wrappers 0 Zero-...
- [OK] Constructor Wrappers 1 Singl...
- [OK] Constructor Wrappers 2 Class...
- [OK] Constructor Wrappers 3 Nulla...
- [OK] Constructor Wrappers 4 Const...
- [OK] Constructor Wrappers 5 Combi...
- [OK] Constructor Wrappers 6 Cycli...
- [OK] Cross-Namespace 0 Non-i...
- [OK] Cross-Namespace 1 Non-i...
- [OK] Cross-Namespace 2 Non-i...
- [OK] Cross-Namespace 3 Copy ...
- [OK] Cross-Namespace 4 Recor...
- [OK] Cross-Namespace 5 Enum ...
- [OK] Cross-Namespace 6 Non-G...
- [OK] Cross-Namespace 7 Enum ...
- [OK] Cross-Namespace 8 Bitfi...
- [OK] Cross-Namespace 9 Inout...
- [OK] Cross-Namespace 10 Value...
- [OK] Cross-Namespace 11 Fixed...
- [OK] Cross-Namespace 12 Fixed...
- [OK] Cross-Namespace 13 Out-p...
- [OK] Cross-Namespace 14 Doubl...
- [OK] Cross-Namespace 15 Norma...
- [OK] Cross-Namespace 16 GdkPi...
- [OK] Cross-Namespace 17 Norma...
- [OK] Cross-Namespace 18 Cross...
- [OK] Cross-Namespace 19 Cross...
- [OK] No External Enum Decls (Stage 2) 0 Heade...
- [OK] No External Enum Decls (Stage 2) 1 gener...
- [OK] No External Enum Decls (Stage 2) 2 emit_...
- [OK] No External Bitfield Decls (Stage 3) 0 Heade...
- [OK] No External Bitfield Decls (Stage 3) 1 gener...
- [OK] No External Bitfield Decls (Stage 3) 2 emit_...
- [OK] Dependency Includes (Stage 4) 0 Heade...
- [OK] Dependency Includes (Stage 4) 1 Depen...
- [OK] Dependency Includes (Stage 4) 2 Inclu...
- [OK] Dependency Includes (Stage 4) 3 get_d...
- [OK] Dependency Includes (Stage 4) 4 No in...
- [OK] Dependency Exclusion (Stage 4) 0 GLib ...
- [OK] Dependency Exclusion (Stage 4) 1 GModu...
- [OK] Dependency Exclusion (Stage 4) 2 GObje...
- [OK] Dependency Exclusion (Stage 4) 3 Non-b...
- [OK] Dependency Exclusion (Stage 4) 4 get_d...
- [OK] C Stub Header Include (Stage 5) 0 C stu...
- [OK] C Stub Header Include (Stage 5) 1 C stu...
- [OK] C Stub Header Include (Stage 5) 2 C stu...
- [OK] C Stub Header Include (Stage 5) 3 C stu...
- [OK] C Stub Header Include (Stage 5) 4 Names...
- [OK] Integration Tests (Stage 8) 0 Heade...
- [OK] Integration Tests (Stage 8) 1 Heade...
- [OK] Integration Tests (Stage 8) 2 Heade...
- [OK] Integration Tests (Stage 8) 3 Base ...
- [OK] Integration Tests (Stage 8) 4 Gsk w...
- [OK] Integration Tests (Stage 8) 5 Compl...
- [OK] Compilation Tests (Stage 8) 0 Gdk h...
- [OK] Compilation Tests (Stage 8) 1 Gtk h...
- [OK] Compilation Tests (Stage 8) 2 Multi...
- [OK] Compilation Tests (Stage 8) 3 Heade...
- [OK] Compilation Tests (Stage 8) 4 Type ...
- [OK] Compilation Tests (Stage 8) 5 Compl...
- [OK] Compilation Tests (Stage 8) 6 Error...
- [OK] classify_type + Array Resolution (Phase 6) 0 same-...
- [OK] classify_type + Array Resolution (Phase 6) 1 same-...
- [OK] classify_type + Array Resolution (Phase 6) 2 same-...
- [OK] classify_type + Array Resolution (Phase 6) 3 same-...
- [OK] classify_type + Array Resolution (Phase 6) 4 same-...
- [OK] classify_type + Array Resolution (Phase 6) 5 same-...
- [OK] classify_type + Array Resolution (Phase 6) 6 same-...
- [OK] classify_type + Array Resolution (Phase 6) 7 cross...
- [OK] classify_type + Array Resolution (Phase 6) 8 cross...
- [OK] classify_type + Array Resolution (Phase 6) 9 cross...
- [OK] classify_type + Array Resolution (Phase 6) 10 cross...
- [OK] classify_type + Array Resolution (Phase 6) 11 cross...
- [OK] classify_type + Array Resolution (Phase 6) 12 cross...
- [OK] classify_type + Array Resolution (Phase 6) 13 cross...
- [OK] classify_type + Array Resolution (Phase 6) 14 array...
- [OK] classify_type + Array Resolution (Phase 6) 15 array...
- [OK] classify_type + Array Resolution (Phase 6) 16 array...
- [OK] classify_type + Array Resolution (Phase 6) 17 array...
- [OK] classify_type + Array Resolution (Phase 6) 18 array...
- [OK] Version Guard 0 parse...
- [OK] Version Guard 1 parse...
- [OK] Version Guard 2 parse...
- [OK] Version Guard 3 parse...
- [OK] Version Guard 4 parse...
- [OK] Version Guard 5 compa...
- [OK] Version Guard 6 compa...
- [OK] Version Guard 7 compa...
- [OK] Version Guard 8 compa...
- [OK] Version Guard 9 compa...
- [OK] Version Guard 10 resol...
- [OK] Version Guard 11 resol...
- [OK] Version Guard 12 resol...
- [OK] Version Guard 13 resol...
- [OK] Version Guard 14 resol...
- [OK] Version Guard 15 resol...
- [OK] Version Guard 16 resol...
- [OK] Version Guard 17 resol...
- [OK] Version Guard 18 emit_...
- [OK] Version Guard 19 emit_...
- [OK] Version Guard 20 emit_...
- [OK] Version Guard 21 emit_...
- [OK] Version Guard 22 emit_...
- [OK] Version Guard 23 emit_...
- [OK] Version Guard 24 emit_...
- [OK] Version Guard 25 emit_...
- [OK] Version Guard 26 emit_...
- [OK] Version Guard 27 emit_...
- [OK] Version Guard 28 emit_...
- [OK] Version Guard 29 c_gua...
- [OK] C Stub Version Guards 0 no_gu...
- [OK] C Stub Version Guards 1 no_gu...
- [OK] C Stub Version Guards 2 membe...
- [OK] C Stub Version Guards 3 membe...
- [OK] C Stub Version Guards 4 guard...
- [OK] C Stub Version Guards 5 fallb...
- [OK] C Stub Version Guards 6 fallb...
- [OK] C Stub Version Guards 7 fallb...
- [OK] C Stub Version Guards 8 fallb...
- [OK] C Stub Version Guards 9 fallb...
- [OK] Override Types 0 overr...
- [OK] Override Types 1 overr...
- [OK] Override Types 2 overr...
- [OK] Override Types 3 compo...
- [OK] Override Types 4 compo...
- [OK] Override Types 5 class...
- [OK] Override Types 6 inter...
- [OK] Override Types 7 recor...
- [OK] Override Types 8 enum_...
- [OK] Override Types 9 bitfi...
- [OK] Override Types 10 libra...
- [OK] Override Types 11 libra...
- [OK] Override Parser 0 minimal.
- [OK] Override Parser 1 no_li...
- [OK] Override Parser 2 class...
- [OK] Override Parser 3 class...
- [OK] Override Parser 4 class...
- [OK] Override Parser 5 class...
- [OK] Override Parser 6 inter...
- [OK] Override Parser 7 recor...
- [OK] Override Parser 8 enum_...
- [OK] Override Parser 9 bitfi...
- [OK] Override Parser 10 stand...
- [OK] Override Parser 11 multi...
- [OK] Override Parser 12 class...
- [OK] Override Parser 13 dupli...
- [OK] Override Parser 14 dupli...
- [OK] Override Parser 15 dupli...
- [OK] Override Parser 16 unkno...
- [OK] Override Parser 17 bare_...
- [OK] Override Parser 18 bare_...
- [OK] Override Parser 19 wrong...
- [OK] Override Parser 20 wrong...
- [OK] Override Parser 21 inval...
- [OK] Override Parser 22 malfo...
- [OK] Override Parser 23 not_o...
- [OK] Override Parser 24 bad_c...
- [OK] Override Parser 25 empty...
- [OK] Override Parser 26 many_...
- [OK] Override Parser Roundtrip 0 minimal.
- [OK] Override Parser Roundtrip 1 class...
- [OK] Override Parser Roundtrip 2 class...
- [OK] Override Parser Roundtrip 3 inter...
- [OK] Override Parser Roundtrip 4 record.
- [OK] Override Parser Roundtrip 5 enum.
- [OK] Override Parser Roundtrip 6 bitfi...
- [OK] Override Parser Roundtrip 7 stand...
- [OK] Override Parser Roundtrip 8 complex.
- [OK] Override Apply 0 class...
- [OK] Override Apply 1 class...
- [OK] Override Apply 2 metho...
- [OK] Override Apply 3 metho...
- [OK] Override Apply 4 metho...
- [OK] Override Apply 5 const...
- [OK] Override Apply 6 prope...
- [OK] Override Apply 7 signa...
- [OK] Override Apply 8 inter...
- [OK] Override Apply 9 inter...
- [OK] Override Apply 10 recor...
- [OK] Override Apply 11 recor...
- [OK] Override Apply 12 recor...
- [OK] Override Apply 13 enum ...
- [OK] Override Apply 14 enum ...
- [OK] Override Apply 15 enum ...
- [OK] Override Apply 16 bitfi...
- [OK] Override Apply 17 bitfi...
- [OK] Override Apply 18 stand...
- [OK] Override Apply 19 empty...
- [OK] Override Apply 20 unkno...
- [OK] Override Apply 21 unkno...
- [OK] Override Apply 22 class...
- [OK] Override Apply 23 combi...
- [OK] Override Extractor 0 since...
- [OK] Override Extractor 1 since...
- [OK] Override Extractor 2 since...
- [OK] Override Extractor 3 since...
- [OK] Override Extractor 4 since...
- [OK] Override Extractor 5 since...
- [OK] Override Extractor 6 since...
- [OK] Override Extractor 7 enum_...
- [OK] Override Extractor 8 enum_...
- [OK] Override Extractor 9 bitfi...
- [OK] Override Extractor 10 recor...
- [OK] Override E2E 0 e2e: ...
- [OK] Enum Member Version Guards 0 enum ...
- [OK] Enum Member Version Guards 1 enum ...
- [OK] Enum Member Version Guards 2 enum ...
- [OK] Enum Member Version Guards 3 enum ...
- [OK] Enum Member Version Guards 4 enum ...
- [OK] Enum Member Version Guards 5 enum ...
- [OK] Enum Member Version Guards 6 bitfi...
- [OK] Enum Member Version Guards 7 bitfi...
- [OK] Enum Member Version Guards 8 bitfi...
-
- Full test results in `~/.opam/5.4/.opam-switch/build/ocgtk.0.1~preview0/_build/default/ocgtk/src/tools/test_gir_gen/_build/_tests/GIR Generator'.
- Test Successful in 0.242s. 385 tests run.
- (cd _build/default/ocgtk/tests && ./test_closure_stress.exe)
- === Closure Stress Test ===
- Test 1: Creating 1000 closures...
- Created 100 closures
- Created 200 closures
- Created 300 closures
- Created 400 closures
- Created 500 closures
- Created 600 closures
- Created 700 closures
- Created 800 closures
- Created 900 closures
- Created 1000 closures
- Test 1: ✓ Created 1000 closures successfully
-
- Test 2: Creating and invoking 500 closures...
- Invoked 100 closures, counter=100
- Invoked 200 closures, counter=200
- Invoked 300 closures, counter=300
- Invoked 400 closures, counter=400
- Invoked 500 closures, counter=500
- Test 2: ✓ Counter reached 500
-
- Test 3: Rapid allocation (closures going out of scope)...
- Round 1: 100 closures created and released
- Round 2: 100 closures created and released
- Round 3: 100 closures created and released
- Round 4: 100 closures created and released
- Round 5: 100 closures created and released
- Round 6: 100 closures created and released
- Round 7: 100 closures created and released
- Round 8: 100 closures created and released
- Round 9: 100 closures created and released
- Round 10: 100 closures created and released
- Test 3: ✓ Completed 1000 allocation/releases
-
- Test 4: Nested closures with parameters...
- Test 4: ✓ All 100 closures received correct parameters: true
-
- === All Stress Tests Passed ===
- (cd _build/default/ocgtk/tests && ./test_closure_with_gc.exe)
- ==========================================================
- CLOSURE + GC INTERACTION TEST
- ==========================================================
-
- === Test WITHOUT explicit GC ===
- Created 25 closures, counter=25
- Created 50 closures, counter=50
- Created 75 closures, counter=75
- Created 100 closures, counter=100
- ✓ Completed: counter=100
-
- === Test with GC every 10 closures ===
- After 10 closures: GC passed, counter=10
- After 20 closures: GC passed, counter=20
- After 30 closures: GC passed, counter=30
- After 40 closures: GC passed, counter=40
- After 50 closures: GC passed, counter=50
- ✓ Completed: counter=50
-
- === Test WITH Gc.minor() after each closure ===
- Iteration 1: GC passed, counter=1
- Iteration 2: GC passed, counter=2
- Iteration 3: GC passed, counter=3
- Iteration 4: GC passed, counter=4
- Iteration 5: GC passed, counter=5
- Iteration 6: GC passed, counter=6
- Iteration 7: GC passed, counter=7
- Iteration 8: GC passed, counter=8
- Iteration 9: GC passed, counter=9
- Iteration 10: GC passed, counter=10
- ✓ Completed with GC: counter=10
-
- ==========================================================
- ALL TESTS PASSED - Implementation is GC-safe!
- ==========================================================
- (cd _build/default/ocgtk/tests && ./test_integration.exe)
- Testing `Integration Tests (Phase 3.3)'.
- This run has ID `PW53PZO0'.
-
- [OK] api_patterns 0 keyboard shortcuts.
- [OK] api_patterns 1 multi-click detection.
- [OK] api_patterns 2 modifier checking.
- [OK] gtk4_vs_gtk3 0 controllers not signals.
- [OK] gtk4_vs_gtk3 1 propagation phases.
- [SKIP] runtime_workflows 0 keyboard workflow.
- [SKIP] runtime_workflows 1 mouse workflow.
- [SKIP] runtime_workflows 2 click workflow.
- [SKIP] runtime_workflows 3 multiple controllers.
- [SKIP] runtime_workflows 4 propagation control.
- [SKIP] runtime_workflows 5 event stopping.
- [SKIP] runtime_workflows 6 controller_ops convenience.
- [SKIP] runtime_workflows 7 signal disconnect.
- [SKIP] runtime_workflows 8 keyboard + mouse.
- [SKIP] runtime_workflows 9 double-click.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/ocgtk.0.1~preview0/_build/default/ocgtk/tests/_build/_tests/Integration Tests U+0028Phase 3.3U+0029'.
- Test Successful in 0.001s. 5 tests run.
- (cd _build/default/ocgtk/tests && ./test_gtk_init.exe)
- Testing `GTK Initialization Tests'.
- This run has ID `LJHEGBUB'.
-
- [OK] api 0 GMain module.
- [OK] api 1 init exists.
- [OK] api 2 main loop exists.
- [SKIP] runtime 0 gtk_init.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/ocgtk.0.1~preview0/_build/default/ocgtk/tests/_build/_tests/GTK Initialization Tests'.
- Test Successful in 0.000s. 3 tests run.
- (cd _build/default/ocgtk/tests/gtk && ./test_range.exe)
- Testing `Range Widget Tests'.
- This run has ID `62J46NKW'.
-
- [SKIP] progress_bar 0 creation.
- [SKIP] progress_bar 1 fraction.
- [SKIP] progress_bar 2 pulse.
- [SKIP] progress_bar 3 text.
- [SKIP] progress_bar 4 inverted.
- [SKIP] range 0 fill_level.
- [SKIP] range 1 inverted.
- [SKIP] range 2 restrict_to_fill_level.
- [SKIP] range 3 round_digits.
- [SKIP] range 4 show_fill_level.
- [SKIP] range 5 slider_size_fixed.
- [SKIP] range 6 flippable.
- [SKIP] scale 0 creation_horizontal.
- [SKIP] scale 1 creation_vertical.
- [SKIP] scale 2 digits.
- [SKIP] scale 3 draw_value.
- [SKIP] scale 4 has_origin.
- [SKIP] scale 5 marks.
- [SKIP] level_bar 0 creation.
- [SKIP] level_bar 1 value.
- [SKIP] level_bar 2 min_max.
- [SKIP] level_bar 3 inverted.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/ocgtk.0.1~preview0/_build/default/ocgtk/tests/gtk/_build/_tests/Range Widget Tests'.
- Test Successful in 0.001s. 0 test run.
- Fontconfig error: No writable cache directories
- Fontconfig error: No writable cache directories
- (cd _build/default/ocgtk/tests/gtk && ./test_variance.exe)
- Testing `Gobject.obj Variance Tests'.
- This run has ID `UH1925JY'.
-
- [SKIP] upcast 0 button_to_widget.
- [SKIP] upcast 1 box_to_widget.
- [SKIP] upcast 2 upcast_preserves_functionality.
- [SKIP] upcast 3 multiple_upcasts.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/ocgtk.0.1~preview0/_build/default/ocgtk/tests/gtk/_build/_tests/Gobject.obj Variance Tests'.
- Test Successful in 0.000s. 0 test run.
- Fontconfig error: No writable cache directories
- Fontconfig error: No writable cache directories
- (cd _build/default/ocgtk/tests && ./test_gobject_stress.exe)
- Testing `GObject Memory Stress Tests (KNOWN TO SEGFAULT)'.
- This run has ID `H2FUBWFU'.
-
- [SKIP] GValue GC Stress 0 GValue lifecycle with GC.
- [SKIP] GValue GC Stress 1 GC interaction.
- [SKIP] GValue GC Stress 2 Multiple GValue types with GC.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/ocgtk.0.1~preview0/_build/default/ocgtk/tests/_build/_tests/GObject Memory Stress Tests U+0028KNOWN TO SEGFAULTU+0029'.
- Test Successful in 0.000s. 0 test run.
- Fontconfig error: No writable cache directories
- Fontconfig error: No writable cache directories
- (cd _build/default/ocgtk/tests/gtk && ./test_string_list.exe)
- Testing `Gtk.StringList Tests'.
- This run has ID `OQI82IZZ'.
-
- [OK] Module 0 module_accessible.
- [OK] Module 1 type.
- [SKIP] Creation 0 empty_list.
- [SKIP] Creation 1 empty_string.
- [SKIP] Take Method (String_copy) 0 basic.
- [SKIP] Take Method (String_copy) 1 independence.
- [SKIP] Take Method (String_copy) 2 ownership.
- [SKIP] Take Method (String_copy) 3 special_chars.
- [SKIP] Take Method (String_copy) 4 unicode.
- [SKIP] Take Method (String_copy) 5 long_string.
- [SKIP] Append Method 0 basic.
- [SKIP] Append Method 1 append_vs_take.
- [SKIP] Get String (Extraction) 0 valid_index.
- [SKIP] Get String (Extraction) 1 negative_index.
- [SKIP] Get String (Extraction) 2 out_of_bounds.
- [SKIP] Get String (Extraction) 3 empty_list.
- [SKIP] Get String (Extraction) 4 returns_copy.
- [SKIP] Remove 0 first.
- [SKIP] Remove 1 last.
- [SKIP] Remove 2 invalid.
- [SKIP] N Items 0 empty.
- [SKIP] N Items 1 operations.
- [SKIP] Wrapper 0 gstring_list.
- [SKIP] Integration 0 mixed_operations.
- [SKIP] Integration 1 gc_survival.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/ocgtk.0.1~preview0/_build/default/ocgtk/tests/gtk/_build/_tests/Gtk.StringList Tests'.
- Test Successful in 0.002s. 2 tests run.
- Fontconfig error: No writable cache directories
- Fontconfig error: No writable cache directories
- (cd _build/default/ocgtk/tests/gtk && ./test_widget.exe)
- Testing `Gtk.Widget Tests (Phase 3.1)'.
- This run has ID `J370B9QZ'.
-
- [SKIP] creation 0 widget_creation.
- [SKIP] visibility 0 show/hide.
- [SKIP] size 0 size_request.
- [SKIP] focus 0 focusable.
- [SKIP] queue 0 queue_operations.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/ocgtk.0.1~preview0/_build/default/ocgtk/tests/gtk/_build/_tests/Gtk.Widget Tests U+0028Phase 3.1U+0029'.
- Test Successful in 0.000s. 0 test run.
- Fontconfig error: No writable cache directories
- Fontconfig error: No writable cache directories
- (cd _build/default/ocgtk/tests/gtk && ./test_button.exe)
- Testing `Button Tests'.
- This run has ID `3PFRCRVL'.
-
- [SKIP] low_level_button 0 button_creation.
- [SKIP] low_level_button 1 button_with_label.
- [SKIP] low_level_button 2 button_with_mnemonic.
- [SKIP] low_level_button 3 button_icon_name.
- [SKIP] low_level_button 4 button_properties.
- [SKIP] low_level_check_button 0 check_button_creation.
- [SKIP] low_level_check_button 1 check_button_with_label.
- [SKIP] low_level_check_button 2 check_button_grouping.
- [SKIP] low_level_check_button 3 check_button_inconsistent.
- [SKIP] low_level_toggle_button 0 toggle_button_creation.
- [SKIP] low_level_toggle_button 1 toggle_button_with_label.
- [SKIP] low_level_toggle_button 2 toggle_button_toggled.
- [SKIP] high_level 0 gbutton.
- [SKIP] high_level 1 gbutton_icon.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/ocgtk.0.1~preview0/_build/default/ocgtk/tests/gtk/_build/_tests/Button Tests'.
- Test Successful in 0.001s. 0 test run.
- Fontconfig error: No writable cache directories
- Fontconfig error: No writable cache directories
- (cd _build/default/ocgtk/tests/gtk && ./test_box.exe)
- Testing `Gtk.Box Tests (Phase 4.1)'.
- This run has ID `1G9V1SFE'.
-
- [OK] module 0 module_accessible.
- [OK] module 1 type_constructors.
- [SKIP] creation 0 box_creation.
- [SKIP] properties 0 box_properties.
- [SKIP] properties 1 packing_properties.
- [SKIP] high_level 0 gbox_wrapper.
- [SKIP] children 0 child_management.
- [SKIP] as_widget 0 as_widget_conversion.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/ocgtk.0.1~preview0/_build/default/ocgtk/tests/gtk/_build/_tests/Gtk.Box Tests U+0028Phase 4.1U+0029'.
- Test Successful in 0.000s. 2 tests run.
- Fontconfig error: No writable cache directories
- Fontconfig error: No writable cache directories
-> compiled ocgtk.0.1~preview0
-> removed ocgtk.0.1~preview0
-> installed ocgtk.0.1~preview0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-05 06:29.27 ---> saved as "dc1c81b57e61325f2c0f07f3cd6eb90aafef392d300c81019a8b2967914a42d6"
Job succeeded
2026-04-05 06:29.31: Job succeeded