- github
- ocaml
- opam-repository
- 840d56
- distributions,fedora-43-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 fedora-43-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:fedora-43-ocaml-5.4@sha256:ee186ded9e345e55d4230a8edfeb84c47deaa7f722133ccaecbfc2b88745b5d4
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 "\"fedora-43\""; 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 "\"fedora-43\""; 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:fedora-43-ocaml-5.4@sha256:ee186ded9e345e55d4230a8edfeb84c47deaa7f722133ccaecbfc2b88745b5d4-ocgtk.0.1~preview0-840d56c72781bfe3e8253de0d7b9dbc81365b87c"
2026-04-05 06:24.23: Using OBuilder spec:
((from ocaml/opam:fedora-43-ocaml-5.4@sha256:ee186ded9e345e55d4230a8edfeb84c47deaa7f722133ccaecbfc2b88745b5d4)
(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 \"\\\"fedora-43\\\"\"; 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 \"\\\"fedora-43\\\"\"; 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:fedora-43-ocaml-5.4@sha256:ee186ded9e345e55d4230a8edfeb84c47deaa7f722133ccaecbfc2b88745b5d4)
2026-04-05 06:25.58 ---> saved as "d25c992ad2ea4d7343b2e5524c8d01191af3bcc5617b83e1c8534cf674048258"
/: (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:25.58 ---> saved as "8def26fdcc7bf5f4b96c6b4fa181245aada67baeae0cc229d5586e7a5b12d1e8"
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-05 06:26.18 ---> saved as "fcf1d2a828315e8435161875d3f668101096bdc88d61c06c3e72af092924223a"
/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=fedora os-version=43
# 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.19 ---> saved as "cf8ffe05ba2fb593d326b1217bcb66b16bc379893272da73af88f533ef4bc1d8"
/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.31 ---> saved as "4c8657d5bf21f18aedc940953a667dc75df987e6055e340d2c0cb7e87bd7a489"
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-05 06:26.38 ---> saved as "029d89319fec861dcfbfb4f9d981169a5bafb0e32e323df8a4ebda4689a01b0b"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-05 06:26.57 ---> saved as "066940f15520db01acaa18e0e6ed773d10476efdddecf5cfd70762d7ae0c4318"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 43 openh264 (From Cisco) - x86_ 100% | 1.8 KiB/s | 986.0 B | 00m01s
- Fedora 43 - x86_64 - Updates 100% | 25.5 KiB/s | 6.1 KiB | 00m00s
- Fedora 43 - x86_64 100% | 128.1 KiB/s | 21.3 KiB | 00m00s
- Repositories loaded.
- Metadata cache created.
2026-04-05 06:27.03 ---> saved as "e73b7f425f6d33c3256a27a19c5a9e604ec218b304b4aa445719ccca13c9c362"
/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.03 ---> saved as "3b2bebd1eb4dbc29d01161f83697a7e7eaeb3f1ac5950f0287ca944d41488302"
/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 \"\\\"fedora-43\\\"\"; 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/sbin/sudo "yum" "install" "-y" "gtk4-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package Arch Version Repository Size
- Upgrading:
- glib2 x86_64 2.86.4-2.fc43 updates 15.0 MiB
- replacing glib2 x86_64 2.86.4-1.fc43 updates 15.0 MiB
- zlib-ng-compat x86_64 2.3.3-2.fc43 updates 161.7 KiB
- replacing zlib-ng-compat x86_64 2.3.3-1.fc43 updates 161.7 KiB
- Installing:
- gtk4-devel x86_64 4.20.4-1.fc43 updates 22.7 MiB
- Installing dependencies:
- ModemManager-glib x86_64 1.24.2-1.fc43 fedora 1.5 MiB
- abattis-cantarell-vf-fonts noarch 0.301-15.fc43 fedora 192.7 KiB
- adobe-source-code-pro-fonts noarch 2.042.1.062.1.026-7.fc43 fedora 1.6 MiB
- adwaita-cursor-theme noarch 49.0-1.fc43 fedora 11.4 MiB
- adwaita-icon-theme noarch 49.0-1.fc43 fedora 1.2 MiB
- adwaita-icon-theme-legacy noarch 46.2-4.fc43 fedora 2.1 MiB
- alsa-lib x86_64 1.2.15.3-1.fc43 updates 1.5 MiB
- at-spi2-atk x86_64 2.58.4-1.fc43 updates 283.7 KiB
- at-spi2-core x86_64 2.58.4-1.fc43 updates 1.5 MiB
- atk x86_64 2.58.4-1.fc43 updates 248.6 KiB
- avahi-glib x86_64 0.9~rc2-6.fc43 fedora 19.6 KiB
- avahi-libs x86_64 0.9~rc2-6.fc43 fedora 171.6 KiB
- bluez-libs x86_64 5.86-4.fc43 updates 198.3 KiB
- brotli x86_64 1.2.0-1.fc43 updates 33.6 KiB
- brotli-devel x86_64 1.2.0-1.fc43 updates 65.9 KiB
- bzip2-devel x86_64 1.0.8-21.fc43 fedora 309.8 KiB
- cairo x86_64 1.18.4-2.fc43 fedora 1.8 MiB
- cairo-devel x86_64 1.18.4-2.fc43 fedora 2.3 MiB
- cairo-gobject x86_64 1.18.4-2.fc43 fedora 31.1 KiB
- cairo-gobject-devel x86_64 1.18.4-2.fc43 fedora 7.0 KiB
- cdparanoia-libs x86_64 10.2-48.fc43 fedora 113.5 KiB
- cmake-filesystem x86_64 3.31.11-1.fc43 updates 0.0 B
- colord-libs x86_64 1.4.8-2.fc43 fedora 830.7 KiB
- cups-filesystem noarch 1:2.4.16-7.fc43 updates 0.0 B
- cups-libs x86_64 1:2.4.16-7.fc43 updates 618.7 KiB
- dbus x86_64 1:1.16.0-4.fc43 fedora 0.0 B
- default-fonts-core-sans noarch 4.2-5.fc43 fedora 11.9 KiB
- duktape x86_64 2.7.0-10.fc43 fedora 615.8 KiB
- fdk-aac-free x86_64 2.0.0-16.fc43 fedora 611.8 KiB
- fftw-libs-single x86_64 3.3.10-16.fc43 fedora 3.6 MiB
- flac-libs x86_64 1.5.0-5.fc43 updates 611.5 KiB
- fontconfig x86_64 2.17.0-3.fc43 fedora 765.9 KiB
- fontconfig-devel x86_64 2.17.0-3.fc43 fedora 123.6 KiB
- fonts-filesystem noarch 1:2.0.5-23.fc43 fedora 0.0 B
- freetype x86_64 2.13.3-3.fc43 fedora 850.2 KiB
- freetype-devel x86_64 2.13.3-3.fc43 fedora 8.5 MiB
- fribidi x86_64 1.0.16-3.fc43 fedora 190.3 KiB
- fribidi-devel x86_64 1.0.16-3.fc43 fedora 78.0 KiB
- fuse-common x86_64 3.16.2-5.fc42 fedora 38.0 B
- fuse3 x86_64 3.16.2-5.fc42 fedora 129.7 KiB
- fuse3-libs x86_64 3.16.2-5.fc42 fedora 281.5 KiB
- gdk-pixbuf2 x86_64 2.44.4-1.fc43 updates 2.5 MiB
- gdk-pixbuf2-devel x86_64 2.44.4-1.fc43 updates 2.3 MiB
- geoclue2 x86_64 2.8.0-1.fc43 updates 401.7 KiB
- glib2-devel x86_64 2.86.4-2.fc43 updates 15.7 MiB
- glycin-devel x86_64 2.0.8-1.fc43 updates 126.1 KiB
- glycin-libs x86_64 2.0.8-1.fc43 updates 4.2 MiB
- glycin-loaders x86_64 2.0.8-1.fc43 updates 12.7 MiB
- google-noto-fonts-common noarch 20251101-2.fc43 updates 17.7 KiB
- google-noto-sans-vf-fonts noarch 20251101-2.fc43 updates 1.4 MiB
- graphene x86_64 1.10.8-2.fc43 fedora 158.4 KiB
- graphene-devel x86_64 1.10.8-2.fc43 fedora 2.3 MiB
- graphite2 x86_64 1.3.14-19.fc43 fedora 191.8 KiB
- graphite2-devel x86_64 1.3.14-19.fc43 fedora 49.3 KiB
- gsettings-desktop-schemas x86_64 49.1-3.fc43 updates 5.7 MiB
- gsm x86_64 1.0.23-1.fc43 fedora 65.3 KiB
- gssdp x86_64 1.6.4-5.fc43 updates 146.4 KiB
- gstreamer1 x86_64 1.26.11-1.fc43 updates 5.4 MiB
- gstreamer1-plugins-bad-free-libs x86_64 1.26.11-1.fc43 updates 3.1 MiB
- gstreamer1-plugins-base x86_64 1.26.11-1.fc43 updates 7.4 MiB
- gtk-update-icon-cache x86_64 3.24.52-1.fc43 updates 62.2 KiB
- gtk3 x86_64 3.24.52-1.fc43 updates 22.5 MiB
- gtk4 x86_64 4.20.4-1.fc43 updates 26.9 MiB
- gupnp x86_64 1.6.9-2.fc43 fedora 308.0 KiB
- gupnp-igd x86_64 1.6.0-7.fc43 fedora 66.7 KiB
- harfbuzz x86_64 11.5.1-2.fc43 updates 2.8 MiB
- harfbuzz-cairo x86_64 11.5.1-2.fc43 updates 48.1 KiB
- harfbuzz-devel x86_64 11.5.1-2.fc43 updates 5.3 MiB
- harfbuzz-icu x86_64 11.5.1-2.fc43 updates 15.4 KiB
- hicolor-icon-theme noarch 0.18-2.fc43 fedora 72.4 KiB
- highway x86_64 1.3.0-1.fc43 updates 5.5 MiB
- hwdata noarch 0.406-1.fc43 updates 9.9 MiB
- iso-codes noarch 4.18.0-2.fc43 fedora 21.5 MiB
- jbigkit-libs x86_64 2.1-32.fc43 fedora 113.5 KiB
- json-glib x86_64 1.10.8-4.fc43 updates 592.3 KiB
- lame-libs x86_64 3.100-20.fc43 fedora 1.2 MiB
- lcms2 x86_64 2.16-6.fc43 fedora 433.7 KiB
- lcms2-devel x86_64 2.16-6.fc43 fedora 135.7 KiB
- libXcomposite x86_64 0.4.6-6.fc43 fedora 40.5 KiB
- libXcursor x86_64 1.2.3-3.fc43 fedora 53.4 KiB
- libXdamage x86_64 1.1.6-6.fc43 fedora 39.6 KiB
- libXext x86_64 1.3.6-4.fc43 fedora 90.0 KiB
- libXext-devel x86_64 1.3.6-4.fc43 fedora 98.9 KiB
- libXfixes x86_64 6.0.1-6.fc43 fedora 26.2 KiB
- libXft x86_64 2.3.8-9.fc43 fedora 164.4 KiB
- libXft-devel x86_64 2.3.8-9.fc43 fedora 31.7 KiB
- libXi x86_64 1.8.2-3.fc43 fedora 80.6 KiB
- libXinerama x86_64 1.1.5-9.fc43 fedora 15.0 KiB
- libXrandr x86_64 1.5.4-6.fc43 fedora 51.8 KiB
- libXrender x86_64 0.9.12-3.fc43 fedora 46.0 KiB
- libXrender-devel x86_64 0.9.12-3.fc43 fedora 50.1 KiB
- libXtst x86_64 1.2.5-3.fc43 fedora 33.5 KiB
- libXv x86_64 1.0.13-3.fc43 fedora 26.0 KiB
- libXxf86vm x86_64 1.1.6-3.fc43 fedora 25.3 KiB
- libaom x86_64 3.13.1-1.fc43 fedora 5.0 MiB
- libasyncns x86_64 0.8-31.fc43 fedora 55.5 KiB
- libblkid-devel x86_64 2.41.3-7.fc43 updates 44.9 KiB
- libcanberra x86_64 0.30-38.fc43 fedora 266.5 KiB
- libcloudproviders x86_64 0.3.6-2.fc43 fedora 124.3 KiB
- libdatrie x86_64 0.2.13-12.fc43 fedora 53.8 KiB
- libdatrie-devel x86_64 0.2.13-12.fc43 fedora 558.1 KiB
- libdav1d x86_64 1.5.3-1.fc43 updates 1.7 MiB
- libdisplay-info x86_64 0.2.0-4.fc43 fedora 215.9 KiB
- libdrm x86_64 2.4.131-1.fc43 updates 404.7 KiB
- libebur128 x86_64 1.2.6-14.fc43 fedora 39.3 KiB
- libepoxy x86_64 1.5.10-11.fc43 fedora 1.1 MiB
- libffi-devel x86_64 3.5.2-1.fc43 updates 33.9 KiB
- libglvnd x86_64 1:1.7.0-8.fc43 fedora 526.1 KiB
- libglvnd-egl x86_64 1:1.7.0-8.fc43 fedora 64.7 KiB
- libglvnd-glx x86_64 1:1.7.0-8.fc43 fedora 601.2 KiB
- libgudev x86_64 238-8.fc43 fedora 83.8 KiB
- libgusb x86_64 0.4.9-4.fc43 fedora 162.0 KiB
- libheif x86_64 1.20.2-6.fc43 fedora 1.6 MiB
- libicu-devel x86_64 77.1-1.fc43 fedora 5.0 MiB
- libjpeg-turbo x86_64 3.1.3-1.fc43 updates 806.3 KiB
- libjxl x86_64 1:0.11.1-7.fc43 updates 4.1 MiB
- liblc3 x86_64 1.1.3-5.fc43 fedora 170.8 KiB
- libldac x86_64 2.0.2.3-18.fc43 fedora 74.2 KiB
- liblerc x86_64 4.0.0-9.fc43 fedora 624.1 KiB
- libmount-devel x86_64 2.41.3-7.fc43 updates 65.5 KiB
- libnice x86_64 0.1.22-8.fc43 fedora 497.7 KiB
- libnotify x86_64 0.8.8-1.fc43 updates 126.6 KiB
- libogg x86_64 2:1.3.6-2.fc43 updates 45.6 KiB
- libopenjph x86_64 0.22.0-2.fc43 fedora 466.2 KiB
- libpciaccess x86_64 0.16-16.fc43 fedora 44.5 KiB
- libpng x86_64 2:1.6.55-1.fc43 updates 241.7 KiB
- libpng-devel x86_64 2:1.6.55-1.fc43 updates 887.7 KiB
- libproxy x86_64 0.5.12-1.fc43 updates 102.3 KiB
- librsvg2 x86_64 2.61.0-5.fc43 updates 5.1 MiB
- libsbc x86_64 2.0-7.fc43 fedora 93.4 KiB
- libseccomp-devel x86_64 2.6.0-2.fc43 fedora 114.3 KiB
- libselinux-devel x86_64 3.9-5.fc43 fedora 127.3 KiB
- libsepol-devel x86_64 3.9-2.fc43 fedora 121.4 KiB
- libsndfile x86_64 1.2.2-10.fc43 fedora 550.1 KiB
- libsoup3 x86_64 3.6.6-2.fc43 updates 1.7 MiB
- libstemmer x86_64 3.0.1-8.fc43 fedora 661.5 KiB
- libtdb x86_64 1.4.14-3.fc43 fedora 100.5 KiB
- libthai x86_64 0.1.29-11.fc43 fedora 783.4 KiB
- libthai-devel x86_64 0.1.29-11.fc43 fedora 644.3 KiB
- libtheora x86_64 1:1.1.1-40.fc43 fedora 477.3 KiB
- libtiff x86_64 4.7.1-1.fc43 updates 624.4 KiB
- libtinysparql x86_64 3.10.1-5.fc43 updates 995.0 KiB
- libunwind x86_64 1.8.1-3.fc43 fedora 194.1 KiB
- libva x86_64 2.22.0-6.fc43 fedora 329.4 KiB
- libvisual x86_64 1:0.4.2-3.fc43 fedora 452.7 KiB
- libvmaf x86_64 3.0.0-4.fc43 fedora 827.0 KiB
- libvorbis x86_64 1:1.3.7-13.fc43 fedora 833.4 KiB
- libwayland-client x86_64 1.24.0-1.fc43 fedora 62.0 KiB
- libwayland-cursor x86_64 1.24.0-1.fc43 fedora 37.3 KiB
- libwayland-egl x86_64 1.24.0-1.fc43 fedora 12.4 KiB
- libwayland-server x86_64 1.24.0-1.fc43 fedora 78.5 KiB
- libwebp x86_64 1.6.0-2.fc43 fedora 956.6 KiB
- libxkbcommon x86_64 1.11.0-1.fc43 fedora 408.2 KiB
- libxml2-devel x86_64 2.12.10-5.fc43 fedora 3.4 MiB
- libxshmfence x86_64 1.3.2-7.fc43 fedora 12.4 KiB
- lm_sensors-libs x86_64 3.6.0-23.fc43 fedora 85.8 KiB
- lzo x86_64 2.10-15.fc43 fedora 178.9 KiB
- lzo-devel x86_64 2.10-15.fc43 fedora 212.2 KiB
- lzo-minilzo x86_64 2.10-15.fc43 fedora 36.7 KiB
- mesa-dri-drivers x86_64 25.3.6-3.fc43 updates 48.8 MiB
- mesa-filesystem x86_64 25.3.6-3.fc43 updates 3.6 KiB
- mesa-libEGL x86_64 25.3.6-3.fc43 updates 310.4 KiB
- mesa-libGL x86_64 25.3.6-3.fc43 updates 286.0 KiB
- mesa-libgbm x86_64 25.3.6-3.fc43 updates 19.7 KiB
- mpg123-libs x86_64 1.32.10-2.fc43 fedora 814.0 KiB
- openh264 x86_64 2.6.0-2.fc43 fedora-cisco-openh264 1.1 MiB
- openjpeg x86_64 2.5.4-1.fc43 fedora 456.3 KiB
- opus x86_64 1.5.2-3.fc43 fedora 427.6 KiB
- orc x86_64 0.4.41-2.fc43 fedora 726.3 KiB
- pango x86_64 1.57.1-1.fc43 updates 1.0 MiB
- pango-devel x86_64 1.57.1-1.fc43 updates 1.5 MiB
- pcre2-devel x86_64 10.47-1.fc43 updates 2.1 MiB
- pcre2-utf16 x86_64 10.47-1.fc43 updates 639.2 KiB
- pcre2-utf32 x86_64 10.47-1.fc43 updates 611.1 KiB
- pipewire-libs x86_64 1.4.11-1.fc43 updates 8.6 MiB
- pixman x86_64 0.46.2-2.fc43 fedora 710.3 KiB
- pixman-devel x86_64 0.46.2-2.fc43 fedora 56.1 KiB
- pulseaudio-libs x86_64 17.0-9.fc43 updates 3.4 MiB
- python3-packaging noarch 25.0-7.fc43 fedora 607.4 KiB
- rav1e-libs x86_64 0.8.1-2.fc43 updates 3.1 MiB
- redhat-display-fonts noarch 4.1.0-2.fc43 fedora 963.9 KiB
- redhat-text-fonts noarch 4.1.0-2.fc43 fedora 788.2 KiB
- shared-mime-info x86_64 2.4-2.fc43 fedora 5.2 MiB
- sound-theme-freedesktop noarch 0.8-24.fc43 fedora 460.4 KiB
- spirv-tools-libs x86_64 2026.1-2.fc43 updates 5.9 MiB
- svt-av1-libs x86_64 3.1.2-1.fc43 fedora 5.6 MiB
- sysprof-capture-devel x86_64 49.0-1.fc43 fedora 803.7 KiB
- vulkan-headers noarch 1.4.341.0-1.fc43 updates 36.1 MiB
- vulkan-loader x86_64 1.4.341.0-1.fc43 updates 569.6 KiB
- vulkan-loader-devel x86_64 1.4.341.0-1.fc43 updates 8.0 KiB
- wayland-devel x86_64 1.24.0-1.fc43 fedora 691.9 KiB
- webrtc-audio-processing x86_64 1.3-9.fc43 fedora 1.4 MiB
- xdg-desktop-portal x86_64 1.20.3-2.fc43 fedora 1.8 MiB
- xkeyboard-config noarch 2.46-1.fc43 updates 10.2 MiB
- xml-common noarch 0.6.3-67.fc43 fedora 78.4 KiB
- xprop x86_64 1.2.8-4.fc43 fedora 54.7 KiB
- xz-devel x86_64 1:5.8.1-4.fc43 updates 258.8 KiB
- zlib-ng-compat-devel x86_64 2.3.3-2.fc43 updates 107.0 KiB
- Installing weak dependencies:
- adwaita-mono-fonts noarch 49.0-2.fc43 fedora 5.5 MiB
- adwaita-sans-fonts noarch 49.0-2.fc43 fedora 1.7 MiB
- dconf x86_64 0.49.0-1.fc43 fedora 307.5 KiB
- gi-docgen-fonts noarch 2026.1-3.fc43 updates 0.0 B
- glib-networking x86_64 2.80.1-3.fc43 fedora 742.9 KiB
- libcanberra-gtk3 x86_64 0.30-38.fc43 fedora 70.7 KiB
- low-memory-monitor x86_64 2.1-13.fc43 fedora 66.0 KiB
- mesa-va-drivers x86_64 25.3.6-3.fc43 updates 115.0 B
- mesa-vulkan-drivers x86_64 25.3.6-3.fc43 updates 152.8 MiB
- tinysparql x86_64 3.10.1-5.fc43 updates 2.5 MiB
- xdg-desktop-portal-gtk x86_64 1.15.3-2.fc43 fedora 473.3 KiB
-
- Transaction Summary:
- Installing: 210 packages
- Upgrading: 2 packages
- Replacing: 2 packages
-
- Total size of inbound packages is 127 MiB. Need to download 127 MiB.
- After this operation, 585 MiB extra will be used (install 600 MiB, remove 15 MiB).
- [ 1/212] cairo-gobject-0:1.18.4-2.fc43 100% | 199.2 KiB/s | 16.9 KiB | 00m00s
- [ 2/212] cairo-0:1.18.4-2.fc43.x86_64 100% | 5.4 MiB/s | 729.3 KiB | 00m00s
- [ 3/212] colord-libs-0:1.4.8-2.fc43.x8 100% | 3.1 MiB/s | 230.5 KiB | 00m00s
- [ 4/212] fontconfig-0:2.17.0-3.fc43.x8 100% | 8.1 MiB/s | 272.2 KiB | 00m00s
- [ 5/212] fribidi-0:1.0.16-3.fc43.x86_6 100% | 6.5 MiB/s | 53.3 KiB | 00m00s
- [ 6/212] graphene-0:1.10.8-2.fc43.x86_ 100% | 7.5 MiB/s | 61.3 KiB | 00m00s
- [ 7/212] libXcursor-0:1.2.3-3.fc43.x86 100% | 4.3 MiB/s | 31.2 KiB | 00m00s
- [ 8/212] libXdamage-0:1.1.6-6.fc43.x86 100% | 3.8 MiB/s | 23.3 KiB | 00m00s
- [ 9/212] libXext-0:1.3.6-4.fc43.x86_64 100% | 5.4 MiB/s | 39.1 KiB | 00m00s
- [ 10/212] libXfixes-0:6.0.1-6.fc43.x86_ 100% | 2.7 MiB/s | 19.1 KiB | 00m00s
- [ 11/212] libXi-0:1.8.2-3.fc43.x86_64 100% | 5.6 MiB/s | 40.3 KiB | 00m00s
- [ 12/212] libXinerama-0:1.1.5-9.fc43.x8 100% | 2.0 MiB/s | 14.2 KiB | 00m00s
- [ 13/212] libXrandr-0:1.5.4-6.fc43.x86_ 100% | 3.8 MiB/s | 27.6 KiB | 00m00s
- [ 14/212] libepoxy-0:1.5.10-11.fc43.x86 100% | 8.3 MiB/s | 229.5 KiB | 00m00s
- [ 15/212] libwayland-egl-0:1.24.0-1.fc4 100% | 2.0 MiB/s | 12.4 KiB | 00m00s
- [ 16/212] libwayland-client-0:1.24.0-1. 100% | 1.0 MiB/s | 33.6 KiB | 00m00s
- [ 17/212] libxkbcommon-0:1.11.0-1.fc43. 100% | 6.8 MiB/s | 174.3 KiB | 00m00s
- [ 18/212] freetype-0:2.13.3-3.fc43.x86_ 100% | 7.5 MiB/s | 412.1 KiB | 00m00s
- [ 19/212] libXrender-0:0.9.12-3.fc43.x8 100% | 3.7 MiB/s | 26.9 KiB | 00m00s
- [ 20/212] lzo-0:2.10-15.fc43.x86_64 100% | 5.2 MiB/s | 69.4 KiB | 00m00s
- [ 21/212] pixman-0:0.46.2-2.fc43.x86_64 100% | 4.8 MiB/s | 292.5 KiB | 00m00s
- [ 22/212] lcms2-0:2.16-6.fc43.x86_64 100% | 4.4 MiB/s | 182.8 KiB | 00m00s
- [ 23/212] libgusb-0:0.4.9-4.fc43.x86_64 100% | 1.1 MiB/s | 64.5 KiB | 00m00s
- [ 24/212] default-fonts-core-sans-0:4.2 100% | 766.6 KiB/s | 29.9 KiB | 00m00s
- [ 25/212] fonts-filesystem-1:2.0.5-23.f 100% | 1.2 MiB/s | 8.7 KiB | 00m00s
- [ 26/212] xml-common-0:0.6.3-67.fc43.no 100% | 117.6 KiB/s | 31.0 KiB | 00m00s
- [ 27/212] gtk4-devel-0:4.20.4-1.fc43.x8 100% | 5.3 MiB/s | 4.4 MiB | 00m01s
- [ 28/212] hicolor-icon-theme-0:0.18-2.f 100% | 1.5 MiB/s | 65.9 KiB | 00m00s
- [ 29/212] libwayland-cursor-0:1.24.0-1. 100% | 3.1 MiB/s | 18.9 KiB | 00m00s
- [ 30/212] abattis-cantarell-vf-fonts-0: 100% | 6.9 MiB/s | 120.1 KiB | 00m00s
- [ 31/212] adwaita-cursor-theme-0:49.0-1 100% | 4.5 MiB/s | 380.1 KiB | 00m00s
- [ 32/212] gtk4-0:4.20.4-1.fc43.x86_64 100% | 8.2 MiB/s | 6.4 MiB | 00m01s
- [ 33/212] cairo-devel-0:1.18.4-2.fc43.x 100% | 3.9 MiB/s | 191.8 KiB | 00m00s
- [ 34/212] cairo-gobject-devel-0:1.18.4- 100% | 1.5 MiB/s | 10.9 KiB | 00m00s
- [ 35/212] adwaita-icon-theme-0:49.0-1.f 100% | 1.2 MiB/s | 403.9 KiB | 00m00s
- [ 36/212] avahi-libs-0:0.9~rc2-6.fc43.x 100% | 2.2 MiB/s | 69.0 KiB | 00m00s
- [ 37/212] cups-filesystem-1:2.4.16-7.fc 100% | 410.8 KiB/s | 12.3 KiB | 00m00s
- [ 38/212] gdk-pixbuf2-0:2.44.4-1.fc43.x 100% | 4.2 MiB/s | 484.9 KiB | 00m00s
- [ 39/212] shared-mime-info-0:2.4-2.fc43 100% | 3.0 MiB/s | 399.7 KiB | 00m00s
- [ 40/212] gdk-pixbuf2-devel-0:2.44.4-1. 100% | 2.1 MiB/s | 369.3 KiB | 00m00s
- [ 41/212] adwaita-icon-theme-legacy-0:4 100% | 3.1 MiB/s | 2.5 MiB | 00m01s
- [ 42/212] cups-libs-1:2.4.16-7.fc43.x86 100% | 359.7 KiB/s | 260.8 KiB | 00m01s
- [ 43/212] python3-packaging-0:25.0-7.fc 100% | 2.4 MiB/s | 161.5 KiB | 00m00s
- [ 44/212] graphene-devel-0:1.10.8-2.fc4 100% | 3.5 MiB/s | 168.5 KiB | 00m00s
- [ 45/212] libunwind-0:1.8.1-3.fc43.x86_ 100% | 3.0 MiB/s | 76.5 KiB | 00m00s
- [ 46/212] glib2-devel-0:2.86.4-2.fc43.x 100% | 3.7 MiB/s | 1.5 MiB | 00m00s
- [ 47/212] gstreamer1-0:1.26.11-1.fc43.x 100% | 9.3 MiB/s | 1.7 MiB | 00m00s
- [ 48/212] libva-0:2.22.0-6.fc43.x86_64 100% | 2.5 MiB/s | 115.9 KiB | 00m00s
- [ 49/212] libnice-0:0.1.22-8.fc43.x86_6 100% | 3.3 MiB/s | 200.2 KiB | 00m00s
- [ 50/212] gupnp-igd-0:1.6.0-7.fc43.x86_ 100% | 1.7 MiB/s | 33.5 KiB | 00m00s
- [ 51/212] libglvnd-glx-1:1.7.0-8.fc43.x 100% | 4.2 MiB/s | 132.1 KiB | 00m00s
- [ 52/212] gupnp-0:1.6.9-2.fc43.x86_64 100% | 2.4 MiB/s | 106.7 KiB | 00m00s
- [ 53/212] libglvnd-1:1.7.0-8.fc43.x86_6 100% | 4.3 MiB/s | 114.0 KiB | 00m00s
- [ 54/212] dbus-1:1.16.0-4.fc43.x86_64 100% | 1.2 MiB/s | 7.5 KiB | 00m00s
- [ 55/212] cdparanoia-libs-0:10.2-48.fc4 100% | 3.3 MiB/s | 53.9 KiB | 00m00s
- [ 56/212] gstreamer1-plugins-base-0:1.2 100% | 7.0 MiB/s | 2.3 MiB | 00m00s
- [ 57/212] libXv-0:1.0.13-3.fc43.x86_64 100% | 1.4 MiB/s | 18.6 KiB | 00m00s
- [ 58/212] libglvnd-egl-1:1.7.0-8.fc43.x 100% | 2.3 MiB/s | 36.0 KiB | 00m00s
- [ 59/212] libgudev-0:238-8.fc43.x86_64 100% | 1.7 MiB/s | 34.6 KiB | 00m00s
- [ 60/212] gstreamer1-plugins-bad-free-l 100% | 1.5 MiB/s | 1.0 MiB | 00m01s
- [ 61/212] libtheora-1:1.1.1-40.fc43.x86 100% | 2.6 MiB/s | 170.3 KiB | 00m00s
- [ 62/212] libvisual-1:0.4.2-3.fc43.x86_ 100% | 5.5 MiB/s | 153.2 KiB | 00m00s
- [ 63/212] opus-0:1.5.2-3.fc43.x86_64 100% | 6.6 MiB/s | 237.1 KiB | 00m00s
- [ 64/212] orc-0:0.4.41-2.fc43.x86_64 100% | 9.8 MiB/s | 221.5 KiB | 00m00s
- [ 65/212] libvorbis-1:1.3.7-13.fc43.x86 100% | 2.3 MiB/s | 188.4 KiB | 00m00s
- [ 66/212] graphite2-0:1.3.14-19.fc43.x8 100% | 3.0 MiB/s | 95.6 KiB | 00m00s
- [ 67/212] libjpeg-turbo-0:3.1.3-1.fc43. 100% | 2.0 MiB/s | 236.8 KiB | 00m00s
- [ 68/212] libpng-2:1.6.55-1.fc43.x86_64 100% | 742.2 KiB/s | 123.9 KiB | 00m00s
- [ 69/212] harfbuzz-0:11.5.1-2.fc43.x86_ 100% | 3.0 MiB/s | 1.1 MiB | 00m00s
- [ 70/212] libtiff-0:4.7.1-1.fc43.x86_64 100% | 2.2 MiB/s | 222.4 KiB | 00m00s
- [ 71/212] jbigkit-libs-0:2.1-32.fc43.x8 100% | 2.7 MiB/s | 53.2 KiB | 00m00s
- [ 72/212] liblerc-0:4.0.0-9.fc43.x86_64 100% | 3.9 MiB/s | 215.1 KiB | 00m00s
- [ 73/212] librsvg2-0:2.61.0-5.fc43.x86_ 100% | 8.4 MiB/s | 1.9 MiB | 00m00s
- [ 74/212] libwebp-0:1.6.0-2.fc43.x86_64 100% | 3.6 MiB/s | 324.2 KiB | 00m00s
- [ 75/212] avahi-glib-0:0.9~rc2-6.fc43.x 100% | 2.5 MiB/s | 15.2 KiB | 00m00s
- [ 76/212] libstemmer-0:3.0.1-8.fc43.x86 100% | 2.7 MiB/s | 155.3 KiB | 00m00s
- [ 77/212] libtinysparql-0:3.10.1-5.fc43 100% | 2.5 MiB/s | 347.1 KiB | 00m00s
- [ 78/212] libXft-0:2.3.8-9.fc43.x86_64 100% | 2.1 MiB/s | 72.2 KiB | 00m00s
- [ 79/212] pango-0:1.57.1-1.fc43.x86_64 100% | 3.4 MiB/s | 358.0 KiB | 00m00s
- [ 80/212] libdatrie-0:0.2.13-12.fc43.x8 100% | 2.4 MiB/s | 32.0 KiB | 00m00s
- [ 81/212] libthai-0:0.1.29-11.fc43.x86_ 100% | 2.6 MiB/s | 210.3 KiB | 00m00s
- [ 82/212] fontconfig-devel-0:2.17.0-3.f 100% | 3.4 MiB/s | 169.5 KiB | 00m00s
- [ 83/212] pango-devel-0:1.57.1-1.fc43.x 100% | 962.1 KiB/s | 161.6 KiB | 00m00s
- [ 84/212] iso-codes-0:4.18.0-2.fc43.noa 100% | 2.5 MiB/s | 3.7 MiB | 00m01s
- [ 85/212] vulkan-loader-0:1.4.341.0-1.f 100% | 4.3 MiB/s | 161.6 KiB | 00m00s
- [ 86/212] vulkan-loader-devel-0:1.4.341 100% | 228.3 KiB/s | 12.3 KiB | 00m00s
- [ 87/212] libwayland-server-0:1.24.0-1. 100% | 3.1 MiB/s | 41.5 KiB | 00m00s
- [ 88/212] wayland-devel-0:1.24.0-1.fc43 100% | 2.3 MiB/s | 154.2 KiB | 00m00s
- [ 89/212] gtk-update-icon-cache-0:3.24. 100% | 1.1 MiB/s | 33.6 KiB | 00m00s
- [ 90/212] alsa-lib-0:1.2.15.3-1.fc43.x8 100% | 4.6 MiB/s | 541.4 KiB | 00m00s
- [ 91/212] libpciaccess-0:0.16-16.fc43.x 100% | 2.1 MiB/s | 26.2 KiB | 00m00s
- [ 92/212] freetype-devel-0:2.13.3-3.fc4 100% | 2.9 MiB/s | 1.0 MiB | 00m00s
- [ 93/212] libdrm-0:2.4.131-1.fc43.x86_6 100% | 1.5 MiB/s | 162.9 KiB | 00m00s
- [ 94/212] mesa-libgbm-0:25.3.6-3.fc43.x 100% | 445.6 KiB/s | 16.5 KiB | 00m00s
- [ 95/212] libogg-2:1.3.6-2.fc43.x86_64 100% | 345.2 KiB/s | 33.5 KiB | 00m00s
- [ 96/212] libxshmfence-0:1.3.2-7.fc43.x 100% | 1.6 MiB/s | 13.3 KiB | 00m00s
- [ 97/212] lm_sensors-libs-0:3.6.0-23.fc 100% | 177.3 KiB/s | 40.6 KiB | 00m00s
- [ 98/212] mesa-filesystem-0:25.3.6-3.fc 100% | 351.5 KiB/s | 10.5 KiB | 00m00s
- [ 99/212] mesa-libGL-0:25.3.6-3.fc43.x8 100% | 1.2 MiB/s | 119.0 KiB | 00m00s
- [100/212] libXxf86vm-0:1.1.6-3.fc43.x86 100% | 1.3 MiB/s | 17.7 KiB | 00m00s
- [101/212] libffi-devel-0:3.5.2-1.fc43.x 100% | 326.1 KiB/s | 29.7 KiB | 00m00s
- [102/212] libmount-devel-0:2.41.3-7.fc4 100% | 319.5 KiB/s | 24.6 KiB | 00m00s
- [103/212] libselinux-devel-0:3.9-5.fc43 100% | 2.3 MiB/s | 152.1 KiB | 00m00s
- [104/212] libsepol-devel-0:3.9-2.fc43.x 100% | 1.9 MiB/s | 48.4 KiB | 00m00s
- [105/212] pcre2-devel-0:10.47-1.fc43.x8 100% | 717.3 KiB/s | 550.9 KiB | 00m01s
- [106/212] pcre2-utf16-0:10.47-1.fc43.x8 100% | 1.2 MiB/s | 246.1 KiB | 00m00s
- [107/212] mesa-dri-drivers-0:25.3.6-3.f 100% | 7.1 MiB/s | 12.8 MiB | 00m02s
- [108/212] sysprof-capture-devel-0:49.0- 100% | 2.9 MiB/s | 171.1 KiB | 00m00s
- [109/212] zlib-ng-compat-devel-0:2.3.3- 100% | 1.2 MiB/s | 37.8 KiB | 00m00s
- [110/212] glycin-devel-0:2.0.8-1.fc43.x 100% | 164.4 KiB/s | 24.5 KiB | 00m00s
- [111/212] pcre2-utf32-0:10.47-1.fc43.x8 100% | 524.6 KiB/s | 232.9 KiB | 00m00s
- [112/212] glycin-libs-0:2.0.8-1.fc43.x8 100% | 10.0 MiB/s | 1.5 MiB | 00m00s
- [113/212] libheif-0:1.20.2-6.fc43.x86_6 100% | 4.1 MiB/s | 578.1 KiB | 00m00s
- [114/212] libaom-0:3.13.1-1.fc43.x86_64 100% | 3.7 MiB/s | 1.9 MiB | 00m01s
- [115/212] libopenjph-0:0.22.0-2.fc43.x8 100% | 3.4 MiB/s | 154.4 KiB | 00m00s
- [116/212] openjpeg-0:2.5.4-1.fc43.x86_6 100% | 2.9 MiB/s | 192.2 KiB | 00m00s
- [117/212] glycin-loaders-0:2.0.8-1.fc43 100% | 2.9 MiB/s | 2.8 MiB | 00m01s
- [118/212] libvmaf-0:3.0.0-4.fc43.x86_64 100% | 3.6 MiB/s | 196.6 KiB | 00m00s
- [119/212] xkeyboard-config-0:2.46-1.fc4 100% | 11.2 MiB/s | 993.6 KiB | 00m00s
- [120/212] mesa-libEGL-0:25.3.6-3.fc43.x 100% | 35.6 KiB/s | 120.7 KiB | 00m03s
- [121/212] hwdata-0:0.406-1.fc43.noarch 100% | 10.4 MiB/s | 1.7 MiB | 00m00s
- [122/212] libdav1d-0:1.5.3-1.fc43.x86_6 100% | 3.6 MiB/s | 637.4 KiB | 00m00s
- [123/212] rav1e-libs-0:0.8.1-2.fc43.x86 100% | 8.8 MiB/s | 1.1 MiB | 00m00s
- [124/212] svt-av1-libs-0:3.1.2-1.fc43.x 100% | 2.6 MiB/s | 2.0 MiB | 00m01s
- [125/212] json-glib-0:1.10.8-4.fc43.x86 100% | 2.1 MiB/s | 172.7 KiB | 00m00s
- [126/212] gssdp-0:1.6.4-5.fc43.x86_64 100% | 1.4 MiB/s | 58.3 KiB | 00m00s
- [127/212] brotli-devel-0:1.2.0-1.fc43.x 100% | 981.5 KiB/s | 34.4 KiB | 00m00s
- [128/212] libsoup3-0:3.6.6-2.fc43.x86_6 100% | 4.8 MiB/s | 451.5 KiB | 00m00s
- [129/212] brotli-0:1.2.0-1.fc43.x86_64 100% | 721.4 KiB/s | 23.8 KiB | 00m00s
- [130/212] bzip2-devel-0:1.0.8-21.fc43.x 100% | 3.7 MiB/s | 213.4 KiB | 00m00s
- [131/212] openh264-0:2.6.0-2.fc43.x86_6 100% | 835.6 KiB/s | 422.8 KiB | 00m01s
- [132/212] harfbuzz-icu-0:11.5.1-2.fc43. 100% | 57.2 KiB/s | 15.7 KiB | 00m00s
- [133/212] harfbuzz-cairo-0:11.5.1-2.fc4 100% | 94.8 KiB/s | 30.0 KiB | 00m00s
- [134/212] libxml2-devel-0:2.12.10-5.fc4 100% | 4.6 MiB/s | 524.0 KiB | 00m00s
- [135/212] harfbuzz-devel-0:11.5.1-2.fc4 100% | 941.8 KiB/s | 455.8 KiB | 00m00s
- [136/212] google-noto-fonts-common-0:20 100% | 240.5 KiB/s | 17.3 KiB | 00m00s
- [137/212] libXext-devel-0:1.3.6-4.fc43. 100% | 1.6 MiB/s | 85.2 KiB | 00m00s
- [138/212] libXrender-devel-0:0.9.12-3.f 100% | 632.9 KiB/s | 19.0 KiB | 00m00s
- [139/212] google-noto-sans-vf-fonts-0:2 100% | 3.5 MiB/s | 614.5 KiB | 00m00s
- [140/212] lzo-devel-0:2.10-15.fc43.x86_ 100% | 1.3 MiB/s | 39.0 KiB | 00m00s
- [141/212] pixman-devel-0:0.46.2-2.fc43. 100% | 579.7 KiB/s | 18.0 KiB | 00m00s
- [142/212] lzo-minilzo-0:2.10-15.fc43.x8 100% | 2.9 MiB/s | 24.0 KiB | 00m00s
- [143/212] cmake-filesystem-0:3.31.11-1. 100% | 405.2 KiB/s | 13.4 KiB | 00m00s
- [144/212] fribidi-devel-0:1.0.16-3.fc43 100% | 696.6 KiB/s | 29.3 KiB | 00m00s
- [145/212] libXft-devel-0:2.3.8-9.fc43.x 100% | 2.5 MiB/s | 49.4 KiB | 00m00s
- [146/212] libpng-devel-2:1.6.55-1.fc43. 100% | 579.5 KiB/s | 293.8 KiB | 00m01s
- [147/212] libthai-devel-0:0.1.29-11.fc4 100% | 1.9 MiB/s | 128.3 KiB | 00m00s
- [148/212] libblkid-devel-0:2.41.3-7.fc4 100% | 74.0 KiB/s | 23.4 KiB | 00m00s
- [149/212] spirv-tools-libs-0:2026.1-2.f 100% | 4.4 MiB/s | 1.7 MiB | 00m00s
- [150/212] graphite2-devel-0:1.3.14-19.f 100% | 102.7 KiB/s | 20.6 KiB | 00m00s
- [151/212] libicu-devel-0:77.1-1.fc43.x8 100% | 5.1 MiB/s | 794.4 KiB | 00m00s
- [152/212] lcms2-devel-0:2.16-6.fc43.x86 100% | 2.2 MiB/s | 31.8 KiB | 00m00s
- [153/212] libseccomp-devel-0:2.6.0-2.fc 100% | 2.1 MiB/s | 62.3 KiB | 00m00s
- [154/212] xz-devel-1:5.8.1-4.fc43.x86_6 100% | 926.5 KiB/s | 66.7 KiB | 00m00s
- [155/212] libdatrie-devel-0:0.2.13-12.f 100% | 2.8 MiB/s | 137.3 KiB | 00m00s
- [156/212] libjxl-1:0.11.1-7.fc43.x86_64 100% | 5.4 MiB/s | 1.2 MiB | 00m00s
- [157/212] vulkan-headers-0:1.4.341.0-1. 100% | 1.8 MiB/s | 1.7 MiB | 00m01s
- [158/212] highway-0:1.3.0-1.fc43.x86_64 100% | 7.6 MiB/s | 694.5 KiB | 00m00s
- [159/212] fuse3-0:3.16.2-5.fc42.x86_64 100% | 2.8 MiB/s | 57.4 KiB | 00m00s
- [160/212] fuse3-libs-0:3.16.2-5.fc42.x8 100% | 7.1 MiB/s | 94.2 KiB | 00m00s
- [161/212] fuse-common-0:3.16.2-5.fc42.x 100% | 1.2 MiB/s | 8.6 KiB | 00m00s
- [162/212] xdg-desktop-portal-gtk-0:1.15 100% | 1.1 MiB/s | 144.0 KiB | 00m00s
- [163/212] dconf-0:0.49.0-1.fc43.x86_64 100% | 1.2 MiB/s | 110.2 KiB | 00m00s
- [164/212] xdg-desktop-portal-0:1.20.3-2 100% | 2.1 MiB/s | 507.6 KiB | 00m00s
- [165/212] gi-docgen-fonts-0:2026.1-3.fc 100% | 32.2 KiB/s | 9.2 KiB | 00m00s
- [166/212] redhat-display-fonts-0:4.1.0- 100% | 1.9 MiB/s | 556.4 KiB | 00m00s
- [167/212] adobe-source-code-pro-fonts-0 100% | 2.1 MiB/s | 806.3 KiB | 00m00s
- [168/212] redhat-text-fonts-0:4.1.0-2.f 100% | 3.0 MiB/s | 484.1 KiB | 00m00s
- [169/212] libdisplay-info-0:0.2.0-4.fc4 100% | 813.7 KiB/s | 85.4 KiB | 00m00s
- [170/212] mesa-va-drivers-0:25.3.6-3.fc 100% | 298.1 KiB/s | 9.2 KiB | 00m00s
- [171/212] tinysparql-0:3.10.1-5.fc43.x8 100% | 4.4 MiB/s | 1.0 MiB | 00m00s
- [172/212] glib-networking-0:2.80.1-3.fc 100% | 1.4 MiB/s | 200.8 KiB | 00m00s
- [173/212] gsettings-desktop-schemas-0:4 100% | 6.3 MiB/s | 822.9 KiB | 00m00s
- [174/212] libXcomposite-0:0.4.6-6.fc43. 100% | 447.5 KiB/s | 24.2 KiB | 00m00s
- [175/212] libcloudproviders-0:0.3.6-2.f 100% | 1.5 MiB/s | 46.9 KiB | 00m00s
- [176/212] geoclue2-0:2.8.0-1.fc43.x86_6 100% | 3.1 MiB/s | 144.5 KiB | 00m00s
- [177/212] gtk3-0:3.24.52-1.fc43.x86_64 100% | 12.2 MiB/s | 6.0 MiB | 00m00s
- [178/212] ModemManager-glib-0:1.24.2-1. 100% | 1.0 MiB/s | 334.9 KiB | 00m00s
- [179/212] fdk-aac-free-0:2.0.0-16.fc43. 100% | 2.4 MiB/s | 341.1 KiB | 00m00s
- [180/212] pipewire-libs-0:1.4.11-1.fc43 100% | 7.8 MiB/s | 2.4 MiB | 00m00s
- [181/212] libebur128-0:1.2.6-14.fc43.x8 100% | 776.9 KiB/s | 24.9 KiB | 00m00s
- [182/212] liblc3-0:1.1.3-5.fc43.x86_64 100% | 3.9 MiB/s | 105.1 KiB | 00m00s
- [183/212] libldac-0:2.0.2.3-18.fc43.x86 100% | 1.8 MiB/s | 42.5 KiB | 00m00s
- [184/212] libsbc-0:2.0-7.fc43.x86_64 100% | 1.4 MiB/s | 49.0 KiB | 00m00s
- [185/212] libsndfile-0:1.2.2-10.fc43.x8 100% | 1.9 MiB/s | 220.8 KiB | 00m00s
- [186/212] fftw-libs-single-0:3.3.10-16. 100% | 2.1 MiB/s | 1.2 MiB | 00m01s
- [187/212] gsm-0:1.0.23-1.fc43.x86_64 100% | 1.8 MiB/s | 36.0 KiB | 00m00s
- [188/212] webrtc-audio-processing-0:1.3 100% | 1.7 MiB/s | 533.9 KiB | 00m00s
- [189/212] lame-libs-0:3.100-20.fc43.x86 100% | 2.8 MiB/s | 338.9 KiB | 00m00s
- [190/212] mpg123-libs-0:1.32.10-2.fc43. 100% | 1.5 MiB/s | 355.6 KiB | 00m00s
- [191/212] flac-libs-0:1.5.0-5.fc43.x86_ 100% | 575.9 KiB/s | 217.1 KiB | 00m00s
- [192/212] duktape-0:2.7.0-10.fc43.x86_6 100% | 2.7 MiB/s | 168.7 KiB | 00m00s
- [193/212] mesa-vulkan-drivers-0:25.3.6- 100% | 10.0 MiB/s | 24.8 MiB | 00m02s
- [194/212] pulseaudio-libs-0:17.0-9.fc43 100% | 6.9 MiB/s | 694.2 KiB | 00m00s
- [195/212] libproxy-0:0.5.12-1.fc43.x86_ 100% | 65.1 KiB/s | 45.2 KiB | 00m01s
- [196/212] libasyncns-0:0.8-31.fc43.x86_ 100% | 2.4 MiB/s | 30.0 KiB | 00m00s
- [197/212] at-spi2-atk-0:2.58.4-1.fc43.x 100% | 2.5 MiB/s | 88.0 KiB | 00m00s
- [198/212] atk-0:2.58.4-1.fc43.x86_64 100% | 1.0 MiB/s | 80.2 KiB | 00m00s
- [199/212] at-spi2-core-0:2.58.4-1.fc43. 100% | 3.4 MiB/s | 391.2 KiB | 00m00s
- [200/212] libXtst-0:1.2.5-3.fc43.x86_64 100% | 1.4 MiB/s | 20.5 KiB | 00m00s
- [201/212] libnotify-0:0.8.8-1.fc43.x86_ 100% | 1.7 MiB/s | 55.9 KiB | 00m00s
- [202/212] xprop-0:1.2.8-4.fc43.x86_64 100% | 561.6 KiB/s | 34.8 KiB | 00m00s
- [203/212] bluez-libs-0:5.86-4.fc43.x86_ 100% | 126.2 KiB/s | 82.9 KiB | 00m01s
- [204/212] low-memory-monitor-0:2.1-13.f 100% | 438.1 KiB/s | 34.2 KiB | 00m00s
- [205/212] libcanberra-gtk3-0:0.30-38.fc 100% | 602.7 KiB/s | 30.1 KiB | 00m00s
- [206/212] libcanberra-0:0.30-38.fc43.x8 100% | 1.1 MiB/s | 83.7 KiB | 00m00s
- [207/212] libtdb-0:1.4.14-3.fc43.x86_64 100% | 2.8 MiB/s | 55.1 KiB | 00m00s
- [208/212] adwaita-sans-fonts-0:49.0-2.f 100% | 3.0 MiB/s | 764.3 KiB | 00m00s
- [209/212] sound-theme-freedesktop-0:0.8 100% | 2.6 MiB/s | 382.3 KiB | 00m00s
- [210/212] zlib-ng-compat-0:2.3.3-2.fc43 100% | 2.5 MiB/s | 88.7 KiB | 00m00s
- [211/212] adwaita-mono-fonts-0:49.0-2.f 100% | 2.3 MiB/s | 1.4 MiB | 00m01s
- [212/212] glib2-0:2.86.4-2.fc43.x86_64 100% | 7.9 MiB/s | 3.1 MiB | 00m00s
- --------------------------------------------------------------------------------
- [212/212] Total 100% | 9.1 MiB/s | 127.1 MiB | 00m14s
- Running transaction
- [ 1/216] Verify package files 100% | 439.0 B/s | 212.0 B | 00m00s
- [ 2/216] Prepare transaction 100% | 1.7 KiB/s | 214.0 B | 00m00s
- [ 3/216] Installing libXext-0:1.3.6-4. 100% | 44.5 MiB/s | 91.2 KiB | 00m00s
- [ 4/216] Upgrading zlib-ng-compat-0:2. 100% | 79.4 MiB/s | 162.6 KiB | 00m00s
- [ 5/216] Upgrading glib2-0:2.86.4-2.fc 100% | 294.0 MiB/s | 15.0 MiB | 00m00s
- [ 6/216] Installing libwayland-client- 100% | 61.7 MiB/s | 63.2 KiB | 00m00s
- [ 7/216] Installing fonts-filesystem-1 100% | 769.5 KiB/s | 788.0 B | 00m00s
- [ 8/216] Installing libpng-2:1.6.55-1. 100% | 118.6 MiB/s | 243.0 KiB | 00m00s
- [ 9/216] Installing libXi-0:1.8.2-3.fc 100% | 79.8 MiB/s | 81.7 KiB | 00m00s
- [ 10/216] Installing dbus-1:1.16.0-4.fc 100% | 0.0 B/s | 124.0 B | 00m00s
- [ 11/216] Installing avahi-libs-0:0.9~r 100% | 85.0 MiB/s | 174.0 KiB | 00m00s
- [ 12/216] Installing libXrender-0:0.9.1 100% | 46.2 MiB/s | 47.3 KiB | 00m00s
- [ 13/216] Installing libXfixes-0:6.0.1- 100% | 26.9 MiB/s | 27.6 KiB | 00m00s
- [ 14/216] Installing json-glib-0:1.10.8 100% | 196.7 MiB/s | 604.4 KiB | 00m00s
- [ 15/216] Installing libogg-2:1.3.6-2.f 100% | 46.0 MiB/s | 47.1 KiB | 00m00s
- [ 16/216] Installing vulkan-loader-0:1. 100% | 186.3 MiB/s | 572.3 KiB | 00m00s
- [ 17/216] Installing libjpeg-turbo-0:3. 100% | 263.0 MiB/s | 808.0 KiB | 00m00s
- [ 18/216] Installing libwayland-egl-0:1 100% | 13.2 MiB/s | 13.6 KiB | 00m00s
- [ 19/216] Installing fribidi-0:1.0.16-3 100% | 12.6 MiB/s | 192.8 KiB | 00m00s
- [ 20/216] Installing libvorbis-1:1.3.7- 100% | 204.1 MiB/s | 835.9 KiB | 00m00s
- [ 21/216] Installing libXrender-devel-0 100% | 49.8 MiB/s | 51.0 KiB | 00m00s
- [ 22/216] Installing libwayland-cursor- 100% | 37.6 MiB/s | 38.5 KiB | 00m00s
- [ 23/216] Installing graphene-0:1.10.8- 100% | 78.2 MiB/s | 160.1 KiB | 00m00s
- [ 24/216] Installing libsoup3-0:3.6.6-2 100% | 254.4 MiB/s | 1.8 MiB | 00m00s
- [ 25/216] Installing cmake-filesystem-0 100% | 1.9 MiB/s | 7.6 KiB | 00m00s
- [ 26/216] Installing zlib-ng-compat-dev 100% | 106.0 MiB/s | 108.6 KiB | 00m00s
- [ 27/216] Installing mesa-filesystem-0: 100% | 0.0 B/s | 4.3 KiB | 00m00s
- [ 28/216] Installing libpng-devel-2:1.6 100% | 54.4 MiB/s | 891.6 KiB | 00m00s
- [ 29/216] Installing libXcursor-0:1.2.3 100% | 26.9 MiB/s | 55.1 KiB | 00m00s
- [ 30/216] Installing libXdamage-0:1.1.6 100% | 40.2 MiB/s | 41.2 KiB | 00m00s
- [ 31/216] Installing libXrandr-0:1.5.4- 100% | 51.8 MiB/s | 53.0 KiB | 00m00s
- [ 32/216] Installing avahi-glib-0:0.9~r 100% | 20.0 MiB/s | 20.4 KiB | 00m00s
- [ 33/216] Installing shared-mime-info-0 100% | 63.1 MiB/s | 2.6 MiB | 00m00s
- [ 34/216] Installing libXinerama-0:1.1. 100% | 15.7 MiB/s | 16.1 KiB | 00m00s
- [ 35/216] Installing alsa-lib-0:1.2.15. 100% | 58.7 MiB/s | 1.5 MiB | 00m00s
- [ 36/216] Installing opus-0:1.5.2-3.fc4 100% | 139.5 MiB/s | 428.7 KiB | 00m00s
- [ 37/216] Installing lcms2-0:2.16-6.fc4 100% | 212.6 MiB/s | 435.3 KiB | 00m00s
- [ 38/216] Installing libepoxy-0:1.5.10- 100% | 269.6 MiB/s | 1.1 MiB | 00m00s
- [ 39/216] Installing gssdp-0:1.6.4-5.fc 100% | 72.5 MiB/s | 148.4 KiB | 00m00s
- [ 40/216] Installing libgudev-0:238-8.f 100% | 41.7 MiB/s | 85.3 KiB | 00m00s
- [ 41/216] Installing gsettings-desktop- 100% | 522.0 MiB/s | 5.7 MiB | 00m00s
- [ 42/216] Installing libXext-devel-0:1. 100% | 36.1 MiB/s | 110.9 KiB | 00m00s
- [ 43/216] Installing libtdb-0:1.4.14-3. 100% | 49.6 MiB/s | 101.6 KiB | 00m00s
- [ 44/216] Installing fuse3-libs-0:3.16. 100% | 138.0 MiB/s | 282.6 KiB | 00m00s
- [ 45/216] Installing spirv-tools-libs-0 100% | 330.6 MiB/s | 6.0 MiB | 00m00s
- [ 46/216] Installing libdav1d-0:1.5.3-1 100% | 282.2 MiB/s | 1.7 MiB | 00m00s
- [ 47/216] Installing libffi-devel-0:3.5 100% | 34.7 MiB/s | 35.6 KiB | 00m00s
- [ 48/216] Installing libxshmfence-0:1.3 100% | 13.2 MiB/s | 13.6 KiB | 00m00s
- [ 49/216] Installing libdatrie-0:0.2.13 100% | 53.7 MiB/s | 54.9 KiB | 00m00s
- [ 50/216] Installing libthai-0:0.1.29-1 100% | 191.7 MiB/s | 785.2 KiB | 00m00s
- [ 51/216] Installing libwebp-0:1.6.0-2. 100% | 187.6 MiB/s | 960.7 KiB | 00m00s
- [ 52/216] Installing graphite2-0:1.3.14 100% | 12.6 MiB/s | 193.9 KiB | 00m00s
- [ 53/216] Installing freetype-0:2.13.3- 100% | 208.0 MiB/s | 851.9 KiB | 00m00s
- [ 54/216] Installing harfbuzz-0:11.5.1- 100% | 257.1 MiB/s | 2.8 MiB | 00m00s
- [ 55/216] Installing libglvnd-1:1.7.0-8 100% | 257.6 MiB/s | 527.5 KiB | 00m00s
- [ 56/216] Installing hicolor-icon-theme 100% | 4.0 MiB/s | 179.7 KiB | 00m00s
- [ 57/216] Installing xml-common-0:0.6.3 100% | 39.6 MiB/s | 81.1 KiB | 00m00s
- [ 58/216] Installing pixman-0:0.46.2-2. 100% | 231.6 MiB/s | 711.4 KiB | 00m00s
- [ 59/216] Installing pixman-devel-0:0.4 100% | 55.5 MiB/s | 56.9 KiB | 00m00s
- [ 60/216] Installing lzo-0:2.10-15.fc43 100% | 58.8 MiB/s | 180.5 KiB | 00m00s
- [ 61/216] Installing iso-codes-0:4.18.0 100% | 491.7 MiB/s | 21.6 MiB | 00m00s
- [ 62/216] Installing harfbuzz-icu-0:11. 100% | 15.9 MiB/s | 16.3 KiB | 00m00s
- [ 63/216] Installing graphite2-devel-0: 100% | 49.6 MiB/s | 50.8 KiB | 00m00s
- [ 64/216] Installing libdatrie-devel-0: 100% | 36.8 MiB/s | 565.3 KiB | 00m00s
- [ 65/216] Installing libthai-devel-0:0. 100% | 213.7 MiB/s | 656.3 KiB | 00m00s
- [ 66/216] Installing gupnp-0:1.6.9-2.fc 100% | 100.9 MiB/s | 309.8 KiB | 00m00s
- [ 67/216] Installing gupnp-igd-0:1.6.0- 100% | 66.9 MiB/s | 68.6 KiB | 00m00s
- [ 68/216] Installing libnice-0:0.1.22-8 100% | 30.6 MiB/s | 500.6 KiB | 00m00s
- [ 69/216] Installing lcms2-devel-0:2.16 100% | 133.2 MiB/s | 136.4 KiB | 00m00s
- [ 70/216] Installing vulkan-headers-0:1 100% | 555.9 MiB/s | 36.1 MiB | 00m00s
- [ 71/216] Installing vulkan-loader-deve 100% | 8.9 MiB/s | 9.1 KiB | 00m00s
- [ 72/216] Installing fribidi-devel-0:1. 100% | 40.0 MiB/s | 81.9 KiB | 00m00s
- [ 73/216] Installing libtheora-1:1.1.1- 100% | 156.2 MiB/s | 479.7 KiB | 00m00s
- [ 74/216] Installing flac-libs-0:1.5.0- 100% | 150.0 MiB/s | 614.2 KiB | 00m00s
- [ 75/216] Installing libgusb-0:0.4.9-4. 100% | 79.9 MiB/s | 163.7 KiB | 00m00s
- [ 76/216] Installing colord-libs-0:1.4. 100% | 162.8 MiB/s | 833.8 KiB | 00m00s
- [ 77/216] Installing libXtst-0:1.2.5-3. 100% | 33.8 MiB/s | 34.6 KiB | 00m00s
- [ 78/216] Installing abattis-cantarell- 100% | 94.9 MiB/s | 194.4 KiB | 00m00s
- [ 79/216] Installing adobe-source-code- 100% | 230.5 MiB/s | 1.6 MiB | 00m00s
- [ 80/216] Installing redhat-display-fon 100% | 189.1 MiB/s | 968.0 KiB | 00m00s
- [ 81/216] Installing redhat-text-fonts- 100% | 193.2 MiB/s | 791.5 KiB | 00m00s
- [ 82/216] Installing libcloudproviders- 100% | 61.6 MiB/s | 126.2 KiB | 00m00s
- [ 83/216] Installing ModemManager-glib- 100% | 302.2 MiB/s | 1.5 MiB | 00m00s
- [ 84/216] Installing libXv-0:1.0.13-3.f 100% | 26.6 MiB/s | 27.2 KiB | 00m00s
- [ 85/216] Installing libXxf86vm-0:1.1.6 100% | 25.9 MiB/s | 26.5 KiB | 00m00s
- [ 86/216] Installing sound-theme-freede 100% | 21.7 MiB/s | 467.2 KiB | 00m00s
- [ 87/216] Installing xprop-0:1.2.8-4.fc 100% | 3.4 MiB/s | 56.0 KiB | 00m00s
- [ 88/216] Installing at-spi2-core-0:2.5 100% | 196.0 MiB/s | 1.6 MiB | 00m00s
- [ 89/216] Installing atk-0:2.58.4-1.fc4 100% | 122.1 MiB/s | 250.0 KiB | 00m00s
- [ 90/216] Installing at-spi2-atk-0:2.58 100% | 93.0 MiB/s | 285.7 KiB | 00m00s
- [ 91/216] Installing libasyncns-0:0.8-3 100% | 55.4 MiB/s | 56.8 KiB | 00m00s
- [ 92/216] Installing bluez-libs-0:5.86- 100% | 97.4 MiB/s | 199.4 KiB | 00m00s
- [ 93/216] Installing duktape-0:2.7.0-10 100% | 201.1 MiB/s | 617.8 KiB | 00m00s
- [ 94/216] Installing libproxy-0:0.5.12- 100% | 51.1 MiB/s | 104.6 KiB | 00m00s
- [ 95/216] Installing mpg123-libs-0:1.32 100% | 159.5 MiB/s | 816.6 KiB | 00m00s
- [ 96/216] Installing lame-libs-0:3.100- 100% | 399.5 MiB/s | 1.2 MiB | 00m00s
- [ 97/216] Installing gsm-0:1.0.23-1.fc4 100% | 65.3 MiB/s | 66.9 KiB | 00m00s
- [ 98/216] Installing libsndfile-0:1.2.2 100% | 179.6 MiB/s | 551.6 KiB | 00m00s
- [ 99/216] Installing pulseaudio-libs-0: 100% | 375.5 MiB/s | 3.4 MiB | 00m00s
- [100/216] Installing webrtc-audio-proce 100% | 227.7 MiB/s | 1.4 MiB | 00m00s
- [101/216] Installing libsbc-0:2.0-7.fc4 100% | 92.3 MiB/s | 94.5 KiB | 00m00s
- [102/216] Installing libldac-0:2.0.2.3- 100% | 37.2 MiB/s | 76.2 KiB | 00m00s
- [103/216] Installing liblc3-0:1.1.3-5.f 100% | 83.9 MiB/s | 171.8 KiB | 00m00s
- [104/216] Installing libebur128-0:1.2.6 100% | 39.8 MiB/s | 40.7 KiB | 00m00s
- [105/216] Installing fftw-libs-single-0 100% | 327.2 MiB/s | 3.6 MiB | 00m00s
- [106/216] Installing fdk-aac-free-0:2.0 100% | 149.7 MiB/s | 613.3 KiB | 00m00s
- [107/216] Installing pipewire-libs-0:1. 100% | 184.8 MiB/s | 8.7 MiB | 00m00s
- [108/216] Installing libXcomposite-0:0. 100% | 41.0 MiB/s | 42.0 KiB | 00m00s
- [109/216] Installing libdisplay-info-0: 100% | 106.1 MiB/s | 217.3 KiB | 00m00s
- [110/216] Installing fuse-common-0:3.16 100% | 0.0 B/s | 292.0 B | 00m00s
- [111/216] Installing fuse3-0:3.16.2-5.f 100% | 8.6 MiB/s | 132.0 KiB | 00m00s
- [112/216] Installing highway-0:1.3.0-1. 100% | 425.7 MiB/s | 5.5 MiB | 00m00s
- [113/216] Installing libjxl-1:0.11.1-7. 100% | 316.2 MiB/s | 4.1 MiB | 00m00s
- [114/216] Installing xz-devel-1:5.8.1-4 100% | 85.5 MiB/s | 262.6 KiB | 00m00s
- [115/216] Installing libxml2-devel-0:2. 100% | 162.7 MiB/s | 3.4 MiB | 00m00s
- [116/216] Installing libseccomp-devel-0 100% | 8.4 MiB/s | 121.0 KiB | 00m00s
- [117/216] Installing libicu-devel-0:77. 100% | 130.3 MiB/s | 5.1 MiB | 00m00s
- [118/216] Installing libblkid-devel-0:2 100% | 45.0 MiB/s | 46.0 KiB | 00m00s
- [119/216] Installing lzo-minilzo-0:2.10 100% | 37.1 MiB/s | 37.9 KiB | 00m00s
- [120/216] Installing lzo-devel-0:2.10-1 100% | 105.1 MiB/s | 215.3 KiB | 00m00s
- [121/216] Installing google-noto-fonts- 100% | 0.0 B/s | 18.5 KiB | 00m00s
- [122/216] Installing google-noto-sans-v 100% | 278.3 MiB/s | 1.4 MiB | 00m00s
- [123/216] Installing default-fonts-core 100% | 5.9 MiB/s | 18.2 KiB | 00m00s
- [124/216] Installing fontconfig-0:2.17. 100% | 730.5 KiB/s | 785.3 KiB | 00m01s
- [125/216] Installing cairo-0:1.18.4-2.f 100% | 253.1 MiB/s | 1.8 MiB | 00m00s
- [126/216] Installing cairo-gobject-0:1. 100% | 31.2 MiB/s | 32.0 KiB | 00m00s
- [127/216] Installing libXft-0:2.3.8-9.f 100% | 81.0 MiB/s | 165.9 KiB | 00m00s
- [128/216] Installing pango-0:1.57.1-1.f 100% | 50.2 MiB/s | 1.0 MiB | 00m00s
- [129/216] Installing harfbuzz-cairo-0:1 100% | 47.8 MiB/s | 49.0 KiB | 00m00s
- [130/216] Installing bzip2-devel-0:1.0. 100% | 303.5 MiB/s | 310.7 KiB | 00m00s
- [131/216] Installing brotli-0:1.2.0-1.f 100% | 2.6 MiB/s | 34.4 KiB | 00m00s
- [132/216] Installing brotli-devel-0:1.2 100% | 66.8 MiB/s | 68.4 KiB | 00m00s
- [133/216] Installing rav1e-libs-0:0.8.1 100% | 308.3 MiB/s | 3.1 MiB | 00m00s
- [134/216] Installing openh264-0:2.6.0-2 100% | 219.2 MiB/s | 1.1 MiB | 00m00s
- [135/216] Installing hwdata-0:0.406-1.f 100% | 411.2 MiB/s | 9.9 MiB | 00m00s
- [136/216] Installing libpciaccess-0:0.1 100% | 44.8 MiB/s | 45.9 KiB | 00m00s
- [137/216] Installing libdrm-0:2.4.131-1 100% | 79.8 MiB/s | 408.5 KiB | 00m00s
- [138/216] Installing xkeyboard-config-0 100% | 286.3 MiB/s | 10.3 MiB | 00m00s
- [139/216] Installing libxkbcommon-0:1.1 100% | 133.4 MiB/s | 409.9 KiB | 00m00s
- [140/216] Installing libvmaf-0:3.0.0-4. 100% | 202.2 MiB/s | 828.4 KiB | 00m00s
- [141/216] Installing libaom-0:3.13.1-1. 100% | 314.5 MiB/s | 5.0 MiB | 00m00s
- [142/216] Installing svt-av1-libs-0:3.1 100% | 327.6 MiB/s | 5.6 MiB | 00m00s
- [143/216] Installing openjpeg-0:2.5.4-1 100% | 149.2 MiB/s | 458.2 KiB | 00m00s
- [144/216] Installing libopenjph-0:0.22. 100% | 228.2 MiB/s | 467.3 KiB | 00m00s
- [145/216] Installing libheif-0:1.20.2-6 100% | 258.9 MiB/s | 1.6 MiB | 00m00s
- [146/216] Installing glycin-loaders-0:2 100% | 385.9 MiB/s | 12.7 MiB | 00m00s
- [147/216] Installing glycin-libs-0:2.0. 100% | 326.1 MiB/s | 4.2 MiB | 00m00s
- [148/216] Installing gdk-pixbuf2-0:2.44 100% | 126.2 MiB/s | 2.5 MiB | 00m00s
- [149/216] Installing librsvg2-0:2.61.0- 100% | 316.7 MiB/s | 5.1 MiB | 00m00s
- [150/216] Installing gtk-update-icon-ca 100% | 4.4 MiB/s | 63.3 KiB | 00m00s
- [151/216] Installing libnotify-0:0.8.8- 100% | 2.6 MiB/s | 129.0 KiB | 00m00s
- >>> Running sysusers scriptlet: geoclue2-0:2.8.0-1.fc43.x86_64
- >>> Finished sysusers scriptlet: geoclue2-0:2.8.0-1.fc43.x86_64
- >>> Scriptlet output:
- >>> Creating group 'geoclue' with GID 997.
- >>> Creating user 'geoclue' (n/a) with UID 997 and GID 997.
- >>>
- [152/216] Installing geoclue2-0:2.8.0-1 100% | 16.5 MiB/s | 405.6 KiB | 00m00s
- [153/216] Installing sysprof-capture-de 100% | 196.9 MiB/s | 806.5 KiB | 00m00s
- [154/216] Installing pcre2-utf32-0:10.4 100% | 199.2 MiB/s | 611.9 KiB | 00m00s
- [155/216] Installing pcre2-utf16-0:10.4 100% | 208.3 MiB/s | 640.0 KiB | 00m00s
- [156/216] Installing pcre2-devel-0:10.4 100% | 117.7 MiB/s | 2.1 MiB | 00m00s
- [157/216] Installing libsepol-devel-0:3 100% | 25.2 MiB/s | 128.9 KiB | 00m00s
- [158/216] Installing libselinux-devel-0 100% | 52.8 MiB/s | 162.1 KiB | 00m00s
- [159/216] Installing libmount-devel-0:2 100% | 65.0 MiB/s | 66.5 KiB | 00m00s
- [160/216] Installing lm_sensors-libs-0: 100% | 42.4 MiB/s | 86.9 KiB | 00m00s
- [161/216] Installing mesa-dri-drivers-0 100% | 375.5 MiB/s | 48.8 MiB | 00m00s
- [162/216] Installing mesa-libgbm-0:25.3 100% | 20.0 MiB/s | 20.5 KiB | 00m00s
- [163/216] Installing mesa-libEGL-0:25.3 100% | 152.0 MiB/s | 311.3 KiB | 00m00s
- [164/216] Installing libglvnd-egl-1:1.7 100% | 32.4 MiB/s | 66.3 KiB | 00m00s
- [165/216] Installing mesa-libGL-0:25.3. 100% | 140.1 MiB/s | 286.9 KiB | 00m00s
- [166/216] Installing libglvnd-glx-1:1.7 100% | 196.2 MiB/s | 602.6 KiB | 00m00s
- [167/216] Installing libva-0:2.22.0-6.f 100% | 81.4 MiB/s | 333.4 KiB | 00m00s
- [168/216] Installing libwayland-server- 100% | 38.9 MiB/s | 79.7 KiB | 00m00s
- [169/216] Installing wayland-devel-0:1. 100% | 40.2 MiB/s | 700.4 KiB | 00m00s
- [170/216] Installing libstemmer-0:3.0.1 100% | 215.8 MiB/s | 662.9 KiB | 00m00s
- [171/216] Installing libtinysparql-0:3. 100% | 194.9 MiB/s | 997.9 KiB | 00m00s
- [172/216] Installing liblerc-0:4.0.0-9. 100% | 203.6 MiB/s | 625.6 KiB | 00m00s
- [173/216] Installing jbigkit-libs-0:2.1 100% | 112.7 MiB/s | 115.4 KiB | 00m00s
- [174/216] Installing libtiff-0:4.7.1-1. 100% | 204.0 MiB/s | 626.6 KiB | 00m00s
- [175/216] Installing orc-0:0.4.41-2.fc4 100% | 44.5 MiB/s | 728.9 KiB | 00m00s
- [176/216] Installing libvisual-1:0.4.2- 100% | 222.2 MiB/s | 455.1 KiB | 00m00s
- [177/216] Installing cdparanoia-libs-0: 100% | 56.1 MiB/s | 115.0 KiB | 00m00s
- [178/216] Installing libunwind-0:1.8.1- 100% | 64.3 MiB/s | 197.4 KiB | 00m00s
- [179/216] Installing gstreamer1-0:1.26. 100% | 158.3 MiB/s | 5.4 MiB | 00m00s
- [180/216] Installing gstreamer1-plugins 100% | 217.4 MiB/s | 7.4 MiB | 00m00s
- [181/216] Installing gstreamer1-plugins 100% | 174.6 MiB/s | 3.1 MiB | 00m00s
- [182/216] Installing xdg-desktop-portal 100% | 68.6 MiB/s | 1.9 MiB | 00m00s
- [183/216] Installing libcanberra-0:0.30 100% | 8.3 MiB/s | 271.4 KiB | 00m00s
- [184/216] Installing python3-packaging- 100% | 75.7 MiB/s | 619.9 KiB | 00m00s
- [185/216] Installing glib2-devel-0:2.86 100% | 210.4 MiB/s | 15.8 MiB | 00m00s
- [186/216] Installing harfbuzz-devel-0:1 100% | 213.4 MiB/s | 5.3 MiB | 00m00s
- [187/216] Installing freetype-devel-0:2 100% | 328.5 MiB/s | 8.5 MiB | 00m00s
- [188/216] Installing fontconfig-devel-0 100% | 77.8 MiB/s | 159.4 KiB | 00m00s
- [189/216] Installing cairo-devel-0:1.18 100% | 572.7 MiB/s | 2.3 MiB | 00m00s
- [190/216] Installing cairo-gobject-deve 100% | 7.4 MiB/s | 7.6 KiB | 00m00s
- [191/216] Installing glycin-devel-0:2.0 100% | 62.1 MiB/s | 127.3 KiB | 00m00s
- [192/216] Installing gdk-pixbuf2-devel- 100% | 128.8 MiB/s | 2.3 MiB | 00m00s
- [193/216] Installing libXft-devel-0:2.3 100% | 21.6 MiB/s | 44.3 KiB | 00m00s
- [194/216] Installing pango-devel-0:1.57 100% | 217.6 MiB/s | 1.5 MiB | 00m00s
- [195/216] Installing graphene-devel-0:1 100% | 390.2 MiB/s | 2.3 MiB | 00m00s
- [196/216] Installing cups-filesystem-1: 100% | 1.7 MiB/s | 1.8 KiB | 00m00s
- [197/216] Installing cups-libs-1:2.4.16 100% | 86.5 MiB/s | 620.2 KiB | 00m00s
- [198/216] Installing adwaita-icon-theme 100% | 19.8 MiB/s | 2.4 MiB | 00m00s
- [199/216] Installing adwaita-cursor-the 100% | 457.1 MiB/s | 11.4 MiB | 00m00s
- [200/216] Installing adwaita-icon-theme 100% | 23.9 MiB/s | 1.3 MiB | 00m00s
- [201/216] Installing gtk3-0:3.24.52-1.f 100% | 313.0 MiB/s | 22.5 MiB | 00m00s
- [202/216] Installing gtk4-0:4.20.4-1.fc 100% | 344.8 MiB/s | 26.9 MiB | 00m00s
- [203/216] Installing gtk4-devel-0:4.20. 100% | 244.7 MiB/s | 22.8 MiB | 00m00s
- [204/216] Installing xdg-desktop-portal 100% | 24.7 MiB/s | 481.2 KiB | 00m00s
- [205/216] Installing libcanberra-gtk3-0 100% | 4.0 MiB/s | 73.9 KiB | 00m00s
- [206/216] Installing tinysparql-0:3.10. 100% | 68.9 MiB/s | 2.6 MiB | 00m00s
- [207/216] Installing mesa-vulkan-driver 100% | 473.0 MiB/s | 152.8 MiB | 00m00s
- [208/216] Installing glib-networking-0: 100% | 148.0 MiB/s | 757.9 KiB | 00m00s
- [209/216] Installing gi-docgen-fonts-0: 100% | 0.0 B/s | 124.0 B | 00m00s
- [210/216] Installing mesa-va-drivers-0: 100% | 960.9 KiB/s | 984.0 B | 00m00s
- [211/216] Installing dconf-0:0.49.0-1.f 100% | 9.2 MiB/s | 312.1 KiB | 00m00s
- [212/216] Installing adwaita-mono-fonts 100% | 344.9 MiB/s | 5.5 MiB | 00m00s
- [213/216] Installing adwaita-sans-fonts 100% | 245.6 MiB/s | 1.7 MiB | 00m00s
- [214/216] Installing low-memory-monitor 100% | 2.5 MiB/s | 67.7 KiB | 00m00s
- [215/216] Removing glib2-0:2.86.4-1.fc4 100% | 14.4 KiB/s | 177.0 B | 00m00s
- [216/216] Removing zlib-ng-compat-0:2.3 100% | 7.0 B/s | 5.0 B | 00m01s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "gtk4-devel"
- gtk4-devel-4.20.4-1.fc43.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 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 ppx_derivers.1.2.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.27 ---> saved as "86dbfc0d342d0ac217f6765d4e00af69376c3f9bc819f8f10613d6dc98ab8164"
/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 fmt.0.11.0
-> installed astring.0.8.5
-> 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:28.56 ---> saved as "a3072ff87206fb7e7d057e77b9b885cad5e07e49b581b9bbebb1ef8a0ef1bbf7"
/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 \"\\\"fedora-43\\\"\"; 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_state.exe)
- Testing `Calc_state'.
- This run has ID `66KA4LKY'.
-
- [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/examples/calculator && ./test_calc_expr.exe)
- Testing `calc_expr'.
- This run has ID `WSWKEO05'.
-
- [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/src/tools/test_gir_gen && ./test_gir_gen.exe)
- Testing `GIR Generator'.
- This run has ID `TGD174V2'.
-
- [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.228s. 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 `WCTGPMMF'.
-
- [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 `21ERDFPM'.
-
- [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 && ./test_gobject_stress.exe)
- Testing `GObject Memory Stress Tests (KNOWN TO SEGFAULT)'.
- This run has ID `UCHRVHM6'.
-
- [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.
- (cd _build/default/ocgtk/tests/gtk && ./test_range.exe)
- Testing `Range Widget Tests'.
- This run has ID `Y9MOSAR4'.
-
- [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.002s. 0 test run.
- (cd _build/default/ocgtk/tests/gtk && ./test_string_list.exe)
- Testing `Gtk.StringList Tests'.
- This run has ID `6SGB5VNV'.
-
- [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.
- (cd _build/default/ocgtk/tests/gtk && ./test_widget.exe)
- Testing `Gtk.Widget Tests (Phase 3.1)'.
- This run has ID `G01N347W'.
-
- [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.
- (cd _build/default/ocgtk/tests/gtk && ./test_variance.exe)
- Testing `Gobject.obj Variance Tests'.
- This run has ID `170O3PIT'.
-
- [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.
- (cd _build/default/ocgtk/tests/gtk && ./test_box.exe)
- Testing `Gtk.Box Tests (Phase 4.1)'.
- This run has ID `JNE7O1I4'.
-
- [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.
- (cd _build/default/ocgtk/tests/gtk && ./test_button.exe)
- Testing `Button Tests'.
- This run has ID `XCYENCIU'.
-
- [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.
-> 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.20 ---> saved as "97daf990734f35c80ffee01438e717727a1640506e081b7325fe81bc774d3493"
Job succeeded
2026-04-05 06:29.24: Job succeeded