2025-02-09 10:25.10: New job: test sanette/bogue https://github.com/sanette/bogue.git#refs/heads/master (359677a1b3da35d90170cfd6faf8fa4e0d674c1d) (linux-x86_64:fedora-40-5.3_opam-2.3)
Base: ocaml/opam:fedora-40-ocaml-5.3@sha256:083b0556435afde78903a8336fd4a4a3f801c9d05f536b5193940a4e948116ea
Opam project build
To reproduce locally:
git clone --recursive "https://github.com/sanette/bogue.git" -b "master" && cd "bogue" && git reset --hard 359677a1
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-40-ocaml-5.3@sha256:083b0556435afde78903a8336fd4a4a3f801c9d05f536b5193940a4e948116ea
# fedora-40-5.3_opam-2.3
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo dnf install -y findutils
RUN sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
WORKDIR /src
RUN sudo chown opam /src
RUN cd ~/opam-repository && (git cat-file -e 3ee951993de4d18fd335fcea4ac7375cab56a637 || git fetch origin master) && git reset -q --hard 3ee951993de4d18fd335fcea4ac7375cab56a637 && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 bogue.opam ./
RUN opam pin add -yn bogue.dev './'
RUN echo '(lang dune 3.0)' > './dune-project'
ENV DEPS="base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base bigarray-compat.1.1.0 conf-libffi.2.0.0 conf-pkg-config.4 conf-sdl2.1 conf-sdl2-image.1 conf-sdl2-ttf.1 csexp.1.5.2 ctypes.0.23.0 ctypes-foreign.0.23.0 dune.3.17.2 dune-configurator.3.17.2 integers.0.7.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-config.3 ocaml-options-vanilla.1 ocamlbuild.0.15.0 ocamlfind.1.9.8 stdlib-shims.0.3.0 topkg.1.0.7 tsdl.1.1.0 tsdl-image.0.6 tsdl-ttf.0.6 xdg.3.17.2"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.3 --depext-only -y bogue.dev $DEPS
RUN opam install $DEPS
COPY --chown=1000:1000 . /src
RUN opam exec -- dune build @install @check @runtest && rm -rf _build
END-OF-DOCKERFILE
docker build .
END-REPRO-BLOCK
2025-02-09 10:25.10: Using cache hint "sanette/bogue-ocaml/opam:fedora-40-ocaml-5.3@sha256:083b0556435afde78903a8336fd4a4a3f801c9d05f536b5193940a4e948116ea-fedora-40-5.3_opam-2.3-1f70f6f6c17138ad98b76e5ccc283952"
2025-02-09 10:25.10: Using OBuilder spec:
((from ocaml/opam:fedora-40-ocaml-5.3@sha256:083b0556435afde78903a8336fd4a4a3f801c9d05f536b5193940a4e948116ea)
(comment fedora-40-5.3_opam-2.3)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (network host)
(shell "sudo dnf install -y findutils"))
(run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
(run (shell "opam init --reinit -ni"))
(run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
(workdir /src)
(run (shell "sudo chown opam /src"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 3ee951993de4d18fd335fcea4ac7375cab56a637 || git fetch origin master) && git reset -q --hard 3ee951993de4d18fd335fcea4ac7375cab56a637 && git log --no-decorate -n1 --oneline && opam update -u"))
(copy (src bogue.opam) (dst ./))
(run (network host)
(shell "opam pin add -yn bogue.dev './'"))
(run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
(env DEPS "base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base bigarray-compat.1.1.0 conf-libffi.2.0.0 conf-pkg-config.4 conf-sdl2.1 conf-sdl2-image.1 conf-sdl2-ttf.1 csexp.1.5.2 ctypes.0.23.0 ctypes-foreign.0.23.0 dune.3.17.2 dune-configurator.3.17.2 integers.0.7.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-config.3 ocaml-options-vanilla.1 ocamlbuild.0.15.0 ocamlfind.1.9.8 stdlib-shims.0.3.0 topkg.1.0.7 tsdl.1.1.0 tsdl-image.0.6 tsdl-ttf.0.6 xdg.3.17.2")
(env CI true)
(env OCAMLCI true)
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.3 --depext-only -y bogue.dev $DEPS"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
(copy (src .) (dst /src))
(run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
)
2025-02-09 10:25.10: Waiting for resource in pool OCluster
2025-02-09 10:25.11: Waiting for worker…
2025-02-09 10:31.20: Got resource from pool OCluster
Building on x86-bm-c7.sw.ocaml.org
Updating files: 87% (338/388) Updating files: 88% (342/388) Updating files: 89% (346/388) Updating files: 90% (350/388) Updating files: 91% (354/388) Updating files: 92% (357/388) Updating files: 93% (361/388) Updating files: 94% (365/388) Updating files: 95% (369/388) Updating files: 96% (373/388) Updating files: 97% (377/388) Updating files: 98% (381/388) Updating files: 99% (385/388) Updating files: 100% (388/388) Updating files: 100% (388/388), done.
HEAD is now at 0dfc28d update changelog
HEAD is now at 359677a update doc
(from ocaml/opam:fedora-40-ocaml-5.3@sha256:083b0556435afde78903a8336fd4a4a3f801c9d05f536b5193940a4e948116ea)
Unable to find image 'ocaml/opam:fedora-40-ocaml-5.3@sha256:083b0556435afde78903a8336fd4a4a3f801c9d05f536b5193940a4e948116ea' locally
docker.io/ocaml/opam@sha256:083b0556435afde78903a8336fd4a4a3f801c9d05f536b5193940a4e948116ea: Pulling from ocaml/opam
7f71f7102eb7: Pulling fs layer
7f71f7102eb7: Verifying Checksum
7f71f7102eb7: Download complete
7f71f7102eb7: Pull complete
Digest: sha256:083b0556435afde78903a8336fd4a4a3f801c9d05f536b5193940a4e948116ea
Status: Downloaded newer image for ocaml/opam@sha256:083b0556435afde78903a8336fd4a4a3f801c9d05f536b5193940a4e948116ea
2025-02-09 10:34.20 ---> saved as "883e46c740a6edaa0b7dea0fd564fe1cd447ba7d2e7ab77ab27d54cf3efdf0eb"
/: (comment fedora-40-5.3_opam-2.3)
/: (user (uid 1000) (gid 1000))
/: (env CLICOLOR_FORCE 1)
/: (env OPAMCOLOR always)
/: (workdir /src)
/src: (run (network host)
(shell "sudo dnf install -y findutils"))
Fedora 40 - x86_64 324 kB/s | 27 kB 00:00
Fedora 40 openh264 (From Cisco) - x86_64 15 kB/s | 989 B 00:00
Fedora 40 - x86_64 - Updates 99 kB/s | 6.5 kB 00:00
Fedora 40 - x86_64 - Updates 4.0 MB/s | 6.6 MB 00:01
Package findutils-1:4.9.0-9.fc40.x86_64 is already installed.
Dependencies resolved.
Nothing to do.
Complete!
2025-02-09 10:34.29 ---> saved as "2fd03205dcfeee58269c1f39818961523efda67216ced95bd4fbaa52aebdcdee"
/src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-02-09 10:34.29 ---> saved as "50a5981bda5f5aad41752bdc26e87a72123a1097e540bdfacc3c1993f8dc61ce"
/src: (run (shell "opam init --reinit -ni"))
Configuring from /home/opam/.opamrc and then from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2025-02-09 10:35.46 ---> saved as "35ff6fdab0d2cd9551a92e01049ef49ac007f05569e75765836429f2eff11334"
/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-130-generic
The OCaml toplevel, version 5.3.0
2.3.0
2025-02-09 10:35.47 ---> saved as "1391035e31efd1f2451a25af5293455aa2cbde55efc1435e5a379675e80e5fff"
/src: (workdir /src)
/src: (run (shell "sudo chown opam /src"))
2025-02-09 10:35.47 ---> saved as "6491aa1adfe86f51c866876300c3004c85f0a25d805fe44a8f26455dfe6be422"
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 3ee951993de4d18fd335fcea4ac7375cab56a637 || git fetch origin master) && git reset -q --hard 3ee951993de4d18fd335fcea4ac7375cab56a637 && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch master -> FETCH_HEAD
f93eb7cb02..d87296a7b6 master -> origin/master
3ee951993d Merge pull request #27253 from kit-ty-kate/opam-publish-ocamlfind.1.9.8
<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
Everything as up-to-date as possible (run with --verbose to show unavailable upgrades).
However, you may "opam upgrade" these packages explicitly, which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
# To update the current shell environment, run: eval $(opam env)
2025-02-09 10:37.35 ---> saved as "b09c03ac3a8a41049527b68003fcfbf1d4f7f05c4ae63261d01d7e58eb71e814"
/src: (copy (src bogue.opam) (dst ./))
2025-02-09 10:37.35 ---> saved as "7e9f3eeef0913be518b582b6378aaab6f20bf379922c384272ab58549fbac178"
/src: (run (network host)
(shell "opam pin add -yn bogue.dev './'"))
[bogue.dev] synchronised (file:///src)
bogue is now pinned to file:///src (version dev)
2025-02-09 10:37.36 ---> saved as "d78159b96ca70a9137d15ec479369a1f16512c3a3f127067accc5945ae04691b"
/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-02-09 10:37.36 ---> saved as "f90dbfc560c65be1a37dbee3ae8df10142ceb74d56ebc399a43c1638750a7e3f"
/src: (env DEPS "base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base bigarray-compat.1.1.0 conf-libffi.2.0.0 conf-pkg-config.4 conf-sdl2.1 conf-sdl2-image.1 conf-sdl2-ttf.1 csexp.1.5.2 ctypes.0.23.0 ctypes-foreign.0.23.0 dune.3.17.2 dune-configurator.3.17.2 integers.0.7.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-config.3 ocaml-options-vanilla.1 ocamlbuild.0.15.0 ocamlfind.1.9.8 stdlib-shims.0.3.0 topkg.1.0.7 tsdl.1.1.0 tsdl-image.0.6 tsdl-ttf.0.6 xdg.3.17.2")
/src: (env CI true)
/src: (env OCAMLCI true)
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.3 --depext-only -y bogue.dev $DEPS"))
+ /usr/bin/sudo "yum" "makecache"
- Fedora 40 - x86_64 309 kB/s | 27 kB 00:00
- Fedora 40 openh264 (From Cisco) - x86_64 14 kB/s | 989 B 00:00
- Fedora 40 - x86_64 - Updates 97 kB/s | 6.5 kB 00:00
- Metadata cache created.
<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[bogue.dev] synchronised (file:///src)
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 3).
[NOTE] Package ocaml-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.0).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following system packages will first need to be installed:
libffi-devel SDL2-devel SDL2_image-devel SDL2_ttf-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
+ /usr/bin/sudo "yum" "install" "-y" "SDL2-devel" "SDL2_image-devel" "SDL2_ttf-devel" "libffi-devel"
- Last metadata expiration check: 0:00:11 ago on Sun Feb 9 10:37:38 2025.
- Dependencies resolved.
- ================================================================================
- Package Arch Version Repo Size
- ================================================================================
- Installing:
- SDL2-devel x86_64 2.30.11-1.fc40 updates 396 k
- SDL2_image-devel x86_64 2.8.2-4.fc40 fedora 18 k
- SDL2_ttf-devel x86_64 2.22.0-2.fc40 fedora 21 k
- libffi-devel x86_64 3.4.4-7.fc40 fedora 28 k
- Installing dependencies:
- ModemManager-glib x86_64 1.22.0-3.fc40 fedora 322 k
- NetworkManager-libnm x86_64 1:1.46.6-1.fc40 updates 1.8 M
- SDL2 x86_64 2.30.11-1.fc40 updates 700 k
- SDL2_image x86_64 2.8.2-4.fc40 fedora 110 k
- SDL2_ttf x86_64 2.22.0-2.fc40 fedora 43 k
- abattis-cantarell-vf-fonts noarch 0.301-12.fc40 fedora 120 k
- adwaita-cursor-theme noarch 46.2-2.fc40 updates 516 k
- adwaita-icon-theme noarch 46.2-2.fc40 updates 407 k
- adwaita-icon-theme-legacy noarch 46.2-1.fc40 updates 2.5 M
- alsa-lib x86_64 1.2.13-3.fc40 updates 517 k
- at-spi2-atk x86_64 2.52.0-1.fc40 fedora 86 k
- at-spi2-core x86_64 2.52.0-1.fc40 fedora 373 k
- atk x86_64 2.52.0-1.fc40 fedora 80 k
- avahi-glib x86_64 0.8-26.fc40 fedora 15 k
- avahi-libs x86_64 0.8-26.fc40 fedora 67 k
- bluez-libs x86_64 5.79-1.fc40 updates 83 k
- brotli x86_64 1.1.0-3.fc40 fedora 20 k
- brotli-devel x86_64 1.1.0-3.fc40 fedora 34 k
- bzip2-devel x86_64 1.0.8-18.fc40 fedora 214 k
- cairo x86_64 1.18.0-3.fc40 fedora 709 k
- cairo-devel x86_64 1.18.0-3.fc40 fedora 193 k
- cairo-gobject x86_64 1.18.0-3.fc40 fedora 17 k
- cdparanoia-libs x86_64 10.2-44.fc40 fedora 54 k
- cmake-filesystem x86_64 3.30.5-1.fc40 updates 17 k
- colord-libs x86_64 1.4.7-3.fc40 fedora 234 k
- crypto-policies-scripts noarch 20241011-1.git5930b9a.fc40 updates 124 k
- cups-filesystem noarch 1:2.4.11-9.fc40 updates 14 k
- cups-libs x86_64 1:2.4.11-9.fc40 updates 262 k
- dbus x86_64 1:1.14.10-3.fc40 fedora 8.0 k
- dbus-broker x86_64 36-2.fc40 updates 171 k
- dbus-common noarch 1:1.14.10-3.fc40 fedora 15 k
- default-fonts-core-sans noarch 4.0-13.fc40 updates 31 k
- duktape x86_64 2.7.0-7.fc40 fedora 170 k
- exempi x86_64 2.6.4-5.fc40 fedora 581 k
- exiv2-libs x86_64 0.27.6-7.fc40 fedora 755 k
- fdk-aac-free x86_64 2.0.0-13.fc40 fedora 337 k
- flac-libs x86_64 1.4.3-4.fc40 fedora 262 k
- fontconfig x86_64 2.15.0-6.fc40 updates 270 k
- fontconfig-devel x86_64 2.15.0-6.fc40 updates 165 k
- fonts-filesystem noarch 1:2.0.5-14.fc40 fedora 8.2 k
- freetype x86_64 2.13.2-5.fc40 fedora 410 k
- freetype-devel x86_64 2.13.2-5.fc40 fedora 951 k
- fribidi x86_64 1.0.14-2.fc40 updates 92 k
- fuse-common x86_64 3.16.2-3.fc40 fedora 8.7 k
- fuse3 x86_64 3.16.2-3.fc40 fedora 58 k
- fuse3-libs x86_64 3.16.2-3.fc40 fedora 93 k
- gdk-pixbuf2 x86_64 2.42.10-8.fc40 fedora 485 k
- gdk-pixbuf2-modules x86_64 2.42.10-8.fc40 fedora 86 k
- geoclue2 x86_64 2.7.0-5.fc40 fedora 157 k
- gettext x86_64 0.22.5-4.fc40 updates 1.1 M
- gettext-envsubst x86_64 0.22.5-4.fc40 updates 38 k
- gettext-libs x86_64 0.22.5-4.fc40 updates 666 k
- gettext-runtime x86_64 0.22.5-4.fc40 updates 121 k
- giflib x86_64 5.2.2-1.fc40 fedora 52 k
- glib-networking x86_64 2.80.0-1.fc40 fedora 200 k
- glib2-devel x86_64 2.80.3-1.fc40 updates 1.5 M
- gmock x86_64 1.14.0-4.fc40 fedora 60 k
- gobject-introspection x86_64 1.80.1-1.fc40 updates 111 k
- google-noto-fonts-common noarch 20240301-2.fc40 fedora 17 k
- google-noto-sans-vf-fonts noarch 20240301-2.fc40 fedora 593 k
- gpgme x86_64 1.23.2-3.fc40 fedora 211 k
- gpgmepp x86_64 1.23.2-3.fc40 fedora 139 k
- graphene x86_64 1.10.6-8.fc40 fedora 61 k
- graphite2 x86_64 1.3.14-15.fc40 fedora 95 k
- graphite2-devel x86_64 1.3.14-15.fc40 fedora 21 k
- gsettings-desktop-schemas x86_64 46.1-1.fc40 updates 755 k
- gsm x86_64 1.0.22-6.fc40 fedora 36 k
- gstreamer1 x86_64 1.24.11-1.fc40 updates 1.6 M
- gstreamer1-plugins-base x86_64 1.24.11-1.fc40 updates 2.2 M
- gtest x86_64 1.14.0-4.fc40 fedora 180 k
- gtest-devel x86_64 1.14.0-4.fc40 fedora 255 k
- gtk-update-icon-cache x86_64 3.24.43-1.fc40 updates 34 k
- gtk3 x86_64 3.24.43-1.fc40 updates 5.6 M
- harfbuzz x86_64 8.5.0-1.fc40 updates 1.0 M
- harfbuzz-devel x86_64 8.5.0-1.fc40 updates 446 k
- harfbuzz-icu x86_64 8.5.0-1.fc40 updates 16 k
- hicolor-icon-theme noarch 0.17-18.fc40 fedora 66 k
- highway x86_64 1.2.0-2.fc40 updates 652 k
- highway-devel x86_64 1.2.0-2.fc40 updates 423 k
- hwdata noarch 0.391-1.fc40 updates 1.6 M
- iso-codes noarch 4.16.0-3.fc40 fedora 3.5 M
- jbigkit-libs x86_64 2.1-29.fc40 fedora 53 k
- json-glib x86_64 1.8.0-3.fc40 fedora 167 k
- lame-libs x86_64 3.100-17.fc40 fedora 336 k
- lcms2 x86_64 2.16-3.fc40 fedora 180 k
- libXcomposite x86_64 0.4.6-3.fc40 fedora 24 k
- libXcursor x86_64 1.2.1-7.fc40 fedora 30 k
- libXdamage x86_64 1.1.6-3.fc40 fedora 23 k
- libXext x86_64 1.3.6-1.fc40 fedora 39 k
- libXext-devel x86_64 1.3.6-1.fc40 fedora 86 k
- libXfixes x86_64 6.0.1-3.fc40 fedora 19 k
- libXft x86_64 2.3.8-6.fc40 fedora 72 k
- libXi x86_64 1.8.2-1.fc40 updates 40 k
- libXinerama x86_64 1.1.5-6.fc40 fedora 14 k
- libXrandr x86_64 1.5.4-3.fc40 fedora 28 k
- libXrender x86_64 0.9.11-6.fc40 fedora 27 k
- libXrender-devel x86_64 0.9.11-6.fc40 fedora 19 k
- libXtst x86_64 1.2.5-1.fc40 updates 20 k
- libXv x86_64 1.0.12-3.fc40 fedora 18 k
- libXxf86vm x86_64 1.1.5-6.fc40 fedora 18 k
- libaom x86_64 3.9.0-1.fc40 updates 1.8 M
- libasyncns x86_64 0.8-28.fc40 fedora 30 k
- libavif x86_64 1.0.4-3.fc40 updates 91 k
- libavif-devel x86_64 1.0.4-3.fc40 updates 29 k
- libblkid-devel x86_64 2.40.2-1.fc40 updates 26 k
- libcanberra x86_64 0.30-35.fc40 fedora 85 k
- libcloudproviders x86_64 0.3.5-3.fc40 fedora 46 k
- libcue x86_64 2.3.0-3.fc40 fedora 35 k
- libdatrie x86_64 0.2.13-9.fc40 fedora 32 k
- libdav1d x86_64 1.5.1-1.fc40 updates 635 k
- libdecor x86_64 0.2.2-3.fc40 fedora 57 k
- libdrm x86_64 2.4.123-1.fc40 updates 159 k
- libepoxy x86_64 1.5.10-6.fc40 fedora 222 k
- libexif x86_64 0.6.24-7.fc40 fedora 456 k
- libgexiv2 x86_64 0.14.3-1.fc40 updates 103 k
- libglvnd x86_64 1:1.7.0-4.fc40 fedora 115 k
- libglvnd-core-devel x86_64 1:1.7.0-4.fc40 fedora 17 k
- libglvnd-devel x86_64 1:1.7.0-4.fc40 fedora 163 k
- libglvnd-egl x86_64 1:1.7.0-4.fc40 fedora 35 k
- libglvnd-gles x86_64 1:1.7.0-4.fc40 fedora 29 k
- libglvnd-glx x86_64 1:1.7.0-4.fc40 fedora 132 k
- libglvnd-opengl x86_64 1:1.7.0-4.fc40 fedora 38 k
- libgrss x86_64 0.7.0-19.fc40 fedora 62 k
- libgsf x86_64 1.14.53-2.fc40 updates 261 k
- libgudev x86_64 238-5.fc40 fedora 35 k
- libgusb x86_64 0.4.9-1.fc40 updates 65 k
- libgxps x86_64 0.3.2-8.fc40 fedora 76 k
- libicu-devel x86_64 74.2-1.fc40 fedora 930 k
- libiptcdata x86_64 1.0.5-17.fc40 fedora 60 k
- libjpeg-turbo x86_64 3.0.2-1.fc40 fedora 227 k
- libjpeg-turbo-devel x86_64 3.0.2-1.fc40 fedora 97 k
- libjxl x86_64 1:0.8.4-1.fc40 updates 1.2 M
- libjxl-devel x86_64 1:0.8.4-1.fc40 updates 57 k
- liblc3 x86_64 1.1.1-1.fc40 updates 102 k
- libldac x86_64 2.0.2.3-15.fc40 fedora 41 k
- liblerc x86_64 4.0.0-6.fc40 fedora 210 k
- libmount-devel x86_64 2.40.2-1.fc40 updates 27 k
- libnotify x86_64 0.8.3-3.fc40 fedora 51 k
- libogg x86_64 2:1.3.5-8.fc40 fedora 33 k
- libosinfo x86_64 1.11.0-5.fc40 fedora 316 k
- libpciaccess x86_64 0.16-12.fc40 fedora 26 k
- libpng x86_64 2:1.6.40-3.fc40 fedora 120 k
- libpng-devel x86_64 2:1.6.40-3.fc40 fedora 291 k
- libproxy x86_64 0.5.5-1.fc40 updates 48 k
- librsvg2 x86_64 2.57.1-7.fc40 updates 1.5 M
- libsbc x86_64 2.0-4.fc40 fedora 48 k
- libselinux-devel x86_64 3.7-5.fc40 updates 151 k
- libsepol-devel x86_64 3.7-2.fc40 updates 48 k
- libsndfile x86_64 1.2.2-4.fc40 updates 213 k
- libsoup x86_64 2.74.3-6.fc40 fedora 397 k
- libsoup3 x86_64 3.4.5-1.fc40 updates 385 k
- libstemmer x86_64 2.2.0-10.fc40 fedora 139 k
- libtdb x86_64 1.4.10-1.fc40 fedora 51 k
- libtextstyle x86_64 0.22.5-4.fc40 updates 88 k
- libthai x86_64 0.1.29-8.fc40 fedora 214 k
- libtheora x86_64 1:1.1.1-36.fc40 fedora 166 k
- libtiff x86_64 4.6.0-5.fc40.1 updates 339 k
- libtiff-devel x86_64 4.6.0-5.fc40.1 updates 258 k
- libtracker-sparql x86_64 3.7.3-1.fc40 updates 371 k
- libunwind x86_64 1.8.0-3.fc40 fedora 73 k
- libusb1 x86_64 1.0.27-6.fc40 updates 76 k
- libvisual x86_64 1:0.4.1-4.fc40 fedora 151 k
- libvmaf x86_64 2.3.0-7.fc40 fedora 180 k
- libvorbis x86_64 1:1.3.7-10.fc40 fedora 187 k
- libwayland-client x86_64 1.23.0-2.fc40 updates 33 k
- libwayland-cursor x86_64 1.23.0-2.fc40 updates 19 k
- libwayland-egl x86_64 1.23.0-2.fc40 updates 13 k
- libwayland-server x86_64 1.23.0-2.fc40 updates 41 k
- libwebp x86_64 1.5.0-1.fc40 updates 297 k
- libwebp-devel x86_64 1.5.0-1.fc40 updates 40 k
- libxkbcommon x86_64 1.6.0-2.fc40 fedora 142 k
- libxml2-devel x86_64 2.12.9-1.fc40 updates 524 k
- libxshmfence x86_64 1.3.2-5.fc40 updates 13 k
- libxslt x86_64 1.1.42-1.fc40 updates 189 k
- libzstd-devel x86_64 1.5.6-1.fc40 updates 52 k
- lm_sensors-libs x86_64 3.6.0-18.fc40 fedora 40 k
- mesa-filesystem x86_64 24.1.7-1.fc40 updates 21 k
- mesa-libEGL x86_64 24.1.7-1.fc40 updates 140 k
- mesa-libEGL-devel x86_64 24.1.7-1.fc40 updates 24 k
- mesa-libGL x86_64 24.1.7-1.fc40 updates 176 k
- mesa-libgbm x86_64 24.1.7-1.fc40 updates 48 k
- mesa-libglapi x86_64 24.1.7-1.fc40 updates 51 k
- mpg123-libs x86_64 1.32.9-1.fc40 updates 345 k
- nspr x86_64 4.36.0-2.fc40 updates 137 k
- nss x86_64 3.107.0-1.fc40 updates 711 k
- nss-softokn x86_64 3.107.0-1.fc40 updates 414 k
- nss-softokn-freebl x86_64 3.107.0-1.fc40 updates 332 k
- nss-sysinit x86_64 3.107.0-1.fc40 updates 19 k
- nss-util x86_64 3.107.0-1.fc40 updates 89 k
- openjpeg2 x86_64 2.5.3-1.fc40 updates 189 k
- opus x86_64 1.5.1-1.fc40 fedora 230 k
- orc x86_64 0.4.39-1.fc40 updates 223 k
- osinfo-db noarch 20250124-1.fc40 updates 476 k
- osinfo-db-tools x86_64 1.11.0-5.fc40 fedora 74 k
- pango x86_64 1.54.0-1.fc40 updates 347 k
- pcre2-devel x86_64 10.44-1.fc40 updates 521 k
- pcre2-utf16 x86_64 10.44-1.fc40 updates 223 k
- pcre2-utf32 x86_64 10.44-1.fc40 updates 210 k
- pipewire-libs x86_64 1.0.9-1.fc40 updates 1.8 M
- pixman x86_64 0.43.4-1.fc40 updates 293 k
- pixman-devel x86_64 0.43.4-1.fc40 updates 17 k
- poppler x86_64 24.02.0-2.fc40 fedora 1.2 M
- poppler-data noarch 0.4.11-7.fc40 fedora 2.0 M
- poppler-glib x86_64 24.02.0-2.fc40 fedora 190 k
- pulseaudio-libs x86_64 16.1-8.fc40 updates 693 k
- python3-packaging noarch 23.2-4.fc40 fedora 125 k
- rav1e-libs x86_64 0.7.1-4.fc40 updates 1.0 M
- shared-mime-info x86_64 2.3-5.fc40 updates 390 k
- sound-theme-freedesktop noarch 0.8-21.fc40 fedora 383 k
- svt-av1-libs x86_64 2.1.0-4.fc40 updates 2.1 M
- sysprof-capture-devel x86_64 46.0-1.fc40 fedora 54 k
- totem-pl-parser x86_64 3.26.6-9.fc40 fedora 144 k
- tracker x86_64 3.7.3-1.fc40 updates 635 k
- uchardet x86_64 0.0.8-5.fc40 fedora 106 k
- upower-libs x86_64 1.90.7-1.fc40 updates 58 k
- webrtc-audio-processing x86_64 1.3-1.fc40 fedora 518 k
- xdg-desktop-portal x86_64 1.18.4-1.fc40 updates 474 k
- xkeyboard-config noarch 2.41-1.fc40 fedora 976 k
- xml-common noarch 0.6.3-63.fc40 fedora 31 k
- xprop x86_64 1.2.7-1.fc40 fedora 35 k
- xz-devel x86_64 1:5.4.6-3.fc40 fedora 67 k
- zlib-ng-compat-devel x86_64 2.1.7-2.fc40 updates 38 k
- Installing weak dependencies:
- adobe-source-code-pro-fonts noarch 2.042.1.062.1.026-4.fc40 fedora 806 k
- avif-pixbuf-loader x86_64 1.0.4-3.fc40 updates 17 k
- dconf x86_64 0.40.0-12.fc40 fedora 109 k
- exiv2 x86_64 0.27.6-7.fc40 fedora 979 k
- jxl-pixbuf-loader x86_64 1:0.8.4-1.fc40 updates 60 k
- libcanberra-gtk3 x86_64 0.30-35.fc40 fedora 31 k
- low-memory-monitor x86_64 2.1-10.fc40 fedora 34 k
- mesa-dri-drivers x86_64 24.1.7-1.fc40 updates 26 M
- mesa-va-drivers x86_64 24.1.7-1.fc40 updates 4.0 M
- rsvg-pixbuf-loader x86_64 2.57.1-7.fc40 updates 16 k
- tracker-miners x86_64 3.7.4-2.fc40 updates 997 k
- webp-pixbuf-loader x86_64 0.2.7-1.fc40 fedora 20 k
- xdg-desktop-portal-gtk x86_64 1.15.1-5.fc40 fedora 143 k
-
- Transaction Summary
- ================================================================================
- Install 239 Packages
-
- Total download size: 106 M
- Installed size: 455 M
- Downloading Packages:
- (1/239): SDL2_image-devel-2.8.2-4.fc40.x86_64.r 207 kB/s | 18 kB 00:00
- (2/239): SDL2_image-2.8.2-4.fc40.x86_64.rpm 782 kB/s | 110 kB 00:00
- (3/239): SDL2_ttf-2.22.0-2.fc40.x86_64.rpm 744 kB/s | 43 kB 00:00
- (4/239): ModemManager-glib-1.22.0-3.fc40.x86_64 1.9 MB/s | 322 kB 00:00
- (5/239): SDL2_ttf-devel-2.22.0-2.fc40.x86_64.rp 744 kB/s | 21 kB 00:00
- (6/239): at-spi2-atk-2.52.0-1.fc40.x86_64.rpm 2.7 MB/s | 86 kB 00:00
- (7/239): abattis-cantarell-vf-fonts-0.301-12.fc 2.0 MB/s | 120 kB 00:00
- (8/239): adobe-source-code-pro-fonts-2.042.1.06 12 MB/s | 806 kB 00:00
- (9/239): atk-2.52.0-1.fc40.x86_64.rpm 2.5 MB/s | 80 kB 00:00
- (10/239): at-spi2-core-2.52.0-1.fc40.x86_64.rpm 5.4 MB/s | 373 kB 00:00
- (11/239): avahi-glib-0.8-26.fc40.x86_64.rpm 462 kB/s | 15 kB 00:00
- (12/239): avahi-libs-0.8-26.fc40.x86_64.rpm 2.0 MB/s | 67 kB 00:00
- (13/239): brotli-1.1.0-3.fc40.x86_64.rpm 712 kB/s | 20 kB 00:00
- (14/239): brotli-devel-1.1.0-3.fc40.x86_64.rpm 1.1 MB/s | 34 kB 00:00
- (15/239): cairo-1.18.0-3.fc40.x86_64.rpm 17 MB/s | 709 kB 00:00
- (16/239): bzip2-devel-1.0.8-18.fc40.x86_64.rpm 2.9 MB/s | 214 kB 00:00
- (17/239): cairo-devel-1.18.0-3.fc40.x86_64.rpm 4.1 MB/s | 193 kB 00:00
- (18/239): cairo-gobject-1.18.0-3.fc40.x86_64.rp 619 kB/s | 17 kB 00:00
- (19/239): cdparanoia-libs-10.2-44.fc40.x86_64.r 1.8 MB/s | 54 kB 00:00
- (20/239): colord-libs-1.4.7-3.fc40.x86_64.rpm 6.8 MB/s | 234 kB 00:00
- (21/239): dbus-1.14.10-3.fc40.x86_64.rpm 287 kB/s | 8.0 kB 00:00
- (22/239): dbus-common-1.14.10-3.fc40.noarch.rpm 522 kB/s | 15 kB 00:00
- (23/239): dconf-0.40.0-12.fc40.x86_64.rpm 3.4 MB/s | 109 kB 00:00
- (24/239): duktape-2.7.0-7.fc40.x86_64.rpm 5.4 MB/s | 170 kB 00:00
- (25/239): exiv2-libs-0.27.6-7.fc40.x86_64.rpm 18 MB/s | 755 kB 00:00
- (26/239): exempi-2.6.4-5.fc40.x86_64.rpm 7.7 MB/s | 581 kB 00:00
- (27/239): exiv2-0.27.6-7.fc40.x86_64.rpm 12 MB/s | 979 kB 00:00
- (28/239): fdk-aac-free-2.0.0-13.fc40.x86_64.rpm 9.8 MB/s | 337 kB 00:00
- (29/239): flac-libs-1.4.3-4.fc40.x86_64.rpm 7.9 MB/s | 262 kB 00:00
- (30/239): fonts-filesystem-2.0.5-14.fc40.noarch 278 kB/s | 8.2 kB 00:00
- (31/239): freetype-2.13.2-5.fc40.x86_64.rpm 12 MB/s | 410 kB 00:00
- (32/239): freetype-devel-2.13.2-5.fc40.x86_64.r 21 MB/s | 951 kB 00:00
- (33/239): fuse-common-3.16.2-3.fc40.x86_64.rpm 231 kB/s | 8.7 kB 00:00
- (34/239): fuse3-3.16.2-3.fc40.x86_64.rpm 2.0 MB/s | 58 kB 00:00
- (35/239): fuse3-libs-3.16.2-3.fc40.x86_64.rpm 3.1 MB/s | 93 kB 00:00
- (36/239): gdk-pixbuf2-2.42.10-8.fc40.x86_64.rpm 13 MB/s | 485 kB 00:00
- (37/239): gdk-pixbuf2-modules-2.42.10-8.fc40.x8 2.9 MB/s | 86 kB 00:00
- (38/239): geoclue2-2.7.0-5.fc40.x86_64.rpm 5.0 MB/s | 157 kB 00:00
- (39/239): giflib-5.2.2-1.fc40.x86_64.rpm 1.7 MB/s | 52 kB 00:00
- (40/239): glib-networking-2.80.0-1.fc40.x86_64. 6.3 MB/s | 200 kB 00:00
- (41/239): gmock-1.14.0-4.fc40.x86_64.rpm 2.0 MB/s | 60 kB 00:00
- (42/239): google-noto-fonts-common-20240301-2.f 587 kB/s | 17 kB 00:00
- (43/239): google-noto-sans-vf-fonts-20240301-2. 15 MB/s | 593 kB 00:00
- (44/239): gpgme-1.23.2-3.fc40.x86_64.rpm 6.6 MB/s | 211 kB 00:00
- (45/239): gpgmepp-1.23.2-3.fc40.x86_64.rpm 4.3 MB/s | 139 kB 00:00
- (46/239): graphene-1.10.6-8.fc40.x86_64.rpm 2.1 MB/s | 61 kB 00:00
- (47/239): graphite2-1.3.14-15.fc40.x86_64.rpm 3.1 MB/s | 95 kB 00:00
- (48/239): graphite2-devel-1.3.14-15.fc40.x86_64 698 kB/s | 21 kB 00:00
- (49/239): gsm-1.0.22-6.fc40.x86_64.rpm 1.2 MB/s | 36 kB 00:00
- (50/239): gtest-1.14.0-4.fc40.x86_64.rpm 5.6 MB/s | 180 kB 00:00
- (51/239): gtest-devel-1.14.0-4.fc40.x86_64.rpm 7.4 MB/s | 255 kB 00:00
- (52/239): hicolor-icon-theme-0.17-18.fc40.noarc 2.2 MB/s | 66 kB 00:00
- (53/239): jbigkit-libs-2.1-29.fc40.x86_64.rpm 1.5 MB/s | 53 kB 00:00
- (54/239): json-glib-1.8.0-3.fc40.x86_64.rpm 4.9 MB/s | 167 kB 00:00
- (55/239): iso-codes-4.16.0-3.fc40.noarch.rpm 35 MB/s | 3.5 MB 00:00
- (56/239): lame-libs-3.100-17.fc40.x86_64.rpm 5.7 MB/s | 336 kB 00:00
- (57/239): lcms2-2.16-3.fc40.x86_64.rpm 3.1 MB/s | 180 kB 00:00
- (58/239): libXcomposite-0.4.6-3.fc40.x86_64.rpm 856 kB/s | 24 kB 00:00
- (59/239): libXcursor-1.2.1-7.fc40.x86_64.rpm 1.1 MB/s | 30 kB 00:00
- (60/239): libXdamage-1.1.6-3.fc40.x86_64.rpm 795 kB/s | 23 kB 00:00
- (61/239): libXext-1.3.6-1.fc40.x86_64.rpm 1.3 MB/s | 39 kB 00:00
- (62/239): libXext-devel-1.3.6-1.fc40.x86_64.rpm 2.9 MB/s | 86 kB 00:00
- (63/239): libXfixes-6.0.1-3.fc40.x86_64.rpm 650 kB/s | 19 kB 00:00
- (64/239): libXft-2.3.8-6.fc40.x86_64.rpm 2.4 MB/s | 72 kB 00:00
- (65/239): libXinerama-1.1.5-6.fc40.x86_64.rpm 516 kB/s | 14 kB 00:00
- (66/239): libXrandr-1.5.4-3.fc40.x86_64.rpm 942 kB/s | 28 kB 00:00
- (67/239): libXrender-0.9.11-6.fc40.x86_64.rpm 975 kB/s | 27 kB 00:00
- (68/239): libXrender-devel-0.9.11-6.fc40.x86_64 687 kB/s | 19 kB 00:00
- (69/239): libXv-1.0.12-3.fc40.x86_64.rpm 636 kB/s | 18 kB 00:00
- (70/239): libXxf86vm-1.1.5-6.fc40.x86_64.rpm 637 kB/s | 18 kB 00:00
- (71/239): libasyncns-0.8-28.fc40.x86_64.rpm 1.0 MB/s | 30 kB 00:00
- (72/239): libcanberra-0.30-35.fc40.x86_64.rpm 2.8 MB/s | 85 kB 00:00
- (73/239): libcanberra-gtk3-0.30-35.fc40.x86_64. 1.1 MB/s | 31 kB 00:00
- (74/239): libcloudproviders-0.3.5-3.fc40.x86_64 1.6 MB/s | 46 kB 00:00
- (75/239): libcue-2.3.0-3.fc40.x86_64.rpm 1.2 MB/s | 35 kB 00:00
- (76/239): libdatrie-0.2.13-9.fc40.x86_64.rpm 1.1 MB/s | 32 kB 00:00
- (77/239): libdecor-0.2.2-3.fc40.x86_64.rpm 2.0 MB/s | 57 kB 00:00
- (78/239): libepoxy-1.5.10-6.fc40.x86_64.rpm 6.9 MB/s | 222 kB 00:00
- (79/239): libexif-0.6.24-7.fc40.x86_64.rpm 13 MB/s | 456 kB 00:00
- (80/239): libffi-devel-3.4.4-7.fc40.x86_64.rpm 908 kB/s | 28 kB 00:00
- (81/239): libglvnd-1.7.0-4.fc40.x86_64.rpm 3.7 MB/s | 115 kB 00:00
- (82/239): libglvnd-core-devel-1.7.0-4.fc40.x86_ 628 kB/s | 17 kB 00:00
- (83/239): libglvnd-devel-1.7.0-4.fc40.x86_64.rp 5.4 MB/s | 163 kB 00:00
- (84/239): libglvnd-egl-1.7.0-4.fc40.x86_64.rpm 1.2 MB/s | 35 kB 00:00
- (85/239): libglvnd-gles-1.7.0-4.fc40.x86_64.rpm 1.0 MB/s | 29 kB 00:00
- (86/239): libglvnd-glx-1.7.0-4.fc40.x86_64.rpm 4.4 MB/s | 132 kB 00:00
- (87/239): libglvnd-opengl-1.7.0-4.fc40.x86_64.r 1.3 MB/s | 38 kB 00:00
- (88/239): libgrss-0.7.0-19.fc40.x86_64.rpm 2.2 MB/s | 62 kB 00:00
- (89/239): libgudev-238-5.fc40.x86_64.rpm 1.2 MB/s | 35 kB 00:00
- (90/239): libgxps-0.3.2-8.fc40.x86_64.rpm 2.5 MB/s | 76 kB 00:00
- (91/239): libicu-devel-74.2-1.fc40.x86_64.rpm 20 MB/s | 930 kB 00:00
- (92/239): libiptcdata-1.0.5-17.fc40.x86_64.rpm 1.4 MB/s | 60 kB 00:00
- (93/239): libjpeg-turbo-3.0.2-1.fc40.x86_64.rpm 6.4 MB/s | 227 kB 00:00
- (94/239): libjpeg-turbo-devel-3.0.2-1.fc40.x86_ 3.2 MB/s | 97 kB 00:00
- (95/239): libldac-2.0.2.3-15.fc40.x86_64.rpm 1.4 MB/s | 41 kB 00:00
- (96/239): liblerc-4.0.0-6.fc40.x86_64.rpm 6.2 MB/s | 210 kB 00:00
- (97/239): libnotify-0.8.3-3.fc40.x86_64.rpm 1.8 MB/s | 51 kB 00:00
- (98/239): libogg-1.3.5-8.fc40.x86_64.rpm 1.1 MB/s | 33 kB 00:00
- (99/239): libosinfo-1.11.0-5.fc40.x86_64.rpm 8.8 MB/s | 316 kB 00:00
- (100/239): libpciaccess-0.16-12.fc40.x86_64.rpm 934 kB/s | 26 kB 00:00
- (101/239): libpng-1.6.40-3.fc40.x86_64.rpm 3.9 MB/s | 120 kB 00:00
- (102/239): libpng-devel-1.6.40-3.fc40.x86_64.rp 8.2 MB/s | 291 kB 00:00
- (103/239): libsbc-2.0-4.fc40.x86_64.rpm 1.7 MB/s | 48 kB 00:00
- (104/239): libsoup-2.74.3-6.fc40.x86_64.rpm 11 MB/s | 397 kB 00:00
- (105/239): libstemmer-2.2.0-10.fc40.x86_64.rpm 4.3 MB/s | 139 kB 00:00
- (106/239): libtdb-1.4.10-1.fc40.x86_64.rpm 1.7 MB/s | 51 kB 00:00
- (107/239): libthai-0.1.29-8.fc40.x86_64.rpm 6.6 MB/s | 214 kB 00:00
- (108/239): libtheora-1.1.1-36.fc40.x86_64.rpm 5.0 MB/s | 166 kB 00:00
- (109/239): libunwind-1.8.0-3.fc40.x86_64.rpm 2.4 MB/s | 73 kB 00:00
- (110/239): libvisual-0.4.1-4.fc40.x86_64.rpm 4.8 MB/s | 151 kB 00:00
- (111/239): libvmaf-2.3.0-7.fc40.x86_64.rpm 5.7 MB/s | 180 kB 00:00
- (112/239): libvorbis-1.3.7-10.fc40.x86_64.rpm 5.6 MB/s | 187 kB 00:00
- (113/239): libxkbcommon-1.6.0-2.fc40.x86_64.rpm 4.5 MB/s | 142 kB 00:00
- (114/239): lm_sensors-libs-3.6.0-18.fc40.x86_64 1.4 MB/s | 40 kB 00:00
- (115/239): low-memory-monitor-2.1-10.fc40.x86_6 1.1 MB/s | 34 kB 00:00
- (116/239): opus-1.5.1-1.fc40.x86_64.rpm 7.0 MB/s | 230 kB 00:00
- (117/239): osinfo-db-tools-1.11.0-5.fc40.x86_64 2.5 MB/s | 74 kB 00:00
- (118/239): poppler-24.02.0-2.fc40.x86_64.rpm 23 MB/s | 1.2 MB 00:00
- (119/239): poppler-data-0.4.11-7.fc40.noarch.rp 30 MB/s | 2.0 MB 00:00
- (120/239): poppler-glib-24.02.0-2.fc40.x86_64.r 3.1 MB/s | 190 kB 00:00
- (121/239): python3-packaging-23.2-4.fc40.noarch 3.6 MB/s | 125 kB 00:00
- (122/239): sound-theme-freedesktop-0.8-21.fc40. 11 MB/s | 383 kB 00:00
- (123/239): sysprof-capture-devel-46.0-1.fc40.x8 1.7 MB/s | 54 kB 00:00
- (124/239): totem-pl-parser-3.26.6-9.fc40.x86_64 4.5 MB/s | 144 kB 00:00
- (125/239): uchardet-0.0.8-5.fc40.x86_64.rpm 3.6 MB/s | 106 kB 00:00
- (126/239): webp-pixbuf-loader-0.2.7-1.fc40.x86_ 698 kB/s | 20 kB 00:00
- (127/239): webrtc-audio-processing-1.3-1.fc40.x 14 MB/s | 518 kB 00:00
- (128/239): xdg-desktop-portal-gtk-1.15.1-5.fc40 4.7 MB/s | 143 kB 00:00
- (129/239): xkeyboard-config-2.41-1.fc40.noarch. 23 MB/s | 976 kB 00:00
- (130/239): xml-common-0.6.3-63.fc40.noarch.rpm 931 kB/s | 31 kB 00:00
- (131/239): xprop-1.2.7-1.fc40.x86_64.rpm 1.2 MB/s | 35 kB 00:00
- (132/239): xz-devel-5.4.6-3.fc40.x86_64.rpm 2.3 MB/s | 67 kB 00:00
- (133/239): SDL2-devel-2.30.11-1.fc40.x86_64.rpm 1.0 MB/s | 396 kB 00:00
- (134/239): SDL2-2.30.11-1.fc40.x86_64.rpm 1.3 MB/s | 700 kB 00:00
- (135/239): adwaita-cursor-theme-46.2-2.fc40.noa 1.9 MB/s | 516 kB 00:00
- (136/239): adwaita-icon-theme-46.2-2.fc40.noarc 2.0 MB/s | 407 kB 00:00
- (137/239): alsa-lib-1.2.13-3.fc40.x86_64.rpm 1.8 MB/s | 517 kB 00:00
- (138/239): avif-pixbuf-loader-1.0.4-3.fc40.x86_ 417 kB/s | 17 kB 00:00
- (139/239): bluez-libs-5.79-1.fc40.x86_64.rpm 1.0 MB/s | 83 kB 00:00
- (140/239): cmake-filesystem-3.30.5-1.fc40.x86_6 439 kB/s | 17 kB 00:00
- (141/239): NetworkManager-libnm-1.46.6-1.fc40.x 1.4 MB/s | 1.8 MB 00:01
- (142/239): cups-filesystem-2.4.11-9.fc40.noarch 360 kB/s | 14 kB 00:00
- (143/239): crypto-policies-scripts-20241011-1.g 1.3 MB/s | 124 kB 00:00
- (144/239): dbus-broker-36-2.fc40.x86_64.rpm 1.3 MB/s | 171 kB 00:00
- (145/239): default-fonts-core-sans-4.0-13.fc40. 648 kB/s | 31 kB 00:00
- (146/239): cups-libs-2.4.11-9.fc40.x86_64.rpm 1.2 MB/s | 262 kB 00:00
- (147/239): fontconfig-devel-2.15.0-6.fc40.x86_6 1.2 MB/s | 165 kB 00:00
- (148/239): fontconfig-2.15.0-6.fc40.x86_64.rpm 1.5 MB/s | 270 kB 00:00
- (149/239): fribidi-1.0.14-2.fc40.x86_64.rpm 1.1 MB/s | 92 kB 00:00
- (150/239): gettext-envsubst-0.22.5-4.fc40.x86_6 732 kB/s | 38 kB 00:00
- (151/239): adwaita-icon-theme-legacy-46.2-1.fc4 1.7 MB/s | 2.5 MB 00:01
- (152/239): gettext-runtime-0.22.5-4.fc40.x86_64 1.2 MB/s | 121 kB 00:00
- (153/239): gettext-libs-0.22.5-4.fc40.x86_64.rp 1.3 MB/s | 666 kB 00:00
- (154/239): gettext-0.22.5-4.fc40.x86_64.rpm 1.5 MB/s | 1.1 MB 00:00
- (155/239): gobject-introspection-1.80.1-1.fc40. 868 kB/s | 111 kB 00:00
- (156/239): gsettings-desktop-schemas-46.1-1.fc4 1.5 MB/s | 755 kB 00:00
- (157/239): glib2-devel-2.80.3-1.fc40.x86_64.rpm 1.4 MB/s | 1.5 MB 00:01
- (158/239): gtk-update-icon-cache-3.24.43-1.fc40 629 kB/s | 34 kB 00:00
- (159/239): gstreamer1-1.24.11-1.fc40.x86_64.rpm 1.2 MB/s | 1.6 MB 00:01
- (160/239): gstreamer1-plugins-base-1.24.11-1.fc 1.4 MB/s | 2.2 MB 00:01
- (161/239): harfbuzz-8.5.0-1.fc40.x86_64.rpm 1.2 MB/s | 1.0 MB 00:00
- (162/239): harfbuzz-icu-8.5.0-1.fc40.x86_64.rpm 390 kB/s | 16 kB 00:00
- (163/239): harfbuzz-devel-8.5.0-1.fc40.x86_64.r 1.5 MB/s | 446 kB 00:00
- (164/239): highway-devel-1.2.0-2.fc40.x86_64.rp 1.6 MB/s | 423 kB 00:00
- (165/239): highway-1.2.0-2.fc40.x86_64.rpm 1.5 MB/s | 652 kB 00:00
- (166/239): jxl-pixbuf-loader-0.8.4-1.fc40.x86_6 1.0 MB/s | 60 kB 00:00
- (167/239): libXi-1.8.2-1.fc40.x86_64.rpm 779 kB/s | 40 kB 00:00
- (168/239): libXtst-1.2.5-1.fc40.x86_64.rpm 482 kB/s | 20 kB 00:00
- (169/239): hwdata-0.391-1.fc40.noarch.rpm 1.5 MB/s | 1.6 MB 00:01
- (170/239): libavif-1.0.4-3.fc40.x86_64.rpm 976 kB/s | 91 kB 00:00
- (171/239): libavif-devel-1.0.4-3.fc40.x86_64.rp 667 kB/s | 29 kB 00:00
- (172/239): libaom-3.9.0-1.fc40.x86_64.rpm 1.6 MB/s | 1.8 MB 00:01
- (173/239): libblkid-devel-2.40.2-1.fc40.x86_64. 448 kB/s | 26 kB 00:00
- (174/239): libdrm-2.4.123-1.fc40.x86_64.rpm 1.1 MB/s | 159 kB 00:00
- (175/239): libgexiv2-0.14.3-1.fc40.x86_64.rpm 1.1 MB/s | 103 kB 00:00
- (176/239): libgsf-1.14.53-2.fc40.x86_64.rpm 1.3 MB/s | 261 kB 00:00
- (177/239): libdav1d-1.5.1-1.fc40.x86_64.rpm 1.3 MB/s | 635 kB 00:00
- (178/239): libgusb-0.4.9-1.fc40.x86_64.rpm 969 kB/s | 65 kB 00:00
- (179/239): gtk3-3.24.43-1.fc40.x86_64.rpm 1.5 MB/s | 5.6 MB 00:03
- (180/239): libjxl-devel-0.8.4-1.fc40.x86_64.rpm 620 kB/s | 57 kB 00:00
- (181/239): libmount-devel-2.40.2-1.fc40.x86_64. 573 kB/s | 27 kB 00:00
- (182/239): liblc3-1.1.1-1.fc40.x86_64.rpm 1.0 MB/s | 102 kB 00:00
- (183/239): libproxy-0.5.5-1.fc40.x86_64.rpm 821 kB/s | 48 kB 00:00
- (184/239): libselinux-devel-3.7-5.fc40.x86_64.r 1.1 MB/s | 151 kB 00:00
- (185/239): libsepol-devel-3.7-2.fc40.x86_64.rpm 806 kB/s | 48 kB 00:00
- (186/239): libsndfile-1.2.2-4.fc40.x86_64.rpm 1.2 MB/s | 213 kB 00:00
- (187/239): libsoup3-3.4.5-1.fc40.x86_64.rpm 1.5 MB/s | 385 kB 00:00
- (188/239): libtextstyle-0.22.5-4.fc40.x86_64.rp 1.0 MB/s | 88 kB 00:00
- (189/239): libjxl-0.8.4-1.fc40.x86_64.rpm 1.1 MB/s | 1.2 MB 00:01
- (190/239): libtiff-4.6.0-5.fc40.1.x86_64.rpm 1.2 MB/s | 339 kB 00:00
- (191/239): librsvg2-2.57.1-7.fc40.x86_64.rpm 1.4 MB/s | 1.5 MB 00:01
- (192/239): libusb1-1.0.27-6.fc40.x86_64.rpm 1.0 MB/s | 76 kB 00:00
- (193/239): libtiff-devel-4.6.0-5.fc40.1.x86_64. 1.3 MB/s | 258 kB 00:00
- (194/239): libwayland-cursor-1.23.0-2.fc40.x86_ 446 kB/s | 19 kB 00:00
- (195/239): libwayland-client-1.23.0-2.fc40.x86_ 608 kB/s | 33 kB 00:00
- (196/239): libwayland-egl-1.23.0-2.fc40.x86_64. 349 kB/s | 13 kB 00:00
- (197/239): libwayland-server-1.23.0-2.fc40.x86_ 750 kB/s | 41 kB 00:00
- (198/239): libtracker-sparql-3.7.3-1.fc40.x86_6 1.3 MB/s | 371 kB 00:00
- (199/239): libwebp-devel-1.5.0-1.fc40.x86_64.rp 674 kB/s | 40 kB 00:00
- (200/239): libxshmfence-1.3.2-5.fc40.x86_64.rpm 333 kB/s | 13 kB 00:00
- (201/239): libxslt-1.1.42-1.fc40.x86_64.rpm 1.3 MB/s | 189 kB 00:00
- (202/239): libwebp-1.5.0-1.fc40.x86_64.rpm 1.0 MB/s | 297 kB 00:00
- (203/239): libzstd-devel-1.5.6-1.fc40.x86_64.rp 804 kB/s | 52 kB 00:00
- (204/239): mesa-filesystem-24.1.7-1.fc40.x86_64 515 kB/s | 21 kB 00:00
- (205/239): libxml2-devel-2.12.9-1.fc40.x86_64.r 1.5 MB/s | 524 kB 00:00
- (206/239): mesa-libEGL-devel-24.1.7-1.fc40.x86_ 582 kB/s | 24 kB 00:00
- (207/239): mesa-libEGL-24.1.7-1.fc40.x86_64.rpm 1.2 MB/s | 140 kB 00:00
- (208/239): mesa-libgbm-24.1.7-1.fc40.x86_64.rpm 775 kB/s | 48 kB 00:00
- (209/239): mesa-libGL-24.1.7-1.fc40.x86_64.rpm 1.2 MB/s | 176 kB 00:00
- (210/239): mesa-libglapi-24.1.7-1.fc40.x86_64.r 839 kB/s | 51 kB 00:00
- (211/239): mpg123-libs-1.32.9-1.fc40.x86_64.rpm 1.3 MB/s | 345 kB 00:00
- (212/239): nspr-4.36.0-2.fc40.x86_64.rpm 1.0 MB/s | 137 kB 00:00
- (213/239): nss-3.107.0-1.fc40.x86_64.rpm 1.4 MB/s | 711 kB 00:00
- (214/239): nss-softokn-3.107.0-1.fc40.x86_64.rp 1.4 MB/s | 414 kB 00:00
- (215/239): nss-softokn-freebl-3.107.0-1.fc40.x8 1.3 MB/s | 332 kB 00:00
- (216/239): nss-sysinit-3.107.0-1.fc40.x86_64.rp 445 kB/s | 19 kB 00:00
- (217/239): nss-util-3.107.0-1.fc40.x86_64.rpm 1.1 MB/s | 89 kB 00:00
- (218/239): openjpeg2-2.5.3-1.fc40.x86_64.rpm 1.2 MB/s | 189 kB 00:00
- (219/239): orc-0.4.39-1.fc40.x86_64.rpm 1.3 MB/s | 223 kB 00:00
- (220/239): osinfo-db-20250124-1.fc40.noarch.rpm 1.4 MB/s | 476 kB 00:00
- (221/239): pango-1.54.0-1.fc40.x86_64.rpm 1.3 MB/s | 347 kB 00:00
- (222/239): mesa-va-drivers-24.1.7-1.fc40.x86_64 1.5 MB/s | 4.0 MB 00:02
- (223/239): pcre2-utf16-10.44-1.fc40.x86_64.rpm 1.4 MB/s | 223 kB 00:00
- (224/239): pcre2-devel-10.44-1.fc40.x86_64.rpm 1.4 MB/s | 521 kB 00:00
- (225/239): pcre2-utf32-10.44-1.fc40.x86_64.rpm 1.4 MB/s | 210 kB 00:00
- (226/239): pixman-0.43.4-1.fc40.x86_64.rpm 1.5 MB/s | 293 kB 00:00
- (227/239): pixman-devel-0.43.4-1.fc40.x86_64.rp 445 kB/s | 17 kB 00:00
- (228/239): pulseaudio-libs-16.1-8.fc40.x86_64.r 1.5 MB/s | 693 kB 00:00
- (229/239): pipewire-libs-1.0.9-1.fc40.x86_64.rp 1.6 MB/s | 1.8 MB 00:01
- (230/239): rsvg-pixbuf-loader-2.57.1-7.fc40.x86 381 kB/s | 16 kB 00:00
- (231/239): rav1e-libs-0.7.1-4.fc40.x86_64.rpm 1.6 MB/s | 1.0 MB 00:00
- (232/239): shared-mime-info-2.3-5.fc40.x86_64.r 1.6 MB/s | 390 kB 00:00
- (233/239): tracker-3.7.3-1.fc40.x86_64.rpm 1.8 MB/s | 635 kB 00:00
- (234/239): tracker-miners-3.7.4-2.fc40.x86_64.r 2.1 MB/s | 997 kB 00:00
- (235/239): upower-libs-1.90.7-1.fc40.x86_64.rpm 1.0 MB/s | 58 kB 00:00
- (236/239): svt-av1-libs-2.1.0-4.fc40.x86_64.rpm 2.2 MB/s | 2.1 MB 00:00
- (237/239): zlib-ng-compat-devel-2.1.7-2.fc40.x8 870 kB/s | 38 kB 00:00
- (238/239): xdg-desktop-portal-1.18.4-1.fc40.x86 2.1 MB/s | 474 kB 00:00
- (239/239): mesa-dri-drivers-24.1.7-1.fc40.x86_6 1.9 MB/s | 26 MB 00:13
- --------------------------------------------------------------------------------
- Total 4.4 MB/s | 106 MB 00:24
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Preparing : 1/1
- Installing : libXext-1.3.6-1.fc40.x86_64 1/239
- Installing : libpng-2:1.6.40-3.fc40.x86_64 2/239
- Installing : cmake-filesystem-3.30.5-1.fc40.x86_64 3/239
- Installing : libjpeg-turbo-3.0.2-1.fc40.x86_64 4/239
- Installing : zlib-ng-compat-devel-2.1.7-2.fc40.x86_64 5/239
- Installing : nspr-4.36.0-2.fc40.x86_64 6/239
- Installing : libXrender-0.9.11-6.fc40.x86_64 7/239
- Installing : json-glib-1.8.0-3.fc40.x86_64 8/239
- Installing : avahi-libs-0.8-26.fc40.x86_64 9/239
- Installing : libwebp-1.5.0-1.fc40.x86_64 10/239
- Installing : libwayland-client-1.23.0-2.fc40.x86_64 11/239
- Installing : libogg-2:1.3.5-8.fc40.x86_64 12/239
- Installing : libglvnd-1:1.7.0-4.fc40.x86_64 13/239
- Installing : libvorbis-1:1.3.7-10.fc40.x86_64 14/239
- Installing : nss-util-3.107.0-1.fc40.x86_64 15/239
- Installing : libXi-1.8.2-1.fc40.x86_64 16/239
- Installing : libXfixes-6.0.1-3.fc40.x86_64 17/239
- Installing : fonts-filesystem-1:2.0.5-14.fc40.noarch 18/239
- Installing : libwayland-cursor-1.23.0-2.fc40.x86_64 19/239
- Installing : avahi-glib-0.8-26.fc40.x86_64 20/239
- Installing : libxshmfence-1.3.2-5.fc40.x86_64 21/239
- Installing : hwdata-0.391-1.fc40.noarch 22/239
- Installing : alsa-lib-1.2.13-3.fc40.x86_64 23/239
- Installing : opus-1.5.1-1.fc40.x86_64 24/239
- Installing : lcms2-2.16-3.fc40.x86_64 25/239
- Installing : abattis-cantarell-vf-fonts-0.301-12.fc40.noarch 26/239
- Installing : libwebp-devel-1.5.0-1.fc40.x86_64 27/239
- Installing : libpng-devel-2:1.6.40-3.fc40.x86_64 28/239
- Installing : shared-mime-info-2.3-5.fc40.x86_64 29/239
- Running scriptlet: shared-mime-info-2.3-5.fc40.x86_64 29/239
- Installing : gdk-pixbuf2-2.42.10-8.fc40.x86_64 30/239
- Installing : pixman-0.43.4-1.fc40.x86_64 31/239
- Installing : mesa-filesystem-24.1.7-1.fc40.x86_64 32/239
- Installing : libwayland-server-1.23.0-2.fc40.x86_64 33/239
- Installing : libwayland-egl-1.23.0-2.fc40.x86_64 34/239
- Installing : libusb1-1.0.27-6.fc40.x86_64 35/239
- Installing : libtextstyle-0.22.5-4.fc40.x86_64 36/239
- Installing : gettext-libs-0.22.5-4.fc40.x86_64 37/239
- Installing : highway-1.2.0-2.fc40.x86_64 38/239
- Installing : libjxl-1:0.8.4-1.fc40.x86_64 39/239
- Installing : jxl-pixbuf-loader-1:0.8.4-1.fc40.x86_64 40/239
- Installing : fribidi-1.0.14-2.fc40.x86_64 41/239
- Running scriptlet: xml-common-0.6.3-63.fc40.noarch 42/239
- Installing : xml-common-0.6.3-63.fc40.noarch 42/239
- Installing : libtdb-1.4.10-1.fc40.x86_64 43/239
- Installing : gtest-1.14.0-4.fc40.x86_64 44/239
- Installing : graphite2-1.3.14-15.fc40.x86_64 45/239
- Installing : fuse3-libs-3.16.2-3.fc40.x86_64 46/239
- Installing : graphite2-devel-1.3.14-15.fc40.x86_64 47/239
- Installing : gmock-1.14.0-4.fc40.x86_64 48/239
- Installing : gtest-devel-1.14.0-4.fc40.x86_64 49/239
- Installing : highway-devel-1.2.0-2.fc40.x86_64 50/239
- Installing : iso-codes-4.16.0-3.fc40.noarch 51/239
- Installing : libgusb-0.4.9-1.fc40.x86_64 52/239
- Installing : colord-libs-1.4.7-3.fc40.x86_64 53/239
- Installing : pixman-devel-0.43.4-1.fc40.x86_64 54/239
- Installing : libnotify-0.8.3-3.fc40.x86_64 55/239
- Installing : webp-pixbuf-loader-0.2.7-1.fc40.x86_64 56/239
- Installing : gtk-update-icon-cache-3.24.43-1.fc40.x86_64 57/239
- Installing : libgsf-1.14.53-2.fc40.x86_64 58/239
- Installing : libpciaccess-0.16-12.fc40.x86_64 59/239
- Installing : libdrm-2.4.123-1.fc40.x86_64 60/239
-
- Installing : mesa-va-drivers-24.1.7-1.fc40.x86_64 61/239
- Installing : osinfo-db-20250124-1.fc40.noarch 62/239
- Installing : adobe-source-code-pro-fonts-2.042.1.062.1.026-4. 63/239
- Installing : gsettings-desktop-schemas-46.1-1.fc40.x86_64 64/239
- Installing : libXcursor-1.2.1-7.fc40.x86_64 65/239
- Installing : libXdamage-1.1.6-3.fc40.x86_64 66/239
- Installing : libXtst-1.2.5-1.fc40.x86_64 67/239
- Installing : nss-softokn-freebl-3.107.0-1.fc40.x86_64 68/239
- Installing : nss-softokn-3.107.0-1.fc40.x86_64 69/239
- Installing : libglvnd-opengl-1:1.7.0-4.fc40.x86_64 70/239
- Installing : flac-libs-1.4.3-4.fc40.x86_64 71/239
- Installing : libtheora-1:1.1.1-36.fc40.x86_64 72/239
- Installing : libXrandr-1.5.4-3.fc40.x86_64 73/239
- Installing : libXrender-devel-0.9.11-6.fc40.x86_64 74/239
- Installing : libjpeg-turbo-devel-3.0.2-1.fc40.x86_64 75/239
- Installing : libXext-devel-1.3.6-1.fc40.x86_64 76/239
- Installing : libXinerama-1.1.5-6.fc40.x86_64 77/239
- Installing : libXv-1.0.12-3.fc40.x86_64 78/239
- Installing : libXxf86vm-1.1.5-6.fc40.x86_64 79/239
- Installing : exiv2-libs-0.27.6-7.fc40.x86_64 80/239
- Installing : exiv2-0.27.6-7.fc40.x86_64 81/239
- Installing : libgexiv2-0.14.3-1.fc40.x86_64 82/239
- Installing : svt-av1-libs-2.1.0-4.fc40.x86_64 83/239
- Installing : rav1e-libs-0.7.1-4.fc40.x86_64 84/239
- Installing : pcre2-utf32-10.44-1.fc40.x86_64 85/239
- Installing : pcre2-utf16-10.44-1.fc40.x86_64 86/239
- Installing : pcre2-devel-10.44-1.fc40.x86_64 87/239
- Installing : orc-0.4.39-1.fc40.x86_64 88/239
- Installing : openjpeg2-2.5.3-1.fc40.x86_64 89/239
- Installing : mpg123-libs-1.32.9-1.fc40.x86_64 90/239
- Installing : libzstd-devel-1.5.6-1.fc40.x86_64 91/239
- Installing : libxslt-1.1.42-1.fc40.x86_64 92/239
- Installing : libsepol-devel-3.7-2.fc40.x86_64 93/239
- Installing : libselinux-devel-3.7-5.fc40.x86_64 94/239
- Installing : liblc3-1.1.1-1.fc40.x86_64 95/239
- Installing : libdav1d-1.5.1-1.fc40.x86_64 96/239
- Installing : libblkid-devel-2.40.2-1.fc40.x86_64 97/239
- Installing : libmount-devel-2.40.2-1.fc40.x86_64 98/239
- Installing : gobject-introspection-1.80.1-1.fc40.x86_64 99/239
- Installing : upower-libs-1.90.7-1.fc40.x86_64 100/239
- Installing : gettext-envsubst-0.22.5-4.fc40.x86_64 101/239
- Installing : gettext-runtime-0.22.5-4.fc40.x86_64 102/239
- Installing : gettext-0.22.5-4.fc40.x86_64 103/239
- Installing : cups-filesystem-1:2.4.11-9.fc40.noarch 104/239
- Installing : cups-libs-1:2.4.11-9.fc40.x86_64 105/239
- Installing : crypto-policies-scripts-20241011-1.git5930b9a.fc 106/239
- Installing : nss-sysinit-3.107.0-1.fc40.x86_64 107/239
- Installing : nss-3.107.0-1.fc40.x86_64 108/239
- Running scriptlet: nss-3.107.0-1.fc40.x86_64 108/239
- Installing : bluez-libs-5.79-1.fc40.x86_64 109/239
- Installing : adwaita-icon-theme-legacy-46.2-1.fc40.noarch 110/239
- Installing : adwaita-cursor-theme-46.2-2.fc40.noarch 111/239
-
- Installing : adwaita-icon-theme-46.2-2.fc40.noarch 112/239
- Installing : NetworkManager-libnm-1:1.46.6-1.fc40.x86_64 113/239
- Installing : xz-devel-1:5.4.6-3.fc40.x86_64 114/239
- Installing : libxml2-devel-2.12.9-1.fc40.x86_64 115/239
- Installing : xprop-1.2.7-1.fc40.x86_64 116/239
- Installing : xkeyboard-config-2.41-1.fc40.noarch 117/239
- Installing : libxkbcommon-1.6.0-2.fc40.x86_64 118/239
- Installing : webrtc-audio-processing-1.3-1.fc40.x86_64 119/239
- Installing : uchardet-0.0.8-5.fc40.x86_64 120/239
- Installing : totem-pl-parser-3.26.6-9.fc40.x86_64 121/239
- Installing : sysprof-capture-devel-46.0-1.fc40.x86_64 122/239
- Installing : sound-theme-freedesktop-0.8-21.fc40.noarch 123/239
- Running scriptlet: sound-theme-freedesktop-0.8-21.fc40.noarch 123/239
- Installing : python3-packaging-23.2-4.fc40.noarch 124/239
- Installing : poppler-data-0.4.11-7.fc40.noarch 125/239
- Installing : low-memory-monitor-2.1-10.fc40.x86_64 126/239
- Running scriptlet: low-memory-monitor-2.1-10.fc40.x86_64 126/239
- Installing : lm_sensors-libs-3.6.0-18.fc40.x86_64 127/239
- Installing : mesa-libglapi-24.1.7-1.fc40.x86_64 128/239
-
- Installing : mesa-dri-drivers-24.1.7-1.fc40.x86_64 129/239
- Installing : mesa-libgbm-24.1.7-1.fc40.x86_64 130/239
- Installing : mesa-libEGL-24.1.7-1.fc40.x86_64 131/239
- Installing : libglvnd-egl-1:1.7.0-4.fc40.x86_64 132/239
- Installing : libglvnd-gles-1:1.7.0-4.fc40.x86_64 133/239
- Installing : libglvnd-glx-1:1.7.0-4.fc40.x86_64 134/239
- Installing : mesa-libGL-24.1.7-1.fc40.x86_64 135/239
- Installing : libvmaf-2.3.0-7.fc40.x86_64 136/239
- Installing : libaom-3.9.0-1.fc40.x86_64 137/239
- Installing : libavif-1.0.4-3.fc40.x86_64 138/239
- Installing : avif-pixbuf-loader-1.0.4-3.fc40.x86_64 139/239
- Installing : libavif-devel-1.0.4-3.fc40.x86_64 140/239
- Installing : libvisual-1:0.4.1-4.fc40.x86_64 141/239
- Installing : libunwind-1.8.0-3.fc40.x86_64 142/239
- Installing : gstreamer1-1.24.11-1.fc40.x86_64 143/239
- Installing : libstemmer-2.2.0-10.fc40.x86_64 144/239
- Installing : libsbc-2.0-4.fc40.x86_64 145/239
- Installing : liblerc-4.0.0-6.fc40.x86_64 146/239
- Installing : libldac-2.0.2.3-15.fc40.x86_64 147/239
- Installing : libiptcdata-1.0.5-17.fc40.x86_64 148/239
- Installing : libicu-devel-74.2-1.fc40.x86_64 149/239
- Installing : libgudev-238-5.fc40.x86_64 150/239
- Installing : libglvnd-core-devel-1:1.7.0-4.fc40.x86_64 151/239
- Installing : libglvnd-devel-1:1.7.0-4.fc40.x86_64 152/239
- Installing : mesa-libEGL-devel-24.1.7-1.fc40.x86_64 153/239
- Installing : libffi-devel-3.4.4-7.fc40.x86_64 154/239
- Installing : glib2-devel-2.80.3-1.fc40.x86_64 155/239
- Installing : libexif-0.6.24-7.fc40.x86_64 156/239
- Installing : libepoxy-1.5.10-6.fc40.x86_64 157/239
- Installing : libdatrie-0.2.13-9.fc40.x86_64 158/239
- Installing : libthai-0.1.29-8.fc40.x86_64 159/239
- Installing : libcue-2.3.0-3.fc40.x86_64 160/239
- Installing : libcloudproviders-0.3.5-3.fc40.x86_64 161/239
- Installing : libasyncns-0.8-28.fc40.x86_64 162/239
- Installing : libXcomposite-0.4.6-3.fc40.x86_64 163/239
- Installing : lame-libs-3.100-17.fc40.x86_64 164/239
- Installing : jbigkit-libs-2.1-29.fc40.x86_64 165/239
- Installing : libtiff-4.6.0-5.fc40.1.x86_64 166/239
- Installing : libtiff-devel-4.6.0-5.fc40.1.x86_64 167/239
- Installing : hicolor-icon-theme-0.17-18.fc40.noarch 168/239
- Installing : gsm-1.0.22-6.fc40.x86_64 169/239
- Installing : libsndfile-1.2.2-4.fc40.x86_64 170/239
- Installing : pulseaudio-libs-16.1-8.fc40.x86_64 171/239
- Installing : libcanberra-0.30-35.fc40.x86_64 172/239
- Running scriptlet: libcanberra-0.30-35.fc40.x86_64 172/239
-
- Installing : graphene-1.10.6-8.fc40.x86_64 173/239
- Installing : gpgme-1.23.2-3.fc40.x86_64 174/239
- Installing : gpgmepp-1.23.2-3.fc40.x86_64 175/239
- Installing : google-noto-fonts-common-20240301-2.fc40.noarch 176/239
- Installing : google-noto-sans-vf-fonts-20240301-2.fc40.noarch 177/239
- Installing : default-fonts-core-sans-4.0-13.fc40.noarch 178/239
- Installing : cairo-1.18.0-3.fc40.x86_64 179/239
- Installing : harfbuzz-8.5.0-1.fc40.x86_64 180/239
- Installing : freetype-2.13.2-5.fc40.x86_64 181/239
- Installing : fontconfig-2.15.0-6.fc40.x86_64 182/239
- Running scriptlet: fontconfig-2.15.0-6.fc40.x86_64 182/239
-
- Installing : cairo-gobject-1.18.0-3.fc40.x86_64 183/239
- Installing : libXft-2.3.8-6.fc40.x86_64 184/239
- Installing : pango-1.54.0-1.fc40.x86_64 185/239
- Installing : librsvg2-2.57.1-7.fc40.x86_64 186/239
- Installing : rsvg-pixbuf-loader-2.57.1-7.fc40.x86_64 187/239
- Installing : gdk-pixbuf2-modules-2.42.10-8.fc40.x86_64 188/239
- Installing : poppler-24.02.0-2.fc40.x86_64 189/239
- Installing : poppler-glib-24.02.0-2.fc40.x86_64 190/239
- Installing : libgxps-0.3.2-8.fc40.x86_64 191/239
- Installing : harfbuzz-icu-8.5.0-1.fc40.x86_64 192/239
- Installing : giflib-5.2.2-1.fc40.x86_64 193/239
- Installing : fuse-common-3.16.2-3.fc40.x86_64 194/239
- Installing : fuse3-3.16.2-3.fc40.x86_64 195/239
- Installing : fdk-aac-free-2.0.0-13.fc40.x86_64 196/239
- Installing : pipewire-libs-1.0.9-1.fc40.x86_64 197/239
- Installing : exempi-2.6.4-5.fc40.x86_64 198/239
- Installing : duktape-2.7.0-7.fc40.x86_64 199/239
- Installing : libproxy-0.5.5-1.fc40.x86_64 200/239
- Installing : glib-networking-2.80.0-1.fc40.x86_64 201/239
- Installing : libsoup3-3.4.5-1.fc40.x86_64 202/239
- Installing : osinfo-db-tools-1.11.0-5.fc40.x86_64 203/239
- Installing : libosinfo-1.11.0-5.fc40.x86_64 204/239
- Installing : libsoup-2.74.3-6.fc40.x86_64 205/239
- Installing : libgrss-0.7.0-19.fc40.x86_64 206/239
- Installing : dbus-common-1:1.14.10-3.fc40.noarch 207/239
- Running scriptlet: dbus-common-1:1.14.10-3.fc40.noarch 207/239
- Running scriptlet: dbus-broker-36-2.fc40.x86_64 208/239
- Installing : dbus-broker-36-2.fc40.x86_64 208/239
- Running scriptlet: dbus-broker-36-2.fc40.x86_64 208/239
- Installing : dbus-1:1.14.10-3.fc40.x86_64 209/239
- Installing : at-spi2-core-2.52.0-1.fc40.x86_64 210/239
- Installing : atk-2.52.0-1.fc40.x86_64 211/239
- Installing : at-spi2-atk-2.52.0-1.fc40.x86_64 212/239
- Installing : dconf-0.40.0-12.fc40.x86_64 213/239
- Running scriptlet: dconf-0.40.0-12.fc40.x86_64 213/239
- Installing : cdparanoia-libs-10.2-44.fc40.x86_64 214/239
- Installing : gstreamer1-plugins-base-1.24.11-1.fc40.x86_64 215/239
- Installing : tracker-3.7.3-1.fc40.x86_64 216/239
- Running scriptlet: tracker-3.7.3-1.fc40.x86_64 216/239
- Installing : libtracker-sparql-3.7.3-1.fc40.x86_64 217/239
- Installing : tracker-miners-3.7.4-2.fc40.x86_64 218/239
- Running scriptlet: tracker-miners-3.7.4-2.fc40.x86_64 218/239
- Installing : bzip2-devel-1.0.8-18.fc40.x86_64 219/239
- Installing : brotli-1.1.0-3.fc40.x86_64 220/239
- Installing : brotli-devel-1.1.0-3.fc40.x86_64 221/239
- Installing : freetype-devel-2.13.2-5.fc40.x86_64 222/239
- Installing : fontconfig-devel-2.15.0-6.fc40.x86_64 223/239
- Installing : cairo-devel-1.18.0-3.fc40.x86_64 224/239
- Installing : harfbuzz-devel-8.5.0-1.fc40.x86_64 225/239
- Installing : libjxl-devel-1:0.8.4-1.fc40.x86_64 226/239
- Installing : ModemManager-glib-1.22.0-3.fc40.x86_64 227/239
- Running scriptlet: geoclue2-2.7.0-5.fc40.x86_64 228/239
- Installing : geoclue2-2.7.0-5.fc40.x86_64 228/239
- Running scriptlet: geoclue2-2.7.0-5.fc40.x86_64 228/239
- Installing : xdg-desktop-portal-1.18.4-1.fc40.x86_64 229/239
- Running scriptlet: xdg-desktop-portal-1.18.4-1.fc40.x86_64 229/239
- Installing : libcanberra-gtk3-0.30-35.fc40.x86_64 230/239
-
- Installing : gtk3-3.24.43-1.fc40.x86_64 231/239
- Installing : xdg-desktop-portal-gtk-1.15.1-5.fc40.x86_64 232/239
- Running scriptlet: xdg-desktop-portal-gtk-1.15.1-5.fc40.x86_64 232/239
- Installing : libdecor-0.2.2-3.fc40.x86_64 233/239
- Installing : SDL2-2.30.11-1.fc40.x86_64 234/239
- Installing : SDL2-devel-2.30.11-1.fc40.x86_64 235/239
- Installing : SDL2_image-2.8.2-4.fc40.x86_64 236/239
- Installing : SDL2_ttf-2.22.0-2.fc40.x86_64 237/239
- Installing : SDL2_ttf-devel-2.22.0-2.fc40.x86_64 238/239
- Installing : SDL2_image-devel-2.8.2-4.fc40.x86_64 239/239
- Running scriptlet: crypto-policies-scripts-20241011-1.git5930b9a.fc 239/239
- Running scriptlet: nss-3.107.0-1.fc40.x86_64 239/239
- Running scriptlet: fontconfig-2.15.0-6.fc40.x86_64 239/239
- Running scriptlet: dconf-0.40.0-12.fc40.x86_64 239/239
- Running scriptlet: SDL2_image-devel-2.8.2-4.fc40.x86_64 239/239
-
-
- Installed:
- ModemManager-glib-1.22.0-3.fc40.x86_64
- NetworkManager-libnm-1:1.46.6-1.fc40.x86_64
- SDL2-2.30.11-1.fc40.x86_64
- SDL2-devel-2.30.11-1.fc40.x86_64
- SDL2_image-2.8.2-4.fc40.x86_64
- SDL2_image-devel-2.8.2-4.fc40.x86_64
- SDL2_ttf-2.22.0-2.fc40.x86_64
- SDL2_ttf-devel-2.22.0-2.fc40.x86_64
- abattis-cantarell-vf-fonts-0.301-12.fc40.noarch
- adobe-source-code-pro-fonts-2.042.1.062.1.026-4.fc40.noarch
- adwaita-cursor-theme-46.2-2.fc40.noarch
- adwaita-icon-theme-46.2-2.fc40.noarch
- adwaita-icon-theme-legacy-46.2-1.fc40.noarch
- alsa-lib-1.2.13-3.fc40.x86_64
- at-spi2-atk-2.52.0-1.fc40.x86_64
- at-spi2-core-2.52.0-1.fc40.x86_64
- atk-2.52.0-1.fc40.x86_64
- avahi-glib-0.8-26.fc40.x86_64
- avahi-libs-0.8-26.fc40.x86_64
- avif-pixbuf-loader-1.0.4-3.fc40.x86_64
- bluez-libs-5.79-1.fc40.x86_64
- brotli-1.1.0-3.fc40.x86_64
- brotli-devel-1.1.0-3.fc40.x86_64
- bzip2-devel-1.0.8-18.fc40.x86_64
- cairo-1.18.0-3.fc40.x86_64
- cairo-devel-1.18.0-3.fc40.x86_64
- cairo-gobject-1.18.0-3.fc40.x86_64
- cdparanoia-libs-10.2-44.fc40.x86_64
- cmake-filesystem-3.30.5-1.fc40.x86_64
- colord-libs-1.4.7-3.fc40.x86_64
- crypto-policies-scripts-20241011-1.git5930b9a.fc40.noarch
- cups-filesystem-1:2.4.11-9.fc40.noarch
- cups-libs-1:2.4.11-9.fc40.x86_64
- dbus-1:1.14.10-3.fc40.x86_64
- dbus-broker-36-2.fc40.x86_64
- dbus-common-1:1.14.10-3.fc40.noarch
- dconf-0.40.0-12.fc40.x86_64
- default-fonts-core-sans-4.0-13.fc40.noarch
- duktape-2.7.0-7.fc40.x86_64
- exempi-2.6.4-5.fc40.x86_64
- exiv2-0.27.6-7.fc40.x86_64
- exiv2-libs-0.27.6-7.fc40.x86_64
- fdk-aac-free-2.0.0-13.fc40.x86_64
- flac-libs-1.4.3-4.fc40.x86_64
- fontconfig-2.15.0-6.fc40.x86_64
- fontconfig-devel-2.15.0-6.fc40.x86_64
- fonts-filesystem-1:2.0.5-14.fc40.noarch
- freetype-2.13.2-5.fc40.x86_64
- freetype-devel-2.13.2-5.fc40.x86_64
- fribidi-1.0.14-2.fc40.x86_64
- fuse-common-3.16.2-3.fc40.x86_64
- fuse3-3.16.2-3.fc40.x86_64
- fuse3-libs-3.16.2-3.fc40.x86_64
- gdk-pixbuf2-2.42.10-8.fc40.x86_64
- gdk-pixbuf2-modules-2.42.10-8.fc40.x86_64
- geoclue2-2.7.0-5.fc40.x86_64
- gettext-0.22.5-4.fc40.x86_64
- gettext-envsubst-0.22.5-4.fc40.x86_64
- gettext-libs-0.22.5-4.fc40.x86_64
- gettext-runtime-0.22.5-4.fc40.x86_64
- giflib-5.2.2-1.fc40.x86_64
- glib-networking-2.80.0-1.fc40.x86_64
- glib2-devel-2.80.3-1.fc40.x86_64
- gmock-1.14.0-4.fc40.x86_64
- gobject-introspection-1.80.1-1.fc40.x86_64
- google-noto-fonts-common-20240301-2.fc40.noarch
- google-noto-sans-vf-fonts-20240301-2.fc40.noarch
- gpgme-1.23.2-3.fc40.x86_64
- gpgmepp-1.23.2-3.fc40.x86_64
- graphene-1.10.6-8.fc40.x86_64
- graphite2-1.3.14-15.fc40.x86_64
- graphite2-devel-1.3.14-15.fc40.x86_64
- gsettings-desktop-schemas-46.1-1.fc40.x86_64
- gsm-1.0.22-6.fc40.x86_64
- gstreamer1-1.24.11-1.fc40.x86_64
- gstreamer1-plugins-base-1.24.11-1.fc40.x86_64
- gtest-1.14.0-4.fc40.x86_64
- gtest-devel-1.14.0-4.fc40.x86_64
- gtk-update-icon-cache-3.24.43-1.fc40.x86_64
- gtk3-3.24.43-1.fc40.x86_64
- harfbuzz-8.5.0-1.fc40.x86_64
- harfbuzz-devel-8.5.0-1.fc40.x86_64
- harfbuzz-icu-8.5.0-1.fc40.x86_64
- hicolor-icon-theme-0.17-18.fc40.noarch
- highway-1.2.0-2.fc40.x86_64
- highway-devel-1.2.0-2.fc40.x86_64
- hwdata-0.391-1.fc40.noarch
- iso-codes-4.16.0-3.fc40.noarch
- jbigkit-libs-2.1-29.fc40.x86_64
- json-glib-1.8.0-3.fc40.x86_64
- jxl-pixbuf-loader-1:0.8.4-1.fc40.x86_64
- lame-libs-3.100-17.fc40.x86_64
- lcms2-2.16-3.fc40.x86_64
- libXcomposite-0.4.6-3.fc40.x86_64
- libXcursor-1.2.1-7.fc40.x86_64
- libXdamage-1.1.6-3.fc40.x86_64
- libXext-1.3.6-1.fc40.x86_64
- libXext-devel-1.3.6-1.fc40.x86_64
- libXfixes-6.0.1-3.fc40.x86_64
- libXft-2.3.8-6.fc40.x86_64
- libXi-1.8.2-1.fc40.x86_64
- libXinerama-1.1.5-6.fc40.x86_64
- libXrandr-1.5.4-3.fc40.x86_64
- libXrender-0.9.11-6.fc40.x86_64
- libXrender-devel-0.9.11-6.fc40.x86_64
- libXtst-1.2.5-1.fc40.x86_64
- libXv-1.0.12-3.fc40.x86_64
- libXxf86vm-1.1.5-6.fc40.x86_64
- libaom-3.9.0-1.fc40.x86_64
- libasyncns-0.8-28.fc40.x86_64
- libavif-1.0.4-3.fc40.x86_64
- libavif-devel-1.0.4-3.fc40.x86_64
- libblkid-devel-2.40.2-1.fc40.x86_64
- libcanberra-0.30-35.fc40.x86_64
- libcanberra-gtk3-0.30-35.fc40.x86_64
- libcloudproviders-0.3.5-3.fc40.x86_64
- libcue-2.3.0-3.fc40.x86_64
- libdatrie-0.2.13-9.fc40.x86_64
- libdav1d-1.5.1-1.fc40.x86_64
- libdecor-0.2.2-3.fc40.x86_64
- libdrm-2.4.123-1.fc40.x86_64
- libepoxy-1.5.10-6.fc40.x86_64
- libexif-0.6.24-7.fc40.x86_64
- libffi-devel-3.4.4-7.fc40.x86_64
- libgexiv2-0.14.3-1.fc40.x86_64
- libglvnd-1:1.7.0-4.fc40.x86_64
- libglvnd-core-devel-1:1.7.0-4.fc40.x86_64
- libglvnd-devel-1:1.7.0-4.fc40.x86_64
- libglvnd-egl-1:1.7.0-4.fc40.x86_64
- libglvnd-gles-1:1.7.0-4.fc40.x86_64
- libglvnd-glx-1:1.7.0-4.fc40.x86_64
- libglvnd-opengl-1:1.7.0-4.fc40.x86_64
- libgrss-0.7.0-19.fc40.x86_64
- libgsf-1.14.53-2.fc40.x86_64
- libgudev-238-5.fc40.x86_64
- libgusb-0.4.9-1.fc40.x86_64
- libgxps-0.3.2-8.fc40.x86_64
- libicu-devel-74.2-1.fc40.x86_64
- libiptcdata-1.0.5-17.fc40.x86_64
- libjpeg-turbo-3.0.2-1.fc40.x86_64
- libjpeg-turbo-devel-3.0.2-1.fc40.x86_64
- libjxl-1:0.8.4-1.fc40.x86_64
- libjxl-devel-1:0.8.4-1.fc40.x86_64
- liblc3-1.1.1-1.fc40.x86_64
- libldac-2.0.2.3-15.fc40.x86_64
- liblerc-4.0.0-6.fc40.x86_64
- libmount-devel-2.40.2-1.fc40.x86_64
- libnotify-0.8.3-3.fc40.x86_64
- libogg-2:1.3.5-8.fc40.x86_64
- libosinfo-1.11.0-5.fc40.x86_64
- libpciaccess-0.16-12.fc40.x86_64
- libpng-2:1.6.40-3.fc40.x86_64
- libpng-devel-2:1.6.40-3.fc40.x86_64
- libproxy-0.5.5-1.fc40.x86_64
- librsvg2-2.57.1-7.fc40.x86_64
- libsbc-2.0-4.fc40.x86_64
- libselinux-devel-3.7-5.fc40.x86_64
- libsepol-devel-3.7-2.fc40.x86_64
- libsndfile-1.2.2-4.fc40.x86_64
- libsoup-2.74.3-6.fc40.x86_64
- libsoup3-3.4.5-1.fc40.x86_64
- libstemmer-2.2.0-10.fc40.x86_64
- libtdb-1.4.10-1.fc40.x86_64
- libtextstyle-0.22.5-4.fc40.x86_64
- libthai-0.1.29-8.fc40.x86_64
- libtheora-1:1.1.1-36.fc40.x86_64
- libtiff-4.6.0-5.fc40.1.x86_64
- libtiff-devel-4.6.0-5.fc40.1.x86_64
- libtracker-sparql-3.7.3-1.fc40.x86_64
- libunwind-1.8.0-3.fc40.x86_64
- libusb1-1.0.27-6.fc40.x86_64
- libvisual-1:0.4.1-4.fc40.x86_64
- libvmaf-2.3.0-7.fc40.x86_64
- libvorbis-1:1.3.7-10.fc40.x86_64
- libwayland-client-1.23.0-2.fc40.x86_64
- libwayland-cursor-1.23.0-2.fc40.x86_64
- libwayland-egl-1.23.0-2.fc40.x86_64
- libwayland-server-1.23.0-2.fc40.x86_64
- libwebp-1.5.0-1.fc40.x86_64
- libwebp-devel-1.5.0-1.fc40.x86_64
- libxkbcommon-1.6.0-2.fc40.x86_64
- libxml2-devel-2.12.9-1.fc40.x86_64
- libxshmfence-1.3.2-5.fc40.x86_64
- libxslt-1.1.42-1.fc40.x86_64
- libzstd-devel-1.5.6-1.fc40.x86_64
- lm_sensors-libs-3.6.0-18.fc40.x86_64
- low-memory-monitor-2.1-10.fc40.x86_64
- mesa-dri-drivers-24.1.7-1.fc40.x86_64
- mesa-filesystem-24.1.7-1.fc40.x86_64
- mesa-libEGL-24.1.7-1.fc40.x86_64
- mesa-libEGL-devel-24.1.7-1.fc40.x86_64
- mesa-libGL-24.1.7-1.fc40.x86_64
- mesa-libgbm-24.1.7-1.fc40.x86_64
- mesa-libglapi-24.1.7-1.fc40.x86_64
- mesa-va-drivers-24.1.7-1.fc40.x86_64
- mpg123-libs-1.32.9-1.fc40.x86_64
- nspr-4.36.0-2.fc40.x86_64
- nss-3.107.0-1.fc40.x86_64
- nss-softokn-3.107.0-1.fc40.x86_64
- nss-softokn-freebl-3.107.0-1.fc40.x86_64
- nss-sysinit-3.107.0-1.fc40.x86_64
- nss-util-3.107.0-1.fc40.x86_64
- openjpeg2-2.5.3-1.fc40.x86_64
- opus-1.5.1-1.fc40.x86_64
- orc-0.4.39-1.fc40.x86_64
- osinfo-db-20250124-1.fc40.noarch
- osinfo-db-tools-1.11.0-5.fc40.x86_64
- pango-1.54.0-1.fc40.x86_64
- pcre2-devel-10.44-1.fc40.x86_64
- pcre2-utf16-10.44-1.fc40.x86_64
- pcre2-utf32-10.44-1.fc40.x86_64
- pipewire-libs-1.0.9-1.fc40.x86_64
- pixman-0.43.4-1.fc40.x86_64
- pixman-devel-0.43.4-1.fc40.x86_64
- poppler-24.02.0-2.fc40.x86_64
- poppler-data-0.4.11-7.fc40.noarch
- poppler-glib-24.02.0-2.fc40.x86_64
- pulseaudio-libs-16.1-8.fc40.x86_64
- python3-packaging-23.2-4.fc40.noarch
- rav1e-libs-0.7.1-4.fc40.x86_64
- rsvg-pixbuf-loader-2.57.1-7.fc40.x86_64
- shared-mime-info-2.3-5.fc40.x86_64
- sound-theme-fre
desktop-0.8-21.fc40.noarch
- svt-av1-libs-2.1.0-4.fc40.x86_64
- sysprof-capture-devel-46.0-1.fc40.x86_64
- totem-pl-parser-3.26.6-9.fc40.x86_64
- tracker-3.7.3-1.fc40.x86_64
- tracker-miners-3.7.4-2.fc40.x86_64
- uchardet-0.0.8-5.fc40.x86_64
- upower-libs-1.90.7-1.fc40.x86_64
- webp-pixbuf-loader-0.2.7-1.fc40.x86_64
- webrtc-audio-processing-1.3-1.fc40.x86_64
- xdg-desktop-portal-1.18.4-1.fc40.x86_64
- xdg-desktop-portal-gtk-1.15.1-5.fc40.x86_64
- xkeyboard-config-2.41-1.fc40.noarch
- xml-common-0.6.3-63.fc40.noarch
- xprop-1.2.7-1.fc40.x86_64
- xz-devel-1:5.4.6-3.fc40.x86_64
- zlib-ng-compat-devel-2.1.7-2.fc40.x86_64
-
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "libffi-devel" "SDL2-devel" "SDL2_image-devel" "SDL2_ttf-devel"
- libffi-devel-3.4.4-7.fc40.x86_64
- SDL2-devel-2.30.11-1.fc40.x86_64
- SDL2_image-devel-2.8.2-4.fc40.x86_64
- SDL2_ttf-devel-2.22.0-2.fc40.x86_64
2025-02-09 10:38.31 ---> saved as "401734d66acb5fded764810cc14351dd172fe01c3dd89a369bf2d9ff53fff8b0"
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 3).
[NOTE] Package ocaml-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.0).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 20 packages
- install bigarray-compat 1.1.0
- install conf-libffi 2.0.0
- install conf-pkg-config 4
- install conf-sdl2 1
- install conf-sdl2-image 1
- install conf-sdl2-ttf 1
- install csexp 1.5.2
- install ctypes 0.23.0
- install ctypes-foreign 0.23.0
- install dune 3.17.2
- install dune-configurator 3.17.2
- install integers 0.7.0
- install ocamlbuild 0.15.0
- install ocamlfind 1.9.8
- install stdlib-shims 0.3.0
- install topkg 1.0.7
- install tsdl 1.1.0
- install tsdl-image 0.6
- install tsdl-ttf 0.6
- install xdg 3.17.2
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.23.0, ctypes-foreign.0.23.0 (cached)
-> installed conf-pkg-config.4
-> retrieved integers.0.7.0 (cached)
-> retrieved ocamlbuild.0.15.0 (cached)
-> installed conf-libffi.2.0.0
-> installed conf-sdl2.1
-> installed conf-sdl2-image.1
-> installed conf-sdl2-ttf.1
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.0.7 (cached)
-> retrieved tsdl.1.1.0 (cached)
-> retrieved tsdl-image.0.6 (cached)
-> retrieved tsdl-ttf.0.6 (cached)
-> retrieved dune.3.17.2, dune-configurator.3.17.2, xdg.3.17.2 (cached)
-> installed ocamlbuild.0.15.0
-> installed ocamlfind.1.9.8
-> installed topkg.1.0.7
-> installed dune.3.17.2
-> installed bigarray-compat.1.1.0
-> installed csexp.1.5.2
-> installed stdlib-shims.0.3.0
-> installed integers.0.7.0
-> installed xdg.3.17.2
-> installed dune-configurator.3.17.2
-> installed ctypes.0.23.0
-> installed ctypes-foreign.0.23.0
-> installed tsdl.1.1.0
-> installed tsdl-ttf.0.6
-> installed tsdl-image.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-09 10:40.14 ---> saved as "6a67c33a25ff3ad5ee3f99ccdf1209cd1ba8d9f53ac0d230184391a2002492ed"
/src: (copy (src .) (dst /src))
2025-02-09 10:40.14 ---> saved as "82909a7333941b57348951d0de439a72ca0ed727e41700ed35daeefab5b708df"
/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default/examples && ./examples.exe 00)
[0][0] : Warning: User variable 'DEBUG_CODE' not found in config.
[0][0] : Warning: Using DEBUG_CODE=1023
[0][0] : Warning: User variable 'LOG_TO_FILE' not found in config.
[0][0] : Warning: Using LOG_TO_FILE=false
[0][0] : I/O: Executable=examples.exe
[0][0] : I/O: Invoking opam
[27][0] : ERROR: Cannot find share directory for examples.exe/.! bin_dir=/src/_build/default/examples, prefix_dir=/src/_build/default
[27][0] : Warning: User variable 'DIR' not found in config.
[27][0] : Warning: Using DIR=
[31][0] : Warning: User variable 'THEME' not found in config.
[31][0] : Warning: Using THEME=default
[31][0] : I/O: No theme specified, using default=default
[31][0] : I/O: Reading config file [/src/_build/install/default/share/bogue/themes/default/bogue.conf]. BOGUE Version [20250207]
[31][0] : I/O: Reading BACKGROUND=color:white
[31][0] : I/O: Reading CHECK_ON=fa:check-square-o
[31][0] : I/O: Reading CHECK_OFF=fa:square-o
[31][0] : Warning: Using THEME=default
Loading Bogue 20250207 with config dir /src/_build/install/default/share/bogue/themes/default
[31][0] : Warning: Using BACKGROUND=color:white
[31][0] : Warning: User variable 'BG_COLOR' not found in config.
[31][0] : Warning: Using BG_COLOR=lightsteelblue
[31][0] : Warning: User variable 'BUTTON_COLOR_OFF' not found in config.
[31][0] : Warning: Using BUTTON_COLOR_OFF=#8bc0d1
[31][0] : Warning: User variable 'BUTTON_COLOR_ON' not found in config.
[31][0] : Warning: Using BUTTON_COLOR_ON=darkturquoise
[31][0] : Warning: Using CHECK_ON=fa:check-square-o
[31][0] : Warning: Using CHECK_OFF=fa:square-o
[31][0] : Warning: User variable 'CURSOR_COLOR' not found in config.
[31][0] : Warning: Using CURSOR_COLOR=#2a7da2
[31][0] : Warning: User variable 'FAINT_COLOR' not found in config.
[31][0] : Warning: Using FAINT_COLOR=gainsboro
[31][0] : Warning: User variable 'TEXT_COLOR' not found in config.
[31][0] : Warning: Using TEXT_COLOR=black
[31][0] : Warning: User variable 'SEL_BG_COLOR' not found in config.
[31][0] : Warning: Using SEL_BG_COLOR=slategray
[31][0] : Warning: User variable 'SEL_FG_COLOR' not found in config.
[31][0] : Warning: Using SEL_FG_COLOR=white
[31][0] : Warning: User variable 'LABEL_COLOR' not found in config.
[31][0] : Warning: Using LABEL_COLOR=black
[31][0] : Warning: User variable 'MENU_HL_COLOR' not found in config.
[31][0] : Warning: Using MENU_HL_COLOR=#8099a2
[31][0] : Warning: User variable 'MENU_BG_COLOR' not found in config.
[31][0] : Warning: Using MENU_BG_COLOR=#BEBEBE
[31][0] : Warning: User variable 'LABEL_FONT_SIZE' not found in config.
[31][0] : Warning: Using LABEL_FONT_SIZE=14
[31][0] : Warning: User variable 'LABEL_FONT' not found in config.
[31][0] : Warning: Using LABEL_FONT=Ubuntu-R.ttf
[31][0] : Warning: User variable 'TEXT_FONT' not found in config.
[31][0] : Warning: Using TEXT_FONT=Ubuntu-R.ttf
[31][0] : Warning: User variable 'TEXT_FONT_SIZE' not found in config.
[31][0] : Warning: Using TEXT_FONT_SIZE=14
[31][0] : Warning: User variable 'SMALL_FONT_SIZE' not found in config.
[31][0] : Warning: Using SMALL_FONT_SIZE=10
[31][0] : Warning: User variable 'MONO_FONT' not found in config.
[31][0] : Warning: Using MONO_FONT=UbuntuMono-R.ttf
[31][0] : Warning: User variable 'ROOM_MARGIN' not found in config.
[31][0] : Warning: Using ROOM_MARGIN=10
[31][0] : Warning: User variable 'FA_DIR' not found in config.
[31][0] : Warning: Using FA_DIR=font-awesome-4.6.3
[31][0] : Warning: User variable 'INT_SCALE' not found in config.
[31][0] : Warning: Using INT_SCALE=false
[31][0] : Warning: User variable 'SCALE' not found in config.
[31][0] : Warning: Using SCALE=0
[31][0] : Warning: User variable 'OPENGL_MULTISAMPLE' not found in config.
[31][0] : Warning: Using OPENGL_MULTISAMPLE=false
[31][0] : Warning: User variable 'NO_VSYNC' not found in config.
[31][0] : Warning: Using NO_VSYNC=false
[31][0] : Warning: User variable 'NATURAL_SCROLLING' not found in config.
[31][0] : Warning: Using NATURAL_SCROLLING=auto
[39][0] : I/O: Reading color names from [/src/_build/install/default/share/bogue/themes/common/colors/liste.txt].
[39][0] : Custom: Detected os type: [Linux]
[44][0] : I/O; Warning: Cannot find rsvg converter. You will not be able to load SVG images.
[46][0] : Warning: SDL initialized
[46][0] : Event: SDL Events initialized
[46][0] : Event: Register new event type:user (Ox8000)
[46][0] : Event: Register new event type:stop (Ox8001)
[46][0] : Event: Register new event type:stopped (Ox8002)
[46][0] : Event: Register new event type:mouse_enter (Ox8003)
[46][0] : Event: Register new event type:mouse_leave (Ox8004)
[46][0] : Event: Register new event type:redraw (Ox8005)
[46][0] : Event: Register new event type:mouse_at_rest (Ox8006)
[46][0] : Event: Register new event type:startup (Ox8007)
[46][0] : Event: Register new event type:var_changed (Ox8008)
[46][0] : Event: Register new event type:update (Ox8009)
[46][0] : Event: Register new event type:sync_action (Ox800a)
[46][0] : Event: Register new event type:keyboard_focus (Ox800b)
[46][0] : Event: Register new event type:mouse_focus (Ox800c)
[46][0] : Event: Register new event type:remove_focus (Ox800d)
[46][0] : Event: Register new event type:destroy_window (Ox800e)
[46][0] : Event: Register new event type:add_window (Ox800f)
[46][0] : Event: Register new event type:not_used (Ox8010)
[46][0] : Board: Layout #1 (dummy) created.
[49][0] : I/O: Fswatch program not found; using Unix_stat for file monitoring.
[50][0] : I/O: Checking image file size /src/_build/install/default/share/bogue/assets/images/chl.png
[65][0] : Graphics: SDL Video initialized
[65][0] : Memory: Create surface_load (/src/_build/install/default/share/bogue/themes/default/bogue-icon.png)
[66][0] : ERROR; Graphics: SDL get DPI error: That operation is not supported
[71][0] : Warning: Cannot get monitor's DPI from xdpyinfo.
[71][0] : Graphics: DPI from system: 110
[71][0] : Graphics; Warning: Using SCALE=1.000000
[71][0] : Graphics: SDL Image initialized
[71][0] : Memory: Create surface_load (/src/_build/install/default/share/bogue/assets/images/chl.png)
[72][0] : Memory: Freeing surface (330,290)
00 = Bogue initialization without opening any window.
[72][0] : Board: Adding timeout 1
[72][0] : Board: Layout #2 (windows_house) created.
[72][0] : Board: ==> Running board!
[72][0] : Graphics; Warning: Could not get refresh rate information for any monitor
[72][0] : Graphics: Desired FPS=60
[82][0] : Board: Has focus: NO
[82][0] : Board: Adding timeout 2
[82][0] : Graphics: FPS:100 (round_trip=0)
[1082][0] : Board: Executing timeout 1
Hello world
[1082][0] : Memory: All zombies have been killed! Congratulations!
[1082][0] : Board: Quitting...
[1083][0] : Graphics: Quitting SDL Image
[1083][0] : Graphics: Quitting SDL Video
[1083][0] : Graphics: Cleaning up 0 SDL_TTF surfaces...
[1083][0] : Memory: Freeing surface (123,128)
[1083][0] : Event: Quitting SDL Events
[1083][0] : Graphics: Exit SDL...
[1083][0] : Graphics: Done.
INFO: Using SDL 2.30.11
/bin/sh: line 1: xdpyinfo: command not found
2025-02-09 10:40.20 ---> saved as "1b265b754ae31d7cbcb11082e17f115431734772f531d40fa1b637b5df16d302"
Job succeeded
2025-02-09 10:40.20: Job succeeded