(not at the head of any monitored branch or PR)
2026-04-10 14:44.28: New job: test ffmpeg-avcodec.1.3.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29703/head (d2c2fde7ed0f03ab1c97ec11eae2846e1c000577)
                              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/29703/head" && git reset --hard d2c2fde7
git fetch origin master
git merge --no-edit 812fb968341c1eec82e23a29dcf794db8f990936
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-42-ocaml-5.4@sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20
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 ffmpeg-avcodec.1.3.0 1.3.0
RUN opam reinstall ffmpeg-avcodec.1.3.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"fedora-42\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ffmpeg-avcodec.1.3.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test ffmpeg-avcodec.1.3.0) || true
RUN opam reinstall --with-test --verbose ffmpeg-avcodec.1.3.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"fedora-42\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ffmpeg-avcodec.1.3.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-04-10 14:44.28: Using cache hint "ocaml/opam:fedora-42-ocaml-5.4@sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20-ffmpeg-avcodec.1.3.0-d2c2fde7ed0f03ab1c97ec11eae2846e1c000577"
2026-04-10 14:44.28: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-5.4@sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20)
 (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 ffmpeg-avcodec.1.3.0 1.3.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ffmpeg-avcodec.1.3.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'ffmpeg-avcodec.1.3.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test ffmpeg-avcodec.1.3.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose ffmpeg-avcodec.1.3.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'ffmpeg-avcodec.1.3.0' && 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-10 14:44.28: Waiting for resource in pool OCluster
2026-04-10 14:45.32: Waiting for worker…
2026-04-10 14:49.50: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files:  65% (12243/18673)
Updating files:  66% (12325/18673)
Updating files:  67% (12511/18673)
Updating files:  68% (12698/18673)
Updating files:  69% (12885/18673)
Updating files:  70% (13072/18673)
Updating files:  71% (13258/18673)
Updating files:  72% (13445/18673)
Updating files:  73% (13632/18673)
Updating files:  74% (13819/18673)
Updating files:  75% (14005/18673)
Updating files:  76% (14192/18673)
Updating files:  77% (14379/18673)
Updating files:  78% (14565/18673)
Updating files:  79% (14752/18673)
Updating files:  80% (14939/18673)
Updating files:  81% (15126/18673)
Updating files:  82% (15312/18673)
Updating files:  83% (15499/18673)
Updating files:  84% (15686/18673)
Updating files:  85% (15873/18673)
Updating files:  86% (16059/18673)
Updating files:  87% (16246/18673)
Updating files:  88% (16433/18673)
Updating files:  89% (16619/18673)
Updating files:  90% (16806/18673)
Updating files:  91% (16993/18673)
Updating files:  92% (17180/18673)
Updating files:  93% (17366/18673)
Updating files:  94% (17553/18673)
Updating files:  95% (17740/18673)
Updating files:  96% (17927/18673)
Updating files:  97% (18113/18673)
Updating files:  98% (18300/18673)
Updating files:  99% (18487/18673)
Updating files: 100% (18673/18673)
Updating files: 100% (18673/18673), done.
HEAD is now at 812fb96834 Merge pull request #29689 from voodoos/release-merlin-v5.7.0-504
Updating 812fb96834..d2c2fde7ed
Fast-forward
 packages/ffmpeg-av/ffmpeg-av.1.3.0/opam            | 51 ++++++++++++++++++++++
 packages/ffmpeg-avcodec/ffmpeg-avcodec.1.3.0/opam  | 50 +++++++++++++++++++++
 .../ffmpeg-avdevice/ffmpeg-avdevice.1.3.0/opam     | 50 +++++++++++++++++++++
 .../ffmpeg-avfilter/ffmpeg-avfilter.1.3.0/opam     | 50 +++++++++++++++++++++
 packages/ffmpeg-avutil/ffmpeg-avutil.1.3.0/opam    | 51 ++++++++++++++++++++++
 .../ffmpeg-swresample/ffmpeg-swresample.1.3.0/opam | 51 ++++++++++++++++++++++
 packages/ffmpeg-swscale/ffmpeg-swscale.1.3.0/opam  | 50 +++++++++++++++++++++
 packages/ffmpeg/ffmpeg.1.3.0/opam                  | 44 +++++++++++++++++++
 .../liquidsoap-core/liquidsoap-core.2.2.0/opam     |  2 +-
 .../liquidsoap-core/liquidsoap-core.2.2.1/opam     |  2 +-
 .../liquidsoap-core/liquidsoap-core.2.2.2/opam     |  2 +-
 .../liquidsoap-core/liquidsoap-core.2.2.3/opam     |  2 +-
 .../liquidsoap-core/liquidsoap-core.2.2.4-1/opam   |  2 +-
 .../liquidsoap-core/liquidsoap-core.2.2.5/opam     |  2 +-
 .../liquidsoap-core/liquidsoap-core.2.3.0/opam     |  2 +-
 packages/liquidsoap/liquidsoap.2.4.0/opam          |  2 +-
 packages/liquidsoap/liquidsoap.2.4.2/opam          |  2 +-
 17 files changed, 406 insertions(+), 9 deletions(-)
 create mode 100644 packages/ffmpeg-av/ffmpeg-av.1.3.0/opam
 create mode 100644 packages/ffmpeg-avcodec/ffmpeg-avcodec.1.3.0/opam
 create mode 100644 packages/ffmpeg-avdevice/ffmpeg-avdevice.1.3.0/opam
 create mode 100644 packages/ffmpeg-avfilter/ffmpeg-avfilter.1.3.0/opam
 create mode 100644 packages/ffmpeg-avutil/ffmpeg-avutil.1.3.0/opam
 create mode 100644 packages/ffmpeg-swresample/ffmpeg-swresample.1.3.0/opam
 create mode 100644 packages/ffmpeg-swscale/ffmpeg-swscale.1.3.0/opam
 create mode 100644 packages/ffmpeg/ffmpeg.1.3.0/opam

(from ocaml/opam:fedora-42-ocaml-5.4@sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20)
Unable to find image 'ocaml/opam:fedora-42-ocaml-5.4@sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20' locally
docker.io/ocaml/opam@sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20: Pulling from ocaml/opam
bcbfb8588268: Already exists
7c86f07d981d: Already exists
e523f6cbdc73: Already exists
e196c832855a: Already exists
c24dcc89d23e: Already exists
cd9def049d81: Already exists
e360f9824a3f: Already exists
fbeadbd8287f: Already exists
b5be9212d8a5: Already exists
58850ac9f02f: Already exists
94de074660d5: Already exists
c6d785172de9: Already exists
5642a0bc3a02: Already exists
677ac3b3af73: Already exists
97f4a46fa01c: Already exists
887c8b3bd767: Already exists
887c8b3bd767: Already exists
8572bae05e44: Already exists
a801ab04175f: Already exists
8eb7359ab813: Already exists
ea7dd170751f: Already exists
4f4fb700ef54: Already exists
4eeb3f6c741a: Already exists
d8096e11e5a7: Already exists
b45c71862e05: Already exists
3d3025681a79: Already exists
3619e9f4de7b: Already exists
e1d8131f324a: Already exists
98ffe2fff5c0: Already exists
ecf008026c3e: Already exists
b7768b04427d: Already exists
aad28dcc458f: Already exists
2972bd6e2f3d: Already exists
ca68011eb393: Already exists
9b422c636e47: Already exists
63cf593f7c6c: Already exists
8f3a2bf8a3f5: Already exists
fd59c3ff8fe9: Already exists
c19e7369255b: Already exists
379fcd94e8be: Already exists
9f42b986b124: Pulling fs layer
5265afd8716d: Pulling fs layer
85416eeda842: Pulling fs layer
5265afd8716d: Waiting
bcd50729bf5d: Pulling fs layer
85416eeda842: Waiting
b11563d96a68: Pulling fs layer
bcd50729bf5d: Waiting
b11563d96a68: Waiting
9f42b986b124: Verifying Checksum
9f42b986b124: Download complete
9f42b986b124: Pull complete
5265afd8716d: Verifying Checksum
5265afd8716d: Download complete
85416eeda842: Download complete
bcd50729bf5d: Download complete
b11563d96a68: Verifying Checksum
b11563d96a68: Download complete
5265afd8716d: Pull complete
85416eeda842: Pull complete
bcd50729bf5d: Pull complete
b11563d96a68: Pull complete
Digest: sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20
Status: Downloaded newer image for ocaml/opam@sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20
2026-04-10 14:49.52 ---> using "026d3cf1aee2d78e6ed81a600679704a94b27ab6856c8be16b9050008424a4ca" 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-10 14:49.52 ---> using "9b9d372e7d13eea844ea87db532460d03c0ee9c750905d4fb13071888402d949" 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
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-10 14:49.52 ---> using "bdb0bf964210f8e37e9be3bc5aa66f6c063ff3d7c88670e45aa86d1e3ceafcd9" 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-10 14:49.52 ---> using "72f692234000cbca56412ee60f975caaa96e70ae39886d071b16b08f204ef234" 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-10 14:49.52 ---> using "2d280ec6f3a7b9b1d8525d2e6d8ab307170fd4cb4ea6bf48001ea31910d20ec6" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-10 14:49.53 ---> using "bc3c683f64bcf074e9c8e556fd33000957bc572d72fe4605252b7c02b3e71983" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-10 14:49.53 ---> using "d34f42c8ef45e9b3c02411f3de9402cf5508baabfc1ab84af04bb1c307004edf" from cache

/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% | 116.4 KiB/s |  16.3 KiB |  00m00s
- Repositories loaded.
- Metadata cache created.
2026-04-10 14:50.00 ---> saved as "d10d21e71812e0359437512812d7d727d85ab346b56d369e551393e960ed45b8"

/home/opam: (run (shell "opam pin add -k version -yn ffmpeg-avcodec.1.3.0 1.3.0"))
ffmpeg-avcodec is now pinned to version 1.3.0
2026-04-10 14:50.01 ---> saved as "a83ec4bed4d91e19c85bda9024441316d6b4494e0587198b53a7978b39eed0a0"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ffmpeg-avcodec.1.3.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'ffmpeg-avcodec.1.3.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ffmpeg-avcodec.1.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
  - install conf-ffmpeg       1              [required by ffmpeg-avcodec]
  - install conf-pkg-config   4              [required by ffmpeg-avcodec]
  - install csexp             1.5.2          [required by dune-configurator]
  - install dune              3.22.1         [required by ffmpeg-avcodec]
  - install dune-configurator 3.22.1         [required by ffmpeg-avcodec]
  - install ffmpeg-avcodec    1.3.0 (pinned)
  - install ffmpeg-avutil     1.3.0          [required by ffmpeg-avcodec]

The following system packages will first need to be installed:
    ffmpeg-free-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" "ffmpeg-free-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package                                  Arch   Version                         Repository                 Size
- Installing:
-  ffmpeg-free-devel                       x86_64 7.1.2-1.fc42                    updates               547.8 KiB
- 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
-  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
-  cairo                                   x86_64 1.18.2-3.fc42                   fedora                  1.8 MiB
-  cairo-gobject                           x86_64 1.18.2-3.fc42                   fedora                 35.1 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
-  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-double                        x86_64 3.3.10-15.fc42                  fedora                  3.4 MiB
-  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
-  flite                                   x86_64 2.2-11.fc42                     fedora                 21.6 MiB
-  fontconfig                              x86_64 2.16.0-2.fc42                   fedora                764.7 KiB
-  fonts-filesystem                        noarch 1:2.0.5-22.fc42                 updates                 0.0   B
-  freeglut                                x86_64 3.8.0-1.fc42                    updates               481.4 KiB
-  freetype                                x86_64 2.13.3-2.fc42                   fedora                858.2 KiB
-  fribidi                                 x86_64 1.0.16-2.fc42                   fedora                194.3 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-modules                     x86_64 2.42.12-12.fc42                 updates                55.4 KiB
-  geoclue2                                x86_64 2.8.0-1.fc42                    updates               401.7 KiB
-  giflib                                  x86_64 5.2.2-9.fc42                    updates               116.1 KiB
-  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
-  graphite2                               x86_64 1.3.14-18.fc42                  fedora                195.8 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
-  gstreamer1                              x86_64 1.26.11-1.fc42                  updates                 5.4 MiB
-  gstreamer1-plugins-base                 x86_64 1.26.11-1.fc42                  updates                 7.4 MiB
-  gtk-update-icon-cache                   x86_64 3.24.52-1.fc42                  updates                62.2 KiB
-  gtk3                                    x86_64 3.24.52-1.fc42                  updates                22.5 MiB
-  harfbuzz                                x86_64 10.4.0-2.fc42                   updates                 2.8 MiB
-  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
-  leptonica                               x86_64 1.85.0-2.fc42                   fedora                  3.0 MiB
-  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
-  libXfixes                               x86_64 6.0.1-5.fc42                    fedora                 30.2 KiB
-  libXft                                  x86_64 2.3.8-8.fc42                    fedora                168.4 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
-  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
-  libass                                  x86_64 0.17.3-3.fc42                   fedora                290.1 KiB
-  libasyncns                              x86_64 0.8-30.fc42                     fedora                 59.5 KiB
-  libavc1394                              x86_64 0.5.4-25.fc42                   fedora                151.4 KiB
-  libavcodec-free                         x86_64 7.1.2-1.fc42                    updates                 9.8 MiB
-  libavcodec-free-devel                   x86_64 7.1.2-1.fc42                    updates               253.7 KiB
-  libavdevice-free                        x86_64 7.1.2-1.fc42                    updates               215.1 KiB
-  libavdevice-free-devel                  x86_64 7.1.2-1.fc42                    updates                18.2 KiB
-  libavfilter-free                        x86_64 7.1.2-1.fc42                    updates                 4.1 MiB
-  libavfilter-free-devel                  x86_64 7.1.2-1.fc42                    updates                70.5 KiB
-  libavformat-free                        x86_64 7.1.2-1.fc42                    updates                 2.6 MiB
-  libavformat-free-devel                  x86_64 7.1.2-1.fc42                    updates               152.3 KiB
-  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
-  libavutil-free-devel                    x86_64 7.1.2-1.fc42                    updates               692.8 KiB
-  libbluray                               x86_64 1.3.4-9.fc42                    fedora                397.6 KiB
-  libbs2b                                 x86_64 3.1.0-35.fc42                   fedora                 72.0 KiB
-  libcaca                                 x86_64 0.99-0.76.beta20.fc42           fedora                874.0 KiB
-  libcamera                               x86_64 0.4.0-4.fc42                    fedora                  1.9 MiB
-  libcanberra                             x86_64 0.30-37.fc42                    fedora                286.4 KiB
-  libcdio                                 x86_64 2.1.0-14.fc42                   fedora                623.5 KiB
-  libcdio-paranoia                        x86_64 10.2+2.0.2-4.fc42               fedora                190.8 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
-  libdav1d                                x86_64 1.5.3-1.fc42                    updates                 1.7 MiB
-  libdc1394                               x86_64 2.2.7-7.fc42                    fedora                354.9 KiB
-  libdecor                                x86_64 0.2.4-1.fc42                    updates               165.2 KiB
-  libdovi                                 x86_64 3.3.1-2.fc42                    fedora                593.7 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
-  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
-  libglvnd-opengl                         x86_64 1:1.7.0-7.fc42                  fedora                148.8 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
-  libiec61883                             x86_64 1.2.0-37.fc42                   fedora                 90.0 KiB
-  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
-  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
-  libmodplug                              x86_64 1:0.8.9.0-27.fc42               fedora                355.2 KiB
-  libmysofa                               x86_64 1.3.3-2.fc42                    fedora                 78.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
-  libplacebo                              x86_64 7.349.0-7.fc42                  updates                 1.1 MiB
-  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
-  libpostproc-free                        x86_64 7.1.2-1.fc42                    updates                85.6 KiB
-  libpostproc-free-devel                  x86_64 7.1.2-1.fc42                    updates                 5.8 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
-  libraw1394                              x86_64 2.1.2-23.fc42                   fedora                158.8 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
-  libsamplerate                           x86_64 0.2.2-10.fc42                   fedora                  1.4 MiB
-  libsbc                                  x86_64 2.0-6.fc42                      fedora                 93.4 KiB
-  libshaderc                              x86_64 2025.2-1.fc42                   updates                 3.6 MiB
-  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
-  libswresample-free-devel                x86_64 7.1.2-1.fc42                    updates                26.4 KiB
-  libswscale-free                         x86_64 7.1.2-1.fc42                    updates               619.4 KiB
-  libswscale-free-devel                   x86_64 7.1.2-1.fc42                    updates                21.0 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
-  libthai                                 x86_64 0.1.29-10.fc42                  fedora                783.4 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
-  libtinysparql                           x86_64 3.9.2-1.fc42                    updates                 1.3 MiB
-  libudfread                              x86_64 1.1.2-11.fc42                   fedora                 65.9 KiB
-  libunibreak                             x86_64 6.1-3.fc42                      fedora                139.2 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
-  libv4l                                  x86_64 1.28.1-3.fc42                   fedora                361.5 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
-  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
-  lilv-libs                               x86_64 0.26.4-1.fc42                   updates               125.5 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-libGLU                             x86_64 9.0.3-6.fc42                    fedora                361.7 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
-  openal-soft                             x86_64 1.24.2-2.fc42                   fedora                  1.6 MiB
-  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
-  pipewire-jack-audio-connection-kit      x86_64 1.4.11-1.fc42                   updates                30.0   B
-  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
-  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
-  rav1e-libs                              x86_64 0.8.1-2.fc42                    updates                 3.1 MiB
-  rsvg-pixbuf-loader                      x86_64 2.60.0-5.fc42                   updates               335.7 KiB
-  rtkit                                   x86_64 0.11-66.fc42                    fedora                138.1 KiB
-  rubberband-libs                         x86_64 4.0.0-3.fc42                    fedora                459.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
-  serd                                    x86_64 0.32.8-1.fc42                   updates               136.2 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
-  sord                                    x86_64 0.16.22-1.fc42                  updates                81.6 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
-  sratom                                  x86_64 0.6.22-1.fc42                   updates                44.7 KiB
-  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
-  tesseract-common                        noarch 5.5.0-5.fc42                    updates                14.7 KiB
-  tesseract-langpack-eng                  noarch 4.1.0-10.fc42                   updates                 3.9 MiB
-  tesseract-libs                          x86_64 5.5.0-5.fc42                    updates                 3.3 MiB
-  tesseract-tessdata-doc                  noarch 4.1.0-10.fc42                   updates                15.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
-  vid.stab                                x86_64 1.1.1-5.fc42                    fedora                 92.2 KiB
-  vo-amrwbenc                             x86_64 0.1.3-22.fc42                   fedora                153.9 KiB
-  vulkan-loader                           x86_64 1.4.313.0-1.fc42                updates               532.4 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
-  zeromq                                  x86_64 4.3.5-21.fc42                   fedora                890.1 KiB
-  zimg                                    x86_64 3.0.6-2.fc42                    updates               570.9 KiB
-  zix                                     x86_64 0.8.0-2.fc42                    updates                58.8 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
-  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-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
-  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:       302 packages
- 
- Total size of inbound packages is 169 MiB. Need to download 169 MiB.
- After this operation, 608 MiB extra will be used (install 608 MiB, remove 0 B).
- [  1/302] libavcodec-free-devel-0:7.1.2 100% |  70.7 KiB/s |  76.7 KiB |  00m01s
- [  2/302] ffmpeg-free-devel-0:7.1.2-1.f 100% | 133.2 KiB/s | 149.3 KiB |  00m01s
- [  3/302] libswresample-free-0:7.1.2-1. 100% | 251.3 KiB/s |  67.9 KiB |  00m00s
- [  4/302] aribb24-0:1.0.3^20160216git5e 100% |  28.2 KiB/s |  38.3 KiB |  00m01s
- [  5/302] libavutil-free-0:7.1.2-1.fc42 100% |  67.0 KiB/s | 358.0 KiB |  00m05s
- [  6/302] cairo-0:1.18.2-3.fc42.x86_64  100% |  76.1 KiB/s | 731.8 KiB |  00m10s
- [  7/302] fdk-aac-free-0:2.0.0-15.fc42. 100% |  67.9 KiB/s | 342.4 KiB |  00m05s
- [  8/302] codec2-0:1.2.0-6.fc42.x86_64  100% |  57.6 KiB/s | 644.4 KiB |  00m11s
- [  9/302] gsm-0:1.0.22-8.fc42.x86_64    100% | 128.7 KiB/s |  35.8 KiB |  00m00s
- [ 10/302] ilbc-0:3.0.4-13.fc42.x86_64   100% |  94.9 KiB/s |  56.9 KiB |  00m01s
- [ 11/302] lcms2-0:2.16-5.fc42.x86_64    100% | 188.2 KiB/s | 184.1 KiB |  00m01s
- [ 12/302] libaribcaption-0:1.1.1-2.fc42 100% |  78.2 KiB/s | 111.6 KiB |  00m01s
- [ 13/302] lame-libs-0:3.100-19.fc42.x86 100% | 108.8 KiB/s | 339.7 KiB |  00m03s
- [ 14/302] liblc3-0:1.1.3-1.fc42.x86_64  100% |  60.9 KiB/s | 105.2 KiB |  00m02s
- [ 15/302] libva-0:2.22.0-4.fc42.x86_64  100% |  67.1 KiB/s | 116.9 KiB |  00m02s
- [ 16/302] libtheora-1:1.1.1-39.fc42.x86 100% |  46.6 KiB/s | 170.4 KiB |  00m04s
- [ 17/302] libvorbis-1:1.3.7-12.fc42.x86 100% |  80.2 KiB/s | 189.2 KiB |  00m02s
- [ 18/302] opencore-amr-0:0.1.6-8.fc42.x 100% |  61.2 KiB/s | 181.9 KiB |  00m03s
- [ 19/302] libwebp-0:1.5.0-2.fc42.x86_64 100% |  61.4 KiB/s | 320.6 KiB |  00m05s
- [ 20/302] snappy-0:1.2.1-4.fc42.x86_64  100% | 176.4 KiB/s |  39.9 KiB |  00m00s
- [ 21/302] opus-0:1.5.2-2.fc42.x86_64    100% | 130.8 KiB/s | 236.9 KiB |  00m02s
- [ 22/302] speex-0:1.2.0-19.fc42.x86_64  100% |  42.2 KiB/s |  70.8 KiB |  00m02s
- [ 23/302] twolame-libs-0:0.4.0-6.fc42.x 100% |  94.3 KiB/s |  68.7 KiB |  00m01s
- [ 24/302] vo-amrwbenc-0:0.1.3-22.fc42.x 100% |  25.6 KiB/s |  82.8 KiB |  00m03s
- [ 25/302] xvidcore-0:1.3.7-13.fc42.x86_ 100% | 183.2 KiB/s | 267.4 KiB |  00m01s
- [ 26/302] zvbi-0:0.2.43-2.fc42.x86_64   100% | 175.3 KiB/s | 433.3 KiB |  00m02s
- [ 27/302] libvdpau-0:1.5-9.fc42.x86_64  100% |  44.7 KiB/s |  16.6 KiB |  00m00s
- [ 28/302] soxr-0:0.1.3-18.fc42.x86_64   100% | 111.7 KiB/s |  86.8 KiB |  00m01s
- [ 29/302] fontconfig-0:2.16.0-2.fc42.x8 100% | 111.5 KiB/s | 272.0 KiB |  00m02s
- [ 30/302] freetype-0:2.13.3-2.fc42.x86_ 100% |  66.5 KiB/s | 415.5 KiB |  00m06s
- [ 31/302] libXext-0:1.3.6-3.fc42.x86_64 100% | 113.8 KiB/s |  39.3 KiB |  00m00s
- [ 32/302] libXrender-0:0.9.12-2.fc42.x8 100% |  16.1 KiB/s |  26.9 KiB |  00m02s
- [ 33/302] libavcodec-free-0:7.1.2-1.fc4 100% |  81.5 KiB/s |   4.2 MiB |  00m53s
- [ 34/302] libogg-2:1.3.5-11.fc42.x86_64 100% |  75.3 KiB/s |  33.1 KiB |  00m00s
- [ 35/302] libXfixes-0:6.0.1-5.fc42.x86_ 100% | 105.7 KiB/s |  19.1 KiB |  00m00s
- [ 36/302] libglvnd-glx-1:1.7.0-7.fc42.x 100% |  89.1 KiB/s | 133.1 KiB |  00m01s
- [ 37/302] default-fonts-core-sans-0:4.2 100% | 381.4 KiB/s |  31.3 KiB |  00m00s
- [ 38/302] xml-common-0:0.6.3-66.fc42.no 100% | 480.0 KiB/s |  31.2 KiB |  00m00s
- [ 39/302] libglvnd-1:1.7.0-7.fc42.x86_6 100% | 277.0 KiB/s | 114.4 KiB |  00m00s
- [ 40/302] abattis-cantarell-vf-fonts-0: 100% | 112.5 KiB/s | 120.3 KiB |  00m01s
- [ 41/302] google-noto-sans-vf-fonts-0:2 100% | 138.9 KiB/s | 614.5 KiB |  00m04s
- [ 42/302] google-noto-fonts-common-0:20 100% |  45.9 KiB/s |  17.1 KiB |  00m00s
- [ 43/302] libavdevice-free-devel-0:7.1. 100% |  72.0 KiB/s |  19.6 KiB |  00m00s
- [ 44/302] libavdevice-free-0:7.1.2-1.fc 100% |  47.1 KiB/s |  89.2 KiB |  00m02s
- [ 45/302] svt-av1-libs-0:2.3.0-1.fc42.x 100% |  61.6 KiB/s |   2.0 MiB |  00m34s
- [ 46/302] libavformat-free-0:7.1.2-1.fc 100% | 287.0 KiB/s |   1.1 MiB |  00m04s
- [ 47/302] libXv-0:1.0.13-2.fc42.x86_64  100% |  46.6 KiB/s |  18.6 KiB |  00m00s
- [ 48/302] libavc1394-0:0.5.4-25.fc42.x8 100% | 276.6 KiB/s |  55.6 KiB |  00m00s
- [ 49/302] libcaca-0:0.99-0.76.beta20.fc 100% | 231.6 KiB/s | 224.9 KiB |  00m01s
- [ 50/302] libcdio-paranoia-0:10.2+2.0.2 100% |  74.9 KiB/s |  87.6 KiB |  00m01s
- [ 51/302] libdc1394-0:2.2.7-7.fc42.x86_ 100% |  85.8 KiB/s | 133.2 KiB |  00m02s
- [ 52/302] libiec61883-0:1.2.0-37.fc42.x 100% |  58.2 KiB/s |  41.5 KiB |  00m01s
- [ 53/302] libraw1394-0:2.1.2-23.fc42.x8 100% |  72.4 KiB/s |  64.2 KiB |  00m01s
- [ 54/302] libavfilter-free-0:7.1.2-1.fc 100% | 134.2 KiB/s |   1.5 MiB |  00m11s
- [ 55/302] libv4l-0:1.28.1-3.fc42.x86_64 100% |  99.3 KiB/s | 136.7 KiB |  00m01s
- [ 56/302] libpostproc-free-0:7.1.2-1.fc 100% | 115.3 KiB/s |  49.1 KiB |  00m00s
- [ 57/302] openal-soft-0:1.24.2-2.fc42.x 100% | 174.1 KiB/s | 664.5 KiB |  00m04s
- [ 58/302] libswscale-free-0:7.1.2-1.fc4 100% |  46.1 KiB/s | 204.8 KiB |  00m04s
- [ 59/302] fribidi-0:1.0.16-2.fc42.x86_6 100% | 113.5 KiB/s |  53.6 KiB |  00m00s
- [ 60/302] libass-0:0.17.3-3.fc42.x86_64 100% | 277.0 KiB/s | 129.9 KiB |  00m00s
- [ 61/302] libbs2b-0:3.1.0-35.fc42.x86_6 100% | 176.4 KiB/s |  29.1 KiB |  00m00s
- [ 62/302] libmysofa-0:1.3.3-2.fc42.x86_ 100% | 173.8 KiB/s |  44.2 KiB |  00m00s
- [ 63/302] libvmaf-0:3.0.0-3.fc42.x86_64 100% | 158.7 KiB/s | 197.7 KiB |  00m01s
- [ 64/302] rubberband-libs-0:4.0.0-3.fc4 100% | 126.3 KiB/s | 171.8 KiB |  00m01s
- [ 65/302] vid.stab-0:1.1.1-5.fc42.x86_6 100% |  49.7 KiB/s |  50.2 KiB |  00m01s
- [ 66/302] zeromq-0:4.3.5-21.fc42.x86_64 100% | 178.5 KiB/s | 468.9 KiB |  00m03s
- [ 67/302] game-music-emu-0:0.6.3-17.fc4 100% | 149.5 KiB/s | 154.4 KiB |  00m01s
- [ 68/302] libbluray-0:1.3.4-9.fc42.x86_ 100% | 277.3 KiB/s | 174.2 KiB |  00m01s
- [ 69/302] libchromaprint-0:1.5.1-24.fc4 100% | 224.8 KiB/s |  41.8 KiB |  00m00s
- [ 70/302] libdvdnav-0:6.1.1-10.fc42.x86 100% | 209.2 KiB/s |  55.9 KiB |  00m00s
- [ 71/302] libdvdread-0:6.1.3-9.fc42.x86 100% | 250.4 KiB/s |  72.6 KiB |  00m00s
- [ 72/302] libmodplug-1:0.8.9.0-27.fc42. 100% | 249.6 KiB/s | 178.4 KiB |  00m01s
- [ 73/302] librabbitmq-0:0.15.0-2.fc42.x 100% | 305.0 KiB/s |  43.9 KiB |  00m00s
- [ 74/302] librist-0:0.2.7-9.fc42.x86_64 100% | 241.9 KiB/s |  76.7 KiB |  00m00s
- [ 75/302] srt-libs-0:1.5.4-2.fc42.x86_6 100% | 334.4 KiB/s | 389.6 KiB |  00m01s
- [ 76/302] mesa-libGLU-0:9.0.3-6.fc42.x8 100% | 395.9 KiB/s | 167.1 KiB |  00m00s
- [ 77/302] libcdio-0:2.1.0-14.fc42.x86_6 100% | 112.0 KiB/s | 248.7 KiB |  00m02s
- [ 78/302] libunibreak-0:6.1-3.fc42.x86_ 100% | 161.2 KiB/s |  34.0 KiB |  00m00s
- [ 79/302] lpcnetfreedv-0:0.5-8.fc42.x86 100% | 167.0 KiB/s |   7.3 MiB |  00m45s
- [ 80/302] fftw-libs-double-0:3.3.10-15. 100% |   2.5 MiB/s |   1.1 MiB |  00m00s
- [ 81/302] libsndfile-0:1.2.2-8.fc42.x86 100% | 290.6 KiB/s | 221.5 KiB |  00m01s
- [ 82/302] libunwind-0:1.8.1-2.fc42.x86_ 100% | 166.7 KiB/s |  77.2 KiB |  00m00s
- [ 83/302] openpgm-0:5.3.128-4.fc42.x86_ 100% | 214.6 KiB/s | 183.1 KiB |  00m01s
- [ 84/302] libudfread-0:1.1.2-11.fc42.x8 100% | 243.1 KiB/s |  35.5 KiB |  00m00s
- [ 85/302] cjson-0:1.7.18-2.fc42.x86_64  100% |  78.4 KiB/s |  32.2 KiB |  00m00s
- [ 86/302] libglvnd-opengl-1:1.7.0-7.fc4 100% | 298.9 KiB/s |  37.4 KiB |  00m00s
- [ 87/302] libsamplerate-0:0.2.2-10.fc42 100% | 496.3 KiB/s |   1.3 MiB |  00m03s
- [ 88/302] libavfilter-free-devel-0:7.1. 100% | 353.2 KiB/s |  31.1 KiB |  00m00s
- [ 89/302] flac-libs-0:1.4.3-6.fc42.x86_ 100% | 434.0 KiB/s | 274.3 KiB |  00m01s
- [ 90/302] libavformat-free-devel-0:7.1. 100% | 100.3 KiB/s |  50.0 KiB |  00m00s
- [ 91/302] libpostproc-free-devel-0:7.1. 100% | 167.4 KiB/s |  14.7 KiB |  00m00s
- [ 92/302] libswresample-free-devel-0:7. 100% | 244.2 KiB/s |  21.7 KiB |  00m00s
- [ 93/302] libswscale-free-devel-0:7.1.2 100% |  74.7 KiB/s |  20.3 KiB |  00m00s
- [ 94/302] libavutil-free-devel-0:7.1.2- 100% | 157.8 KiB/s | 170.4 KiB |  00m01s
- [ 95/302] libsodium-0:1.0.21-2.fc42.x86 100% | 486.8 KiB/s | 198.1 KiB |  00m00s
- [ 96/302] cpuinfo-0:24.09.26-2.git1e83a 100% | 384.6 KiB/s |  43.8 KiB |  00m00s
- [ 97/302] libpng-2:1.6.55-1.fc42.x86_64 100% | 140.0 KiB/s | 124.0 KiB |  00m01s
- [ 98/302] libpciaccess-0:0.16-15.fc42.x 100% | 477.9 KiB/s |  26.3 KiB |  00m00s
- [ 99/302] libwayland-client-0:1.24.0-1. 100% | 114.8 KiB/s |  33.6 KiB |  00m00s
- [100/302] mesa-filesystem-0:25.1.9-1.fc 100% |  68.8 KiB/s |   8.8 KiB |  00m00s
- [101/302] mesa-libGL-0:25.1.9-1.fc42.x8 100% | 566.7 KiB/s | 121.8 KiB |  00m00s
- [102/302] libdrm-0:2.4.131-1.fc42.x86_6 100% | 151.1 KiB/s | 162.9 KiB |  00m01s
- [103/302] libXxf86vm-0:1.1.6-2.fc42.x86 100% | 262.6 KiB/s |  17.9 KiB |  00m00s
- [104/302] mesa-libgbm-0:25.1.9-1.fc42.x 100% | 187.7 KiB/s |  14.8 KiB |  00m00s
- [105/302] libxshmfence-0:1.3.2-6.fc42.x 100% | 265.6 KiB/s |  13.3 KiB |  00m00s
- [106/302] lm_sensors-libs-0:3.6.0-22.fc 100% | 262.6 KiB/s |  40.4 KiB |  00m00s
- [107/302] libjpeg-turbo-0:3.1.3-1.fc42. 100% | 165.5 KiB/s | 236.9 KiB |  00m01s
- [108/302] mpg123-libs-0:1.32.10-1.fc42. 100% | 266.7 KiB/s | 355.5 KiB |  00m01s
- [109/302] mbedtls-0:3.6.5-1.fc42.x86_64 100% | 317.4 KiB/s | 512.6 KiB |  00m02s
- [110/302] hwdata-0:0.405-1.fc42.noarch  100% | 157.8 KiB/s |   1.7 MiB |  00m11s
- [111/302] freeglut-0:3.8.0-1.fc42.x86_6 100% | 688.0 KiB/s | 152.0 KiB |  00m00s
- [112/302] libXi-0:1.8.2-2.fc42.x86_64   100% | 145.9 KiB/s |  40.5 KiB |  00m00s
- [113/302] harfbuzz-0:10.4.0-2.fc42.x86_ 100% | 145.9 KiB/s |   1.1 MiB |  00m07s
- [114/302] graphite2-0:1.3.14-18.fc42.x8 100% | 119.4 KiB/s |  95.8 KiB |  00m01s
- [115/302] fonts-filesystem-1:2.0.5-22.f 100% | 178.1 KiB/s |   8.7 KiB |  00m00s
- [116/302] pulseaudio-libs-0:17.0-9.fc42 100% | 194.6 KiB/s | 694.4 KiB |  00m04s
- [117/302] libasyncns-0:0.8-30.fc42.x86_ 100% | 106.7 KiB/s |  30.2 KiB |  00m00s
- [118/302] pixman-0:0.46.2-1.fc42.x86_64 100% | 186.6 KiB/s | 292.7 KiB |  00m02s
- [119/302] libwayland-server-0:1.24.0-1. 100% |  96.9 KiB/s |  41.5 KiB |  00m00s
- [120/302] spirv-tools-libs-0:2025.2-2.f 100% |  39.4 KiB/s |   1.5 MiB |  00m40s
- [121/302] libvpl-1:2.16.0-1.fc42.x86_64 100% | 166.5 KiB/s | 161.2 KiB |  00m01s
- [122/302] libopenmpt-0:0.8.6-1.fc42.x86 100% | 294.1 KiB/s | 785.8 KiB |  00m03s
- [123/302] libsmbclient-2:4.22.7-1.fc42. 100% | 170.5 KiB/s |  76.9 KiB |  00m00s
- [124/302] flite-0:2.2-11.fc42.x86_64    100% | 121.2 KiB/s |  12.5 MiB |  01m45s
- [125/302] samba-common-2:4.22.7-1.fc42. 100% | 948.1 KiB/s | 177.3 KiB |  00m00s
- [126/302] libtalloc-0:2.4.3-2.fc42.x86_ 100% | 410.6 KiB/s |  34.9 KiB |  00m00s
- [127/302] libtevent-0:0.16.2-2.fc42.x86 100% |  56.4 KiB/s |  51.4 KiB |  00m01s
- [128/302] avahi-libs-0:0.9~rc2-2.fc42.x 100% | 305.9 KiB/s |  69.1 KiB |  00m00s
- [129/302] libtdb-0:1.4.13-2.fc42.x86_64 100% |  74.6 KiB/s |  54.8 KiB |  00m01s
- [130/302] libldb-2:4.22.7-1.fc42.x86_64 100% |   8.8 KiB/s | 187.7 KiB |  00m21s
- [131/302] libwbclient-2:4.22.7-1.fc42.x 100% |  19.3 KiB/s |  45.5 KiB |  00m02s
- [132/302] libplacebo-0:7.349.0-7.fc42.x 100% |  19.1 KiB/s | 430.3 KiB |  00m23s
- [133/302] libdovi-0:3.3.1-2.fc42.x86_64 100% | 152.8 KiB/s | 261.7 KiB |  00m02s
- [134/302] samba-client-libs-2:4.22.7-1. 100% |  88.6 KiB/s |   5.6 MiB |  01m05s
- [135/302] lilv-libs-0:0.26.4-1.fc42.x86 100% | 108.7 KiB/s |  56.9 KiB |  00m01s
- [136/302] tesseract-libs-0:5.5.0-5.fc42 100% |  64.9 KiB/s |   1.3 MiB |  00m21s
- [137/302] tesseract-common-0:5.5.0-5.fc 100% |  59.2 KiB/s |  24.6 KiB |  00m00s
- [138/302] libshaderc-0:2025.2-1.fc42.x8 100% |  39.8 KiB/s |   1.1 MiB |  00m29s
- [139/302] zimg-0:3.0.6-2.fc42.x86_64    100% | 348.4 KiB/s | 221.6 KiB |  00m01s
- [140/302] alsa-lib-0:1.2.15.3-1.fc42.x8 100% |   2.0 MiB/s | 541.4 KiB |  00m00s
- [141/302] sdl2-compat-0:2.32.64-1.fc42. 100% | 317.9 KiB/s | 137.0 KiB |  00m00s
- [142/302] leptonica-0:1.85.0-2.fc42.x86 100% |  58.8 KiB/s |   1.2 MiB |  00m21s
- [143/302] openh264-0:2.5.1-1.fc42.x86_6 100% |   1.3 MiB/s | 423.1 KiB |  00m00s
- [144/302] SDL3-0:3.4.0-3.fc42.x86_64    100% |  50.8 KiB/s |   1.1 MiB |  00m23s
- [145/302] libdav1d-0:1.5.3-1.fc42.x86_6 100% | 217.1 KiB/s | 637.4 KiB |  00m03s
- [146/302] libaom-0:3.13.1-1.fc42.x86_64 100% | 141.7 KiB/s |   1.9 MiB |  00m13s
- [147/302] mesa-dri-drivers-0:25.1.9-1.f 100% |  64.7 KiB/s |  12.5 MiB |  03m18s
- [148/302] shared-mime-info-0:2.3-7.fc42 100% |  56.1 KiB/s | 393.7 KiB |  00m07s
- [149/302] cairo-gobject-0:1.18.2-3.fc42 100% |  63.9 KiB/s |  17.3 KiB |  00m00s
- [150/302] libjxl-1:0.11.1-4.fc42.x86_64 100% |  65.6 KiB/s |   1.1 MiB |  00m17s
- [151/302] openjpeg-0:2.5.4-1.fc42.x86_6 100% |  87.5 KiB/s | 192.3 KiB |  00m02s
- [152/302] librsvg2-0:2.60.0-5.fc42.x86_ 100% | 164.1 KiB/s |   1.9 MiB |  00m12s
- [153/302] giflib-0:5.2.2-9.fc42.x86_64  100% | 258.3 KiB/s |  52.2 KiB |  00m00s
- [154/302] libtiff-0:4.7.1-1.fc42.x86_64 100% | 113.3 KiB/s | 222.5 KiB |  00m02s
- [155/302] jbigkit-libs-0:2.1-31.fc42.x8 100% | 186.4 KiB/s |  53.3 KiB |  00m00s
- [156/302] libvpx-0:1.15.0-3.fc42.x86_64 100% | 127.7 KiB/s |   1.2 MiB |  00m09s
- [157/302] rav1e-libs-0:0.8.1-2.fc42.x86 100% | 216.7 KiB/s |   1.1 MiB |  00m05s
- [158/302] tesseract-tessdata-doc-0:4.1. 100% | 101.2 KiB/s |  13.2 KiB |  00m00s
- [159/302] liblerc-0:4.0.0-8.fc42.x86_64 100% | 176.4 KiB/s | 216.7 KiB |  00m01s
- [160/302] samba-common-libs-2:4.22.7-1. 100% | 893.5 KiB/s | 106.3 KiB |  00m00s
- [161/302] serd-0:0.32.8-1.fc42.x86_64   100% |   1.1 MiB/s |  65.7 KiB |  00m00s
- [162/302] sord-0:0.16.22-1.fc42.x86_64  100% | 363.1 KiB/s |  37.4 KiB |  00m00s
- [163/302] sratom-0:0.6.22-1.fc42.x86_64 100% | 809.6 KiB/s |  25.1 KiB |  00m00s
- [164/302] zix-0:0.8.0-2.fc42.x86_64     100% |   1.2 MiB/s |  34.0 KiB |  00m00s
- [165/302] libdecor-0:0.2.4-1.fc42.x86_6 100% | 550.6 KiB/s |  57.8 KiB |  00m00s
- [166/302] libwayland-cursor-0:1.24.0-1. 100% | 726.0 KiB/s |  18.9 KiB |  00m00s
- [167/302] gdk-pixbuf2-0:2.42.12-12.fc42 100% | 370.4 KiB/s | 488.9 KiB |  00m01s
- [168/302] glibc-gconv-extra-0:2.41-16.f 100% | 530.0 KiB/s |   1.6 MiB |  00m03s
- [169/302] libXft-0:2.3.8-8.fc42.x86_64  100% | 246.2 KiB/s |  72.9 KiB |  00m00s
- [170/302] libthai-0:0.1.29-10.fc42.x86_ 100% | 240.4 KiB/s | 211.5 KiB |  00m01s
- [171/302] libdatrie-0:0.2.13-11.fc42.x8 100% | 431.5 KiB/s |  32.4 KiB |  00m00s
- [172/302] rsvg-pixbuf-loader-0:2.60.0-5 100% | 145.4 KiB/s | 164.0 KiB |  00m01s
- [173/302] pango-0:1.56.4-2.fc42.x86_64  100% | 102.6 KiB/s | 351.2 KiB |  00m03s
- [174/302] lmdb-libs-0:0.9.34-1.fc42.x86 100% | 191.7 KiB/s |  61.7 KiB |  00m00s
- [175/302] vulkan-loader-0:1.4.313.0-1.f 100% |  99.7 KiB/s | 151.5 KiB |  00m02s
- [176/302] highway-0:1.3.0-1.fc42.x86_64 100% | 234.0 KiB/s | 697.9 KiB |  00m03s
- [177/302] gdk-pixbuf2-modules-0:2.42.12 100% | 259.4 KiB/s |  28.0 KiB |  00m00s
- [178/302] tesseract-langpack-eng-0:4.1. 100% | 179.1 KiB/s |   1.7 MiB |  00m10s
- [179/302] hicolor-icon-theme-0:0.17-20. 100% | 237.1 KiB/s |  65.7 KiB |  00m00s
- [180/302] libXcomposite-0:0.4.6-5.fc42. 100% | 172.4 KiB/s |  24.3 KiB |  00m00s
- [181/302] libXcursor-0:1.2.3-2.fc42.x86 100% | 265.7 KiB/s |  31.4 KiB |  00m00s
- [182/302] colord-libs-0:1.4.7-6.fc42.x8 100% | 308.1 KiB/s | 231.1 KiB |  00m01s
- [183/302] libXdamage-0:1.1.6-5.fc42.x86 100% | 123.8 KiB/s |  23.4 KiB |  00m00s
- [184/302] libXinerama-0:1.1.5-8.fc42.x8 100% |  44.0 KiB/s |  14.3 KiB |  00m00s
- [185/302] libXrandr-0:1.5.4-5.fc42.x86_ 100% |  91.1 KiB/s |  27.8 KiB |  00m00s
- [186/302] libcloudproviders-0:0.3.6-1.f 100% | 268.9 KiB/s |  46.8 KiB |  00m00s
- [187/302] libepoxy-0:1.5.10-9.fc42.x86_ 100% | 127.6 KiB/s | 229.9 KiB |  00m02s
- [188/302] libgusb-0:0.4.9-3.fc42.x86_64 100% |  32.2 KiB/s |  65.3 KiB |  00m02s
- [189/302] adwaita-cursor-theme-0:48.1-1 100% | 293.3 KiB/s | 379.5 KiB |  00m01s
- [190/302] adwaita-icon-theme-0:48.1-1.f 100% | 223.4 KiB/s | 398.8 KiB |  00m02s
- [191/302] at-spi2-atk-0:2.56.8-1.fc42.x 100% |  73.0 KiB/s |  85.8 KiB |  00m01s
- [192/302] at-spi2-core-0:2.56.8-1.fc42. 100% | 477.5 KiB/s | 383.4 KiB |  00m01s
- [193/302] atk-0:2.56.8-1.fc42.x86_64    100% | 173.2 KiB/s |  79.5 KiB |  00m00s
- [194/302] libXtst-0:1.2.5-2.fc42.x86_64 100% |  12.9 KiB/s |  20.7 KiB |  00m02s
- [195/302] xprop-0:1.2.8-3.fc42.x86_64   100% |  83.3 KiB/s |  35.0 KiB |  00m00s
- [196/302] cups-libs-1:2.4.16-7.fc42.x86 100% | 199.2 KiB/s | 260.9 KiB |  00m01s
- [197/302] cups-filesystem-1:2.4.16-7.fc 100% |  14.1 KiB/s |  12.4 KiB |  00m01s
- [198/302] gtk-update-icon-cache-0:3.24. 100% | 410.5 KiB/s |  33.3 KiB |  00m00s
- [199/302] libtinysparql-0:3.9.2-1.fc42. 100% | 214.8 KiB/s | 373.6 KiB |  00m02s
- [200/302] avahi-glib-0:0.9~rc2-2.fc42.x 100% | 102.5 KiB/s |  15.3 KiB |  00m00s
- [201/302] libwayland-egl-0:1.24.0-1.fc4 100% | 169.5 KiB/s |  12.4 KiB |  00m00s
- [202/302] json-glib-0:1.10.8-1.fc42.x86 100% | 137.2 KiB/s | 172.4 KiB |  00m01s
- [203/302] adwaita-icon-theme-legacy-0:4 100% | 189.1 KiB/s |   2.5 MiB |  00m13s
- [204/302] OpenCL-ICD-Loader-0:3.0.6-2.2 100% |  64.3 KiB/s |  28.2 KiB |  00m00s
- [205/302] pipewire-jack-audio-connectio 100% |   1.5 MiB/s | 144.3 KiB |  00m00s
- [206/302] pipewire-jack-audio-connectio 100% | 256.0 KiB/s |  10.5 KiB |  00m00s
- [207/302] libsoup3-0:3.6.6-2.fc42.x86_6 100% |  56.4 KiB/s | 451.4 KiB |  00m08s
- [208/302] fftw-libs-single-0:3.3.10-15. 100% | 266.5 KiB/s |   1.2 MiB |  00m05s
- [209/302] libebur128-0:1.2.6-12.fc42.x8 100% | 178.5 KiB/s |  24.8 KiB |  00m00s
- [210/302] libldac-0:2.0.2.3-17.fc42.x86 100% | 201.3 KiB/s |  42.9 KiB |  00m00s
- [211/302] libsbc-0:2.0-6.fc42.x86_64    100% |  95.8 KiB/s |  49.3 KiB |  00m01s
- [212/302] webrtc-audio-processing-0:1.3 100% | 239.4 KiB/s | 537.4 KiB |  00m02s
- [213/302] bluez-libs-0:5.84-2.fc42.x86_ 100% | 243.0 KiB/s |  83.6 KiB |  00m00s
- [214/302] pipewire-libs-0:1.4.11-1.fc42 100% | 198.1 KiB/s |   2.4 MiB |  00m13s
- [215/302] xdg-desktop-portal-gtk-0:1.15 100% | 373.5 KiB/s | 143.8 KiB |  00m00s
- [216/302] mesa-va-drivers-0:25.1.9-1.fc 100% | 217.1 KiB/s |   7.6 KiB |  00m00s
- [217/302] gtk3-0:3.24.52-1.fc42.x86_64  100% | 133.5 KiB/s |   6.0 MiB |  00m46s
- [218/302] logrotate-0:3.22.0-3.fc42.x86 100% |  81.6 KiB/s |  76.1 KiB |  00m01s
- [219/302] jxl-pixbuf-loader-1:0.11.1-4. 100% |  18.0 KiB/s |  19.9 KiB |  00m01s
- [220/302] intel-mediasdk-0:23.2.2-7.fc4 100% | 135.2 KiB/s |   2.7 MiB |  00m20s
- [221/302] libcanberra-gtk3-0:0.30-37.fc 100% |  87.6 KiB/s |  30.6 KiB |  00m00s
- [222/302] libcanberra-0:0.30-37.fc42.x8 100% | 246.7 KiB/s |  84.1 KiB |  00m00s
- [223/302] sound-theme-freedesktop-0:0.8 100% | 769.4 KiB/s | 382.4 KiB |  00m00s
- [224/302] dconf-0:0.40.0-15.fc42.x86_64 100% | 171.1 KiB/s | 109.5 KiB |  00m01s
- [225/302] localsearch-0:3.9.0-1.fc42.x8 100% | 211.2 KiB/s | 932.4 KiB |  00m04s
- [226/302] exempi-0:2.6.4-7.fc42.x86_64  100% | 112.1 KiB/s | 583.5 KiB |  00m05s
- [227/302] libcue-0:2.3.0-11.fc42.x86_64 100% | 148.2 KiB/s |  35.1 KiB |  00m00s
- [228/302] libexif-0:0.6.25-1.fc42.x86_6 100% | 234.0 KiB/s | 481.1 KiB |  00m02s
- [229/302] libgudev-0:238-7.fc42.x86_64  100% |  55.5 KiB/s |  34.9 KiB |  00m01s
- [230/302] libgxps-0:0.3.2-10.fc42.x86_6 100% |  65.1 KiB/s |  77.0 KiB |  00m01s
- [231/302] libiptcdata-0:1.0.5-21.fc42.x 100% |  45.0 KiB/s |  60.5 KiB |  00m01s
- [232/302] intel-vpl-gpu-rt-0:25.4.5-1.f 100% | 101.0 KiB/s |   3.8 MiB |  00m38s
- [233/302] totem-pl-parser-0:3.26.6-12.f 100% | 158.5 KiB/s | 143.6 KiB |  00m01s
- [234/302] libosinfo-0:1.12.0-2.fc42.x86 100% |  94.8 KiB/s | 317.2 KiB |  00m03s
- [235/302] osinfo-db-tools-0:1.12.0-2.fc 100% | 207.3 KiB/s |  73.2 KiB |  00m00s
- [236/302] libxslt-0:1.1.43-1.fc42.x86_6 100% |  76.5 KiB/s | 181.5 KiB |  00m02s
- [237/302] webp-pixbuf-loader-0:0.2.7-3. 100% |  27.8 KiB/s |  19.8 KiB |  00m01s
- [238/302] avif-pixbuf-loader-0:1.1.1-1. 100% | 162.0 KiB/s |  16.2 KiB |  00m00s
- [239/302] libavif-0:1.1.1-1.fc42.x86_64 100% |  91.4 KiB/s | 100.1 KiB |  00m01s
- [240/302] uchardet-0:0.0.8-7.fc42.x86_6 100% |  37.5 KiB/s | 106.3 KiB |  00m03s
- [241/302] libyuv-0:0-0.56.20240704git96 100% |  46.3 KiB/s | 201.9 KiB |  00m04s
- [242/302] tinysparql-0:3.9.2-1.fc42.x86 100% | 190.3 KiB/s |   1.0 MiB |  00m05s
- [243/302] libproxy-0:0.5.8-2.fc42.x86_6 100% | 157.3 KiB/s |  45.5 KiB |  00m00s
- [244/302] pipewire-0:1.4.11-1.fc42.x86_ 100% | 169.3 KiB/s | 133.4 KiB |  00m01s
- [245/302] glib-networking-0:2.80.1-1.fc 100% |  96.1 KiB/s | 201.4 KiB |  00m02s
- [246/302] rtkit-0:0.11-66.fc42.x86_64   100% | 178.5 KiB/s |  55.1 KiB |  00m00s
- [247/302] xdg-desktop-portal-0:1.20.3-1 100% |  87.5 KiB/s | 505.3 KiB |  00m06s
- [248/302] fuse3-0:3.16.2-5.fc42.x86_64  100% | 223.5 KiB/s |  57.4 KiB |  00m00s
- [249/302] fuse3-libs-0:3.16.2-5.fc42.x8 100% | 114.7 KiB/s |  94.2 KiB |  00m01s
- [250/302] fuse-common-0:3.16.2-5.fc42.x 100% |  28.3 KiB/s |   8.6 KiB |  00m00s
- [251/302] gsettings-desktop-schemas-0:4 100% |  47.4 KiB/s | 783.1 KiB |  00m17s
- [252/302] gstreamer1-0:1.26.11-1.fc42.x 100% |  48.9 KiB/s |   1.7 MiB |  00m35s
- [253/302] cdparanoia-libs-0:10.2-47.fc4 100% |  68.6 KiB/s |  54.0 KiB |  00m01s
- [254/302] graphene-0:1.10.6-10.fc42.x86 100% | 297.4 KiB/s |  61.3 KiB |  00m00s
- [255/302] gstreamer1-plugins-base-0:1.2 100% |  75.5 KiB/s |   2.3 MiB |  00m31s
- [256/302] libglvnd-egl-1:1.7.0-7.fc42.x 100% |  10.4 KiB/s |  36.3 KiB |  00m03s
- [257/302] orc-0:0.4.41-1.fc42.x86_64    100% | 214.3 KiB/s | 220.5 KiB |  00m01s
- [258/302] mesa-libEGL-0:25.1.9-1.fc42.x 100% | 423.2 KiB/s | 126.9 KiB |  00m00s
- [259/302] libgexiv2-0:0.14.6-1.fc42.x86 100% | 277.2 KiB/s | 100.9 KiB |  00m00s
- [260/302] libgsf-0:1.14.56-1.fc42.x86_6 100% | 356.7 KiB/s | 263.9 KiB |  00m01s
- [261/302] poppler-glib-0:25.02.0-4.fc42 100% | 131.7 KiB/s | 201.0 KiB |  00m02s
- [262/302] poppler-0:25.02.0-4.fc42.x86_ 100% | 146.3 KiB/s |   1.3 MiB |  00m09s
- [263/302] iso-codes-0:4.17.0-2.fc42.noa 100% | 149.9 KiB/s |   3.6 MiB |  00m25s
- [264/302] upower-libs-0:1.91.0-1.fc42.x 100% | 265.7 KiB/s |  59.8 KiB |  00m00s
- [265/302] osinfo-db-0:20251212-1.fc42.n 100% |  75.7 KiB/s | 490.8 KiB |  00m06s
- [266/302] geoclue2-0:2.8.0-1.fc42.x86_6 100% | 201.4 KiB/s | 144.8 KiB |  00m01s
- [267/302] poppler-data-0:0.4.11-9.fc42. 100% | 158.4 KiB/s |   2.0 MiB |  00m13s
- [268/302] gobject-introspection-0:1.84. 100% | 475.9 KiB/s | 119.9 KiB |  00m00s
- [269/302] gpgmepp-0:1.24.3-1.fc42.x86_6 100% | 175.9 KiB/s | 143.2 KiB |  00m01s
- [270/302] gpgme-0:1.24.3-1.fc42.x86_64  100% |   1.2 MiB/s | 219.1 KiB |  00m00s
- [271/302] nspr-0:4.38.2-4.fc42.x86_64   100% |   1.1 MiB/s | 137.7 KiB |  00m00s
- [272/302] ModemManager-glib-0:1.22.0-5. 100% | 107.2 KiB/s | 304.6 KiB |  00m03s
- [273/302] nss-0:3.121.0-1.fc42.x86_64   100% | 346.5 KiB/s | 716.5 KiB |  00m02s
- [274/302] nss-softokn-0:3.121.0-1.fc42. 100% | 107.4 KiB/s | 430.7 KiB |  00m04s
- [275/302] nss-sysinit-0:3.121.0-1.fc42. 100% |  64.4 KiB/s |  18.7 KiB |  00m00s
- [276/302] nss-softokn-freebl-0:3.121.0- 100% |  91.5 KiB/s | 372.2 KiB |  00m04s
- [277/302] nss-util-0:3.121.0-1.fc42.x86 100% |  41.6 KiB/s |  86.0 KiB |  00m02s
- [278/302] libvisual-1:0.4.2-1.fc42.x86_ 100% | 158.7 KiB/s | 169.0 KiB |  00m01s
- [279/302] libnotify-0:0.8.8-1.fc42.x86_ 100% |  98.2 KiB/s |  55.8 KiB |  00m01s
- [280/302] inih-cpp-0:62-1.fc42.x86_64   100% | 112.1 KiB/s |  23.5 KiB |  00m00s
- [281/302] inih-0:62-1.fc42.x86_64       100% |  16.6 KiB/s |  18.2 KiB |  00m01s
- [282/302] exiv2-libs-0:0.28.6-2.fc42.x8 100% | 223.7 KiB/s | 908.5 KiB |  00m04s
- [283/302] wireplumber-0:0.5.13-1.fc42.x 100% | 121.4 KiB/s | 122.2 KiB |  00m01s
- [284/302] sdl12-compat-0:1.2.74-1.fc42. 100% |  37.6 KiB/s |  94.7 KiB |  00m03s
- [285/302] pipewire-alsa-0:1.4.11-1.fc42 100% | 244.5 KiB/s |  58.7 KiB |  00m00s
- [286/302] pipewire-pulseaudio-0:1.4.11- 100% | 292.3 KiB/s | 209.6 KiB |  00m01s
- [287/302] pipewire-plugin-libcamera-0:1 100% | 205.3 KiB/s |  73.5 KiB |  00m00s
- [288/302] wireplumber-libs-0:0.5.13-1.f 100% | 138.9 KiB/s | 426.4 KiB |  00m03s
- [289/302] lttng-ust-0:2.13.8-4.fc42.x86 100% | 162.3 KiB/s | 331.4 KiB |  00m02s
- [290/302] libcamera-0:0.4.0-4.fc42.x86_ 100% |  93.5 KiB/s | 605.0 KiB |  00m06s
- [291/302] adwaita-sans-fonts-0:48.2-2.f 100% | 112.0 KiB/s | 764.0 KiB |  00m07s
- [292/302] low-memory-monitor-0:2.1-12.f 100% | 171.7 KiB/s |  34.3 KiB |  00m00s
- [293/302] upower-0:1.91.0-1.fc42.x86_64 100% | 249.6 KiB/s | 128.8 KiB |  00m01s
- [294/302] libimobiledevice-0:1.3.0^2024 100% | 137.1 KiB/s | 140.5 KiB |  00m01s
- [295/302] libplist-0:2.6.0-2.fc42.x86_6 100% |  63.5 KiB/s |  97.4 KiB |  00m02s
- [296/302] libimobiledevice-glue-0:1.3.1 100% | 224.0 KiB/s |  53.8 KiB |  00m00s
- [297/302] libusbmuxd-0:2.1.0-3.fc42.x86 100% | 172.8 KiB/s |  37.5 KiB |  00m00s
- [298/302] adwaita-mono-fonts-0:48.2-2.f 100% |  77.6 KiB/s |   1.4 MiB |  00m18s
- [299/302] libcamera-ipa-0:0.4.0-4.fc42. 100% | 731.1 KiB/s | 147.0 KiB |  00m00s
- [300/302] usbmuxd-0:1.1.1^20240915git0b 100% | 516.9 KiB/s |  67.2 KiB |  00m00s
- [301/302] exiv2-0:0.28.6-2.fc42.x86_64  100% | 259.8 KiB/s |   2.0 MiB |  00m08s
- [302/302] mesa-vulkan-drivers-0:25.1.9- 100% |  70.9 KiB/s |  23.4 MiB |  05m38s
- >>> Curl error (28): Timeout was reached for https://fedora.mirrorservice.org/fe
- --------------------------------------------------------------------------------
- [302/302] Total                         100% | 244.0 KiB/s | 168.8 MiB |  11m48s
- Running transaction
- [  1/304] Verify package files          100% | 192.0   B/s | 302.0   B |  00m02s
- [  2/304] Prepare transaction           100% |   1.5 KiB/s | 302.0   B |  00m00s
- [  3/304] Installing libXext-0:1.3.6-3. 100% |  44.5 MiB/s |  91.2 KiB |  00m00s
- [  4/304] Installing libpng-2:1.6.55-1. 100% |  79.1 MiB/s | 243.0 KiB |  00m00s
- [  5/304] Installing libjpeg-turbo-0:3. 100% | 131.5 MiB/s | 808.0 KiB |  00m00s
- [  6/304] Installing avahi-libs-0:0.9~r 100% |  45.4 MiB/s | 186.2 KiB |  00m00s
- [  7/304] Installing libwayland-client- 100% |  30.9 MiB/s |  63.2 KiB |  00m00s
- [  8/304] Installing nspr-0:4.38.2-4.fc 100% |  77.5 MiB/s | 317.3 KiB |  00m00s
- [  9/304] Installing json-glib-0:1.10.8 100% | 118.0 MiB/s | 604.4 KiB |  00m00s
- [ 10/304] Installing libogg-2:1.3.5-11. 100% |  45.8 MiB/s |  46.9 KiB |  00m00s
- [ 11/304] Installing libvorbis-1:1.3.7- 100% | 116.6 MiB/s | 835.9 KiB |  00m00s
- [ 12/304] Installing lcms2-0:2.16-5.fc4 100% |  85.8 MiB/s | 439.3 KiB |  00m00s
- [ 13/304] Installing libXi-0:1.8.2-2.fc 100% |  41.8 MiB/s |  85.7 KiB |  00m00s
- [ 14/304] Installing libplist-0:2.6.0-2 100% |   7.3 MiB/s | 239.7 KiB |  00m00s
- [ 15/304] Installing alsa-lib-0:1.2.15. 100% |  26.2 MiB/s |   1.5 MiB |  00m00s
- [ 16/304] Installing libtdb-0:1.4.13-2. 100% |  33.1 MiB/s | 101.6 KiB |  00m00s
- [ 17/304] Installing libtalloc-0:2.4.3- 100% |  31.8 MiB/s |  65.2 KiB |  00m00s
- [ 18/304] Installing fonts-filesystem-1 100% | 769.5 KiB/s | 788.0   B |  00m00s
- [ 19/304] Installing libXrender-0:0.9.1 100% |  50.1 MiB/s |  51.3 KiB |  00m00s
- [ 20/304] Installing nss-util-0:3.121.0 100% |  67.0 MiB/s | 205.8 KiB |  00m00s
- [ 21/304] Installing libgudev-0:238-7.f 100% |  21.8 MiB/s |  89.3 KiB |  00m00s
- [ 22/304] Installing libsoup3-0:3.6.6-2 100% | 148.4 MiB/s |   1.8 MiB |  00m00s
- [ 23/304] Installing libvpl-1:2.16.0-1. 100% |  83.8 MiB/s | 429.2 KiB |  00m00s
- [ 24/304] Installing mesa-filesystem-0: 100% |   4.2 MiB/s |   4.3 KiB |  00m00s
- [ 25/304] Installing libunwind-0:1.8.1- 100% |  38.6 MiB/s | 197.4 KiB |  00m00s
- [ 26/304] Installing gstreamer1-0:1.26. 100% |  86.9 MiB/s |   5.4 MiB |  00m00s
- [ 27/304] Installing fribidi-0:1.0.16-2 100% |   7.7 MiB/s | 196.8 KiB |  00m00s
- [ 28/304] Installing libraw1394-0:2.1.2 100% |   6.1 MiB/s | 162.2 KiB |  00m00s
- [ 29/304] Installing libXfixes-0:6.0.1- 100% |  15.4 MiB/s |  31.6 KiB |  00m00s
- [ 30/304] Installing opus-0:1.5.2-2.fc4 100% |  83.7 MiB/s | 428.6 KiB |  00m00s
- [ 31/304] Installing libwebp-0:1.5.0-2. 100% | 103.3 MiB/s | 951.8 KiB |  00m00s
- [ 32/304] Installing libtevent-0:0.16.2 100% |  50.1 MiB/s | 102.5 KiB |  00m00s
- [ 33/304] Installing libimobiledevice-g 100% |  40.5 MiB/s | 124.4 KiB |  00m00s
- [ 34/304] Installing libwayland-cursor- 100% |  18.8 MiB/s |  38.5 KiB |  00m00s
- [ 35/304] Installing avahi-glib-0:0.9~r 100% |  23.9 MiB/s |  24.4 KiB |  00m00s
- [ 36/304] Installing libtinysparql-0:3. 100% | 117.9 MiB/s |   1.3 MiB |  00m00s
- [ 37/304] Installing serd-0:0.32.8-1.fc 100% |   5.4 MiB/s | 138.4 KiB |  00m00s
- [ 38/304] Installing libdav1d-0:1.5.3-1 100% |  34.6 MiB/s |   1.7 MiB |  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.                                   
- >>>                                                                             
- [ 39/304] Installing samba-common-2:4.2 100% |  10.5 MiB/s | 214.3 KiB |  00m00s
- [ 40/304] Installing spirv-tools-libs-0 100% | 137.7 MiB/s |   5.8 MiB |  00m00s
- [ 41/304] Installing hwdata-0:0.405-1.f 100% | 163.9 MiB/s |   9.8 MiB |  00m00s
- [ 42/304] Installing libglvnd-1:1.7.0-7 100% | 129.8 MiB/s | 531.6 KiB |  00m00s
- [ 43/304] Installing libglvnd-opengl-1: 100% |  73.0 MiB/s | 149.6 KiB |  00m00s
- [ 44/304] Installing libshaderc-0:2025. 100% | 143.3 MiB/s |   3.6 MiB |  00m00s
- [ 45/304] Installing libtheora-1:1.1.1- 100% |  94.5 MiB/s | 483.7 KiB |  00m00s
- [ 46/304] Installing libXv-0:1.0.13-2.f 100% |  30.5 MiB/s |  31.2 KiB |  00m00s
- [ 47/304] Installing fuse3-libs-0:3.16. 100% |  69.0 MiB/s | 282.6 KiB |  00m00s
- [ 48/304] Installing gsettings-desktop- 100% | 362.6 MiB/s |   5.4 MiB |  00m00s
- [ 49/304] Installing OpenCL-ICD-Loader- 100% |  35.1 MiB/s |  71.8 KiB |  00m00s
- [ 50/304] Installing libwayland-egl-0:1 100% |  13.2 MiB/s |  13.6 KiB |  00m00s
- [ 51/304] Installing vulkan-loader-0:1. 100% |  87.1 MiB/s | 535.0 KiB |  00m00s
- [ 52/304] Installing zix-0:0.8.0-2.fc42 100% |  29.4 MiB/s |  60.1 KiB |  00m00s
- [ 53/304] Installing sord-0:0.16.22-1.f 100% |   3.4 MiB/s |  84.0 KiB |  00m00s
- [ 54/304] Installing giflib-0:5.2.2-9.f 100% |  57.5 MiB/s | 117.8 KiB |  00m00s
- [ 55/304] Installing rav1e-libs-0:0.8.1 100% | 140.0 MiB/s |   3.1 MiB |  00m00s
- [ 56/304] Installing openjpeg-0:2.5.4-1 100% |  74.6 MiB/s | 458.2 KiB |  00m00s
- [ 57/304] Installing shared-mime-info-0 100% |  46.8 MiB/s |   2.6 MiB |  00m00s
- [ 58/304] Installing gdk-pixbuf2-0:2.42 100% |  74.1 MiB/s |   2.5 MiB |  00m00s
- [ 59/304] Installing libwayland-server- 100% |  38.9 MiB/s |  79.7 KiB |  00m00s
- [ 60/304] Installing mpg123-libs-0:1.32 100% |  99.7 MiB/s | 816.6 KiB |  00m00s
- [ 61/304] Installing libxshmfence-0:1.3 100% |   6.6 MiB/s |  13.6 KiB |  00m00s
- [ 62/304] Installing libdvdread-0:6.1.3 100% |  52.7 MiB/s | 161.8 KiB |  00m00s
- [ 63/304] Installing libvmaf-0:3.0.0-3. 100% | 134.8 MiB/s | 828.4 KiB |  00m00s
- [ 64/304] Installing libaom-0:3.13.1-1. 100% | 104.8 MiB/s |   5.0 MiB |  00m00s
- [ 65/304] Installing xml-common-0:0.6.3 100% |  26.4 MiB/s |  81.1 KiB |  00m00s
- [ 66/304] Installing liblc3-0:1.1.3-1.f 100% |  55.9 MiB/s | 171.8 KiB |  00m00s
- [ 67/304] Installing lame-libs-0:3.100- 100% | 200.4 MiB/s |   1.2 MiB |  00m00s
- [ 68/304] Installing gsm-0:1.0.22-8.fc4 100% |  34.4 MiB/s |  70.4 KiB |  00m00s
- [ 69/304] Installing fdk-aac-free-0:2.0 100% |  67.0 MiB/s | 617.3 KiB |  00m00s
- [ 70/304] Installing iso-codes-0:4.17.0 100% | 276.7 MiB/s |  20.5 MiB |  00m00s
- [ 71/304] Installing libdvdnav-0:6.1.1- 100% |  59.4 MiB/s | 121.7 KiB |  00m00s
- [ 72/304] Installing libopenmpt-0:0.8.6 100% | 129.1 MiB/s |   1.8 MiB |  00m00s
- [ 73/304] Installing gtk-update-icon-ca 100% |   2.7 MiB/s |  63.3 KiB |  00m00s
- [ 74/304] Installing libgsf-0:1.14.56-1 100% |  34.6 MiB/s | 991.5 KiB |  00m00s
- [ 75/304] Installing libnotify-0:0.8.8- 100% |   5.5 MiB/s | 129.0 KiB |  00m00s
- [ 76/304] Installing sratom-0:0.6.22-1. 100% |  22.5 MiB/s |  46.0 KiB |  00m00s
- [ 77/304] Installing lilv-libs-0:0.26.4 100% |  62.1 MiB/s | 127.2 KiB |  00m00s
- [ 78/304] Installing mesa-libGLU-0:9.0. 100% |  88.5 MiB/s | 362.6 KiB |  00m00s
- [ 79/304] Installing libpciaccess-0:0.1 100% |  22.4 MiB/s |  45.9 KiB |  00m00s
- [ 80/304] Installing libdrm-0:2.4.131-1 100% |  39.9 MiB/s | 408.5 KiB |  00m00s
- [ 81/304] Installing osinfo-db-0:202512 100% |  40.7 MiB/s |   4.4 MiB |  00m00s
- [ 82/304] Installing libusbmuxd-0:2.1.0 100% |  37.5 MiB/s |  76.8 KiB |  00m00s
- [ 83/304] Installing libimobiledevice-0 100% |  74.8 MiB/s | 306.3 KiB |  00m00s
- [ 84/304] Installing libXcursor-0:1.2.3 100% |  28.9 MiB/s |  59.1 KiB |  00m00s
- [ 85/304] Installing libXdamage-0:1.1.6 100% |  44.1 MiB/s |  45.2 KiB |  00m00s
- [ 86/304] Installing libavc1394-0:0.5.4 100% |   6.3 MiB/s | 155.7 KiB |  00m00s
- [ 87/304] Installing libdc1394-0:2.2.7- 100% |  87.1 MiB/s | 356.7 KiB |  00m00s
- [ 88/304] Installing libiec61883-0:1.2. 100% |  44.7 MiB/s |  91.5 KiB |  00m00s
- [ 89/304] Installing osinfo-db-tools-0: 100% |   8.0 MiB/s | 197.2 KiB |  00m00s
- [ 90/304] Installing nss-softokn-freebl 100% | 107.8 MiB/s | 993.2 KiB |  00m00s
- [ 91/304] Installing nss-softokn-0:3.12 100% | 131.3 MiB/s |   2.0 MiB |  00m00s
- [ 92/304] Installing nss-0:3.121.0-1.fc 100% |  67.6 MiB/s |   1.9 MiB |  00m00s
- [ 93/304] Installing nss-sysinit-0:3.12 100% | 732.9 KiB/s |  19.1 KiB |  00m00s
- [ 94/304] Installing libXrandr-0:1.5.4- 100% |  27.8 MiB/s |  57.0 KiB |  00m00s
- [ 95/304] Installing abattis-cantarell- 100% |  63.3 MiB/s | 194.4 KiB |  00m00s
- [ 96/304] Installing libXtst-0:1.2.5-2. 100% |  33.8 MiB/s |  34.6 KiB |  00m00s
- [ 97/304] Installing flac-libs-0:1.4.3- 100% |  97.8 MiB/s | 700.8 KiB |  00m00s
- [ 98/304] Installing libsndfile-0:1.2.2 100% | 107.7 MiB/s | 551.6 KiB |  00m00s
- [ 99/304] Installing libbs2b-0:3.1.0-35 100% |   3.2 MiB/s |  74.4 KiB |  00m00s
- [100/304] Installing libgusb-0:0.4.9-3. 100% |  53.3 MiB/s | 163.7 KiB |  00m00s
- [101/304] Installing colord-libs-0:1.4. 100% | 104.2 MiB/s | 853.7 KiB |  00m00s
- [102/304] Installing libv4l-0:1.28.1-3. 100% |  59.6 MiB/s | 366.2 KiB |  00m00s
- [103/304] Installing libyuv-0:0-0.56.20 100% | 111.5 MiB/s | 685.3 KiB |  00m00s
- [104/304] Installing aribb24-0:1.0.3^20 100% |  27.1 MiB/s |  83.2 KiB |  00m00s
- [105/304] Installing zvbi-0:0.2.43-2.fc 100% |  21.6 MiB/s |   1.2 MiB |  00m00s
- [106/304] Installing libvdpau-0:1.5-9.f 100% |   7.3 MiB/s |  22.4 KiB |  00m00s
- [107/304] Installing libXxf86vm-0:1.1.6 100% |  29.8 MiB/s |  30.5 KiB |  00m00s
- [108/304] Installing libXinerama-0:1.1. 100% |  19.6 MiB/s |  20.1 KiB |  00m00s
- [109/304] Installing lttng-ust-0:2.13.8 100% |  93.1 MiB/s |   1.1 MiB |  00m00s
- [110/304] Installing libcamera-0:0.4.0- 100% | 128.9 MiB/s |   1.9 MiB |  00m00s
- [111/304] Installing inih-0:62-1.fc42.x 100% |  23.1 MiB/s |  23.6 KiB |  00m00s
- [112/304] Installing inih-cpp-0:62-1.fc 100% |  18.0 MiB/s |  36.8 KiB |  00m00s
- [113/304] Installing exiv2-libs-0:0.28. 100% | 135.5 MiB/s |   2.8 MiB |  00m00s
- [114/304] Installing libgexiv2-0:0.14.6 100% |  68.7 MiB/s | 281.4 KiB |  00m00s
- [115/304] Installing gpgme-0:1.24.3-1.f 100% |  21.4 MiB/s | 590.4 KiB |  00m00s
- [116/304] Installing gpgmepp-0:1.24.3-1 100% | 105.1 MiB/s | 430.4 KiB |  00m00s
- [117/304] Installing gobject-introspect 100% |  64.6 MiB/s | 397.1 KiB |  00m00s
- [118/304] Installing upower-libs-0:1.91 100% |  58.6 MiB/s | 180.1 KiB |  00m00s
- [119/304] Installing ModemManager-glib- 100% |  39.1 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.                     
- >>>                                                                             
- [120/304] Installing geoclue2-0:2.8.0-1 100% |  14.7 MiB/s | 405.6 KiB |  00m00s
- [121/304] Installing poppler-data-0:0.4 100% | 122.7 MiB/s |  12.4 MiB |  00m00s
- [122/304] Installing orc-0:0.4.41-1.fc4 100% |  25.4 MiB/s | 728.9 KiB |  00m00s
- [123/304] Installing graphene-0:1.10.6- 100% |  53.4 MiB/s | 164.1 KiB |  00m00s
- [124/304] Installing cdparanoia-libs-0: 100% |  58.1 MiB/s | 118.9 KiB |  00m00s
- [125/304] Installing fuse-common-0:3.16 100% | 285.2 KiB/s | 292.0   B |  00m00s
- [126/304] Installing fuse3-0:3.16.2-5.f 100% |   2.4 MiB/s | 132.0 KiB |  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.               
- >>>                                                                             
- [127/304] Installing rtkit-0:0.11-66.fc 100% |   2.8 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
- >>>                                                                             
- [128/304] Installing libproxy-0:0.5.8-2 100% |  25.5 MiB/s | 104.5 KiB |  00m00s
- [129/304] Installing uchardet-0:0.0.8-7 100% |  10.8 MiB/s | 277.7 KiB |  00m00s
- [130/304] Installing totem-pl-parser-0: 100% |  45.6 MiB/s | 326.9 KiB |  00m00s
- [131/304] Installing libxslt-0:1.1.43-1 100% |  13.6 MiB/s | 459.2 KiB |  00m00s
- [132/304] Installing libosinfo-0:1.12.0 100% |  30.1 MiB/s |   1.2 MiB |  00m00s
- [133/304] Installing libiptcdata-0:1.0. 100% |   4.9 MiB/s | 174.9 KiB |  00m00s
- [134/304] Installing libexif-0:0.6.25-1 100% | 242.9 MiB/s |   2.7 MiB |  00m00s
- [135/304] Installing libcue-0:2.3.0-11. 100% |  44.6 MiB/s |  91.3 KiB |  00m00s
- [136/304] Installing exempi-0:2.6.4-7.f 100% |  45.1 MiB/s |   1.4 MiB |  00m00s
- [137/304] Installing sound-theme-freede 100% |  28.5 MiB/s | 467.2 KiB |  00m00s
- [138/304] Installing bluez-libs-0:5.84- 100% |  64.9 MiB/s | 199.4 KiB |  00m00s
- [139/304] Installing webrtc-audio-proce 100% | 124.6 MiB/s |   1.4 MiB |  00m00s
- [140/304] Installing libsbc-0:2.0-6.fc4 100% |  46.2 MiB/s |  94.5 KiB |  00m00s
- [141/304] Installing libldac-0:2.0.2.3- 100% |  41.1 MiB/s |  84.2 KiB |  00m00s
- [142/304] Installing libebur128-0:1.2.6 100% |  19.9 MiB/s |  40.7 KiB |  00m00s
- [143/304] Installing fftw-libs-single-0 100% | 144.8 MiB/s |   3.6 MiB |  00m00s
- [144/304] Installing cups-filesystem-1: 100% | 222.7 KiB/s |   1.8 KiB |  00m00s
- [145/304] Installing cups-libs-1:2.4.16 100% | 101.0 MiB/s | 620.2 KiB |  00m00s
- [146/304] Installing xprop-0:1.2.8-3.fc 100% |   2.4 MiB/s |  56.1 KiB |  00m00s
- [147/304] Installing at-spi2-core-0:2.5 100% | 154.8 MiB/s |   1.5 MiB |  00m00s
- [148/304] Installing atk-0:2.56.8-1.fc4 100% |  81.4 MiB/s | 250.0 KiB |  00m00s
- [149/304] Installing at-spi2-atk-0:2.56 100% |  27.1 MiB/s | 277.7 KiB |  00m00s
- [150/304] Installing adwaita-icon-theme 100% |  17.9 MiB/s |   2.4 MiB |  00m00s
- [151/304] Installing adwaita-cursor-the 100% | 184.3 MiB/s |  11.4 MiB |  00m00s
- [152/304] Installing adwaita-icon-theme 100% |  21.3 MiB/s |   1.3 MiB |  00m00s
- [153/304] Installing libepoxy-0:1.5.10- 100% | 135.3 MiB/s |   1.1 MiB |  00m00s
- [154/304] Installing libcloudproviders- 100% |  41.1 MiB/s | 126.2 KiB |  00m00s
- [155/304] Installing libXcomposite-0:0. 100% |  22.5 MiB/s |  46.0 KiB |  00m00s
- [156/304] Installing hicolor-icon-theme 100% |   6.0 MiB/s | 179.5 KiB |  00m00s
- [157/304] Installing highway-0:1.3.0-1. 100% | 177.2 MiB/s |   5.5 MiB |  00m00s
- [158/304] Installing libjxl-1:0.11.1-4. 100% | 132.7 MiB/s |   3.1 MiB |  00m00s
- [159/304] Installing lmdb-libs-0:0.9.34 100% |  35.0 MiB/s | 107.4 KiB |  00m00s
- [160/304] Installing libldb-2:4.22.7-1. 100% |  55.7 MiB/s | 456.6 KiB |  00m00s
- [161/304] Installing libdatrie-0:0.2.13 100% |  28.8 MiB/s |  58.9 KiB |  00m00s
- [162/304] Installing libthai-0:0.1.29-1 100% |  85.2 MiB/s | 785.2 KiB |  00m00s
- [163/304] Installing glibc-gconv-extra- 100% |  73.8 MiB/s |   7.3 MiB |  00m00s
- [164/304] Installing libwbclient-2:4.22 100% |  22.6 MiB/s |  69.3 KiB |  00m00s
- [165/304] Installing samba-common-libs- 100% |  42.5 MiB/s | 261.4 KiB |  00m00s
- [166/304] Installing samba-client-libs- 100% | 127.7 MiB/s |  19.5 MiB |  00m00s
- [167/304] Installing libsmbclient-2:4.2 100% |  53.9 MiB/s | 165.5 KiB |  00m00s
- [168/304] Installing tesseract-tessdata 100% |  15.3 MiB/s |  15.7 KiB |  00m00s
- [169/304] Installing tesseract-langpack 100% | 140.1 MiB/s |   3.9 MiB |  00m00s
- [170/304] Installing tesseract-common-0 100% |   5.1 MiB/s |  20.9 KiB |  00m00s
- [171/304] Installing liblerc-0:4.0.0-8. 100% | 103.8 MiB/s | 637.6 KiB |  00m00s
- [172/304] Installing jbigkit-libs-0:2.1 100% |  60.3 MiB/s | 123.4 KiB |  00m00s
- [173/304] Installing libtiff-0:4.7.1-1. 100% | 102.0 MiB/s | 626.6 KiB |  00m00s
- [174/304] Installing leptonica-0:1.85.0 100% | 131.2 MiB/s |   3.0 MiB |  00m00s
- [175/304] Installing tesseract-libs-0:5 100% | 143.1 MiB/s |   3.3 MiB |  00m00s
- [176/304] Installing gdk-pixbuf2-module 100% |  27.6 MiB/s |  56.6 KiB |  00m00s
- [177/304] Installing libvpx-0:1.15.0-3. 100% | 141.6 MiB/s |   3.3 MiB |  00m00s
- [178/304] Installing openh264-0:2.5.1-1 100% | 121.8 MiB/s |   1.1 MiB |  00m00s
- [179/304] Installing zimg-0:3.0.6-2.fc4 100% | 111.8 MiB/s | 572.4 KiB |  00m00s
- [180/304] Installing libdovi-0:3.3.1-2. 100% | 116.3 MiB/s | 595.4 KiB |  00m00s
- [181/304] Installing libplacebo-0:7.349 100% | 126.4 MiB/s |   1.1 MiB |  00m00s
- [182/304] Installing pixman-0:0.46.2-1. 100% | 115.8 MiB/s | 711.4 KiB |  00m00s
- [183/304] Installing libasyncns-0:0.8-3 100% |  29.7 MiB/s |  60.8 KiB |  00m00s
- [184/304] Installing pulseaudio-libs-0: 100% | 211.2 MiB/s |   3.4 MiB |  00m00s
- [185/304] Installing pipewire-libs-0:1. 100% | 109.9 MiB/s |   8.7 MiB |  00m00s
- [186/304] Installing pipewire-jack-audi 100% | 304.7 KiB/s | 312.0   B |  00m00s
- [187/304] Installing pipewire-jack-audi 100% |  18.1 MiB/s | 499.2 KiB |  00m00s
- [188/304] Installing wireplumber-libs-0 100% |  82.8 MiB/s |   1.3 MiB |  00m00s
- [189/304] Installing wireplumber-0:0.5. 100% |  12.4 MiB/s | 443.2 KiB |  00m00s
- [190/304] Installing flite-0:2.2-11.fc4 100% | 119.9 MiB/s |  21.6 MiB |  00m00s
- [191/304] Installing libcanberra-0:0.30 100% |   5.4 MiB/s | 291.3 KiB |  00m00s
- [192/304] Installing graphite2-0:1.3.14 100% |   7.4 MiB/s | 197.9 KiB |  00m00s
- [193/304] Installing harfbuzz-0:10.4.0- 100% | 125.4 MiB/s |   2.8 MiB |  00m00s
- [194/304] Installing freetype-0:2.13.3- 100% |  93.3 MiB/s | 859.9 KiB |  00m00s
- [195/304] Installing mbedtls-0:3.6.5-1. 100% | 132.8 MiB/s |   1.3 MiB |  00m00s
- [196/304] Installing lm_sensors-libs-0: 100% |  42.4 MiB/s |  86.9 KiB |  00m00s
- [197/304] Installing mesa-dri-drivers-0 100% | 137.7 MiB/s |  46.7 MiB |  00m00s
- [198/304] Installing mesa-libgbm-0:25.1 100% |  20.0 MiB/s |  20.5 KiB |  00m00s
- [199/304] Installing mesa-libEGL-0:25.1 100% |  82.0 MiB/s | 335.9 KiB |  00m00s
- [200/304] Installing libglvnd-egl-1:1.7 100% |  22.9 MiB/s |  70.3 KiB |  00m00s
- [201/304] Installing libglvnd-glx-1:1.7 100% |  99.4 MiB/s | 610.6 KiB |  00m00s
- [202/304] Installing mesa-libGL-0:25.1. 100% |  75.0 MiB/s | 307.2 KiB |  00m00s
- [203/304] Installing libva-0:2.22.0-4.f 100% |  65.1 MiB/s | 333.4 KiB |  00m00s
- [204/304] Installing libavutil-free-0:7 100% | 104.6 MiB/s | 964.2 KiB |  00m00s
- [205/304] Installing libavutil-free-dev 100% |  53.2 MiB/s | 708.0 KiB |  00m00s
- [206/304] Installing libpostproc-free-0 100% |  42.4 MiB/s |  86.9 KiB |  00m00s
- [207/304] Installing libpostproc-free-d 100% |   6.7 MiB/s |   6.8 KiB |  00m00s
- [208/304] Installing libswscale-free-0: 100% | 101.0 MiB/s | 620.7 KiB |  00m00s
- [209/304] Installing libswscale-free-de 100% |  21.6 MiB/s |  22.2 KiB |  00m00s
- [210/304] Installing freeglut-0:3.8.0-1 100% |  94.3 MiB/s | 483.1 KiB |  00m00s
- [211/304] Installing libcaca-0:0.99-0.7 100% | 122.2 MiB/s | 875.7 KiB |  00m00s
- [212/304] Installing cpuinfo-0:24.09.26 100% |   4.1 MiB/s | 109.7 KiB |  00m00s
- [213/304] Installing svt-av1-libs-0:2.3 100% | 130.8 MiB/s |   5.6 MiB |  00m00s
- [214/304] Installing libavif-0:1.1.1-1. 100% |  70.1 MiB/s | 215.2 KiB |  00m00s
- [215/304] Installing libsodium-0:1.0.21 100% |  88.0 MiB/s | 450.5 KiB |  00m00s
- [216/304] Installing cjson-0:1.7.18-2.f 100% |   1.4 MiB/s |  65.3 KiB |  00m00s
- [217/304] Installing librist-0:0.2.7-9. 100% |  37.8 MiB/s | 154.8 KiB |  00m00s
- [218/304] Installing libudfread-0:1.1.2 100% |  32.9 MiB/s |  67.3 KiB |  00m00s
- [219/304] Installing openpgm-0:5.3.128- 100% |  77.6 MiB/s | 317.7 KiB |  00m00s
- [220/304] Installing zeromq-0:4.3.5-21. 100% |  28.4 MiB/s | 902.7 KiB |  00m00s
- [221/304] Installing libsamplerate-0:0. 100% | 130.5 MiB/s |   1.4 MiB |  00m00s
- [222/304] Installing fftw-libs-double-0 100% | 142.7 MiB/s |   3.4 MiB |  00m00s
- [223/304] Installing rubberband-libs-0: 100% |  89.9 MiB/s | 460.2 KiB |  00m00s
- [224/304] Installing libunibreak-0:6.1- 100% |  68.8 MiB/s | 140.8 KiB |  00m00s
- [225/304] Installing libcdio-0:2.1.0-14 100% |  20.6 MiB/s | 631.8 KiB |  00m00s
- [226/304] Installing libcdio-paranoia-0 100% |   7.6 MiB/s | 194.0 KiB |  00m00s
- [227/304] Installing srt-libs-0:1.5.4-2 100% | 108.4 MiB/s | 998.9 KiB |  00m00s
- [228/304] Installing librabbitmq-0:0.15 100% |  44.3 MiB/s |  90.7 KiB |  00m00s
- [229/304] Installing libmodplug-1:0.8.9 100% |  87.2 MiB/s | 357.0 KiB |  00m00s
- [230/304] Installing game-music-emu-0:0 100% |  81.2 MiB/s | 332.8 KiB |  00m00s
- [231/304] Installing vid.stab-0:1.1.1-5 100% |  45.6 MiB/s |  93.4 KiB |  00m00s
- [232/304] Installing libmysofa-0:1.3.3- 100% |  39.1 MiB/s |  80.1 KiB |  00m00s
- [233/304] Installing openal-soft-0:1.24 100% |  44.6 MiB/s |   1.6 MiB |  00m00s
- [234/304] Installing google-noto-fonts- 100% |  18.1 MiB/s |  18.5 KiB |  00m00s
- [235/304] Installing google-noto-sans-v 100% | 126.5 MiB/s |   1.4 MiB |  00m00s
- [236/304] Installing default-fonts-core 100% |   3.6 MiB/s |  18.2 KiB |  00m00s
- [237/304] Installing fontconfig-0:2.16. 100% | 731.3 KiB/s | 783.9 KiB |  00m01s
- [238/304] Installing cairo-0:1.18.2-3.f 100% | 104.9 MiB/s |   1.8 MiB |  00m00s
- [239/304] Installing cairo-gobject-0:1. 100% |  35.1 MiB/s |  36.0 KiB |  00m00s
- [240/304] Installing libgxps-0:0.3.2-10 100% |  47.4 MiB/s | 194.3 KiB |  00m00s
- [241/304] Installing libaribcaption-0:1 100% |  61.0 MiB/s | 249.9 KiB |  00m00s
- [242/304] Installing libass-0:0.17.3-3. 100% |  71.2 MiB/s | 291.5 KiB |  00m00s
- [243/304] Installing libbluray-0:1.3.4- 100% |  78.0 MiB/s | 399.2 KiB |  00m00s
- [244/304] Installing libXft-0:2.3.8-8.f 100% |  55.3 MiB/s | 169.9 KiB |  00m00s
- [245/304] Installing pango-0:1.56.4-2.f 100% |  24.7 MiB/s |   1.0 MiB |  00m00s
- [246/304] Installing gtk3-0:3.24.52-1.f 100% | 152.3 MiB/s |  22.5 MiB |  00m00s
- [247/304] Installing rsvg-pixbuf-loader 100% |  82.2 MiB/s | 336.7 KiB |  00m00s
- [248/304] Installing librsvg2-0:2.60.0- 100% | 138.6 MiB/s |   5.1 MiB |  00m00s
- [249/304] Installing libdecor-0:0.2.4-1 100% |  54.6 MiB/s | 167.8 KiB |  00m00s
- [250/304] Installing SDL3-0:3.4.0-3.fc4 100% | 131.1 MiB/s |   3.0 MiB |  00m00s
- [251/304] Installing sdl2-compat-0:2.32 100% | 100.1 MiB/s | 410.1 KiB |  00m00s
- [252/304] Installing sdl12-compat-0:1.2 100% |  65.8 MiB/s | 202.1 KiB |  00m00s
- [253/304] Installing libvisual-1:0.4.2- 100% |  18.0 MiB/s | 497.1 KiB |  00m00s
- [254/304] Installing gstreamer1-plugins 100% | 115.5 MiB/s |   7.4 MiB |  00m00s
- [255/304] Installing xdg-desktop-portal 100% |  31.4 MiB/s |   1.9 MiB |  00m00s
- [256/304] Installing poppler-0:25.02.0- 100% | 123.8 MiB/s |   3.7 MiB |  00m00s
- [257/304] Installing poppler-glib-0:25. 100% |  99.8 MiB/s | 613.3 KiB |  00m00s
- [258/304] Installing lpcnetfreedv-0:0.5 100% | 187.6 MiB/s |  14.8 MiB |  00m00s
- [259/304] Installing codec2-0:1.2.0-6.f 100% | 124.5 MiB/s |   1.4 MiB |  00m00s
- [260/304] Installing soxr-0:0.1.3-18.fc 100% |  63.0 MiB/s | 193.6 KiB |  00m00s
- [261/304] Installing libswresample-free 100% |  72.6 MiB/s | 148.7 KiB |  00m00s
- [262/304] Installing libswresample-free 100% |  27.0 MiB/s |  27.6 KiB |  00m00s
- [263/304] Installing xvidcore-0:1.3.7-1 100% | 143.2 MiB/s | 880.1 KiB |  00m00s
- [264/304] Installing vo-amrwbenc-0:0.1. 100% |  75.9 MiB/s | 155.4 KiB |  00m00s
- [265/304] Installing twolame-libs-0:0.4 100% |  14.8 MiB/s | 166.6 KiB |  00m00s
- [266/304] Installing speex-0:1.2.0-19.f 100% |  63.7 MiB/s | 130.4 KiB |  00m00s
- [267/304] Installing snappy-0:1.2.1-4.f 100% |  35.6 MiB/s |  72.9 KiB |  00m00s
- [268/304] Installing opencore-amr-0:0.1 100% |  85.7 MiB/s | 351.2 KiB |  00m00s
- [269/304] Installing ilbc-0:3.0.4-13.fc 100% |  47.3 MiB/s |  96.9 KiB |  00m00s
- [270/304] Installing libavcodec-free-0: 100% | 132.5 MiB/s |   9.8 MiB |  00m00s
- [271/304] Installing libavcodec-free-de 100% |  63.0 MiB/s | 258.0 KiB |  00m00s
- [272/304] Installing libchromaprint-0:1 100% |  32.3 MiB/s |  66.1 KiB |  00m00s
- [273/304] Installing libavformat-free-0 100% | 122.5 MiB/s |   2.6 MiB |  00m00s
- [274/304] Installing libavformat-free-d 100% |  75.0 MiB/s | 153.7 KiB |  00m00s
- [275/304] Installing libavfilter-free-0 100% | 132.5 MiB/s |   4.1 MiB |  00m00s
- [276/304] Installing libavfilter-free-d 100% |  35.1 MiB/s |  71.9 KiB |  00m00s
- [277/304] Installing libavdevice-free-0 100% |  70.4 MiB/s | 216.4 KiB |  00m00s
- [278/304] Installing libavdevice-free-d 100% |   9.5 MiB/s |  19.4 KiB |  00m00s
- [279/304] Installing ffmpeg-free-devel- 100% | 135.7 MiB/s | 555.7 KiB |  00m00s
- [280/304] Installing localsearch-0:3.9. 100% |  50.3 MiB/s |   3.9 MiB |  00m00s
- [281/304] Installing xdg-desktop-portal 100% |  17.3 MiB/s | 477.2 KiB |  00m00s
- [282/304] Installing libcanberra-gtk3-0 100% |   2.9 MiB/s |  82.0 KiB |  00m00s
- [283/304] Installing avif-pixbuf-loader 100% |  19.7 MiB/s |  20.2 KiB |  00m00s
- [284/304] Installing intel-vpl-gpu-rt-0 100% | 142.7 MiB/s |  11.7 MiB |  00m00s
- [285/304] Installing intel-mediasdk-0:2 100% | 161.7 MiB/s |  22.5 MiB |  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. 
- >>>                                                                             
- [286/304] Installing pipewire-0:1.4.11- 100% |   6.8 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' 
- >>>                                                                             
- [287/304] Installing pipewire-alsa-0:1. 100% |  31.2 MiB/s | 159.8 KiB |  00m00s
- [288/304] Installing pipewire-pulseaudi 100% |   6.6 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
- >>>                                                                             
- [289/304] Installing pipewire-plugin-li 100% |  48.0 MiB/s | 147.3 KiB |  00m00s
- [290/304] Installing jxl-pixbuf-loader- 100% |  14.7 MiB/s |  30.2 KiB |  00m00s
- [291/304] Installing glib-networking-0: 100% | 105.7 MiB/s | 757.8 KiB |  00m00s
- [292/304] Installing upower-0:1.91.0-1. 100% |   5.7 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' 
- >>>                                                                             
- [293/304] Installing exiv2-0:0.28.6-2.f 100% | 161.1 MiB/s |  12.2 MiB |  00m00s
- [294/304] Installing libcamera-ipa-0:0. 100% |  13.1 MiB/s | 551.9 KiB |  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.            
- >>>                                                                             
- [295/304] Installing usbmuxd-0:1.1.1^20 100% |   2.6 MiB/s | 151.5 KiB |  00m00s
- [296/304] Installing mesa-vulkan-driver 100% | 166.6 MiB/s | 129.1 MiB |  00m01s
- [297/304] Installing webp-pixbuf-loader 100% |   7.3 MiB/s |  29.8 KiB |  00m00s
- [298/304] Installing tinysparql-0:3.9.2 100% |  24.5 MiB/s |   2.5 MiB |  00m00s
- [299/304] Installing mesa-va-drivers-0: 100% | 960.9 KiB/s | 984.0   B |  00m00s
- [300/304] Installing adwaita-mono-fonts 100% | 139.2 MiB/s |   5.4 MiB |  00m00s
- [301/304] Installing adwaita-sans-fonts 100% | 122.8 MiB/s |   1.7 MiB |  00m00s
- [302/304] Installing low-memory-monitor 100% |   2.1 MiB/s |  67.7 KiB |  00m00s
- [303/304] Installing dconf-0:0.40.0-15. 100% |   4.7 MiB/s | 320.0 KiB |  00m00s
- [304/304] Installing logrotate-0:3.22.0 100% |  90.2 KiB/s | 151.6 KiB |  00m02s
- >>> 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' 
- >>>                                                                             
- >>> 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" "ffmpeg-free-devel"
- ffmpeg-free-devel-7.1.2-1.fc42.x86_64

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> installed conf-ffmpeg.1
-> retrieved dune.3.22.1, dune-configurator.3.22.1  (cached)
-> retrieved ffmpeg-avcodec.1.3.0, ffmpeg-avutil.1.3.0  (cached)
-> installed dune.3.22.1
-> installed csexp.1.5.2
-> installed dune-configurator.3.22.1
-> installed ffmpeg-avutil.1.3.0
-> installed ffmpeg-avcodec.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-10 15:02.58 ---> saved as "9a907aaebdeb89e117fd7672d73a1b51360d6a9a86b3307b3820d1fda5276d3b"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ffmpeg-avcodec.1.3.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile ffmpeg-avcodec 1.3.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   ffmpeg-avcodec.1.3.0
-> installed ffmpeg-avcodec.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-10 15:03.06 ---> saved as "075daaaf8ba3ed7a801ad83e521ac09a1dbcda7cc6b8095013914a0e5c4d3cc2"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ffmpeg-avcodec.1.3.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'ffmpeg-avcodec.1.3.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile ffmpeg-avcodec 1.3.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [ffmpeg-avcodec: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ffmpeg-avcodec" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ffmpeg-avcodec.1.3.0)
-> compiled  ffmpeg-avcodec.1.3.0
-> removed   ffmpeg-avcodec.1.3.0
-> installed ffmpeg-avcodec.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-10 15:03.13 ---> saved as "b3ff1aec9eb2691bacce31b535fd0de0ab38b1ab98bea24c1d4647e9c1809e38"
Job succeeded
2026-04-10 15:03.19: Job succeeded