(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-42-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-42-ocaml-5.4@sha256:b1c0b0a0e0baf83ab2f0ba663b8f6a0143efbd15f502bbfd96710c4bcf641d8d
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-42\""; 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-42\""; 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-42-ocaml-5.4@sha256:b1c0b0a0e0baf83ab2f0ba663b8f6a0143efbd15f502bbfd96710c4bcf641d8d-ocgtk.0.1~preview0-840d56c72781bfe3e8253de0d7b9dbc81365b87c"
2026-04-05 06:24.23: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-5.4@sha256:b1c0b0a0e0baf83ab2f0ba663b8f6a0143efbd15f502bbfd96710c4bcf641d8d)
 (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-42\\\"\"; 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-42\\\"\"; 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 laodoke.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-42-ocaml-5.4@sha256:b1c0b0a0e0baf83ab2f0ba663b8f6a0143efbd15f502bbfd96710c4bcf641d8d)
2026-04-05 06:25.05 ---> using "6c76e851cb4d3b921542b288c0c2780f2fb35a979c1c6e3dd448bc18b6363090" 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:25.05 ---> using "50b1c1a98be5e0a9317c5ecc5427c90641b1ae884e2f379bbca6af3d50f0536e" 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 255 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=255 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-05 06:25.05 ---> using "b7a7870773ec910d66ce3cf9a8851b634b889fc21ffcb3e30f481f21a267c40a" 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=fedora os-version=42
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.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:25.05 ---> using "22ac25f0d8fca7d0d51813048ce4e3a3ebba4f835617f31c59dd945fa8857548" 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:25.05 ---> using "153e26b7fac4b2576d36b6128f107ae3e331c8e299ccbad8ff8712191647a9e8" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-05 06:25.13 ---> saved as "ab848ebb6d96f2292696927db4aae5fda6505cd311d72d73a3f26f8f1fe7cd4c"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-05 06:25.31 ---> saved as "221df8b042b66223b574102b524e0e9cf63df43d37738d7c21a16ec5909cccfc"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
-  Fedora 42 - x86_64 - Updates           100% |   1.0 KiB/s |   5.7 KiB |  00m05s
-  Fedora 42 - x86_64                     100% |  94.3 KiB/s |  21.6 KiB |  00m00s
- Repositories loaded.
- Metadata cache created.
2026-04-05 06:25.45 ---> saved as "a7f69e16693d232fd5c255ec37e608e88346de7ab572bc4b76126e2aa04196ae"

/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:25.46 ---> saved as "3b57136a56b34a7f303c83138a4feba2635c40ec4daf85671c5011128b6c3d6b"

/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-42\\\"\"; 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
- Installing:
-  gtk4-devel                              x86_64 4.18.6-1.fc42                   updates                22.0 MiB
- Installing dependencies:
-  ModemManager-glib                       x86_64 1.22.0-5.fc42                   fedora                  1.4 MiB
-  OpenCL-ICD-Loader                       x86_64 3.0.6-2.20241023git5907ac1.fc42 fedora                 70.7 KiB
-  SDL3                                    x86_64 3.4.0-3.fc42                    updates                 3.0 MiB
-  abattis-cantarell-vf-fonts              noarch 0.301-14.fc42                   fedora                192.7 KiB
-  adobe-source-code-pro-fonts             noarch 2.042.1.062.1.026-6.fc42        fedora                  1.6 MiB
-  adwaita-cursor-theme                    noarch 48.1-1.fc42                     updates                11.4 MiB
-  adwaita-icon-theme                      noarch 48.1-1.fc42                     updates                 1.2 MiB
-  adwaita-icon-theme-legacy               noarch 46.2-3.fc42                     fedora                  2.1 MiB
-  alsa-lib                                x86_64 1.2.15.3-1.fc42                 updates                 1.5 MiB
-  aribb24                                 x86_64 1.0.3^20160216git5e9be27-2.fc42 fedora                 81.8 KiB
-  at-spi2-atk                             x86_64 2.56.8-1.fc42                   updates               275.6 KiB
-  at-spi2-core                            x86_64 2.56.8-1.fc42                   updates                 1.5 MiB
-  atk                                     x86_64 2.56.8-1.fc42                   updates               248.6 KiB
-  avahi-glib                              x86_64 0.9~rc2-2.fc42                  fedora                 23.6 KiB
-  avahi-libs                              x86_64 0.9~rc2-2.fc42                  fedora                183.6 KiB
-  bluez-libs                              x86_64 5.84-2.fc42                     updates               198.3 KiB
-  brotli                                  x86_64 1.2.0-1.fc42                    updates                33.6 KiB
-  brotli-devel                            x86_64 1.2.0-1.fc42                    updates                65.9 KiB
-  bzip2-devel                             x86_64 1.0.8-20.fc42                   fedora                309.8 KiB
-  cairo                                   x86_64 1.18.2-3.fc42                   fedora                  1.8 MiB
-  cairo-devel                             x86_64 1.18.2-3.fc42                   fedora                  2.3 MiB
-  cairo-gobject                           x86_64 1.18.2-3.fc42                   fedora                 35.1 KiB
-  cairo-gobject-devel                     x86_64 1.18.2-3.fc42                   fedora                  7.0 KiB
-  cdparanoia-libs                         x86_64 10.2-47.fc42                    fedora                117.5 KiB
-  cjson                                   x86_64 1.7.18-2.fc42                   fedora                 63.9 KiB
-  cmake-filesystem                        x86_64 3.31.11-1.fc42                  updates                 0.0   B
-  codec2                                  x86_64 1.2.0-6.fc42                    fedora                  1.4 MiB
-  colord-libs                             x86_64 1.4.7-6.fc42                    fedora                850.7 KiB
-  cpuinfo                                 x86_64 24.09.26-2.git1e83a2f.fc42.1    updates               107.0 KiB
-  cups-filesystem                         noarch 1:2.4.16-7.fc42                 updates                 0.0   B
-  cups-libs                               x86_64 1:2.4.16-7.fc42                 updates               618.7 KiB
-  default-fonts-core-sans                 noarch 4.2-4.fc42                      fedora                 11.9 KiB
-  exempi                                  x86_64 2.6.4-7.fc42                    fedora                  1.4 MiB
-  exiv2-libs                              x86_64 0.28.6-2.fc42                   updates                 2.8 MiB
-  fdk-aac-free                            x86_64 2.0.0-15.fc42                   fedora                615.8 KiB
-  fftw-libs-single                        x86_64 3.3.10-15.fc42                  fedora                  3.6 MiB
-  flac-libs                               x86_64 1.4.3-6.fc42                    fedora                698.1 KiB
-  fontconfig                              x86_64 2.16.0-2.fc42                   fedora                764.7 KiB
-  fontconfig-devel                        x86_64 2.16.0-2.fc42                   fedora                119.3 KiB
-  fonts-filesystem                        noarch 1:2.0.5-22.fc42                 updates                 0.0   B
-  freetype                                x86_64 2.13.3-2.fc42                   fedora                858.2 KiB
-  freetype-devel                          x86_64 2.13.3-2.fc42                   fedora                  8.5 MiB
-  fribidi                                 x86_64 1.0.16-2.fc42                   fedora                194.3 KiB
-  fribidi-devel                           x86_64 1.0.16-2.fc42                   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
-  game-music-emu                          x86_64 0.6.3-17.fc42                   fedora                331.4 KiB
-  gdk-pixbuf2                             x86_64 2.42.12-12.fc42                 updates                 2.5 MiB
-  gdk-pixbuf2-devel                       x86_64 2.42.12-12.fc42                 updates                 2.3 MiB
-  gdk-pixbuf2-modules                     x86_64 2.42.12-12.fc42                 updates                55.4 KiB
-  geoclue2                                x86_64 2.8.0-1.fc42                    updates               401.7 KiB
-  gettext                                 x86_64 0.23.1-2.fc42                   fedora                  5.2 MiB
-  gettext-envsubst                        x86_64 0.23.1-2.fc42                   fedora                 78.8 KiB
-  gettext-libs                            x86_64 0.23.1-2.fc42                   fedora                  2.0 MiB
-  gettext-runtime                         x86_64 0.23.1-2.fc42                   fedora                452.2 KiB
-  giflib                                  x86_64 5.2.2-6.fc42                    updates               112.1 KiB
-  glib2-devel                             x86_64 2.84.4-1.fc42                   updates                15.8 MiB
-  glibc-gconv-extra                       x86_64 2.41-16.fc42                    updates                 7.2 MiB
-  gobject-introspection                   x86_64 1.84.0-1.fc42                   fedora                392.8 KiB
-  google-noto-fonts-common                noarch 20250301-1.fc42                 fedora                 17.7 KiB
-  google-noto-sans-vf-fonts               noarch 20250301-1.fc42                 fedora                  1.4 MiB
-  gpgme                                   x86_64 1.24.3-1.fc42                   updates               587.9 KiB
-  gpgmepp                                 x86_64 1.24.3-1.fc42                   updates               429.2 KiB
-  graphene                                x86_64 1.10.6-10.fc42                  fedora                162.4 KiB
-  graphene-devel                          x86_64 1.10.6-10.fc42                  fedora                  2.3 MiB
-  graphite2                               x86_64 1.3.14-18.fc42                  fedora                195.8 KiB
-  graphite2-devel                         x86_64 1.3.14-18.fc42                  fedora                 49.3 KiB
-  gsettings-desktop-schemas               x86_64 48.0-3.fc42                     updates                 5.4 MiB
-  gsm                                     x86_64 1.0.22-8.fc42                   fedora                 68.8 KiB
-  gssdp                                   x86_64 1.6.4-1.fc42                    updates               146.5 KiB
-  gstreamer1                              x86_64 1.26.11-1.fc42                  updates                 5.4 MiB
-  gstreamer1-plugins-bad-free-libs        x86_64 1.26.11-1.fc42                  updates                 3.1 MiB
-  gstreamer1-plugins-base                 x86_64 1.26.11-1.fc42                  updates                 7.4 MiB
-  gtk-update-icon-cache                   x86_64 3.24.49-2.fc42                  fedora                 62.2 KiB
-  gtk3                                    x86_64 3.24.49-2.fc42                  fedora                 23.1 MiB
-  gtk4                                    x86_64 4.18.6-1.fc42                   updates                26.2 MiB
-  gupnp                                   x86_64 1.6.9-1.fc42                    updates               308.0 KiB
-  gupnp-igd                               x86_64 1.6.0-6.fc42                    fedora                 70.7 KiB
-  harfbuzz                                x86_64 10.4.0-2.fc42                   updates                 2.8 MiB
-  harfbuzz-cairo                          x86_64 10.4.0-2.fc42                   updates                52.1 KiB
-  harfbuzz-devel                          x86_64 10.4.0-2.fc42                   updates                 5.2 MiB
-  harfbuzz-icu                            x86_64 10.4.0-2.fc42                   updates                15.4 KiB
-  hicolor-icon-theme                      noarch 0.17-20.fc42                    fedora                 72.2 KiB
-  highway                                 x86_64 1.3.0-1.fc42                    updates                 5.5 MiB
-  hwdata                                  noarch 0.405-1.fc42                    updates                 9.8 MiB
-  ilbc                                    x86_64 3.0.4-13.fc42                   fedora                 95.4 KiB
-  inih                                    x86_64 62-1.fc42                       updates                22.4 KiB
-  inih-cpp                                x86_64 62-1.fc42                       updates                36.1 KiB
-  iso-codes                               noarch 4.17.0-2.fc42                   fedora                 20.3 MiB
-  jbigkit-libs                            x86_64 2.1-31.fc42                     fedora                121.4 KiB
-  json-glib                               x86_64 1.10.8-1.fc42                   updates               592.3 KiB
-  lame-libs                               x86_64 3.100-19.fc42                   fedora                  1.2 MiB
-  lcms2                                   x86_64 2.16-5.fc42                     fedora                437.7 KiB
-  libXcomposite                           x86_64 0.4.6-5.fc42                    fedora                 44.4 KiB
-  libXcursor                              x86_64 1.2.3-2.fc42                    fedora                 57.4 KiB
-  libXdamage                              x86_64 1.1.6-5.fc42                    fedora                 43.6 KiB
-  libXext                                 x86_64 1.3.6-3.fc42                    fedora                 90.0 KiB
-  libXext-devel                           x86_64 1.3.6-3.fc42                    fedora                 98.9 KiB
-  libXfixes                               x86_64 6.0.1-5.fc42                    fedora                 30.2 KiB
-  libXft                                  x86_64 2.3.8-8.fc42                    fedora                168.4 KiB
-  libXft-devel                            x86_64 2.3.8-8.fc42                    fedora                 31.7 KiB
-  libXi                                   x86_64 1.8.2-2.fc42                    fedora                 84.6 KiB
-  libXinerama                             x86_64 1.1.5-8.fc42                    fedora                 19.0 KiB
-  libXrandr                               x86_64 1.5.4-5.fc42                    fedora                 55.8 KiB
-  libXrender                              x86_64 0.9.12-2.fc42                   fedora                 50.0 KiB
-  libXrender-devel                        x86_64 0.9.12-2.fc42                   fedora                 50.1 KiB
-  libXtst                                 x86_64 1.2.5-2.fc42                    fedora                 33.5 KiB
-  libXv                                   x86_64 1.0.13-2.fc42                   fedora                 30.0 KiB
-  libXxf86vm                              x86_64 1.1.6-2.fc42                    fedora                 29.2 KiB
-  libaom                                  x86_64 3.13.1-1.fc42                   updates                 5.0 MiB
-  libaribcaption                          x86_64 1.1.1-2.fc42                    fedora                248.5 KiB
-  libasyncns                              x86_64 0.8-30.fc42                     fedora                 59.5 KiB
-  libavcodec-free                         x86_64 7.1.2-1.fc42                    updates                 9.8 MiB
-  libavformat-free                        x86_64 7.1.2-1.fc42                    updates                 2.6 MiB
-  libavif                                 x86_64 1.1.1-1.fc42                    fedora                213.9 KiB
-  libavutil-free                          x86_64 7.1.2-1.fc42                    updates               962.9 KiB
-  libblkid-devel                          x86_64 2.40.4-10.fc42                  updates                44.9 KiB
-  libbluray                               x86_64 1.3.4-9.fc42                    fedora                397.6 KiB
-  libcamera                               x86_64 0.4.0-4.fc42                    fedora                  1.9 MiB
-  libcanberra                             x86_64 0.30-37.fc42                    fedora                286.4 KiB
-  libchromaprint                          x86_64 1.5.1-24.fc42                   fedora                 64.5 KiB
-  libcloudproviders                       x86_64 0.3.6-1.fc42                    fedora                124.3 KiB
-  libcue                                  x86_64 2.3.0-11.fc42                   fedora                 89.8 KiB
-  libdatrie                               x86_64 0.2.13-11.fc42                  fedora                 57.8 KiB
-  libdatrie-devel                         x86_64 0.2.13-11.fc42                  fedora                597.7 KiB
-  libdav1d                                x86_64 1.5.3-1.fc42                    updates                 1.7 MiB
-  libdecor                                x86_64 0.2.4-1.fc42                    updates               165.2 KiB
-  libdrm                                  x86_64 2.4.131-1.fc42                  updates               404.7 KiB
-  libdvdnav                               x86_64 6.1.1-10.fc42                   fedora                120.1 KiB
-  libdvdread                              x86_64 6.1.3-9.fc42                    fedora                160.1 KiB
-  libebur128                              x86_64 1.2.6-12.fc42                   fedora                 39.3 KiB
-  libepoxy                                x86_64 1.5.10-9.fc42                   fedora                  1.1 MiB
-  libexif                                 x86_64 0.6.25-1.fc42                   fedora                  2.7 MiB
-  libffi-devel                            x86_64 3.4.6-5.fc42                    fedora                 33.1 KiB
-  libgexiv2                               x86_64 0.14.6-1.fc42                   updates               279.2 KiB
-  libglvnd                                x86_64 1:1.7.0-7.fc42                  fedora                530.2 KiB
-  libglvnd-egl                            x86_64 1:1.7.0-7.fc42                  fedora                 68.7 KiB
-  libglvnd-glx                            x86_64 1:1.7.0-7.fc42                  fedora                609.2 KiB
-  libgsf                                  x86_64 1.14.56-1.fc42                  updates               981.1 KiB
-  libgudev                                x86_64 238-7.fc42                      fedora                 87.8 KiB
-  libgusb                                 x86_64 0.4.9-3.fc42                    fedora                162.0 KiB
-  libgxps                                 x86_64 0.3.2-10.fc42                   fedora                192.1 KiB
-  libicu-devel                            x86_64 76.1-4.fc42                     fedora                  5.0 MiB
-  libimobiledevice                        x86_64 1.3.0^20240916gited9703d-5.fc42 fedora                304.7 KiB
-  libimobiledevice-glue                   x86_64 1.3.1-2.fc42                    fedora                122.8 KiB
-  libiptcdata                             x86_64 1.0.5-21.fc42                   fedora                171.9 KiB
-  libjpeg-turbo                           x86_64 3.1.3-1.fc42                    updates               806.3 KiB
-  libjpeg-turbo-devel                     x86_64 3.1.3-1.fc42                    updates               353.9 KiB
-  libjxl                                  x86_64 1:0.11.1-4.fc42                 updates                 3.1 MiB
-  liblc3                                  x86_64 1.1.3-1.fc42                    fedora                170.8 KiB
-  libldac                                 x86_64 2.0.2.3-17.fc42                 fedora                 82.2 KiB
-  libldb                                  x86_64 2:4.22.7-1.fc42                 updates               450.7 KiB
-  liblerc                                 x86_64 4.0.0-8.fc42                    fedora                636.1 KiB
-  liblerc-devel                           x86_64 4.0.0-8.fc42                    fedora                  4.3 MiB
-  libmodplug                              x86_64 1:0.8.9.0-27.fc42               fedora                355.2 KiB
-  libmount-devel                          x86_64 2.40.4-10.fc42                  updates                63.5 KiB
-  libnice                                 x86_64 0.1.22-5.fc42                   fedora                497.7 KiB
-  libnotify                               x86_64 0.8.8-1.fc42                    updates               126.6 KiB
-  libogg                                  x86_64 2:1.3.5-11.fc42                 fedora                 45.3 KiB
-  libopenmpt                              x86_64 0.8.6-1.fc42                    updates                 1.8 MiB
-  libosinfo                               x86_64 1.12.0-2.fc42                   fedora                  1.2 MiB
-  libpciaccess                            x86_64 0.16-15.fc42                    fedora                 44.5 KiB
-  libplist                                x86_64 2.6.0-2.fc42                    fedora                237.0 KiB
-  libpng                                  x86_64 2:1.6.55-1.fc42                 updates               241.7 KiB
-  libpng-devel                            x86_64 2:1.6.55-1.fc42                 updates               887.6 KiB
-  libproxy                                x86_64 0.5.8-2.fc42                    fedora                102.3 KiB
-  librabbitmq                             x86_64 0.15.0-2.fc42                   fedora                 89.6 KiB
-  librist                                 x86_64 0.2.7-9.fc42                    fedora                153.3 KiB
-  librsvg2                                x86_64 2.60.0-5.fc42                   updates                 5.1 MiB
-  libsbc                                  x86_64 2.0-6.fc42                      fedora                 93.4 KiB
-  libselinux-devel                        x86_64 3.8-3.fc42                      updates               126.8 KiB
-  libsepol-devel                          x86_64 3.8-1.fc42                      fedora                120.8 KiB
-  libsmbclient                            x86_64 2:4.22.7-1.fc42                 updates               164.8 KiB
-  libsndfile                              x86_64 1.2.2-8.fc42                    fedora                550.0 KiB
-  libsodium                               x86_64 1.0.21-2.fc42                   updates               449.4 KiB
-  libsoup3                                x86_64 3.6.6-2.fc42                    updates                 1.7 MiB
-  libswresample-free                      x86_64 7.1.2-1.fc42                    updates               147.4 KiB
-  libtalloc                               x86_64 2.4.3-2.fc42                    fedora                 64.1 KiB
-  libtdb                                  x86_64 1.4.13-2.fc42                   fedora                100.5 KiB
-  libtevent                               x86_64 0.16.2-2.fc42                   fedora                101.4 KiB
-  libtextstyle                            x86_64 0.23.1-2.fc42                   fedora                207.5 KiB
-  libthai                                 x86_64 0.1.29-10.fc42                  fedora                783.4 KiB
-  libthai-devel                           x86_64 0.1.29-10.fc42                  fedora                700.9 KiB
-  libtheora                               x86_64 1:1.1.1-39.fc42                 fedora                481.3 KiB
-  libtiff                                 x86_64 4.7.1-1.fc42                    updates               624.4 KiB
-  libtiff-devel                           x86_64 4.7.1-1.fc42                    updates               805.2 KiB
-  libtinysparql                           x86_64 3.9.2-1.fc42                    updates                 1.3 MiB
-  libudfread                              x86_64 1.1.2-11.fc42                   fedora                 65.9 KiB
-  libunwind                               x86_64 1.8.1-2.fc42                    fedora                194.1 KiB
-  libusbmuxd                              x86_64 2.1.0-3.fc42                    fedora                 75.2 KiB
-  libva                                   x86_64 2.22.0-4.fc42                   fedora                329.4 KiB
-  libvdpau                                x86_64 1.5-9.fc42                      fedora                 20.7 KiB
-  libvisual                               x86_64 1:0.4.2-1.fc42                  updates               494.1 KiB
-  libvmaf                                 x86_64 3.0.0-3.fc42                    fedora                827.0 KiB
-  libvorbis                               x86_64 1:1.3.7-12.fc42                 fedora                833.4 KiB
-  libvpl                                  x86_64 1:2.16.0-1.fc42                 updates               427.2 KiB
-  libvpx                                  x86_64 1.15.0-3.fc42                   updates                 3.3 MiB
-  libwayland-client                       x86_64 1.24.0-1.fc42                   updates                62.0 KiB
-  libwayland-cursor                       x86_64 1.24.0-1.fc42                   updates                37.3 KiB
-  libwayland-egl                          x86_64 1.24.0-1.fc42                   updates                12.4 KiB
-  libwayland-server                       x86_64 1.24.0-1.fc42                   updates                78.5 KiB
-  libwbclient                             x86_64 2:4.22.7-1.fc42                 updates                68.6 KiB
-  libwebp                                 x86_64 1.5.0-2.fc42                    fedora                947.6 KiB
-  libwebp-devel                           x86_64 1.5.0-2.fc42                    fedora                121.2 KiB
-  libxml2-devel                           x86_64 2.12.10-1.fc42                  fedora                  3.4 MiB
-  libxshmfence                            x86_64 1.3.2-6.fc42                    fedora                 12.4 KiB
-  libxslt                                 x86_64 1.1.43-1.fc42                   fedora                456.1 KiB
-  libyuv                                  x86_64 0-0.56.20240704git96bbdb5.fc42  fedora                683.6 KiB
-  libzstd-devel                           x86_64 1.5.7-1.fc42                    fedora                208.0 KiB
-  lm_sensors-libs                         x86_64 3.6.0-22.fc42                   fedora                 85.8 KiB
-  lmdb-libs                               x86_64 0.9.34-1.fc42                   updates               106.0 KiB
-  lpcnetfreedv                            x86_64 0.5-8.fc42                      fedora                 14.8 MiB
-  lttng-ust                               x86_64 2.13.8-4.fc42                   fedora                  1.1 MiB
-  mbedtls                                 x86_64 3.6.5-1.fc42                    updates                 1.3 MiB
-  mesa-dri-drivers                        x86_64 25.1.9-1.fc42                   updates                46.7 MiB
-  mesa-filesystem                         x86_64 25.1.9-1.fc42                   updates                 3.6 KiB
-  mesa-libEGL                             x86_64 25.1.9-1.fc42                   updates               334.9 KiB
-  mesa-libGL                              x86_64 25.1.9-1.fc42                   updates               306.2 KiB
-  mesa-libgbm                             x86_64 25.1.9-1.fc42                   updates                19.7 KiB
-  mpg123-libs                             x86_64 1.32.10-1.fc42                  updates               814.0 KiB
-  nspr                                    x86_64 4.38.2-4.fc42                   updates               315.5 KiB
-  nss                                     x86_64 3.121.0-1.fc42                  updates                 1.9 MiB
-  nss-softokn                             x86_64 3.121.0-1.fc42                  updates                 2.0 MiB
-  nss-softokn-freebl                      x86_64 3.121.0-1.fc42                  updates               991.0 KiB
-  nss-sysinit                             x86_64 3.121.0-1.fc42                  updates                18.1 KiB
-  nss-util                                x86_64 3.121.0-1.fc42                  updates               204.8 KiB
-  opencore-amr                            x86_64 0.1.6-8.fc42                    fedora                348.7 KiB
-  openh264                                x86_64 2.5.1-1.fc42                    fedora-cisco-openh264   1.1 MiB
-  openjpeg                                x86_64 2.5.4-1.fc42                    updates               456.3 KiB
-  openpgm                                 x86_64 5.3.128-4.fc42                  fedora                316.3 KiB
-  opus                                    x86_64 1.5.2-2.fc42                    fedora                427.5 KiB
-  orc                                     x86_64 0.4.41-1.fc42                   fedora                726.3 KiB
-  osinfo-db                               noarch 20251212-1.fc42                 updates                 4.2 MiB
-  osinfo-db-tools                         x86_64 1.12.0-2.fc42                   fedora                190.9 KiB
-  pango                                   x86_64 1.56.4-2.fc42                   updates                 1.0 MiB
-  pango-devel                             x86_64 1.56.4-2.fc42                   updates                 1.5 MiB
-  pcre2-devel                             x86_64 10.46-1.fc42                    updates                 2.1 MiB
-  pcre2-utf16                             x86_64 10.46-1.fc42                    updates               626.3 KiB
-  pcre2-utf32                             x86_64 10.46-1.fc42                    updates               602.2 KiB
-  pipewire-jack-audio-connection-kit-libs x86_64 1.4.11-1.fc42                   updates               496.6 KiB
-  pipewire-libs                           x86_64 1.4.11-1.fc42                   updates                 8.6 MiB
-  pixman                                  x86_64 0.46.2-1.fc42                   updates               710.3 KiB
-  pixman-devel                            x86_64 0.46.2-1.fc42                   updates                56.1 KiB
-  poppler                                 x86_64 25.02.0-4.fc42                  updates                 3.7 MiB
-  poppler-data                            noarch 0.4.11-9.fc42                   fedora                 12.3 MiB
-  poppler-glib                            x86_64 25.02.0-4.fc42                  updates               612.3 KiB
-  pulseaudio-libs                         x86_64 17.0-9.fc42                     updates                 3.4 MiB
-  python3-packaging                       noarch 24.2-3.fc42                     fedora                555.7 KiB
-  rav1e-libs                              x86_64 0.8.1-2.fc42                    updates                 3.1 MiB
-  redhat-display-fonts                    noarch 4.1.0-1.fc42                    fedora                963.9 KiB
-  redhat-text-fonts                       noarch 4.1.0-1.fc42                    fedora                788.2 KiB
-  rtkit                                   x86_64 0.11-66.fc42                    fedora                138.1 KiB
-  samba-client-libs                       x86_64 2:4.22.7-1.fc42                 updates                19.5 MiB
-  samba-common                            noarch 2:4.22.7-1.fc42                 updates               210.8 KiB
-  samba-common-libs                       x86_64 2:4.22.7-1.fc42                 updates               259.4 KiB
-  sdl12-compat                            x86_64 1.2.74-1.fc42                   updates               200.4 KiB
-  sdl2-compat                             x86_64 2.32.64-1.fc42                  updates               408.4 KiB
-  shared-mime-info                        x86_64 2.3-7.fc42                      fedora                  5.2 MiB
-  snappy                                  x86_64 1.2.1-4.fc42                    fedora                 71.3 KiB
-  sound-theme-freedesktop                 noarch 0.8-23.fc42                     fedora                460.4 KiB
-  soxr                                    x86_64 0.1.3-18.fc42                   fedora                191.5 KiB
-  speex                                   x86_64 1.2.0-19.fc42                   fedora                128.5 KiB
-  spirv-tools-libs                        x86_64 2025.2-2.fc42                   updates                 5.8 MiB
-  srt-libs                                x86_64 1.5.4-2.fc42                    fedora                997.8 KiB
-  svt-av1-libs                            x86_64 2.3.0-1.fc42                    fedora                  5.6 MiB
-  sysprof-capture-devel                   x86_64 48.1-1.fc42                     updates               274.0 KiB
-  totem-pl-parser                         x86_64 3.26.6-12.fc42                  fedora                308.3 KiB
-  twolame-libs                            x86_64 0.4.0-6.fc42                    fedora                165.5 KiB
-  uchardet                                x86_64 0.0.8-7.fc42                    fedora                275.6 KiB
-  upower-libs                             x86_64 1.91.0-1.fc42                   updates               178.8 KiB
-  vo-amrwbenc                             x86_64 0.1.3-22.fc42                   fedora                153.9 KiB
-  vulkan-headers                          noarch 1.4.313.0-1.fc42                updates                30.9 MiB
-  vulkan-loader                           x86_64 1.4.313.0-1.fc42                updates               532.4 KiB
-  vulkan-loader-devel                     x86_64 1.4.313.0-1.fc42                updates                 8.0 KiB
-  wayland-devel                           x86_64 1.24.0-1.fc42                   updates               691.9 KiB
-  webrtc-audio-processing                 x86_64 1.3-5.fc42                      fedora                  1.4 MiB
-  wireplumber                             x86_64 0.5.13-1.fc42                   updates               426.6 KiB
-  wireplumber-libs                        x86_64 0.5.13-1.fc42                   updates                 1.3 MiB
-  xdg-desktop-portal                      x86_64 1.20.3-1.fc42                   updates                 1.8 MiB
-  xml-common                              noarch 0.6.3-66.fc42                   fedora                 78.4 KiB
-  xprop                                   x86_64 1.2.8-3.fc42                    fedora                 54.7 KiB
-  xvidcore                                x86_64 1.3.7-13.fc42                   fedora                878.4 KiB
-  xz-devel                                x86_64 1:5.8.1-4.fc42                  updates               258.8 KiB
-  zeromq                                  x86_64 4.3.5-21.fc42                   fedora                890.1 KiB
-  zlib-ng-compat-devel                    x86_64 2.2.5-2.fc42                    updates               107.0 KiB
-  zvbi                                    x86_64 0.2.43-2.fc42                   fedora                  1.2 MiB
- Installing weak dependencies:
-  adwaita-mono-fonts                      noarch 48.2-2.fc42                     fedora                  5.4 MiB
-  adwaita-sans-fonts                      noarch 48.2-2.fc42                     fedora                  1.7 MiB
-  avif-pixbuf-loader                      x86_64 1.1.1-1.fc42                    fedora                 19.5 KiB
-  dconf                                   x86_64 0.40.0-15.fc42                  fedora                315.4 KiB
-  exiv2                                   x86_64 0.28.6-2.fc42                   updates                12.2 MiB
-  gi-docgen-fonts                         noarch 2026.1-2.fc42                   updates                 0.0   B
-  glib-networking                         x86_64 2.80.1-1.fc42                   fedora                742.9 KiB
-  intel-mediasdk                          x86_64 23.2.2-7.fc42                   fedora                 22.5 MiB
-  intel-vpl-gpu-rt                        x86_64 25.4.5-1.fc42                   updates                11.7 MiB
-  jxl-pixbuf-loader                       x86_64 1:0.11.1-4.fc42                 updates                29.2 KiB
-  libcamera-ipa                           x86_64 0.4.0-4.fc42                    fedora                548.2 KiB
-  libcanberra-gtk3                        x86_64 0.30-37.fc42                    fedora                 78.7 KiB
-  localsearch                             x86_64 3.9.0-1.fc42                    fedora                  3.8 MiB
-  logrotate                               x86_64 3.22.0-3.fc42                   fedora                148.9 KiB
-  low-memory-monitor                      x86_64 2.1-12.fc42                     fedora                 66.0 KiB
-  mesa-va-drivers                         x86_64 25.1.9-1.fc42                   updates               115.0   B
-  mesa-vulkan-drivers                     x86_64 25.1.9-1.fc42                   updates               129.1 MiB
-  pipewire                                x86_64 1.4.11-1.fc42                   updates               433.2 KiB
-  pipewire-alsa                           x86_64 1.4.11-1.fc42                   updates               158.0 KiB
-  pipewire-jack-audio-connection-kit      x86_64 1.4.11-1.fc42                   updates                30.0   B
-  pipewire-plugin-libcamera               x86_64 1.4.11-1.fc42                   updates               146.6 KiB
-  pipewire-pulseaudio                     x86_64 1.4.11-1.fc42                   updates               436.2 KiB
-  rsvg-pixbuf-loader                      x86_64 2.60.0-5.fc42                   updates               335.7 KiB
-  tinysparql                              x86_64 3.9.2-1.fc42                    updates                 2.5 MiB
-  upower                                  x86_64 1.91.0-1.fc42                   updates               303.8 KiB
-  usbmuxd                                 x86_64 1.1.1^20240915git0b1b233-4.fc42 fedora                149.1 KiB
-  webp-pixbuf-loader                      x86_64 0.2.7-3.fc42                    fedora                 28.6 KiB
-  xdg-desktop-portal-gtk                  x86_64 1.15.3-1.fc42                   fedora                469.2 KiB
- 
- Transaction Summary:
-  Installing:       316 packages
- 
- Total size of inbound packages is 171 MiB. Need to download 171 MiB.
- After this operation, 707 MiB extra will be used (install 707 MiB, remove 0 B).
- [  1/316] cairo-gobject-0:1.18.2-3.fc42 100% |  79.8 KiB/s |  17.3 KiB |  00m00s
- [  2/316] gtk4-devel-0:4.18.6-1.fc42.x8 100% |   6.9 MiB/s |   4.2 MiB |  00m01s
- [  3/316] fontconfig-0:2.16.0-2.fc42.x8 100% | 587.5 KiB/s | 272.0 KiB |  00m00s
- [  4/316] graphene-0:1.10.6-10.fc42.x86 100% | 612.6 KiB/s |  61.3 KiB |  00m00s
- [  5/316] fribidi-0:1.0.16-2.fc42.x86_6 100% | 262.6 KiB/s |  53.6 KiB |  00m00s
- [  6/316] libXcursor-0:1.2.3-2.fc42.x86 100% | 356.3 KiB/s |  31.4 KiB |  00m00s
- [  7/316] libXext-0:1.3.6-3.fc42.x86_64 100% | 426.9 KiB/s |  39.3 KiB |  00m00s
- [  8/316] libXdamage-0:1.1.6-5.fc42.x86 100% | 147.2 KiB/s |  23.4 KiB |  00m00s
- [  9/316] libXi-0:1.8.2-2.fc42.x86_64   100% | 177.1 KiB/s |  40.5 KiB |  00m00s
- [ 10/316] libXinerama-0:1.1.5-8.fc42.x8 100% |  65.7 KiB/s |  14.3 KiB |  00m00s
- [ 11/316] libXrandr-0:1.5.4-5.fc42.x86_ 100% | 202.7 KiB/s |  27.8 KiB |  00m00s
- [ 12/316] libXfixes-0:6.0.1-5.fc42.x86_ 100% |  27.5 KiB/s |  19.1 KiB |  00m01s
- [ 13/316] gtk4-0:4.18.6-1.fc42.x86_64   100% |  14.6 MiB/s |   6.3 MiB |  00m00s
- [ 14/316] cairo-0:1.18.2-3.fc42.x86_64  100% | 212.3 KiB/s | 731.8 KiB |  00m03s
- [ 15/316] libepoxy-0:1.5.10-9.fc42.x86_ 100% | 120.1 KiB/s | 229.9 KiB |  00m02s
- [ 16/316] libXrender-0:0.9.12-2.fc42.x8 100% | 128.2 KiB/s |  26.9 KiB |  00m00s
- [ 17/316] default-fonts-core-sans-0:4.2 100% | 104.2 KiB/s |  31.3 KiB |  00m00s
- [ 18/316] freetype-0:2.13.3-2.fc42.x86_ 100% | 185.6 KiB/s | 415.5 KiB |  00m02s
- [ 19/316] gtk-update-icon-cache-0:3.24. 100% |  34.1 KiB/s |  33.8 KiB |  00m01s
- [ 20/316] xml-common-0:0.6.3-66.fc42.no 100% |  16.2 KiB/s |  31.2 KiB |  00m02s
- [ 21/316] hicolor-icon-theme-0:0.17-20. 100% | 146.3 KiB/s |  65.7 KiB |  00m00s
- [ 22/316] colord-libs-0:1.4.7-6.fc42.x8 100% |  70.2 KiB/s | 231.1 KiB |  00m03s
- [ 23/316] abattis-cantarell-vf-fonts-0: 100% |  65.7 KiB/s | 120.3 KiB |  00m02s
- [ 24/316] libgusb-0:0.4.9-3.fc42.x86_64 100% |  61.0 KiB/s |  65.3 KiB |  00m01s
- [ 25/316] google-noto-fonts-common-0:20 100% |  21.0 KiB/s |  17.1 KiB |  00m01s
- [ 26/316] lcms2-0:2.16-5.fc42.x86_64    100% |  55.6 KiB/s | 184.1 KiB |  00m03s
- [ 27/316] cairo-gobject-devel-0:1.18.2- 100% |  15.1 KiB/s |  11.3 KiB |  00m01s
- [ 28/316] gdk-pixbuf2-0:2.42.12-12.fc42 100% |   2.9 MiB/s | 488.9 KiB |  00m00s
- [ 29/316] google-noto-sans-vf-fonts-0:2 100% |  90.5 KiB/s | 614.5 KiB |  00m07s
- [ 30/316] gdk-pixbuf2-modules-0:2.42.12 100% |   1.0 MiB/s |  28.0 KiB |  00m00s
- [ 31/316] cairo-devel-0:1.18.2-3.fc42.x 100% |  56.2 KiB/s | 192.1 KiB |  00m03s
- [ 32/316] gdk-pixbuf2-devel-0:2.42.12-1 100% |   2.4 MiB/s | 367.6 KiB |  00m00s
- [ 33/316] glib2-devel-0:2.84.4-1.fc42.x 100% |   3.9 MiB/s |   1.5 MiB |  00m00s
- [ 34/316] python3-packaging-0:24.2-3.fc 100% |  71.3 KiB/s | 154.0 KiB |  00m02s
- [ 35/316] harfbuzz-0:10.4.0-2.fc42.x86_ 100% |   4.5 MiB/s |   1.1 MiB |  00m00s
- [ 36/316] graphene-devel-0:1.10.6-10.fc 100% |  82.2 KiB/s | 168.3 KiB |  00m02s
- [ 37/316] libjpeg-turbo-0:3.1.3-1.fc42. 100% |   2.0 MiB/s | 236.9 KiB |  00m00s
- [ 38/316] libpng-2:1.6.55-1.fc42.x86_64 100% |   1.5 MiB/s | 124.0 KiB |  00m00s
- [ 39/316] libtiff-0:4.7.1-1.fc42.x86_64 100% |   2.3 MiB/s | 222.5 KiB |  00m00s
- [ 40/316] graphite2-0:1.3.14-18.fc42.x8 100% | 199.1 KiB/s |  95.8 KiB |  00m00s
- [ 41/316] jbigkit-libs-0:2.1-31.fc42.x8 100% | 160.1 KiB/s |  53.3 KiB |  00m00s
- [ 42/316] shared-mime-info-0:2.3-7.fc42 100% |  87.2 KiB/s | 393.7 KiB |  00m05s
- [ 43/316] libtinysparql-0:3.9.2-1.fc42. 100% |   4.2 MiB/s | 373.6 KiB |  00m00s
- [ 44/316] avahi-glib-0:0.9~rc2-2.fc42.x 100% | 114.9 KiB/s |  15.3 KiB |  00m00s
- [ 45/316] avahi-libs-0:0.9~rc2-2.fc42.x 100% | 119.4 KiB/s |  69.1 KiB |  00m01s
- [ 46/316] libwayland-client-0:1.24.0-1. 100% |   1.0 MiB/s |  33.6 KiB |  00m00s
- [ 47/316] libwayland-cursor-0:1.24.0-1. 100% | 699.1 KiB/s |  18.9 KiB |  00m00s
- [ 48/316] libwayland-egl-0:1.24.0-1.fc4 100% | 476.0 KiB/s |  12.4 KiB |  00m00s
- [ 49/316] pango-0:1.56.4-2.fc42.x86_64  100% |   3.0 MiB/s | 351.2 KiB |  00m00s
- [ 50/316] libwebp-0:1.5.0-2.fc42.x86_64 100% | 266.7 KiB/s | 320.6 KiB |  00m01s
- [ 51/316] libXft-0:2.3.8-8.fc42.x86_64  100% | 192.8 KiB/s |  72.9 KiB |  00m00s
- [ 52/316] libdatrie-0:0.2.13-11.fc42.x8 100% | 182.8 KiB/s |  32.4 KiB |  00m00s
- [ 53/316] pango-devel-0:1.56.4-2.fc42.x 100% |   2.3 MiB/s | 161.4 KiB |  00m00s
- [ 54/316] liblerc-0:4.0.0-8.fc42.x86_64 100% | 105.3 KiB/s | 216.7 KiB |  00m02s
- [ 55/316] libthai-0:0.1.29-10.fc42.x86_ 100% | 247.1 KiB/s | 211.5 KiB |  00m01s
- [ 56/316] fontconfig-devel-0:2.16.0-2.f 100% | 200.1 KiB/s | 167.3 KiB |  00m01s
- [ 57/316] gettext-libs-0:0.23.1-2.fc42. 100% | 321.7 KiB/s | 760.4 KiB |  00m02s
- [ 58/316] gettext-0:0.23.1-2.fc42.x86_6 100% | 356.2 KiB/s |   1.1 MiB |  00m03s
- [ 59/316] gettext-runtime-0:0.23.1-2.fc 100% | 334.7 KiB/s | 116.1 KiB |  00m00s
- [ 60/316] gettext-envsubst-0:0.23.1-2.f 100% | 275.4 KiB/s |  37.7 KiB |  00m00s
- [ 61/316] libtextstyle-0:0.23.1-2.fc42. 100% | 296.3 KiB/s |  92.1 KiB |  00m00s
- [ 62/316] vulkan-loader-0:1.4.313.0-1.f 100% | 501.6 KiB/s | 151.5 KiB |  00m00s
- [ 63/316] vulkan-loader-devel-0:1.4.313 100% |  63.7 KiB/s |  12.2 KiB |  00m00s
- [ 64/316] libwayland-server-0:1.24.0-1. 100% | 964.5 KiB/s |  41.5 KiB |  00m00s
- [ 65/316] wayland-devel-0:1.24.0-1.fc42 100% |   1.1 MiB/s | 154.1 KiB |  00m00s
- [ 66/316] adwaita-icon-theme-0:48.1-1.f 100% |   2.0 MiB/s | 398.8 KiB |  00m00s
- [ 67/316] adwaita-cursor-theme-0:48.1-1 100% |   2.5 MiB/s | 379.5 KiB |  00m00s
- [ 68/316] cups-libs-1:2.4.16-7.fc42.x86 100% |   2.3 MiB/s | 260.9 KiB |  00m00s
- [ 69/316] cups-filesystem-1:2.4.16-7.fc 100% | 458.2 KiB/s |  12.4 KiB |  00m00s
- [ 70/316] freetype-devel-0:2.13.3-2.fc4 100% | 238.1 KiB/s |   1.0 MiB |  00m04s
- [ 71/316] gstreamer1-0:1.26.11-1.fc42.x 100% |   4.9 MiB/s |   1.7 MiB |  00m00s
- [ 72/316] gstreamer1-plugins-bad-free-l 100% |   5.7 MiB/s |   1.0 MiB |  00m00s
- [ 73/316] libunwind-0:1.8.1-2.fc42.x86_ 100% | 186.4 KiB/s |  77.2 KiB |  00m00s
- [ 74/316] libnice-0:0.1.22-5.fc42.x86_6 100% | 423.1 KiB/s | 200.5 KiB |  00m00s
- [ 75/316] gupnp-igd-0:1.6.0-6.fc42.x86_ 100% | 344.8 KiB/s |  33.8 KiB |  00m00s
- [ 76/316] libva-0:2.22.0-4.fc42.x86_64  100% | 148.0 KiB/s | 116.9 KiB |  00m01s
- [ 77/316] libglvnd-glx-1:1.7.0-7.fc42.x 100% | 403.2 KiB/s | 133.1 KiB |  00m00s
- [ 78/316] gstreamer1-plugins-base-0:1.2 100% |   6.9 MiB/s |   2.3 MiB |  00m00s
- [ 79/316] cdparanoia-libs-0:10.2-47.fc4 100% | 428.7 KiB/s |  54.0 KiB |  00m00s
- [ 80/316] libglvnd-1:1.7.0-7.fc42.x86_6 100% | 171.3 KiB/s | 114.4 KiB |  00m01s
- [ 81/316] libXv-0:1.0.13-2.fc42.x86_64  100% | 194.0 KiB/s |  18.6 KiB |  00m00s
- [ 82/316] libglvnd-egl-1:1.7.0-7.fc42.x 100% | 342.4 KiB/s |  36.3 KiB |  00m00s
- [ 83/316] libgudev-0:238-7.fc42.x86_64  100% | 244.2 KiB/s |  34.9 KiB |  00m00s
- [ 84/316] libogg-2:1.3.5-11.fc42.x86_64 100% | 356.4 KiB/s |  33.1 KiB |  00m00s
- [ 85/316] libtheora-1:1.1.1-39.fc42.x86 100% | 415.7 KiB/s | 170.4 KiB |  00m00s
- [ 86/316] libvorbis-1:1.3.7-12.fc42.x86 100% | 366.7 KiB/s | 189.2 KiB |  00m01s
- [ 87/316] opus-0:1.5.2-2.fc42.x86_64    100% | 363.4 KiB/s | 236.9 KiB |  00m01s
- [ 88/316] orc-0:0.4.41-1.fc42.x86_64    100% | 246.9 KiB/s | 220.5 KiB |  00m01s
- [ 89/316] alsa-lib-0:1.2.15.3-1.fc42.x8 100% |   2.7 MiB/s | 541.4 KiB |  00m00s
- [ 90/316] libdrm-0:2.4.131-1.fc42.x86_6 100% |   1.3 MiB/s | 162.9 KiB |  00m00s
- [ 91/316] libpciaccess-0:0.16-15.fc42.x 100% |  67.6 KiB/s |  26.3 KiB |  00m00s
- [ 92/316] libvisual-1:0.4.2-1.fc42.x86_ 100% |   1.9 MiB/s | 169.0 KiB |  00m00s
- [ 93/316] mesa-libgbm-0:25.1.9-1.fc42.x 100% | 353.0 KiB/s |  14.8 KiB |  00m00s
- [ 94/316] mesa-libEGL-0:25.1.9-1.fc42.x 100% |   1.0 MiB/s | 126.9 KiB |  00m00s
- [ 95/316] adwaita-icon-theme-legacy-0:4 100% | 400.5 KiB/s |   2.5 MiB |  00m06s
- [ 96/316] libxshmfence-0:1.3.2-6.fc42.x 100% | 195.3 KiB/s |  13.3 KiB |  00m00s
- [ 97/316] lm_sensors-libs-0:3.6.0-22.fc 100% | 219.8 KiB/s |  40.4 KiB |  00m00s
- [ 98/316] mesa-filesystem-0:25.1.9-1.fc 100% |   5.6 KiB/s |   8.8 KiB |  00m02s
- [ 99/316] mesa-dri-drivers-0:25.1.9-1.f 100% |   5.4 MiB/s |  12.5 MiB |  00m02s
- [100/316] mesa-libGL-0:25.1.9-1.fc42.x8 100% | 271.4 KiB/s | 121.8 KiB |  00m00s
- [101/316] libffi-devel-0:3.4.6-5.fc42.x 100% | 216.4 KiB/s |  28.8 KiB |  00m00s
- [102/316] libmount-devel-0:2.40.4-10.fc 100% | 156.9 KiB/s |  24.3 KiB |  00m00s
- [103/316] libselinux-devel-0:3.8-3.fc42 100% |   1.2 MiB/s | 151.4 KiB |  00m00s
- [104/316] libsepol-devel-0:3.8-1.fc42.x 100% | 417.3 KiB/s |  48.4 KiB |  00m00s
- [105/316] libXxf86vm-0:1.1.6-2.fc42.x86 100% |  17.3 KiB/s |  17.9 KiB |  00m01s
- [106/316] pcre2-devel-0:10.46-1.fc42.x8 100% |   1.0 MiB/s | 543.1 KiB |  00m01s
- [107/316] pcre2-utf16-0:10.46-1.fc42.x8 100% | 555.3 KiB/s | 241.6 KiB |  00m00s
- [108/316] pcre2-utf32-0:10.46-1.fc42.x8 100% | 362.0 KiB/s | 228.8 KiB |  00m01s
- [109/316] sysprof-capture-devel-0:48.1- 100% | 232.5 KiB/s |  56.0 KiB |  00m00s
- [110/316] zlib-ng-compat-devel-0:2.2.5- 100% | 163.1 KiB/s |  38.3 KiB |  00m00s
- [111/316] libjpeg-turbo-devel-0:3.1.3-1 100% | 365.0 KiB/s |  97.1 KiB |  00m00s
- [112/316] libpng-devel-2:1.6.55-1.fc42. 100% | 975.6 KiB/s | 293.7 KiB |  00m00s
- [113/316] libtiff-devel-0:4.7.1-1.fc42. 100% | 535.3 KiB/s | 276.8 KiB |  00m01s
- [114/316] hwdata-0:0.405-1.fc42.noarch  100% |   1.2 MiB/s |   1.7 MiB |  00m01s
- [115/316] json-glib-0:1.10.8-1.fc42.x86 100% | 139.7 KiB/s | 172.4 KiB |  00m01s
- [116/316] gssdp-0:1.6.4-1.fc42.x86_64   100% | 353.7 KiB/s |  58.0 KiB |  00m00s
- [117/316] gupnp-0:1.6.9-1.fc42.x86_64   100% | 715.7 KiB/s | 106.6 KiB |  00m00s
- [118/316] fonts-filesystem-1:2.0.5-22.f 100% |  46.4 KiB/s |   8.7 KiB |  00m00s
- [119/316] brotli-devel-0:1.2.0-1.fc42.x 100% | 214.6 KiB/s |  34.3 KiB |  00m00s
- [120/316] brotli-0:1.2.0-1.fc42.x86_64  100% | 279.9 KiB/s |  23.8 KiB |  00m00s
- [121/316] harfbuzz-devel-0:10.4.0-2.fc4 100% |   1.1 MiB/s | 452.3 KiB |  00m00s
- [122/316] harfbuzz-cairo-0:10.4.0-2.fc4 100% | 601.5 KiB/s |  28.9 KiB |  00m00s
- [123/316] harfbuzz-icu-0:10.4.0-2.fc42. 100% | 105.8 KiB/s |  14.1 KiB |  00m00s
- [124/316] bzip2-devel-0:1.0.8-20.fc42.x 100% | 129.8 KiB/s | 213.7 KiB |  00m02s
- [125/316] libXext-devel-0:1.3.6-3.fc42. 100% | 115.1 KiB/s |  85.3 KiB |  00m01s
- [126/316] libXrender-devel-0:0.9.12-2.f 100% | 142.6 KiB/s |  19.1 KiB |  00m00s
- [127/316] pixman-devel-0:0.46.2-1.fc42. 100% | 408.3 KiB/s |  18.0 KiB |  00m00s
- [128/316] pixman-0:0.46.2-1.fc42.x86_64 100% |   1.1 MiB/s | 292.7 KiB |  00m00s
- [129/316] cmake-filesystem-0:3.31.11-1. 100% |  33.9 KiB/s |  12.8 KiB |  00m00s
- [130/316] libxml2-devel-0:2.12.10-1.fc4 100% | 163.4 KiB/s | 523.7 KiB |  00m03s
- [131/316] vulkan-headers-0:1.4.313.0-1. 100% |   1.9 MiB/s |   1.4 MiB |  00m01s
- [132/316] fribidi-devel-0:1.0.16-2.fc42 100% | 110.7 KiB/s |  29.5 KiB |  00m00s
- [133/316] libXft-devel-0:2.3.8-8.fc42.x 100% | 195.6 KiB/s |  49.7 KiB |  00m00s
- [134/316] spirv-tools-libs-0:2025.2-2.f 100% |   2.5 MiB/s |   1.5 MiB |  00m01s
- [135/316] sdl12-compat-0:1.2.74-1.fc42. 100% |   1.6 MiB/s |  94.7 KiB |  00m00s
- [136/316] libsoup3-0:3.6.6-2.fc42.x86_6 100% |   1.8 MiB/s | 451.4 KiB |  00m00s
- [137/316] libthai-devel-0:0.1.29-10.fc4 100% | 118.0 KiB/s | 147.1 KiB |  00m01s
- [138/316] libwebp-devel-0:1.5.0-2.fc42. 100% | 174.2 KiB/s |  39.7 KiB |  00m00s
- [139/316] libzstd-devel-0:1.5.7-1.fc42. 100% | 248.1 KiB/s |  53.1 KiB |  00m00s
- [140/316] libblkid-devel-0:2.40.4-10.fc 100% | 433.2 KiB/s |  23.4 KiB |  00m00s
- [141/316] graphite2-devel-0:1.3.14-18.f 100% | 150.8 KiB/s |  20.8 KiB |  00m00s
- [142/316] iso-codes-0:4.17.0-2.fc42.noa 100% | 210.9 KiB/s |   3.6 MiB |  00m18s
- [143/316] xz-devel-1:5.8.1-4.fc42.x86_6 100% | 784.7 KiB/s |  66.7 KiB |  00m00s
- [144/316] libdatrie-devel-0:0.2.13-11.f 100% | 134.4 KiB/s | 156.0 KiB |  00m01s
- [145/316] sdl2-compat-0:2.32.64-1.fc42. 100% |   2.1 MiB/s | 137.0 KiB |  00m00s
- [146/316] SDL3-0:3.4.0-3.fc42.x86_64    100% |   4.0 MiB/s |   1.1 MiB |  00m00s
- [147/316] libdecor-0:0.2.4-1.fc42.x86_6 100% | 688.2 KiB/s |  57.8 KiB |  00m00s
- [148/316] libicu-devel-0:76.1-4.fc42.x8 100% | 242.4 KiB/s | 793.5 KiB |  00m03s
- [149/316] libXcomposite-0:0.4.6-5.fc42. 100% |  49.6 KiB/s |  24.3 KiB |  00m00s
- [150/316] libcloudproviders-0:0.3.6-1.f 100% | 103.1 KiB/s |  46.8 KiB |  00m00s
- [151/316] at-spi2-atk-0:2.56.8-1.fc42.x 100% |   1.6 MiB/s |  85.8 KiB |  00m00s
- [152/316] at-spi2-core-0:2.56.8-1.fc42. 100% |   3.0 MiB/s | 383.4 KiB |  00m00s
- [153/316] atk-0:2.56.8-1.fc42.x86_64    100% |   1.2 MiB/s |  79.5 KiB |  00m00s
- [154/316] libXtst-0:1.2.5-2.fc42.x86_64 100% | 135.0 KiB/s |  20.7 KiB |  00m00s
- [155/316] xprop-0:1.2.8-3.fc42.x86_64   100% | 145.2 KiB/s |  35.0 KiB |  00m00s
- [156/316] xdg-desktop-portal-gtk-0:1.15 100% | 233.4 KiB/s | 143.8 KiB |  00m01s
- [157/316] dconf-0:0.40.0-15.fc42.x86_64 100% | 178.7 KiB/s | 109.5 KiB |  00m01s
- [158/316] rsvg-pixbuf-loader-0:2.60.0-5 100% |   2.4 MiB/s | 164.0 KiB |  00m00s
- [159/316] librsvg2-0:2.60.0-5.fc42.x86_ 100% |   5.4 MiB/s |   1.9 MiB |  00m00s
- [160/316] jxl-pixbuf-loader-1:0.11.1-4. 100% | 709.3 KiB/s |  19.9 KiB |  00m00s
- [161/316] webp-pixbuf-loader-0:0.2.7-3. 100% |  50.1 KiB/s |  19.8 KiB |  00m00s
- [162/316] avif-pixbuf-loader-0:1.1.1-1. 100% |  67.2 KiB/s |  16.2 KiB |  00m00s
- [163/316] libavif-0:1.1.1-1.fc42.x86_64 100% |   2.9 MiB/s | 100.1 KiB |  00m00s
- [164/316] libyuv-0:0-0.56.20240704git96 100% |   4.3 MiB/s | 201.9 KiB |  00m00s
- [165/316] svt-av1-libs-0:2.3.0-1.fc42.x 100% |   1.2 MiB/s |   2.0 MiB |  00m02s
- [166/316] gi-docgen-fonts-0:2026.1-2.fc 100% | 217.1 KiB/s |   9.1 KiB |  00m00s
- [167/316] adobe-source-code-pro-fonts-0 100% | 291.0 KiB/s | 806.3 KiB |  00m03s
- [168/316] redhat-display-fonts-0:4.1.0- 100% | 145.2 KiB/s | 555.4 KiB |  00m04s
- [169/316] liblerc-devel-0:4.0.0-8.fc42. 100% | 170.0 KiB/s |   3.2 MiB |  00m19s
- [170/316] tinysparql-0:3.9.2-1.fc42.x86 100% |   4.9 MiB/s |   1.0 MiB |  00m00s
- [171/316] redhat-text-fonts-0:4.1.0-1.f 100% | 108.8 KiB/s | 483.2 KiB |  00m04s
- [172/316] mesa-va-drivers-0:25.1.9-1.fc 100% |  14.9 KiB/s |   7.6 KiB |  00m01s
- [173/316] mesa-vulkan-drivers-0:25.1.9- 100% |   9.5 MiB/s |  23.4 MiB |  00m02s
- [174/316] libproxy-0:0.5.8-2.fc42.x86_6 100% | 122.9 KiB/s |  45.5 KiB |  00m00s
- [175/316] glib-networking-0:2.80.1-1.fc 100% |  86.0 KiB/s | 201.4 KiB |  00m02s
- [176/316] exempi-0:2.6.4-7.fc42.x86_64  100% | 510.9 KiB/s | 583.5 KiB |  00m01s
- [177/316] libcue-0:2.3.0-11.fc42.x86_64 100% | 347.7 KiB/s |  35.1 KiB |  00m00s
- [178/316] libexif-0:0.6.25-1.fc42.x86_6 100% | 491.4 KiB/s | 481.1 KiB |  00m01s
- [179/316] libgxps-0:0.3.2-10.fc42.x86_6 100% | 142.8 KiB/s |  77.0 KiB |  00m01s
- [180/316] localsearch-0:3.9.0-1.fc42.x8 100% | 198.1 KiB/s | 932.4 KiB |  00m05s
- [181/316] libiptcdata-0:1.0.5-21.fc42.x 100% | 144.6 KiB/s |  60.5 KiB |  00m00s
- [182/316] totem-pl-parser-0:3.26.6-12.f 100% | 139.3 KiB/s | 143.6 KiB |  00m01s
- [183/316] libosinfo-0:1.12.0-2.fc42.x86 100% | 177.4 KiB/s | 317.2 KiB |  00m02s
- [184/316] osinfo-db-tools-0:1.12.0-2.fc 100% | 293.9 KiB/s |  73.2 KiB |  00m00s
- [185/316] uchardet-0:0.0.8-7.fc42.x86_6 100% | 161.1 KiB/s | 106.3 KiB |  00m01s
- [186/316] libcanberra-gtk3-0:0.30-37.fc 100% | 153.6 KiB/s |  30.6 KiB |  00m00s
- [187/316] libxslt-0:1.1.43-1.fc42.x86_6 100% |  97.8 KiB/s | 181.5 KiB |  00m02s
- [188/316] libcanberra-0:0.30-37.fc42.x8 100% | 211.9 KiB/s |  84.1 KiB |  00m00s
- [189/316] libtdb-0:1.4.13-2.fc42.x86_64 100% | 146.2 KiB/s |  54.8 KiB |  00m00s
- [190/316] libdav1d-0:1.5.3-1.fc42.x86_6 100% |   6.8 MiB/s | 637.4 KiB |  00m00s
- [191/316] libjxl-1:0.11.1-4.fc42.x86_64 100% |   9.1 MiB/s |   1.1 MiB |  00m00s
- [192/316] gsettings-desktop-schemas-0:4 100% |   5.0 MiB/s | 783.1 KiB |  00m00s
- [193/316] xdg-desktop-portal-0:1.20.3-1 100% |   3.1 MiB/s | 505.3 KiB |  00m00s
- [194/316] fuse3-0:3.16.2-5.fc42.x86_64  100% | 168.4 KiB/s |  57.4 KiB |  00m00s
- [195/316] fuse3-libs-0:3.16.2-5.fc42.x8 100% | 161.1 KiB/s |  94.2 KiB |  00m01s
- [196/316] fuse-common-0:3.16.2-5.fc42.x 100% |  39.6 KiB/s |   8.6 KiB |  00m00s
- [197/316] cpuinfo-0:24.09.26-2.git1e83a 100% |   1.5 MiB/s |  43.8 KiB |  00m00s
- [198/316] giflib-0:5.2.2-6.fc42.x86_64  100% | 462.1 KiB/s |  52.2 KiB |  00m00s
- [199/316] libavformat-free-0:7.1.2-1.fc 100% |   4.3 MiB/s |   1.1 MiB |  00m00s
- [200/316] game-music-emu-0:0.6.3-17.fc4 100% | 147.9 KiB/s | 154.4 KiB |  00m01s
- [201/316] sound-theme-freedesktop-0:0.8 100% | 105.8 KiB/s | 382.4 KiB |  00m04s
- [202/316] libbluray-0:1.3.4-9.fc42.x86_ 100% | 343.5 KiB/s | 174.2 KiB |  00m01s
- [203/316] libdvdnav-0:6.1.1-10.fc42.x86 100% | 239.7 KiB/s |  55.9 KiB |  00m00s
- [204/316] libchromaprint-0:1.5.1-24.fc4 100% |  57.5 KiB/s |  41.8 KiB |  00m01s
- [205/316] libdvdread-0:6.1.3-9.fc42.x86 100% | 103.4 KiB/s |  72.6 KiB |  00m01s
- [206/316] librabbitmq-0:0.15.0-2.fc42.x 100% | 255.4 KiB/s |  43.9 KiB |  00m00s
- [207/316] librist-0:0.2.7-9.fc42.x86_64 100% |  86.7 KiB/s |  76.7 KiB |  00m01s
- [208/316] libmodplug-1:0.8.9.0-27.fc42. 100% |  88.0 KiB/s | 178.4 KiB |  00m02s
- [209/316] srt-libs-0:1.5.4-2.fc42.x86_6 100% | 133.4 KiB/s | 389.6 KiB |  00m03s
- [210/316] libavcodec-free-0:7.1.2-1.fc4 100% |   7.6 MiB/s |   4.2 MiB |  00m01s
- [211/316] libavutil-free-0:7.1.2-1.fc42 100% |   1.2 MiB/s | 358.0 KiB |  00m00s
- [212/316] libudfread-0:1.1.2-11.fc42.x8 100% | 121.5 KiB/s |  35.5 KiB |  00m00s
- [213/316] cjson-0:1.7.18-2.fc42.x86_64  100% | 116.8 KiB/s |  32.2 KiB |  00m00s
- [214/316] zeromq-0:4.3.5-21.fc42.x86_64 100% |  92.3 KiB/s | 468.9 KiB |  00m05s
- [215/316] aribb24-0:1.0.3^20160216git5e 100% | 129.1 KiB/s |  38.3 KiB |  00m00s
- [216/316] openpgm-0:5.3.128-4.fc42.x86_ 100% |  91.3 KiB/s | 183.1 KiB |  00m02s
- [217/316] fdk-aac-free-0:2.0.0-15.fc42. 100% | 102.7 KiB/s | 342.4 KiB |  00m03s
- [218/316] gsm-0:1.0.22-8.fc42.x86_64    100% |  39.5 KiB/s |  35.8 KiB |  00m01s
- [219/316] ilbc-0:3.0.4-13.fc42.x86_64   100% |  80.9 KiB/s |  56.9 KiB |  00m01s
- [220/316] codec2-0:1.2.0-6.fc42.x86_64  100% | 118.5 KiB/s | 644.4 KiB |  00m05s
- [221/316] libaribcaption-0:1.1.1-2.fc42 100% |  90.7 KiB/s | 111.6 KiB |  00m01s
- [222/316] liblc3-0:1.1.3-1.fc42.x86_64  100% |  94.7 KiB/s | 105.2 KiB |  00m01s
- [223/316] lame-libs-0:3.100-19.fc42.x86 100% | 100.4 KiB/s | 339.7 KiB |  00m03s
- [224/316] snappy-0:1.2.1-4.fc42.x86_64  100% | 161.4 KiB/s |  39.9 KiB |  00m00s
- [225/316] gtk3-0:3.24.49-2.fc42.x86_64  100% | 126.1 KiB/s |   5.8 MiB |  00m47s
- [226/316] speex-0:1.2.0-19.fc42.x86_64  100% | 136.3 KiB/s |  70.8 KiB |  00m01s
- [227/316] twolame-libs-0:0.4.0-6.fc42.x 100% | 166.0 KiB/s |  68.7 KiB |  00m00s
- [228/316] vo-amrwbenc-0:0.1.3-22.fc42.x 100% | 201.5 KiB/s |  82.8 KiB |  00m00s
- [229/316] opencore-amr-0:0.1.6-8.fc42.x 100% |  73.5 KiB/s | 181.9 KiB |  00m02s
- [230/316] xvidcore-0:1.3.7-13.fc42.x86_ 100% | 229.5 KiB/s | 267.4 KiB |  00m01s
- [231/316] libswresample-free-0:7.1.2-1. 100% | 188.0 KiB/s |  67.9 KiB |  00m00s
- [232/316] libvdpau-0:1.5-9.fc42.x86_64  100% | 122.3 KiB/s |  16.6 KiB |  00m00s
- [233/316] soxr-0:0.1.3-18.fc42.x86_64   100% |  62.0 KiB/s |  86.8 KiB |  00m01s
- [234/316] libgexiv2-0:0.14.6-1.fc42.x86 100% |   1.7 MiB/s | 100.9 KiB |  00m00s
- [235/316] libgsf-0:1.14.56-1.fc42.x86_6 100% |   1.8 MiB/s | 263.9 KiB |  00m00s
- [236/316] poppler-glib-0:25.02.0-4.fc42 100% |   1.5 MiB/s | 201.0 KiB |  00m00s
- [237/316] poppler-0:25.02.0-4.fc42.x86_ 100% |   2.3 MiB/s |   1.3 MiB |  00m01s
- [238/316] zvbi-0:0.2.43-2.fc42.x86_64   100% | 106.7 KiB/s | 433.3 KiB |  00m04s
- [239/316] upower-libs-0:1.91.0-1.fc42.x 100% | 720.3 KiB/s |  59.8 KiB |  00m00s
- [240/316] mbedtls-0:3.6.5-1.fc42.x86_64 100% | 821.5 KiB/s | 512.6 KiB |  00m01s
- [241/316] osinfo-db-0:20251212-1.fc42.n 100% |   1.7 MiB/s | 490.8 KiB |  00m00s
- [242/316] pulseaudio-libs-0:17.0-9.fc42 100% |   1.9 MiB/s | 694.4 KiB |  00m00s
- [243/316] libasyncns-0:0.8-30.fc42.x86_ 100% |  26.2 KiB/s |  30.2 KiB |  00m01s
- [244/316] libsndfile-0:1.2.2-8.fc42.x86 100% | 188.8 KiB/s | 221.5 KiB |  00m01s
- [245/316] flac-libs-0:1.4.3-6.fc42.x86_ 100% | 210.4 KiB/s | 274.3 KiB |  00m01s
- [246/316] libaom-0:3.13.1-1.fc42.x86_64 100% |   2.0 MiB/s |   1.9 MiB |  00m01s
- [247/316] libvmaf-0:3.0.0-3.fc42.x86_64 100% | 246.5 KiB/s | 197.7 KiB |  00m01s
- [248/316] rav1e-libs-0:0.8.1-2.fc42.x86 100% |   3.1 MiB/s |   1.1 MiB |  00m00s
- [249/316] geoclue2-0:2.8.0-1.fc42.x86_6 100% |   1.9 MiB/s | 144.8 KiB |  00m00s
- [250/316] ModemManager-glib-0:1.22.0-5. 100% | 286.6 KiB/s | 304.6 KiB |  00m01s
- [251/316] pipewire-libs-0:1.4.11-1.fc42 100% |   3.6 MiB/s |   2.4 MiB |  00m01s
- [252/316] poppler-data-0:0.4.11-9.fc42. 100% | 184.4 KiB/s |   2.0 MiB |  00m11s
- [253/316] libebur128-0:1.2.6-12.fc42.x8 100% |  53.3 KiB/s |  24.8 KiB |  00m00s
- [254/316] libldac-0:2.0.2.3-17.fc42.x86 100% | 151.5 KiB/s |  42.9 KiB |  00m00s
- [255/316] libsbc-0:2.0-6.fc42.x86_64    100% | 103.3 KiB/s |  49.3 KiB |  00m00s
- [256/316] fftw-libs-single-0:3.3.10-15. 100% | 265.1 KiB/s |   1.2 MiB |  00m05s
- [257/316] webrtc-audio-processing-0:1.3 100% | 213.9 KiB/s | 537.4 KiB |  00m03s
- [258/316] gpgmepp-0:1.24.3-1.fc42.x86_6 100% |   1.2 MiB/s | 143.2 KiB |  00m00s
- [259/316] gobject-introspection-0:1.84. 100% | 278.9 KiB/s | 119.9 KiB |  00m00s
- [260/316] gpgme-0:1.24.3-1.fc42.x86_64  100% |   1.9 MiB/s | 219.1 KiB |  00m00s
- [261/316] nspr-0:4.38.2-4.fc42.x86_64   100% |   1.1 MiB/s | 137.7 KiB |  00m00s
- [262/316] nss-0:3.121.0-1.fc42.x86_64   100% |   3.1 MiB/s | 716.5 KiB |  00m00s
- [263/316] nss-softokn-0:3.121.0-1.fc42. 100% |   1.9 MiB/s | 430.7 KiB |  00m00s
- [264/316] nss-softokn-freebl-0:3.121.0- 100% |   2.7 MiB/s | 372.2 KiB |  00m00s
- [265/316] nss-sysinit-0:3.121.0-1.fc42. 100% | 259.3 KiB/s |  18.7 KiB |  00m00s
- [266/316] openjpeg-0:2.5.4-1.fc42.x86_6 100% |   1.9 MiB/s | 192.3 KiB |  00m00s
- [267/316] bluez-libs-0:5.84-2.fc42.x86_ 100% | 819.5 KiB/s |  83.6 KiB |  00m00s
- [268/316] nss-util-0:3.121.0-1.fc42.x86 100% |   1.1 MiB/s |  86.0 KiB |  00m00s
- [269/316] highway-0:1.3.0-1.fc42.x86_64 100% |   4.6 MiB/s | 697.9 KiB |  00m00s
- [270/316] exiv2-libs-0:0.28.6-2.fc42.x8 100% |   4.4 MiB/s | 908.5 KiB |  00m00s
- [271/316] libvpl-1:2.16.0-1.fc42.x86_64 100% |   1.0 MiB/s | 161.2 KiB |  00m00s
- [272/316] libopenmpt-0:0.8.6-1.fc42.x86 100% |   5.6 MiB/s | 785.8 KiB |  00m00s
- [273/316] libsmbclient-2:4.22.7-1.fc42. 100% | 620.3 KiB/s |  76.9 KiB |  00m00s
- [274/316] libtevent-0:0.16.2-2.fc42.x86 100% | 329.3 KiB/s |  51.4 KiB |  00m00s
- [275/316] libtalloc-0:2.4.3-2.fc42.x86_ 100% | 126.0 KiB/s |  34.9 KiB |  00m00s
- [276/316] samba-client-libs-2:4.22.7-1. 100% |  11.2 MiB/s |   5.6 MiB |  00m00s
- [277/316] samba-common-2:4.22.7-1.fc42. 100% | 424.1 KiB/s | 177.3 KiB |  00m00s
- [278/316] samba-common-libs-2:4.22.7-1. 100% | 765.0 KiB/s | 106.3 KiB |  00m00s
- [279/316] libwbclient-2:4.22.7-1.fc42.x 100% | 332.4 KiB/s |  45.5 KiB |  00m00s
- [280/316] libldb-2:4.22.7-1.fc42.x86_64 100% |   2.5 MiB/s | 187.7 KiB |  00m00s
- [281/316] libvpx-0:1.15.0-3.fc42.x86_64 100% |   7.0 MiB/s |   1.2 MiB |  00m00s
- [282/316] libnotify-0:0.8.8-1.fc42.x86_ 100% | 587.0 KiB/s |  55.8 KiB |  00m00s
- [283/316] inih-cpp-0:62-1.fc42.x86_64   100% | 872.2 KiB/s |  23.5 KiB |  00m00s
- [284/316] inih-0:62-1.fc42.x86_64       100% | 675.3 KiB/s |  18.2 KiB |  00m00s
- [285/316] libsodium-0:1.0.21-2.fc42.x86 100% |   1.4 MiB/s | 198.1 KiB |  00m00s
- [286/316] mpg123-libs-0:1.32.10-1.fc42. 100% |   3.2 MiB/s | 355.5 KiB |  00m00s
- [287/316] openh264-0:2.5.1-1.fc42.x86_6 100% | 501.8 KiB/s | 423.1 KiB |  00m01s
- [288/316] glibc-gconv-extra-0:2.41-16.f 100% |   1.8 MiB/s |   1.6 MiB |  00m01s
- [289/316] lmdb-libs-0:0.9.34-1.fc42.x86 100% |  87.8 KiB/s |  61.7 KiB |  00m01s
- [290/316] OpenCL-ICD-Loader-0:3.0.6-2.2 100% |  41.5 KiB/s |  28.2 KiB |  00m01s
- [291/316] adwaita-sans-fonts-0:48.2-2.f 100% | 298.3 KiB/s | 764.0 KiB |  00m03s
- [292/316] adwaita-mono-fonts-0:48.2-2.f 100% | 426.2 KiB/s |   1.4 MiB |  00m03s
- [293/316] low-memory-monitor-0:2.1-12.f 100% | 130.6 KiB/s |  34.3 KiB |  00m00s
- [294/316] pipewire-0:1.4.11-1.fc42.x86_ 100% | 316.2 KiB/s | 133.4 KiB |  00m00s
- [295/316] rtkit-0:0.11-66.fc42.x86_64   100% | 202.7 KiB/s |  55.1 KiB |  00m00s
- [296/316] upower-0:1.91.0-1.fc42.x86_64 100% | 349.0 KiB/s | 128.8 KiB |  00m00s
- [297/316] libplist-0:2.6.0-2.fc42.x86_6 100% | 298.8 KiB/s |  97.4 KiB |  00m00s
- [298/316] libimobiledevice-0:1.3.0^2024 100% | 128.5 KiB/s | 140.5 KiB |  00m01s
- [299/316] libusbmuxd-0:2.1.0-3.fc42.x86 100% | 337.9 KiB/s |  37.5 KiB |  00m00s
- [300/316] libimobiledevice-glue-0:1.3.1 100% |  89.5 KiB/s |  53.8 KiB |  00m01s
- [301/316] exiv2-0:0.28.6-2.fc42.x86_64  100% |   1.5 MiB/s |   2.0 MiB |  00m01s
- [302/316] intel-vpl-gpu-rt-0:25.4.5-1.f 100% |   1.7 MiB/s |   3.8 MiB |  00m02s
- [303/316] logrotate-0:3.22.0-3.fc42.x86 100% | 128.7 KiB/s |  76.1 KiB |  00m01s
- [304/316] wireplumber-0:0.5.13-1.fc42.x 100% |   1.1 MiB/s | 122.2 KiB |  00m00s
- [305/316] wireplumber-libs-0:0.5.13-1.f 100% |   3.1 MiB/s | 426.4 KiB |  00m00s
- [306/316] pipewire-alsa-0:1.4.11-1.fc42 100% |   1.8 MiB/s |  58.7 KiB |  00m00s
- [307/316] pipewire-jack-audio-connectio 100% | 201.8 KiB/s |  10.5 KiB |  00m00s
- [308/316] pipewire-jack-audio-connectio 100% |   1.8 MiB/s | 144.3 KiB |  00m00s
- [309/316] pipewire-pulseaudio-0:1.4.11- 100% |   1.1 MiB/s | 209.6 KiB |  00m00s
- [310/316] pipewire-plugin-libcamera-0:1 100% | 734.8 KiB/s |  73.5 KiB |  00m00s
- [311/316] libcamera-0:0.4.0-4.fc42.x86_ 100% | 274.9 KiB/s | 605.0 KiB |  00m02s
- [312/316] lttng-ust-0:2.13.8-4.fc42.x86 100% | 286.0 KiB/s | 331.4 KiB |  00m01s
- [313/316] usbmuxd-0:1.1.1^20240915git0b 100% | 140.3 KiB/s |  67.2 KiB |  00m00s
- [314/316] libcamera-ipa-0:0.4.0-4.fc42. 100% | 147.4 KiB/s | 147.0 KiB |  00m01s
- [315/316] lpcnetfreedv-0:0.5-8.fc42.x86 100% | 214.0 KiB/s |   7.3 MiB |  00m35s
- [316/316] intel-mediasdk-0:23.2.2-7.fc4 100% | 213.8 KiB/s |   2.7 MiB |  00m13s
- --------------------------------------------------------------------------------
- [316/316] Total                         100% |   1.3 MiB/s | 171.4 MiB |  02m12s
- Running transaction
- [  1/318] Verify package files          100% | 189.0   B/s | 316.0   B |  00m02s
- [  2/318] Prepare transaction           100% |   1.2 KiB/s | 316.0   B |  00m00s
- [  3/318] Installing libXext-0:1.3.6-3. 100% |  44.5 MiB/s |  91.2 KiB |  00m00s
- [  4/318] Installing libpng-2:1.6.55-1. 100% |  79.1 MiB/s | 243.0 KiB |  00m00s
- [  5/318] Installing libwayland-client- 100% |  30.9 MiB/s |  63.2 KiB |  00m00s
- [  6/318] Installing libjpeg-turbo-0:3. 100% | 131.5 MiB/s | 808.0 KiB |  00m00s
- [  7/318] Installing fonts-filesystem-1 100% | 769.5 KiB/s | 788.0   B |  00m00s
- [  8/318] Installing avahi-libs-0:0.9~r 100% |  45.4 MiB/s | 186.2 KiB |  00m00s
- [  9/318] Installing libXi-0:1.8.2-2.fc 100% |  41.8 MiB/s |  85.7 KiB |  00m00s
- [ 10/318] Installing nspr-0:4.38.2-4.fc 100% |  51.6 MiB/s | 317.3 KiB |  00m00s
- [ 11/318] Installing libsoup3-0:3.6.6-2 100% | 148.4 MiB/s |   1.8 MiB |  00m00s
- [ 12/318] Installing cmake-filesystem-0 100% |   1.9 MiB/s |   7.6 KiB |  00m00s
- [ 13/318] Installing zlib-ng-compat-dev 100% |  35.3 MiB/s | 108.5 KiB |  00m00s
- [ 14/318] Installing json-glib-0:1.10.8 100% |  98.4 MiB/s | 604.4 KiB |  00m00s
- [ 15/318] Installing libogg-2:1.3.5-11. 100% |  22.9 MiB/s |  46.9 KiB |  00m00s
- [ 16/318] Installing libvorbis-1:1.3.7- 100% | 102.0 MiB/s | 835.9 KiB |  00m00s
- [ 17/318] Installing libXrender-0:0.9.1 100% |  25.0 MiB/s |  51.3 KiB |  00m00s
- [ 18/318] Installing libXfixes-0:6.0.1- 100% |  30.8 MiB/s |  31.6 KiB |  00m00s
- [ 19/318] Installing libwayland-cursor- 100% |  18.8 MiB/s |  38.5 KiB |  00m00s
- [ 20/318] Installing libplist-0:2.6.0-2 100% |   9.0 MiB/s | 239.7 KiB |  00m00s
- [ 21/318] Installing libtalloc-0:2.4.3- 100% |  31.8 MiB/s |  65.2 KiB |  00m00s
- [ 22/318] Installing libtdb-0:1.4.13-2. 100% |  49.6 MiB/s | 101.6 KiB |  00m00s
- [ 23/318] Installing vulkan-loader-0:1. 100% |  87.1 MiB/s | 535.0 KiB |  00m00s
- [ 24/318] Installing libwayland-egl-0:1 100% |  13.2 MiB/s |  13.6 KiB |  00m00s
- [ 25/318] Installing fribidi-0:1.0.16-2 100% |   7.7 MiB/s | 196.8 KiB |  00m00s
- [ 26/318] Installing libXrender-devel-0 100% |  24.9 MiB/s |  51.0 KiB |  00m00s
- [ 27/318] Installing libpng-devel-2:1.6 100% |  33.5 MiB/s | 891.4 KiB |  00m00s
- [ 28/318] Installing nss-util-0:3.121.0 100% |  67.0 MiB/s | 205.8 KiB |  00m00s
- [ 29/318] Installing mesa-filesystem-0: 100% |   4.2 MiB/s |   4.3 KiB |  00m00s
- [ 30/318] Installing alsa-lib-0:1.2.15. 100% |  36.7 MiB/s |   1.5 MiB |  00m00s
- [ 31/318] Installing opus-0:1.5.2-2.fc4 100% |  83.7 MiB/s | 428.6 KiB |  00m00s
- [ 32/318] Installing libgudev-0:238-7.f 100% |  29.1 MiB/s |  89.3 KiB |  00m00s
- [ 33/318] Installing libwebp-0:1.5.0-2. 100% |  92.9 MiB/s | 951.8 KiB |  00m00s
- [ 34/318] Installing lcms2-0:2.16-5.fc4 100% |  85.8 MiB/s | 439.3 KiB |  00m00s
- [ 35/318] Installing graphene-0:1.10.6- 100% |  53.4 MiB/s | 164.1 KiB |  00m00s
- [ 36/318] Installing libtevent-0:0.16.2 100% |  33.4 MiB/s | 102.5 KiB |  00m00s
- [ 37/318] Installing libimobiledevice-g 100% |  40.5 MiB/s | 124.4 KiB |  00m00s
- [ 38/318] Installing libXcursor-0:1.2.3 100% |  28.9 MiB/s |  59.1 KiB |  00m00s
- [ 39/318] Installing libXdamage-0:1.1.6 100% |  22.1 MiB/s |  45.2 KiB |  00m00s
- [ 40/318] Installing libXrandr-0:1.5.4- 100% |  27.8 MiB/s |  57.0 KiB |  00m00s
- [ 41/318] Installing avahi-glib-0:0.9~r 100% |  11.9 MiB/s |  24.4 KiB |  00m00s
- [ 42/318] Installing libtinysparql-0:3. 100% | 117.9 MiB/s |   1.3 MiB |  00m00s
- [ 43/318] Installing libXinerama-0:1.1. 100% | 691.8 KiB/s |  20.1 KiB |  00m00s
- >>> Running sysusers scriptlet: samba-common-2:4.22.7-1.fc42.noarch             
- >>> Finished sysusers scriptlet: samba-common-2:4.22.7-1.fc42.noarch            
- >>> Scriptlet output:                                                           
- >>> Creating group 'printadmin' with GID 994.                                   
- >>>                                                                             
- [ 44/318] Installing samba-common-2:4.2 100% |  10.0 MiB/s | 214.3 KiB |  00m00s
- [ 45/318] Installing libvpl-1:2.16.0-1. 100% |  69.8 MiB/s | 429.2 KiB |  00m00s
- [ 46/318] Installing libdav1d-0:1.5.3-1 100% | 112.9 MiB/s |   1.7 MiB |  00m00s
- [ 47/318] Installing hwdata-0:0.405-1.f 100% | 158.6 MiB/s |   9.8 MiB |  00m00s
- [ 48/318] Installing libunwind-0:1.8.1- 100% |  38.6 MiB/s | 197.4 KiB |  00m00s
- [ 49/318] Installing gstreamer1-0:1.26. 100% |  88.3 MiB/s |   5.4 MiB |  00m00s
- [ 50/318] Installing libwayland-server- 100% |  19.5 MiB/s |  79.7 KiB |  00m00s
- [ 51/318] Installing shared-mime-info-0 100% |  46.8 MiB/s |   2.6 MiB |  00m00s
- [ 52/318] Installing gdk-pixbuf2-0:2.42 100% |  76.3 MiB/s |   2.5 MiB |  00m00s
- [ 53/318] Installing libepoxy-0:1.5.10- 100% | 135.3 MiB/s |   1.1 MiB |  00m00s
- [ 54/318] Installing gtk-update-icon-ca 100% |   2.6 MiB/s |  63.3 KiB |  00m00s
- [ 55/318] Installing libtheora-1:1.1.1- 100% |  94.5 MiB/s | 483.7 KiB |  00m00s
- [ 56/318] Installing libjpeg-turbo-deve 100% | 116.0 MiB/s | 356.5 KiB |  00m00s
- [ 57/318] Installing gssdp-0:1.6.4-1.fc 100% |  48.3 MiB/s | 148.4 KiB |  00m00s
- [ 58/318] Installing libXext-devel-0:1. 100% |  27.1 MiB/s | 110.9 KiB |  00m00s
- [ 59/318] Installing mpg123-libs-0:1.32 100% |  99.7 MiB/s | 816.6 KiB |  00m00s
- [ 60/318] Installing openjpeg-0:2.5.4-1 100% |  89.5 MiB/s | 458.2 KiB |  00m00s
- [ 61/318] Installing rav1e-libs-0:0.8.1 100% | 140.0 MiB/s |   3.1 MiB |  00m00s
- [ 62/318] Installing liblc3-0:1.1.3-1.f 100% |  55.9 MiB/s | 171.8 KiB |  00m00s
- [ 63/318] Installing lame-libs-0:3.100- 100% | 240.5 MiB/s |   1.2 MiB |  00m00s
- [ 64/318] Installing gsm-0:1.0.22-8.fc4 100% |  34.4 MiB/s |  70.4 KiB |  00m00s
- [ 65/318] Installing fdk-aac-free-0:2.0 100% | 100.5 MiB/s | 617.3 KiB |  00m00s
- [ 66/318] Installing libdvdread-0:6.1.3 100% |  52.7 MiB/s | 161.8 KiB |  00m00s
- [ 67/318] Installing fuse3-libs-0:3.16. 100% |  69.0 MiB/s | 282.6 KiB |  00m00s
- [ 68/318] Installing gsettings-desktop- 100% | 340.0 MiB/s |   5.4 MiB |  00m00s
- [ 69/318] Installing spirv-tools-libs-0 100% | 152.1 MiB/s |   5.8 MiB |  00m00s
- [ 70/318] Installing pixman-0:0.46.2-1. 100% | 115.8 MiB/s | 711.4 KiB |  00m00s
- [ 71/318] Installing pixman-devel-0:0.4 100% |  55.5 MiB/s |  56.9 KiB |  00m00s
- [ 72/318] Installing libffi-devel-0:3.4 100% |  34.0 MiB/s |  34.8 KiB |  00m00s
- [ 73/318] Installing libxshmfence-0:1.3 100% |  13.2 MiB/s |  13.6 KiB |  00m00s
- [ 74/318] Installing libglvnd-1:1.7.0-7 100% | 129.8 MiB/s | 531.6 KiB |  00m00s
- [ 75/318] Installing libtextstyle-0:0.2 100% |  67.8 MiB/s | 208.3 KiB |  00m00s
- [ 76/318] Installing gettext-libs-0:0.2 100% | 126.8 MiB/s |   2.0 MiB |  00m00s
- [ 77/318] Installing libdatrie-0:0.2.13 100% |  57.6 MiB/s |  58.9 KiB |  00m00s
- [ 78/318] Installing libthai-0:0.1.29-1 100% | 153.4 MiB/s | 785.2 KiB |  00m00s
- [ 79/318] Installing liblerc-0:4.0.0-8. 100% | 124.5 MiB/s | 637.6 KiB |  00m00s
- [ 80/318] Installing graphite2-0:1.3.14 100% |   8.8 MiB/s | 197.9 KiB |  00m00s
- [ 81/318] Installing harfbuzz-0:10.4.0- 100% | 153.3 MiB/s |   2.8 MiB |  00m00s
- [ 82/318] Installing freetype-0:2.13.3- 100% | 105.0 MiB/s | 859.9 KiB |  00m00s
- [ 83/318] Installing hicolor-icon-theme 100% |   4.4 MiB/s | 179.5 KiB |  00m00s
- [ 84/318] Installing xml-common-0:0.6.3 100% |  13.2 MiB/s |  81.1 KiB |  00m00s
- [ 85/318] Installing iso-codes-0:4.17.0 100% | 325.0 MiB/s |  20.5 MiB |  00m00s
- [ 86/318] Installing harfbuzz-icu-0:10. 100% |  15.9 MiB/s |  16.3 KiB |  00m00s
- [ 87/318] Installing graphite2-devel-0: 100% |  24.8 MiB/s |  50.8 KiB |  00m00s
- [ 88/318] Installing liblerc-devel-0:4. 100% | 612.5 MiB/s |   4.3 MiB |  00m00s
- [ 89/318] Installing libdatrie-devel-0: 100% |  27.1 MiB/s | 609.8 KiB |  00m00s
- [ 90/318] Installing libthai-devel-0:0. 100% | 175.3 MiB/s | 718.0 KiB |  00m00s
- [ 91/318] Installing wayland-devel-0:1. 100% |  27.4 MiB/s | 700.4 KiB |  00m00s
- [ 92/318] Installing libdvdnav-0:6.1.1- 100% |  59.4 MiB/s | 121.7 KiB |  00m00s
- [ 93/318] Installing libopenmpt-0:0.8.6 100% | 164.3 MiB/s |   1.8 MiB |  00m00s
- [ 94/318] Installing gupnp-0:1.6.9-1.fc 100% | 100.9 MiB/s | 309.8 KiB |  00m00s
- [ 95/318] Installing gupnp-igd-0:1.6.0- 100% |  35.4 MiB/s |  72.5 KiB |  00m00s
- [ 96/318] Installing libnice-0:0.1.22-5 100% |  21.3 MiB/s | 500.5 KiB |  00m00s
- [ 97/318] Installing libgsf-0:1.14.56-1 100% |  38.7 MiB/s | 991.5 KiB |  00m00s
- [ 98/318] Installing libnotify-0:0.8.8- 100% |   6.3 MiB/s | 129.0 KiB |  00m00s
- [ 99/318] Installing libpciaccess-0:0.1 100% |  22.4 MiB/s |  45.9 KiB |  00m00s
- [100/318] Installing libdrm-0:2.4.131-1 100% |  39.9 MiB/s | 408.5 KiB |  00m00s
- [101/318] Installing osinfo-db-0:202512 100% |  42.7 MiB/s |   4.4 MiB |  00m00s
- [102/318] Installing libusbmuxd-0:2.1.0 100% |  37.5 MiB/s |  76.8 KiB |  00m00s
- [103/318] Installing libimobiledevice-0 100% |  74.8 MiB/s | 306.3 KiB |  00m00s
- [104/318] Installing libwebp-devel-0:1. 100% |  40.7 MiB/s | 124.9 KiB |  00m00s
- [105/318] Installing nss-softokn-freebl 100% | 121.2 MiB/s | 993.2 KiB |  00m00s
- [106/318] Installing nss-softokn-0:3.12 100% | 151.5 MiB/s |   2.0 MiB |  00m00s
- [107/318] Installing nss-0:3.121.0-1.fc 100% |  78.8 MiB/s |   1.9 MiB |  00m00s
- [108/318] Installing nss-sysinit-0:3.12 100% | 828.5 KiB/s |  19.1 KiB |  00m00s
- [109/318] Installing fribidi-devel-0:1. 100% |  26.7 MiB/s |  81.9 KiB |  00m00s
- [110/318] Installing flac-libs-0:1.4.3- 100% | 114.1 MiB/s | 700.8 KiB |  00m00s
- [111/318] Installing libsndfile-0:1.2.2 100% | 107.7 MiB/s | 551.6 KiB |  00m00s
- [112/318] Installing libgusb-0:0.4.9-3. 100% |  79.9 MiB/s | 163.7 KiB |  00m00s
- [113/318] Installing colord-libs-0:1.4. 100% | 119.1 MiB/s | 853.7 KiB |  00m00s
- [114/318] Installing osinfo-db-tools-0: 100% |   9.2 MiB/s | 197.2 KiB |  00m00s
- [115/318] Installing vulkan-headers-0:1 100% | 234.1 MiB/s |  30.9 MiB |  00m00s
- [116/318] Installing vulkan-loader-deve 100% |   8.9 MiB/s |   9.1 KiB |  00m00s
- [117/318] Installing libXtst-0:1.2.5-2. 100% |  33.8 MiB/s |  34.6 KiB |  00m00s
- [118/318] Installing abattis-cantarell- 100% |  94.9 MiB/s | 194.4 KiB |  00m00s
- [119/318] Installing adobe-source-code- 100% | 146.7 MiB/s |   1.6 MiB |  00m00s
- [120/318] Installing redhat-display-fon 100% | 135.0 MiB/s | 968.0 KiB |  00m00s
- [121/318] Installing redhat-text-fonts- 100% | 154.6 MiB/s | 791.5 KiB |  00m00s
- [122/318] Installing libyuv-0:0-0.56.20 100% | 133.8 MiB/s | 685.3 KiB |  00m00s
- [123/318] Installing aribb24-0:1.0.3^20 100% |  40.6 MiB/s |  83.2 KiB |  00m00s
- [124/318] Installing zvbi-0:0.2.43-2.fc 100% |  22.9 MiB/s |   1.2 MiB |  00m00s
- [125/318] Installing libXv-0:1.0.13-2.f 100% |  30.5 MiB/s |  31.2 KiB |  00m00s
- [126/318] Installing libXxf86vm-0:1.1.6 100% |  29.8 MiB/s |  30.5 KiB |  00m00s
- [127/318] Installing libvdpau-0:1.5-9.f 100% |  10.9 MiB/s |  22.4 KiB |  00m00s
- [128/318] Installing lttng-ust-0:2.13.8 100% | 111.8 MiB/s |   1.1 MiB |  00m00s
- [129/318] Installing libcamera-0:0.4.0- 100% |  50.9 MiB/s |   1.9 MiB |  00m00s
- >>> Running sysusers scriptlet: rtkit-0:0.11-66.fc42.x86_64                     
- >>> Finished sysusers scriptlet: rtkit-0:0.11-66.fc42.x86_64                    
- >>> Scriptlet output:                                                           
- >>> Creating group 'rtkit' with GID 172.                                        
- >>> Creating user 'rtkit' (RealtimeKit) with UID 172 and GID 172.               
- >>>                                                                             
- [130/318] Installing rtkit-0:0.11-66.fc 100% |   3.1 MiB/s | 141.2 KiB |  00m00s
- >>> Running %post scriptlet: rtkit-0:0.11-66.fc42.x86_64                        
- >>> Finished %post scriptlet: rtkit-0:0.11-66.fc42.x86_64                       
- >>> Scriptlet output:                                                           
- >>> Created symlink '/etc/systemd/system/graphical.target.wants/rtkit-daemon.ser
- >>>                                                                             
- [131/318] Installing OpenCL-ICD-Loader- 100% |  35.1 MiB/s |  71.8 KiB |  00m00s
- [132/318] Installing lmdb-libs-0:0.9.34 100% |  52.5 MiB/s | 107.4 KiB |  00m00s
- [133/318] Installing libldb-2:4.22.7-1. 100% |  40.5 MiB/s | 456.6 KiB |  00m00s
- [134/318] Installing glibc-gconv-extra- 100% |  89.1 MiB/s |   7.3 MiB |  00m00s
- [135/318] Installing samba-common-libs- 100% |  21.3 MiB/s | 261.4 KiB |  00m00s
- [136/318] Installing libwbclient-2:4.22 100% |  13.5 MiB/s |  69.3 KiB |  00m00s
- [137/318] Installing samba-client-libs- 100% | 157.6 MiB/s |  19.5 MiB |  00m00s
- [138/318] Installing libsmbclient-2:4.2 100% |  80.8 MiB/s | 165.5 KiB |  00m00s
- [139/318] Installing libsodium-0:1.0.21 100% | 110.0 MiB/s | 450.5 KiB |  00m00s
- [140/318] Installing inih-0:62-1.fc42.x 100% |  23.1 MiB/s |  23.6 KiB |  00m00s
- [141/318] Installing inih-cpp-0:62-1.fc 100% |  35.9 MiB/s |  36.8 KiB |  00m00s
- [142/318] Installing exiv2-libs-0:0.28. 100% | 177.8 MiB/s |   2.8 MiB |  00m00s
- [143/318] Installing libgexiv2-0:0.14.6 100% |  91.6 MiB/s | 281.4 KiB |  00m00s
- [144/318] Installing libvpx-0:1.15.0-3. 100% | 180.9 MiB/s |   3.3 MiB |  00m00s
- [145/318] Installing openh264-0:2.5.1-1 100% |  78.3 MiB/s |   1.1 MiB |  00m00s
- [146/318] Installing highway-0:1.3.0-1. 100% | 211.2 MiB/s |   5.5 MiB |  00m00s
- [147/318] Installing libjxl-1:0.11.1-4. 100% | 169.6 MiB/s |   3.1 MiB |  00m00s
- [148/318] Installing bluez-libs-0:5.84- 100% |  97.4 MiB/s | 199.4 KiB |  00m00s
- [149/318] Installing gpgme-0:1.24.3-1.f 100% |  26.2 MiB/s | 590.4 KiB |  00m00s
- [150/318] Installing gpgmepp-0:1.24.3-1 100% | 105.1 MiB/s | 430.4 KiB |  00m00s
- [151/318] Installing gobject-introspect 100% |  96.9 MiB/s | 397.1 KiB |  00m00s
- [152/318] Installing upower-libs-0:1.91 100% |  87.9 MiB/s | 180.1 KiB |  00m00s
- [153/318] Installing webrtc-audio-proce 100% | 152.2 MiB/s |   1.4 MiB |  00m00s
- [154/318] Installing libsbc-0:2.0-6.fc4 100% |  92.3 MiB/s |  94.5 KiB |  00m00s
- [155/318] Installing libldac-0:2.0.2.3- 100% |  41.1 MiB/s |  84.2 KiB |  00m00s
- [156/318] Installing libebur128-0:1.2.6 100% |  39.8 MiB/s |  40.7 KiB |  00m00s
- [157/318] Installing fftw-libs-single-0 100% | 190.5 MiB/s |   3.6 MiB |  00m00s
- [158/318] Installing ModemManager-glib- 100% |  35.2 MiB/s |   1.4 MiB |  00m00s
- >>> Running sysusers scriptlet: geoclue2-0:2.8.0-1.fc42.x86_64                  
- >>> Finished sysusers scriptlet: geoclue2-0:2.8.0-1.fc42.x86_64                 
- >>> Scriptlet output:                                                           
- >>> Creating group 'geoclue' with GID 993.                                      
- >>> Creating user 'geoclue' (n/a) with UID 993 and GID 993.                     
- >>>                                                                             
- [159/318] Installing geoclue2-0:2.8.0-1 100% |  12.0 MiB/s | 405.6 KiB |  00m00s
- [160/318] Installing libvmaf-0:3.0.0-3. 100% | 115.6 MiB/s | 828.4 KiB |  00m00s
- [161/318] Installing libaom-0:3.13.1-1. 100% | 139.8 MiB/s |   5.0 MiB |  00m00s
- [162/318] Installing libasyncns-0:0.8-3 100% |  29.7 MiB/s |  60.8 KiB |  00m00s
- [163/318] Installing pulseaudio-libs-0: 100% | 241.4 MiB/s |   3.4 MiB |  00m00s
- [164/318] Installing pipewire-libs-0:1. 100% | 133.6 MiB/s |   8.7 MiB |  00m00s
- [165/318] Installing wireplumber-libs-0 100% | 102.0 MiB/s |   1.3 MiB |  00m00s
- [166/318] Installing wireplumber-0:0.5. 100% |  15.5 MiB/s | 443.2 KiB |  00m00s
- [167/318] Installing pipewire-jack-audi 100% | 304.7 KiB/s | 312.0   B |  00m00s
- [168/318] Installing pipewire-jack-audi 100% |  23.2 MiB/s | 499.2 KiB |  00m00s
- [169/318] Installing mbedtls-0:3.6.5-1. 100% | 147.6 MiB/s |   1.3 MiB |  00m00s
- [170/318] Installing poppler-data-0:0.4 100% | 134.7 MiB/s |  12.4 MiB |  00m00s
- [171/318] Installing soxr-0:0.1.3-18.fc 100% |  63.0 MiB/s | 193.6 KiB |  00m00s
- [172/318] Installing lpcnetfreedv-0:0.5 100% | 190.0 MiB/s |  14.8 MiB |  00m00s
- [173/318] Installing codec2-0:1.2.0-6.f 100% | 136.9 MiB/s |   1.4 MiB |  00m00s
- [174/318] Installing xvidcore-0:1.3.7-1 100% | 143.2 MiB/s | 880.1 KiB |  00m00s
- [175/318] Installing vo-amrwbenc-0:0.1. 100% |  50.6 MiB/s | 155.4 KiB |  00m00s
- [176/318] Installing twolame-libs-0:0.4 100% |  32.5 MiB/s | 166.6 KiB |  00m00s
- [177/318] Installing speex-0:1.2.0-19.f 100% |  31.8 MiB/s | 130.4 KiB |  00m00s
- [178/318] Installing snappy-0:1.2.1-4.f 100% |  17.8 MiB/s |  72.9 KiB |  00m00s
- [179/318] Installing opencore-amr-0:0.1 100% |  49.0 MiB/s | 351.2 KiB |  00m00s
- [180/318] Installing ilbc-0:3.0.4-13.fc 100% |  23.7 MiB/s |  96.9 KiB |  00m00s
- [181/318] Installing openpgm-0:5.3.128- 100% |  44.3 MiB/s | 317.7 KiB |  00m00s
- [182/318] Installing zeromq-0:4.3.5-21. 100% |  20.0 MiB/s | 902.7 KiB |  00m00s
- [183/318] Installing cjson-0:1.7.18-2.f 100% | 932.6 KiB/s |  65.3 KiB |  00m00s
- [184/318] Installing librist-0:0.2.7-9. 100% |  21.6 MiB/s | 154.8 KiB |  00m00s
- [185/318] Installing libudfread-0:1.1.2 100% |  21.9 MiB/s |  67.3 KiB |  00m00s
- [186/318] Installing srt-libs-0:1.5.4-2 100% |  61.0 MiB/s | 998.9 KiB |  00m00s
- [187/318] Installing librabbitmq-0:0.15 100% |  22.1 MiB/s |  90.7 KiB |  00m00s
- [188/318] Installing libmodplug-1:0.8.9 100% |  43.6 MiB/s | 357.0 KiB |  00m00s
- [189/318] Installing game-music-emu-0:0 100% |  46.4 MiB/s | 332.8 KiB |  00m00s
- [190/318] Installing giflib-0:5.2.2-6.f 100% |  27.8 MiB/s | 113.8 KiB |  00m00s
- [191/318] Installing cpuinfo-0:24.09.26 100% |   2.9 MiB/s | 109.7 KiB |  00m00s
- [192/318] Installing svt-av1-libs-0:2.3 100% |  76.0 MiB/s |   5.6 MiB |  00m00s
- [193/318] Installing libavif-0:1.1.1-1. 100% |  35.0 MiB/s | 215.2 KiB |  00m00s
- [194/318] Installing fuse-common-0:3.16 100% | 285.2 KiB/s | 292.0   B |  00m00s
- [195/318] Installing fuse3-0:3.16.2-5.f 100% |   3.7 MiB/s | 132.0 KiB |  00m00s
- [196/318] Installing sound-theme-freede 100% |  13.4 MiB/s | 467.2 KiB |  00m00s
- [197/318] Installing libcanberra-0:0.30 100% |   3.4 MiB/s | 291.3 KiB |  00m00s
- [198/318] Installing uchardet-0:0.0.8-7 100% |   7.0 MiB/s | 277.7 KiB |  00m00s
- [199/318] Installing totem-pl-parser-0: 100% |  29.0 MiB/s | 326.9 KiB |  00m00s
- [200/318] Installing libxslt-0:1.1.43-1 100% |  10.9 MiB/s | 459.2 KiB |  00m00s
- [201/318] Installing libosinfo-0:1.12.0 100% |  28.0 MiB/s |   1.2 MiB |  00m00s
- [202/318] Installing libiptcdata-0:1.0. 100% |   4.7 MiB/s | 174.9 KiB |  00m00s
- [203/318] Installing libexif-0:0.6.25-1 100% | 157.1 MiB/s |   2.7 MiB |  00m00s
- [204/318] Installing libcue-0:2.3.0-11. 100% |  22.3 MiB/s |  91.3 KiB |  00m00s
- [205/318] Installing exempi-0:2.6.4-7.f 100% |  27.9 MiB/s |   1.4 MiB |  00m00s
- [206/318] Installing libproxy-0:0.5.8-2 100% |  34.0 MiB/s | 104.5 KiB |  00m00s
- [207/318] Installing xprop-0:1.2.8-3.fc 100% |   2.2 MiB/s |  56.1 KiB |  00m00s
- [208/318] Installing at-spi2-core-0:2.5 100% | 140.7 MiB/s |   1.5 MiB |  00m00s
- [209/318] Installing atk-0:2.56.8-1.fc4 100% |  81.4 MiB/s | 250.0 KiB |  00m00s
- [210/318] Installing at-spi2-atk-0:2.56 100% |  54.2 MiB/s | 277.7 KiB |  00m00s
- [211/318] Installing libcloudproviders- 100% |  61.6 MiB/s | 126.2 KiB |  00m00s
- [212/318] Installing libXcomposite-0:0. 100% |  44.9 MiB/s |  46.0 KiB |  00m00s
- [213/318] Installing xz-devel-1:5.8.1-4 100% |  51.3 MiB/s | 262.6 KiB |  00m00s
- [214/318] Installing libxml2-devel-0:2. 100% |  87.6 MiB/s |   3.4 MiB |  00m00s
- [215/318] Installing libicu-devel-0:76. 100% |  55.2 MiB/s |   5.1 MiB |  00m00s
- [216/318] Installing libblkid-devel-0:2 100% |  22.5 MiB/s |  46.0 KiB |  00m00s
- [217/318] Installing libzstd-devel-0:1. 100% |  68.0 MiB/s | 208.8 KiB |  00m00s
- [218/318] Installing bzip2-devel-0:1.0. 100% | 151.7 MiB/s | 310.7 KiB |  00m00s
- [219/318] Installing brotli-0:1.2.0-1.f 100% |   1.1 MiB/s |  34.4 KiB |  00m00s
- [220/318] Installing brotli-devel-0:1.2 100% |  16.7 MiB/s |  68.4 KiB |  00m00s
- [221/318] Installing sysprof-capture-de 100% |  45.1 MiB/s | 276.9 KiB |  00m00s
- [222/318] Installing pcre2-utf32-0:10.4 100% |  65.4 MiB/s | 603.1 KiB |  00m00s
- [223/318] Installing pcre2-utf16-0:10.4 100% |  55.7 MiB/s | 627.2 KiB |  00m00s
- [224/318] Installing pcre2-devel-0:10.4 100% |  48.7 MiB/s |   2.1 MiB |  00m00s
- [225/318] Installing libsepol-devel-0:3 100% |  11.4 MiB/s | 128.3 KiB |  00m00s
- [226/318] Installing libselinux-devel-0 100% |  19.7 MiB/s | 161.6 KiB |  00m00s
- [227/318] Installing libmount-devel-0:2 100% |  21.0 MiB/s |  64.5 KiB |  00m00s
- [228/318] Installing lm_sensors-libs-0: 100% |  28.3 MiB/s |  86.9 KiB |  00m00s
- [229/318] Installing mesa-libgbm-0:25.1 100% |   5.0 MiB/s |  20.5 KiB |  00m00s
- [230/318] Installing mesa-dri-drivers-0 100% |  86.9 MiB/s |  46.7 MiB |  00m01s
- [231/318] Installing libglvnd-egl-1:1.7 100% |  17.2 MiB/s |  70.3 KiB |  00m00s
- [232/318] Installing mesa-libEGL-0:25.1 100% |  46.9 MiB/s | 335.9 KiB |  00m00s
- [233/318] Installing libglvnd-glx-1:1.7 100% |  66.3 MiB/s | 610.6 KiB |  00m00s
- [234/318] Installing mesa-libGL-0:25.1. 100% |  42.9 MiB/s | 307.2 KiB |  00m00s
- [235/318] Installing libva-0:2.22.0-4.f 100% |  36.2 MiB/s | 333.4 KiB |  00m00s
- [236/318] Installing libavutil-free-0:7 100% |  67.3 MiB/s | 964.2 KiB |  00m00s
- [237/318] Installing libswresample-free 100% |  36.3 MiB/s | 148.7 KiB |  00m00s
- [238/318] Installing orc-0:0.4.41-1.fc4 100% |  16.9 MiB/s | 728.9 KiB |  00m00s
- [239/318] Installing cdparanoia-libs-0: 100% |  29.0 MiB/s | 118.9 KiB |  00m00s
- [240/318] Installing cups-filesystem-1: 100% | 890.6 KiB/s |   1.8 KiB |  00m00s
- [241/318] Installing cups-libs-1:2.4.16 100% |  55.1 MiB/s | 620.2 KiB |  00m00s
- [242/318] Installing adwaita-cursor-the 100% | 122.9 MiB/s |  11.4 MiB |  00m00s
- [243/318] Installing adwaita-icon-theme 100% |  15.8 MiB/s |   2.4 MiB |  00m00s
- [244/318] Installing adwaita-icon-theme 100% |  20.0 MiB/s |   1.3 MiB |  00m00s
- [245/318] Installing gettext-envsubst-0 100% |   3.4 MiB/s |  80.2 KiB |  00m00s
- [246/318] Installing gettext-runtime-0: 100% |  19.6 MiB/s | 461.6 KiB |  00m00s
- [247/318] Installing gettext-0:0.23.1-2 100% | 126.8 MiB/s |   5.2 MiB |  00m00s
- [248/318] Installing jbigkit-libs-0:2.1 100% |  60.3 MiB/s | 123.4 KiB |  00m00s
- [249/318] Installing libtiff-0:4.7.1-1. 100% | 102.0 MiB/s | 626.6 KiB |  00m00s
- [250/318] Installing gdk-pixbuf2-module 100% |  27.6 MiB/s |  56.6 KiB |  00m00s
- [251/318] Installing libtiff-devel-0:4. 100% | 265.6 MiB/s | 816.0 KiB |  00m00s
- [252/318] Installing python3-packaging- 100% |  55.5 MiB/s | 568.0 KiB |  00m00s
- [253/318] Installing glib2-devel-0:2.84 100% | 116.9 MiB/s |  15.9 MiB |  00m00s
- [254/318] Installing gdk-pixbuf2-devel- 100% |  46.9 MiB/s |   2.3 MiB |  00m00s
- [255/318] Installing graphene-devel-0:1 100% | 137.6 MiB/s |   2.3 MiB |  00m00s
- [256/318] Installing google-noto-fonts- 100% |   9.0 MiB/s |  18.5 KiB |  00m00s
- [257/318] Installing google-noto-sans-v 100% |  69.6 MiB/s |   1.4 MiB |  00m00s
- [258/318] Installing default-fonts-core 100% |   2.0 MiB/s |  18.2 KiB |  00m00s
- [259/318] Installing fontconfig-0:2.16. 100% | 680.5 KiB/s | 783.9 KiB |  00m01s
- [260/318] Installing cairo-0:1.18.2-3.f 100% |  71.3 MiB/s |   1.8 MiB |  00m00s
- [261/318] Installing cairo-gobject-0:1. 100% |  17.6 MiB/s |  36.0 KiB |  00m00s
- [262/318] Installing libXft-0:2.3.8-8.f 100% |  41.5 MiB/s | 169.9 KiB |  00m00s
- [263/318] Installing pango-0:1.56.4-2.f 100% |  19.7 MiB/s |   1.0 MiB |  00m00s
- [264/318] Installing gtk3-0:3.24.49-2.f 100% |  90.7 MiB/s |  23.1 MiB |  00m00s
- [265/318] Installing rsvg-pixbuf-loader 100% |  47.0 MiB/s | 336.7 KiB |  00m00s
- [266/318] Installing librsvg2-0:2.60.0- 100% |  77.7 MiB/s |   5.1 MiB |  00m00s
- [267/318] Installing libdecor-0:0.2.4-1 100% |  23.4 MiB/s | 167.8 KiB |  00m00s
- [268/318] Installing SDL3-0:3.4.0-3.fc4 100% |  71.8 MiB/s |   3.0 MiB |  00m00s
- [269/318] Installing sdl2-compat-0:2.32 100% |  50.1 MiB/s | 410.1 KiB |  00m00s
- [270/318] Installing sdl12-compat-0:1.2 100% |  39.5 MiB/s | 202.1 KiB |  00m00s
- [271/318] Installing libvisual-1:0.4.2- 100% |   9.5 MiB/s | 497.1 KiB |  00m00s
- [272/318] Installing gstreamer1-plugins 100% |  67.8 MiB/s |   7.4 MiB |  00m00s
- [273/318] Installing gstreamer1-plugins 100% |  76.7 MiB/s |   3.1 MiB |  00m00s
- [274/318] Installing gtk4-0:4.18.6-1.fc 100% | 104.4 MiB/s |  26.2 MiB |  00m00s
- [275/318] Installing xdg-desktop-portal 100% |  19.1 MiB/s |   1.9 MiB |  00m00s
- [276/318] Installing harfbuzz-cairo-0:1 100% |  12.9 MiB/s |  53.0 KiB |  00m00s
- [277/318] Installing cairo-devel-0:1.18 100% | 163.6 MiB/s |   2.3 MiB |  00m00s
- [278/318] Installing fontconfig-devel-0 100% |  16.8 MiB/s | 154.4 KiB |  00m00s
- [279/318] Installing freetype-devel-0:2 100% | 115.4 MiB/s |   8.5 MiB |  00m00s
- [280/318] Installing harfbuzz-devel-0:1 100% |  79.9 MiB/s |   5.2 MiB |  00m00s
- [281/318] Installing cairo-gobject-deve 100% |   2.5 MiB/s |   7.6 KiB |  00m00s
- [282/318] Installing libXft-devel-0:2.3 100% |  10.8 MiB/s |  44.3 KiB |  00m00s
- [283/318] Installing pango-devel-0:1.56 100% |  69.0 MiB/s |   1.5 MiB |  00m00s
- [284/318] Installing libgxps-0:0.3.2-10 100% |  31.6 MiB/s | 194.3 KiB |  00m00s
- [285/318] Installing libbluray-0:1.3.4- 100% |  48.7 MiB/s | 399.2 KiB |  00m00s
- [286/318] Installing libaribcaption-0:1 100% |  34.9 MiB/s | 249.9 KiB |  00m00s
- [287/318] Installing libavcodec-free-0: 100% |  72.1 MiB/s |   9.8 MiB |  00m00s
- [288/318] Installing libchromaprint-0:1 100% |  16.1 MiB/s |  66.1 KiB |  00m00s
- [289/318] Installing libavformat-free-0 100% |  69.5 MiB/s |   2.6 MiB |  00m00s
- [290/318] Installing poppler-0:25.02.0- 100% |  77.4 MiB/s |   3.7 MiB |  00m00s
- [291/318] Installing poppler-glib-0:25. 100% |  49.9 MiB/s | 613.3 KiB |  00m00s
- [292/318] Installing localsearch-0:3.9. 100% |  29.8 MiB/s |   3.9 MiB |  00m00s
- [293/318] Installing gtk4-devel-0:4.18. 100% |  72.0 MiB/s |  22.0 MiB |  00m00s
- [294/318] Installing xdg-desktop-portal 100% |  10.4 MiB/s | 477.2 KiB |  00m00s
- [295/318] Installing libcanberra-gtk3-0 100% |   1.8 MiB/s |  82.0 KiB |  00m00s
- [296/318] Installing intel-vpl-gpu-rt-0 100% |  68.8 MiB/s |  11.7 MiB |  00m00s
- [297/318] Installing intel-mediasdk-0:2 100% |  98.2 MiB/s |  22.5 MiB |  00m00s
- [298/318] Installing glib-networking-0: 100% |  61.7 MiB/s | 757.8 KiB |  00m00s
- [299/318] Installing avif-pixbuf-loader 100% | 492.4 KiB/s |  20.2 KiB |  00m00s
- >>> Running sysusers scriptlet: pipewire-0:1.4.11-1.fc42.x86_64                 
- >>> Finished sysusers scriptlet: pipewire-0:1.4.11-1.fc42.x86_64                
- >>> Scriptlet output:                                                           
- >>> Creating group 'pipewire' with GID 992.                                     
- >>> Creating user 'pipewire' (PipeWire System Daemon) with UID 992 and GID 992. 
- >>>                                                                             
- [300/318] Installing pipewire-0:1.4.11- 100% |   4.4 MiB/s | 439.9 KiB |  00m00s
- >>> Running %post scriptlet: pipewire-0:1.4.11-1.fc42.x86_64                    
- >>> Finished %post scriptlet: pipewire-0:1.4.11-1.fc42.x86_64                   
- >>> Scriptlet output:                                                           
- >>> Created symlink '/etc/systemd/user/sockets.target.wants/pipewire.socket' 
- >>>                                                                             
- [301/318] Installing pipewire-alsa-0:1. 100% |  17.3 MiB/s | 159.8 KiB |  00m00s
- [302/318] Installing pipewire-pulseaudi 100% |   4.8 MiB/s | 444.3 KiB |  00m00s
- >>> Running %post scriptlet: pipewire-pulseaudio-0:1.4.11-1.fc42.x86_64         
- >>> Finished %post scriptlet: pipewire-pulseaudio-0:1.4.11-1.fc42.x86_64        
- >>> Scriptlet output:                                                           
- >>> Created symlink '/etc/systemd/user/sockets.target.wants/pipewire-pulse.socke
- >>>                                                                             
- [303/318] Installing pipewire-plugin-li 100% |  28.8 MiB/s | 147.3 KiB |  00m00s
- [304/318] Installing upower-0:1.91.0-1. 100% |   3.5 MiB/s | 309.2 KiB |  00m00s
- >>> Running %post scriptlet: upower-0:1.91.0-1.fc42.x86_64                      
- >>> Finished %post scriptlet: upower-0:1.91.0-1.fc42.x86_64                     
- >>> Scriptlet output:                                                           
- >>> Created symlink '/etc/systemd/system/graphical.target.wants/upower.service' 
- >>>                                                                             
- [305/318] Installing jxl-pixbuf-loader- 100% |   9.8 MiB/s |  30.2 KiB |  00m00s
- [306/318] Installing exiv2-0:0.28.6-2.f 100% | 151.2 MiB/s |  12.2 MiB |  00m00s
- [307/318] Installing libcamera-ipa-0:0. 100% |  44.9 MiB/s | 551.9 KiB |  00m00s
- [308/318] Installing gi-docgen-fonts-0: 100% |   2.0 KiB/s | 124.0   B |  00m00s
- >>> Running sysusers scriptlet: usbmuxd-0:1.1.1^20240915git0b1b233-4.fc42.x86_64
- >>> Finished sysusers scriptlet: usbmuxd-0:1.1.1^20240915git0b1b233-4.fc42.x86_6
- >>> Scriptlet output:                                                           
- >>> Creating group 'usbmuxd' with GID 113.                                      
- >>> Creating user 'usbmuxd' (usbmuxd user) with UID 113 and GID 113.            
- >>>                                                                             
- [309/318] Installing usbmuxd-0:1.1.1^20 100% |   1.8 MiB/s | 151.5 KiB |  00m00s
- [310/318] Installing mesa-vulkan-driver 100% | 112.5 MiB/s | 129.1 MiB |  00m01s
- [311/318] Installing webp-pixbuf-loader 100% |   9.7 MiB/s |  29.8 KiB |  00m00s
- [312/318] Installing tinysparql-0:3.9.2 100% |  36.6 MiB/s |   2.5 MiB |  00m00s
- [313/318] Installing mesa-va-drivers-0: 100% | 960.9 KiB/s | 984.0   B |  00m00s
- [314/318] Installing adwaita-mono-fonts 100% | 135.7 MiB/s |   5.4 MiB |  00m00s
- [315/318] Installing adwaita-sans-fonts 100% |  66.1 MiB/s |   1.7 MiB |  00m00s
- [316/318] Installing logrotate-0:3.22.0 100% |   2.5 MiB/s | 151.6 KiB |  00m00s
- >>> Running %post scriptlet: logrotate-0:3.22.0-3.fc42.x86_64                   
- >>> Finished %post scriptlet: logrotate-0:3.22.0-3.fc42.x86_64                  
- >>> Scriptlet output:                                                           
- >>> Created symlink '/etc/systemd/system/timers.target.wants/logrotate.timer' 
- >>>                                                                             
- [317/318] Installing low-memory-monitor 100% |   2.5 MiB/s |  67.7 KiB |  00m00s
- [318/318] Installing dconf-0:0.40.0-15. 100% | 186.8 KiB/s | 320.0 KiB |  00m02s
- >>> Running %posttrans scriptlet: wireplumber-0:0.5.13-1.fc42.x86_64            
- >>> Finished %posttrans scriptlet: wireplumber-0:0.5.13-1.fc42.x86_64           
- >>> Scriptlet output:                                                           
- >>> Created symlink '/etc/systemd/user/pipewire-session-manager.service' 
- >>> Created symlink '/etc/systemd/user/pipewire.service.wants/wireplumber.servic
- >>>                                                                             
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "gtk4-devel"
- gtk4-devel-4.18.6-1.fc42.x86_64

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> installed conf-pkg-config.4
-> retrieved containers.3.18  (cached)
-> installed conf-gtk4.1
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> 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  (https://github.com/chris-armstrong/ocgtk/archive/refs/tags/v0.1-preview0.tar.gz)
-> 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:30.02 ---> saved as "83cfac1f048f3fd897c8dffdc2a261f7ab408b59e1770599e94fb7b8521ef1f1"

/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)
-> retrieved ocgtk.0.1~preview0  (https://github.com/chris-armstrong/ocgtk/archive/refs/tags/v0.1-preview0.tar.gz)
-> installed ocaml-syntax-shims.1.0.0
-> installed fmt.0.11.0
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> removed   ocgtk.0.1~preview0
-> removed   logs.0.10.0
-> installed uutf.1.0.4
-> installed logs.0.10.0
-> 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:30.40 ---> saved as "36a7d1ab2ae9ea855ed0a43f56b7602cf031fcace3285b37e3201f0735b5297d"

/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-42\\\"\"; 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" "71" "@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 `X7PLSLN8'.
- 
-   [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 `FKDXRRP8'.
- 
-   [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 `40J31DVZ'.
- 
-   [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.321s. 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_gtk_init.exe)
- Testing `GTK Initialization Tests'.
- This run has ID `3G6W9IXU'.
- 
-   [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_integration.exe)
- Testing `Integration Tests (Phase 3.3)'.
- This run has ID `MN3QTTLC'.
- 
-   [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_gobject_stress.exe)
- Testing `GObject Memory Stress Tests (KNOWN TO SEGFAULT)'.
- This run has ID `UT0ULIGW'.
- 
-   [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_widget.exe)
- Testing `Gtk.Widget Tests (Phase 3.1)'.
- This run has ID `8RKMDVKY'.
- 
-   [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_range.exe)
- Testing `Range Widget Tests'.
- This run has ID `61HP8FO8'.
- 
-   [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.
- (cd _build/default/ocgtk/tests/gtk && ./test_string_list.exe)
- Testing `Gtk.StringList Tests'.
- This run has ID `25909UBU'.
- 
-   [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_variance.exe)
- Testing `Gobject.obj Variance Tests'.
- This run has ID `AKNNI3J7'.
- 
-   [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_button.exe)
- Testing `Button Tests'.
- This run has ID `EOOZO5M3'.
- 
-   [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.
- (cd _build/default/ocgtk/tests/gtk && ./test_box.exe)
- Testing `Gtk.Box Tests (Phase 4.1)'.
- This run has ID `VBJL569A'.
- 
-   [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.001s. 2 tests 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:31.13 ---> saved as "5b81b158743e263f67fb5391e5b207e5dff7679ed360a349c40790cd660d07da"
Job succeeded
2026-04-05 06:31.20: Job succeeded