(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 centos-10-ocaml-5.4/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29703/head" && git reset --hard d2c2fde7
git fetch origin master
git merge --no-edit 812fb968341c1eec82e23a29dcf794db8f990936
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-10-ocaml-5.4@sha256:3df8ea95f3a1a29bc6054c6ae4135d638fcbcd3bced114f5ef8a492d1c5705b5
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 "\"centos-10\""; 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 "\"centos-10\""; 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:centos-10-ocaml-5.4@sha256:3df8ea95f3a1a29bc6054c6ae4135d638fcbcd3bced114f5ef8a492d1c5705b5-ffmpeg-avcodec.1.3.0-d2c2fde7ed0f03ab1c97ec11eae2846e1c000577"
2026-04-10 14:44.28: Using OBuilder spec:
((from ocaml/opam:centos-10-ocaml-5.4@sha256:3df8ea95f3a1a29bc6054c6ae4135d638fcbcd3bced114f5ef8a492d1c5705b5)
 (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 \"\\\"centos-10\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != '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 \"\\\"centos-10\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != '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:46.19: Waiting for worker…
2026-04-10 14:51.32: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
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:centos-10-ocaml-5.4@sha256:3df8ea95f3a1a29bc6054c6ae4135d638fcbcd3bced114f5ef8a492d1c5705b5)
Unable to find image 'ocaml/opam:centos-10-ocaml-5.4@sha256:3df8ea95f3a1a29bc6054c6ae4135d638fcbcd3bced114f5ef8a492d1c5705b5' locally
docker.io/ocaml/opam@sha256:3df8ea95f3a1a29bc6054c6ae4135d638fcbcd3bced114f5ef8a492d1c5705b5: Pulling from ocaml/opam
389319a4fdad: Already exists
ea3c761fa9fe: Already exists
f484e802f90f: Already exists
91a9e9cef4df: Already exists
a5da9e6ce421: Already exists
1ae8e23b13b7: Already exists
20b25ae12b8e: Already exists
0f3616e39c05: Already exists
b3dc15898c46: Already exists
d20bd6c6fd95: Already exists
fe40943cd426: Already exists
e2df2bc9928f: Already exists
dbb2bc376d4d: Already exists
b8962c94fa34: Already exists
de277c3ed471: Already exists
0e23d428ec56: Already exists
0c43a4f87178: Already exists
5e2672fa552b: Already exists
5e2672fa552b: Already exists
d42a484616d0: Already exists
ad3631267861: Already exists
41c9a141625d: Already exists
bc09b3f946f9: Already exists
4f4fb700ef54: Already exists
833c7dc17211: Already exists
b7c7e42680b2: Already exists
96003706115c: Already exists
0beeb1bbed27: Already exists
535d3457fbf9: Already exists
af893af48cc7: Already exists
36ea7bc623af: Already exists
db86fd53d6b3: Already exists
6aff0ae9cc98: Already exists
4b17ecca9ee3: Already exists
ffdfe6acc837: Already exists
e0b24a5fde0d: Already exists
052405e3adc8: Already exists
ac971714f745: Already exists
c0c70709cdd7: Already exists
5076d2321f36: Already exists
266804a2087d: Already exists
589430d93f7d: Already exists
0d648297eaa3: Pulling fs layer
b5f1cadbed62: Pulling fs layer
8ec066557f07: Pulling fs layer
aacd17c8d557: Pulling fs layer
22e79693c8ad: Pulling fs layer
aacd17c8d557: Waiting
22e79693c8ad: Waiting
8ec066557f07: Verifying Checksum
8ec066557f07: Download complete
0d648297eaa3: Verifying Checksum
0d648297eaa3: Download complete
0d648297eaa3: Pull complete
aacd17c8d557: Verifying Checksum
aacd17c8d557: Download complete
22e79693c8ad: Verifying Checksum
22e79693c8ad: Download complete
b5f1cadbed62: Download complete
b5f1cadbed62: Pull complete
8ec066557f07: Pull complete
aacd17c8d557: Pull complete
22e79693c8ad: Pull complete
Digest: sha256:3df8ea95f3a1a29bc6054c6ae4135d638fcbcd3bced114f5ef8a492d1c5705b5
Status: Downloaded newer image for ocaml/opam@sha256:3df8ea95f3a1a29bc6054c6ae4135d638fcbcd3bced114f5ef8a492d1c5705b5
2026-04-10 14:51.34 ---> using "88880de3da5b8c322fa1ecbe905a8452c3b2ec69609c34286b83043c69b71ae2" 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:51.34 ---> using "f0f597da2a5fdae3656dc4447d8e7f2ea093f59fa531e148d7daed286696219c" 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:51.34 ---> using "8bcb729a55208b5f2eace737e1804bbfcaf5f914aeea3456c822735c32734841" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=centos os-version=10
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.1
2026-04-10 14:51.34 ---> using "1a9e9285c6ca841c0ece37a211302cdaffda21187ca180895636cc4f51b2657b" 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:51.34 ---> using "154a7402b918b18d517a0e77ecd324294030561883518915d047c0846720bdba" from cache

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

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-10 14:51.39 ---> saved as "2cbf3e0ddf5c60dbac086ec82a6773d2910df06aa9869fbf08615cf517aa943c"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 10 - BaseOS                        44 kB/s |  14 kB     00:00    
- CentOS Stream 10 - BaseOS                       199 kB/s | 6.9 MB     00:35    
- CentOS Stream 10 - AppStream                     42 kB/s |  15 kB     00:00    
- CentOS Stream 10 - AppStream                    156 kB/s | 3.6 MB     00:23    
- CentOS Stream 10 - CRB                           45 kB/s |  14 kB     00:00    
- CentOS Stream 10 - CRB                          440 kB/s | 834 kB     00:01    
- CentOS Stream 10 - Extras packages               58 kB/s |  16 kB     00:00    
- Metadata cache created.
2026-04-10 14:52.45 ---> saved as "798a63082444b5007a0c6a1974d6c251957bbe9ed45ed33b476da7bd1f17b664"

/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:52.45 ---> saved as "b05aed807d2c9e0fe1fe5a11301e7b9e6766f4fc98676240493846c6e6084468"

/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 \"\\\"centos-10\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != '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:
    epel-release 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/bin/sudo "yum" "install" "-y" "epel-release"
- Last metadata expiration check: 0:00:04 ago on Fri Apr 10 14:52:44 2026.
- Dependencies resolved.
- ================================================================================
-  Package               Arch        Version             Repository          Size
- ================================================================================
- Installing:
-  epel-release          noarch      10-5.el10s          extras-common       18 k
- Installing weak dependencies:
-  dnf-plugins-core      noarch      4.7.0-10.el10       baseos              41 k
- 
- Transaction Summary
- ================================================================================
- Install  2 Packages
- 
- Total download size: 60 k
- Installed size: 47 k
- Downloading Packages:
- (1/2): epel-release-10-5.el10s.noarch.rpm       264 kB/s |  18 kB     00:00    
- (2/2): dnf-plugins-core-4.7.0-10.el10.noarch.rp 144 kB/s |  41 kB     00:00    
- --------------------------------------------------------------------------------
- Total                                            51 kB/s |  60 kB     00:01     
- CentOS Stream 10 - Extras packages              2.1 MB/s | 2.1 kB     00:00    
- Importing GPG key 0x1D997668:
-  Userid     : "CentOS Extras SIG (https://wiki.centos.org/SpecialInterestGroup) <security@centos.org>"
-  Fingerprint: 363F C097 2F64 B699 AED3 968E 1FF6 A217 1D99 7668
-  From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Extras-SHA512
- warning: Certificate 1FF6A2171D997668:
-   Policy rejects subkey 8B5C8111FCA5D0FF: Policy rejected non-revocation signature (PrimaryKeyBinding) requiring second pre-image resistance
- Key imported successfully
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
-   Preparing        :                                                        1/1
-  
-   Installing       : dnf-plugins-core-4.7.0-10.el10.noarch                  1/2 
-   Installing       : epel-release-10-5.el10s.noarch                         2/2 
-   Running scriptlet: epel-release-10-5.el10s.noarch                         2/2 
- Many EPEL packages require the CodeReady Builder (CRB) repository.
- It is recommended that you run /usr/bin/crb enable to enable the CRB repository.
- 
- 
- Installed:
-   dnf-plugins-core-4.7.0-10.el10.noarch      epel-release-10-5.el10s.noarch     
- 
- Complete!
+ /usr/bin/sudo "yum" "install" "-y" "ffmpeg-free-devel"
- Extra Packages for Enterprise Linux 10 - x86_64 194 kB/s | 6.5 MB     00:34    
- Last metadata expiration check: 0:00:02 ago on Fri Apr 10 14:53:25 2026.
- Dependencies resolved.
- =====================================================================================================
-  Package                                   Arch    Version                           Repo        Size
- =====================================================================================================
- Installing:
-  ffmpeg-free-devel                         x86_64  7.1.2-1.el10_2                    epel       141 k
- Installing dependencies:
-  ModemManager-glib                         x86_64  1.22.0-7.el10                     baseos     325 k
-  SDL3                                      x86_64  3.2.4-1.el10                      appstream  1.0 M
-  adwaita-cursor-theme                      noarch  46.0-3.el10                       appstream  524 k
-  adwaita-icon-theme                        noarch  46.0-3.el10                       appstream  457 k
-  alsa-lib                                  x86_64  1.2.15.3-2.el10                   appstream  543 k
-  aribb24                                   x86_64  1.0.3^20160216git5e9be27-1.el10_0 epel        40 k
-  at-spi2-atk                               x86_64  2.56.1-1.el10                     appstream   88 k
-  at-spi2-core                              x86_64  2.56.1-1.el10                     appstream  389 k
-  atk                                       x86_64  2.56.1-1.el10                     appstream   81 k
-  avahi-glib                                x86_64  0.9~rc2-3.el10                    appstream   14 k
-  bluez-libs                                x86_64  5.86-1.el10                       baseos      81 k
-  cjson                                     x86_64  1.7.18-1.el10_0                   epel        32 k
-  codec2                                    x86_64  1.2.0-5.el10_0~bootstrap          epel       637 k
-  colord-libs                               x86_64  1.4.7-6.el10                      appstream  233 k
-  cpuinfo                                   x86_64  24.09.26-1.git1e83a2f.el10_1.1    epel        42 k
-  duktape                                   x86_64  2.7.0-10.el10                     baseos     170 k
-  exempi                                    x86_64  2.6.4-7.el10                      appstream  590 k
-  exiv2-libs                                x86_64  0.28.3-5.el10                     appstream  904 k
-  fdk-aac-free                              x86_64  2.0.0-15.el10                     appstream  339 k
-  fftw-libs-double                          x86_64  3.3.10-15.el10                    appstream  1.0 M
-  fftw-libs-single                          x86_64  3.3.10-15.el10                    appstream  1.1 M
-  flac-libs                                 x86_64  1.4.3-6.el10                      appstream  265 k
-  freeglut                                  x86_64  3.4.0-9.el10                      appstream  147 k
-  fuse-common                               x86_64  3.16.2-5.el10                     baseos     9.7 k
-  fuse3                                     x86_64  3.16.2-5.el10                     baseos      59 k
-  fuse3-libs                                x86_64  3.16.2-5.el10                     baseos      95 k
-  game-music-emu                            x86_64  0.6.3-16.el10_0                   epel       153 k
-  gdk-pixbuf2-modules                       x86_64  2.42.12-4.el10                    appstream   29 k
-  geoclue2                                  x86_64  2.7.2-1.el10                      appstream  148 k
-  giflib                                    x86_64  5.2.1-22.el10                     appstream   53 k
-  gobject-introspection                     x86_64  1.79.1-6.el10                     baseos     109 k
-  graphene                                  x86_64  1.10.6-10.el10                    appstream   62 k
-  gsettings-desktop-schemas                 x86_64  47.1-4.el10                       baseos     784 k
-  gsm                                       x86_64  1.0.22-8.el10                     appstream   37 k
-  gstreamer1                                x86_64  1.26.7-5.el10                     appstream  1.7 M
-  gstreamer1-plugins-base                   x86_64  1.26.7-2.el10                     appstream  2.3 M
-  gtk-update-icon-cache                     x86_64  3.24.43-5.el10                    appstream   33 k
-  gtk3                                      x86_64  3.24.43-5.el10                    appstream  5.6 M
-  hicolor-icon-theme                        noarch  0.17-20.el10                      appstream  219 k
-  highway                                   x86_64  1.3.0-1.el10_2                    epel       505 k
-  hwdata                                    noarch  0.379-10.8.el10                   baseos     1.7 M
-  ilbc                                      x86_64  3.0.4-12.el10_0                   epel        54 k
-  inih                                      x86_64  58-3.el10                         baseos      19 k
-  inih-cpp                                  x86_64  58-3.el10                         appstream   20 k
-  iso-codes                                 noarch  4.16.0-6.el10                     appstream  3.7 M
-  json-glib                                 x86_64  1.8.0-5.el10                      baseos     168 k
-  kbd                                       x86_64  2.6.4-7.el10                      baseos     407 k
-  kbd-legacy                                noarch  2.6.4-7.el10                      baseos     592 k
-  kbd-misc                                  noarch  2.6.4-7.el10                      baseos     1.7 M
-  kmod                                      x86_64  31-13.el10                        baseos     136 k
-  ladspa                                    x86_64  1.17-6.el10_0                     epel        44 k
-  lame-libs                                 x86_64  3.100-19.el10                     appstream  339 k
-  leptonica                                 x86_64  1.84.1-5.el10                     appstream  1.2 M
-  libXcomposite                             x86_64  0.4.6-5.el10                      appstream   25 k
-  libXcursor                                x86_64  1.2.1-9.el10                      appstream   31 k
-  libXdamage                                x86_64  1.1.6-5.el10                      appstream   24 k
-  libXfixes                                 x86_64  6.0.1-5.el10                      appstream   20 k
-  libXi                                     x86_64  1.8.1-7.el10                      appstream   41 k
-  libXinerama                               x86_64  1.1.5-8.el10                      appstream   15 k
-  libXrandr                                 x86_64  1.5.4-5.el10                      appstream   29 k
-  libXtst                                   x86_64  1.2.4-8.el10                      appstream   22 k
-  libXv                                     x86_64  1.0.12-5.el10                     appstream   20 k
-  libXxf86vm                                x86_64  1.1.5-8.el10                      appstream   19 k
-  libaom                                    x86_64  3.13.1-1.el10_2                   epel       1.8 M
-  libaribcaption                            x86_64  1.1.1-1.el10_0                    epel       110 k
-  libass                                    x86_64  0.17.3-2.el10_0                   epel       130 k
-  libasyncns                                x86_64  0.8-30.el10                       appstream   31 k
-  libatomic                                 x86_64  14.3.1-4.4.el10                   baseos      49 k
-  libavc1394                                x86_64  0.5.4-24.el10_0                   epel        56 k
-  libavcodec-free                           x86_64  7.1.2-1.el10_2                    epel       4.3 M
-  libavcodec-free-devel                     x86_64  7.1.2-1.el10_2                    epel        72 k
-  libavdevice-free                          x86_64  7.1.2-1.el10_2                    epel        89 k
-  libavdevice-free-devel                    x86_64  7.1.2-1.el10_2                    epel        20 k
-  libavfilter-free                          x86_64  7.1.2-1.el10_2                    epel       1.5 M
-  libavfilter-free-devel                    x86_64  7.1.2-1.el10_2                    epel        31 k
-  libavformat-free                          x86_64  7.1.2-1.el10_2                    epel       1.1 M
-  libavformat-free-devel                    x86_64  7.1.2-1.el10_2                    epel        50 k
-  libavutil-free                            x86_64  7.1.2-1.el10_2                    epel       361 k
-  libavutil-free-devel                      x86_64  7.1.2-1.el10_2                    epel       154 k
-  libbluray                                 x86_64  1.3.4-7.el10_0                    epel       175 k
-  libbs2b                                   x86_64  3.1.0-34.el10_0                   epel        29 k
-  libcaca                                   x86_64  0.99-0.75.beta20.el10_0           epel       225 k
-  libcamera                                 x86_64  0.6.0-1.el10                      appstream  662 k
-  libcanberra                               x86_64  0.30-37.el10                      appstream   91 k
-  libcdio                                   x86_64  2.1.0-15.el10                     appstream  256 k
-  libcdio-paranoia                          x86_64  10.2+2.0.2-2.el10_0               epel        88 k
-  libdav1d                                  x86_64  1.5.3-1.el10_3                    epel       638 k
-  libdc1394                                 x86_64  2.2.7-6.el10_0                    epel       132 k
-  libdecor                                  x86_64  0.2.2-5.el10                      appstream   59 k
-  libdex                                    x86_64  0.8.1-1.el10                      appstream   85 k
-  libdovi                                   x86_64  3.3.1-1.el10_0                    epel       264 k
-  libdrm                                    x86_64  2.4.128-1.el10                    baseos     164 k
-  libdvdnav                                 x86_64  6.1.1-10.el10                     appstream   57 k
-  libdvdread                                x86_64  6.1.3-9.el10                      appstream   73 k
-  libepoxy                                  x86_64  1.5.10-10.el10                    appstream  227 k
-  libexif                                   x86_64  0.6.24-9.el10                     appstream  454 k
-  libgexiv2                                 x86_64  0.14.3-3.el10                     appstream  106 k
-  libglvnd                                  x86_64  1:1.7.0-7.el10                    appstream  116 k
-  libglvnd-egl                              x86_64  1:1.7.0-7.el10                    appstream   37 k
-  libglvnd-glx                              x86_64  1:1.7.0-7.el10                    appstream  132 k
-  libglvnd-opengl                           x86_64  1:1.7.0-7.el10                    appstream   39 k
-  libgsf                                    x86_64  1.14.53-2.el10                    appstream  258 k
-  libgudev                                  x86_64  238-7.el10                        baseos      36 k
-  libgusb                                   x86_64  0.4.9-4.el10                      baseos      67 k
-  libgxps                                   x86_64  0.3.2-11.el10                     appstream   77 k
-  libiec61883                               x86_64  1.2.0-36.el10_0                   epel        40 k
-  libiptcdata                               x86_64  1.0.5-20.el10                     appstream   62 k
-  libjxl                                    x86_64  1:0.10.4-1.el10_1                 epel       1.2 M
-  liblc3                                    x86_64  1.1.3-1.el10                      appstream  104 k
-  libldac                                   x86_64  2.0.2.3-17.el10                   appstream   42 k
-  libldb                                    x86_64  4.23.5-105.el10                   baseos     185 k
-  libmodplug                                x86_64  1:0.8.9.0-25.el10_0               epel       176 k
-  libmysofa                                 x86_64  1.3.3-1.el10_0                    epel        44 k
-  libnotify                                 x86_64  0.8.6-1.el10                      appstream   53 k
-  libogg                                    x86_64  2:1.3.5-10.el10                   appstream   34 k
-  libopenmpt                                x86_64  0.8.4-1.el10_2                    epel       783 k
-  libosinfo                                 x86_64  1.11.0-8.el10                     appstream  317 k
-  libpciaccess                              x86_64  0.16-16.el10                      baseos      28 k
-  libplacebo                                x86_64  7.349.0-4.el10_0                  epel       424 k
-  libportal                                 x86_64  0.9.0-3.el10                      appstream   84 k
-  libpostproc-free                          x86_64  7.1.2-1.el10_2                    epel        49 k
-  libpostproc-free-devel                    x86_64  7.1.2-1.el10_2                    epel        15 k
-  libproxy                                  x86_64  0.5.5-4.el10                      baseos      49 k
-  libpsl                                    x86_64  0.21.5-6.el10                     baseos      65 k
-  librabbitmq                               x86_64  0.14.0-3.el10                     appstream   44 k
-  libraw1394                                x86_64  2.1.2-21.el10_0                   epel        65 k
-  librist                                   x86_64  0.2.7-6.el10_0                    epel        77 k
-  libsamplerate                             x86_64  0.2.2-10.el10                     appstream  1.3 M
-  libsbc                                    x86_64  2.0-7.el10                        appstream   46 k
-  libshaderc                                x86_64  2025.4-1.el10                     appstream  1.1 M
-  libsmbclient                              x86_64  4.23.5-105.el10                   baseos      76 k
-  libsndfile                                x86_64  1.2.2-6.el10                      appstream  214 k
-  libsodium                                 x86_64  1.0.21-2.el10_2                   epel       197 k
-  libsoup3                                  x86_64  3.6.5-5.el10                      appstream  396 k
-  libssh                                    x86_64  0.12.0-2.el10                     baseos     276 k
-  libssh-config                             noarch  0.12.0-2.el10                     baseos     8.2 k
-  libswresample-free                        x86_64  7.1.2-1.el10_2                    epel        68 k
-  libswresample-free-devel                  x86_64  7.1.2-1.el10_2                    epel        22 k
-  libswscale-free                           x86_64  7.1.2-1.el10_2                    epel       202 k
-  libswscale-free-devel                     x86_64  7.1.2-1.el10_2                    epel        20 k
-  libtalloc                                 x86_64  2.4.3-100.el10                    baseos      34 k
-  libtdb                                    x86_64  1.4.14-100.el10                   baseos      54 k
-  libtevent                                 x86_64  0.17.1-100.el10                   baseos      51 k
-  libtheora                                 x86_64  1:1.1.1-39.el10                   appstream  170 k
-  libtirpc                                  x86_64  1.3.5-1.el10                      baseos      95 k
-  libtracker-sparql                         x86_64  3.7.3-4.el10                      appstream  376 k
-  libudfread                                x86_64  1.1.2-9.el10_0                    epel        37 k
-  libunibreak                               x86_64  6.1-2.el10_0                      epel        36 k
-  libunwind                                 x86_64  1.8.0-4.el10_0                    epel        73 k
-  liburing                                  x86_64  2.12-1.el10                       baseos      43 k
-  libusb1                                   x86_64  1.0.29-3.el10                     baseos      77 k
-  libv4l                                    x86_64  1.26.1-5.el10                     appstream  213 k
-  libva                                     x86_64  2.22.0-2.el10                     appstream  118 k
-  libvdpau                                  x86_64  1.5-8.el10                        appstream   18 k
-  libvmaf                                   x86_64  3.0.0-2.el10_0                    epel       194 k
-  libvorbis                                 x86_64  1:1.3.7-12.el10                   appstream  189 k
-  libvpl                                    x86_64  1:2.16.0-1.el10_2                 epel       161 k
-  libvpx                                    x86_64  1.14.1-6.el10                     appstream  1.2 M
-  libwayland-client                         x86_64  1.24.0-1.el10                     appstream   34 k
-  libwayland-cursor                         x86_64  1.24.0-1.el10                     appstream   19 k
-  libwayland-egl                            x86_64  1.24.0-1.el10                     appstream   12 k
-  libwbclient                               x86_64  4.23.5-105.el10                   baseos      44 k
-  libxkbcommon                              x86_64  1.7.0-4.el10                      appstream  145 k
-  libxshmfence                              x86_64  1.3.2-5.el10                      appstream   13 k
-  lilv-libs                                 x86_64  0.26.4-1.el10_3                   epel        58 k
-  linux-firmware-whence                     noarch  20260130-22.el10                  baseos     119 k
-  llvm-filesystem                           x86_64  21.1.8-1.el10                     appstream   13 k
-  llvm-libs                                 x86_64  21.1.8-1.el10                     appstream   31 M
-  lmdb-libs                                 x86_64  0.9.32-4.el10                     baseos      62 k
-  lv2                                       x86_64  1.18.10-1.el10_0                  epel        87 k
-  mbedtls                                   x86_64  3.6.5-1.el10_2                    epel       514 k
-  mesa-dri-drivers                          x86_64  25.2.7-5.el10                     appstream   11 M
-  mesa-filesystem                           x86_64  25.2.7-5.el10                     appstream   10 k
-  mesa-libEGL                               x86_64  25.2.7-5.el10                     appstream  120 k
-  mesa-libGL                                x86_64  25.2.7-5.el10                     appstream  120 k
-  mesa-libGLU                               x86_64  9.0.3-7.el10                      appstream  164 k
-  mesa-libgbm                               x86_64  25.2.7-5.el10                     appstream   16 k
-  mpg123-libs                               x86_64  1.32.9-1.el10                     appstream  353 k
-  nettle                                    x86_64  3.10.1-1.el10                     baseos     559 k
-  noopenh264                                x86_64  0.1.0~openh264_2.4.1-2.el10_0     epel        22 k
-  ocl-icd                                   x86_64  2.3.2-8.el10                      baseos      67 k
-  openal-soft                               x86_64  1.23.1-6.el10_0                   epel       571 k
-  opencore-amr                              x86_64  0.1.6-7.el10_0                    epel       179 k
-  openexr-libs                              x86_64  3.1.10-9.el10                     appstream  1.1 M
-  openpgm                                   x86_64  5.2.122-36.el10_0                 epel       177 k
-  opus                                      x86_64  1.4-6.el10                        appstream  211 k
-  orc                                       x86_64  0.4.39-2.el10                     appstream  229 k
-  osinfo-db                                 noarch  20250606-2.el10                   appstream  564 k
-  osinfo-db-tools                           x86_64  1.11.0-8.el10                     appstream   74 k
-  pipewire-jack-audio-connection-kit        x86_64  1.4.9-1.el10                      appstream  9.9 k
-  pipewire-jack-audio-connection-kit-libs   x86_64  1.4.9-1.el10                      appstream  147 k
-  pipewire-libs                             x86_64  1.4.9-1.el10                      appstream  2.5 M
-  polkit                                    x86_64  125-4.el10                        baseos     162 k
-  polkit-libs                               x86_64  125-4.el10                        baseos      67 k
-  publicsuffix-list-dafsa                   noarch  20240107-5.el10                   baseos      59 k
-  pulseaudio-libs                           x86_64  17.0-6.el10                       appstream  706 k
-  qrencode-libs                             x86_64  4.1.1-9.el10_0                    epel        62 k
-  rav1e-libs                                x86_64  0.8.1-2.el10_2                    epel       1.1 M
-  rtkit                                     x86_64  0.11-68.el10                      appstream   57 k
-  rubberband                                x86_64  3.3.0-8.el10_0                    epel       410 k
-  samba-client-libs                         x86_64  4.23.5-105.el10                   baseos     5.5 M
-  samba-common                              noarch  4.23.5-105.el10                   baseos     177 k
-  samba-common-libs                         x86_64  4.23.5-105.el10                   baseos     104 k
-  sdl2-compat                               x86_64  2.32.50-1.el10                    appstream  129 k
-  serd                                      x86_64  0.32.8-1.el10_3                   epel        65 k
-  slang                                     x86_64  2.3.3-8.el10                      baseos     421 k
-  snappy                                    x86_64  1.1.10-7.el10                     baseos      38 k
-  sord                                      x86_64  0.16.22-1.el10_3                  epel        38 k
-  sound-theme-freedesktop                   noarch  0.8-23.el10                       appstream  383 k
-  soxr                                      x86_64  0.1.3-17.el10_0                   epel        83 k
-  speex                                     x86_64  1.2.0-19.el10                     appstream   69 k
-  spirv-tools-libs                          x86_64  2025.4-1.el10                     appstream  1.6 M
-  sratom                                    x86_64  0.6.22-1.el10_3                   epel        25 k
-  srt-libs                                  x86_64  1.5.4-0.rc0.el10_0.1              epel       390 k
-  svt-av1-libs                              x86_64  2.3.0-1.el10_0                    epel       2.0 M
-  systemd-udev                              x86_64  257-23.el10                       baseos     2.3 M
-  tesseract                                 x86_64  5.3.4-6.el10                      appstream  1.3 M
-  tesseract-langpack-eng                    noarch  4.1.0-9.el10                      appstream  1.7 M
-  tesseract-tessdata-doc                    noarch  4.1.0-9.el10                      appstream   14 k
-  tracker                                   x86_64  3.7.3-4.el10                      appstream  644 k
-  twolame-libs                              x86_64  0.4.0-6.el10                      appstream   70 k
-  upower-libs                               x86_64  1.90.10-2.el10                    appstream   60 k
-  vamp-plugin-sdk                           x86_64  2.10-2.el10_0                     epel       179 k
-  vid.stab                                  x86_64  1.1.1-4.el10_0                    epel        50 k
-  vo-amrwbenc                               x86_64  0.1.3-21.el10_0                   epel        80 k
-  vulkan-loader                             x86_64  1.4.328.1-1.el10                  appstream  161 k
-  webrtc-audio-processing                   x86_64  1.3-5.el10                        appstream  527 k
-  wireplumber                               x86_64  0.5.10-1.el10                     appstream  121 k
-  wireplumber-libs                          x86_64  0.5.10-1.el10                     appstream  405 k
-  xdg-desktop-portal                        x86_64  1.20.0-2.el10                     appstream  532 k
-  xkeyboard-config                          noarch  2.41-3.el10                       appstream  1.0 M
-  xprop                                     x86_64  1.2.7-3.el10                      appstream   36 k
-  xvidcore                                  x86_64  1.3.7-12.el10_0                   epel       269 k
-  zeromq                                    x86_64  4.3.5-18.el10_0                   epel       451 k
-  zimg                                      x86_64  3.0.6-2.el10_1                    epel       277 k
-  zix                                       x86_64  0.8.0-2.el10_3                    epel        34 k
-  zvbi                                      x86_64  0.2.42-1.el10_0                   epel       427 k
- Installing weak dependencies:
-  dconf                                     x86_64  0.40.0-17.el10                    appstream  114 k
-  exiv2                                     x86_64  0.28.3-5.el10                     appstream  2.1 M
-  glib-networking                           x86_64  2.80.0-3.el10                     baseos     204 k
-  intel-vpl-gpu-rt                          x86_64  25.4.5-1.el10_2                   epel       3.9 M
-  intel-vsc-firmware                        noarch  20260130-22.el10                  baseos     7.8 M
-  jxl-pixbuf-loader                         x86_64  1:0.10.4-1.el10_1                 epel        19 k
-  libcamera-ipa                             x86_64  0.6.0-1.el10                      appstream  167 k
-  libcanberra-gtk3                          x86_64  0.30-37.el10                      appstream   33 k
-  low-memory-monitor                        x86_64  2.1-12.el10                       appstream   35 k
-  mesa-vulkan-drivers                       x86_64  25.2.7-5.el10                     appstream   21 M
-  pipewire                                  x86_64  1.4.9-1.el10                      appstream  133 k
-  pipewire-alsa                             x86_64  1.4.9-1.el10                      appstream   58 k
-  pipewire-plugin-libcamera                 x86_64  1.4.9-1.el10                      appstream   73 k
-  pipewire-pulseaudio                       x86_64  1.4.9-1.el10                      appstream  211 k
-  polkit-pkla-compat                        x86_64  0.1-30.el10                       baseos      48 k
-  tracker-miners                            x86_64  3.7.4-1.el10                      appstream  982 k
-  upower                                    x86_64  1.90.10-2.el10                    appstream  147 k
-  xdg-desktop-portal-gtk                    x86_64  1.15.3-1.el10                     appstream  145 k
- 
- Transaction Summary
- =====================================================================================================
- Install  256 Packages
- 
- Total download size: 167 M
- Installed size: 626 M
- Downloading Packages:
- (1/256): ModemManager-glib-1.22.0-7.el10.x86_64 313 kB/s | 325 kB     00:01    
- (2/256): fuse-common-3.16.2-5.el10.x86_64.rpm   359 kB/s | 9.7 kB     00:00    
- (3/256): fuse3-3.16.2-5.el10.x86_64.rpm         1.1 MB/s |  59 kB     00:00    
- (4/256): fuse3-libs-3.16.2-5.el10.x86_64.rpm    254 kB/s |  95 kB     00:00    
- (5/256): bluez-libs-5.86-1.el10.x86_64.rpm       49 kB/s |  81 kB     00:01    
- (6/256): glib-networking-2.80.0-3.el10.x86_64.r 807 kB/s | 204 kB     00:00    
- (7/256): duktape-2.7.0-10.el10.x86_64.rpm        95 kB/s | 170 kB     00:01    
- (8/256): gobject-introspection-1.79.1-6.el10.x8 305 kB/s | 109 kB     00:00    
- (9/256): inih-58-3.el10.x86_64.rpm               18 kB/s |  19 kB     00:01    
- (10/256): gsettings-desktop-schemas-47.1-4.el10 368 kB/s | 784 kB     00:02    
- (11/256): json-glib-1.8.0-5.el10.x86_64.rpm     100 kB/s | 168 kB     00:01    
- (12/256): kbd-2.6.4-7.el10.x86_64.rpm            72 kB/s | 407 kB     00:05    
- (13/256): hwdata-0.379-10.8.el10.noarch.rpm     168 kB/s | 1.7 MB     00:10    
- (14/256): kbd-legacy-2.6.4-7.el10.noarch.rpm    237 kB/s | 592 kB     00:02    
- (15/256): kmod-31-13.el10.x86_64.rpm             96 kB/s | 136 kB     00:01    
- (16/256): libatomic-14.3.1-4.4.el10.x86_64.rpm  299 kB/s |  49 kB     00:00    
- (17/256): libdrm-2.4.128-1.el10.x86_64.rpm      298 kB/s | 164 kB     00:00    
- (18/256): libgudev-238-7.el10.x86_64.rpm        236 kB/s |  36 kB     00:00    
- (19/256): libgusb-0.4.9-4.el10.x86_64.rpm        70 kB/s |  67 kB     00:00    
- (20/256): libldb-4.23.5-105.el10.x86_64.rpm     255 kB/s | 185 kB     00:00    
- (21/256): libpciaccess-0.16-16.el10.x86_64.rpm   58 kB/s |  28 kB     00:00    
- (22/256): libproxy-0.5.5-4.el10.x86_64.rpm       89 kB/s |  49 kB     00:00    
- (23/256): libpsl-0.21.5-6.el10.x86_64.rpm        23 kB/s |  65 kB     00:02    
- (24/256): libsmbclient-4.23.5-105.el10.x86_64.r  31 kB/s |  76 kB     00:02    
- (25/256): libssh-0.12.0-2.el10.x86_64.rpm       217 kB/s | 276 kB     00:01    
- (26/256): libssh-config-0.12.0-2.el10.noarch.rp 374 kB/s | 8.2 kB     00:00    
- (27/256): libtalloc-2.4.3-100.el10.x86_64.rpm   983 kB/s |  34 kB     00:00    
- (28/256): libtdb-1.4.14-100.el10.x86_64.rpm     726 kB/s |  54 kB     00:00    
- (29/256): libtevent-0.17.1-100.el10.x86_64.rpm  358 kB/s |  51 kB     00:00    
- (30/256): libtirpc-1.3.5-1.el10.x86_64.rpm      789 kB/s |  95 kB     00:00    
- (31/256): liburing-2.12-1.el10.x86_64.rpm       1.0 MB/s |  43 kB     00:00    
- (32/256): libusb1-1.0.29-3.el10.x86_64.rpm      168 kB/s |  77 kB     00:00    
- (33/256): libwbclient-4.23.5-105.el10.x86_64.rp 432 kB/s |  44 kB     00:00    
- (34/256): linux-firmware-whence-20260130-22.el1 523 kB/s | 119 kB     00:00    
- (35/256): lmdb-libs-0.9.32-4.el10.x86_64.rpm     69 kB/s |  62 kB     00:00    
- (36/256): kbd-misc-2.6.4-7.el10.noarch.rpm      110 kB/s | 1.7 MB     00:15    
- (37/256): nettle-3.10.1-1.el10.x86_64.rpm       113 kB/s | 559 kB     00:04    
- (38/256): polkit-125-4.el10.x86_64.rpm          119 kB/s | 162 kB     00:01    
- (39/256): polkit-libs-125-4.el10.x86_64.rpm      31 kB/s |  67 kB     00:02    
- (40/256): polkit-pkla-compat-0.1-30.el10.x86_64 162 kB/s |  48 kB     00:00    
- (41/256): publicsuffix-list-dafsa-20240107-5.el  13 kB/s |  59 kB     00:04    
- (42/256): ocl-icd-2.3.2-8.el10.x86_64.rpm       3.9 kB/s |  67 kB     00:17    
- (43/256): samba-common-4.23.5-105.el10.noarch.r  90 kB/s | 177 kB     00:01    
- (44/256): samba-common-libs-4.23.5-105.el10.x86  20 kB/s | 104 kB     00:05    
- (45/256): intel-vsc-firmware-20260130-22.el10.n 130 kB/s | 7.8 MB     01:01    
- (46/256): snappy-1.1.10-7.el10.x86_64.rpm       482 kB/s |  38 kB     00:00    
- (47/256): slang-2.3.3-8.el10.x86_64.rpm          12 kB/s | 421 kB     00:33    
- (48/256): SDL3-3.2.4-1.el10.x86_64.rpm           93 kB/s | 1.0 MB     00:10    
- (49/256): adwaita-cursor-theme-46.0-3.el10.noar  68 kB/s | 524 kB     00:07    
- (50/256): adwaita-icon-theme-46.0-3.el10.noarch 354 kB/s | 457 kB     00:01    
- (51/256): alsa-lib-1.2.15.3-2.el10.x86_64.rpm   225 kB/s | 543 kB     00:02    
- (52/256): at-spi2-atk-2.56.1-1.el10.x86_64.rpm   30 kB/s |  88 kB     00:02    
- [MIRROR] systemd-udev-257-23.el10.x86_64.rpm: Curl error (28): Timeout was reached for http://centos-stream.mirrorservice.org/10-stream/BaseOS/x86_64/os/Packages/systemd-udev-257-23.el10.x86_64.rpm [Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds]
- (53/256): samba-client-libs-4.23.5-105.el10.x86  58 kB/s | 5.5 MB     01:37    
- (54/256): atk-2.56.1-1.el10.x86_64.rpm          1.6 MB/s |  81 kB     00:00    
- (55/256): avahi-glib-0.9~rc2-3.el10.x86_64.rpm  1.1 MB/s |  14 kB     00:00    
- (56/256): colord-libs-1.4.7-6.el10.x86_64.rpm   461 kB/s | 233 kB     00:00    
- (57/256): dconf-0.40.0-17.el10.x86_64.rpm       1.1 MB/s | 114 kB     00:00    
- (58/256): exempi-2.6.4-7.el10.x86_64.rpm        402 kB/s | 590 kB     00:01    
- (59/256): systemd-udev-257-23.el10.x86_64.rpm    29 kB/s | 2.3 MB     01:20    
- (60/256): exiv2-libs-0.28.3-5.el10.x86_64.rpm   1.3 MB/s | 904 kB     00:00    
- (61/256): at-spi2-core-2.56.1-1.el10.x86_64.rpm  11 kB/s | 389 kB     00:35    
- (62/256): fdk-aac-free-2.0.0-15.el10.x86_64.rpm 130 kB/s | 339 kB     00:02    
- (63/256): fftw-libs-double-3.3.10-15.el10.x86_6 155 kB/s | 1.0 MB     00:06    
- (64/256): flac-libs-1.4.3-6.el10.x86_64.rpm     160 kB/s | 265 kB     00:01    
- (65/256): freeglut-3.4.0-9.el10.x86_64.rpm      526 kB/s | 147 kB     00:00    
- (66/256): gdk-pixbuf2-modules-2.42.12-4.el10.x8 730 kB/s |  29 kB     00:00    
- (67/256): geoclue2-2.7.2-1.el10.x86_64.rpm      325 kB/s | 148 kB     00:00    
- (68/256): giflib-5.2.1-22.el10.x86_64.rpm       371 kB/s |  53 kB     00:00    
- (69/256): graphene-1.10.6-10.el10.x86_64.rpm    339 kB/s |  62 kB     00:00    
- (70/256): gsm-1.0.22-8.el10.x86_64.rpm           72 kB/s |  37 kB     00:00    
- (71/256): exiv2-0.28.3-5.el10.x86_64.rpm         90 kB/s | 2.1 MB     00:23    
- (72/256): gstreamer1-plugins-base-1.26.7-2.el10 182 kB/s | 2.3 MB     00:13    
- (73/256): gtk-update-icon-cache-3.24.43-5.el10.  28 kB/s |  33 kB     00:01    
- (74/256): fftw-libs-single-3.3.10-15.el10.x86_6  34 kB/s | 1.1 MB     00:33    
- (75/256): hicolor-icon-theme-0.17-20.el10.noarc 756 kB/s | 219 kB     00:00    
- (76/256): inih-cpp-58-3.el10.x86_64.rpm          41 kB/s |  20 kB     00:00    
- (77/256): gstreamer1-1.26.7-5.el10.x86_64.rpm    36 kB/s | 1.7 MB     00:48    
- (78/256): lame-libs-3.100-19.el10.x86_64.rpm    226 kB/s | 339 kB     00:01    
- (79/256): iso-codes-4.16.0-6.el10.noarch.rpm    159 kB/s | 3.7 MB     00:23    
- (80/256): libXcomposite-0.4.6-5.el10.x86_64.rpm  52 kB/s |  25 kB     00:00    
- (81/256): libXcursor-1.2.1-9.el10.x86_64.rpm     53 kB/s |  31 kB     00:00    
- (82/256): libXdamage-1.1.6-5.el10.x86_64.rpm     24 kB/s |  24 kB     00:01    
- (83/256): libXfixes-6.0.1-5.el10.x86_64.rpm      79 kB/s |  20 kB     00:00    
- (84/256): libXi-1.8.1-7.el10.x86_64.rpm         633 kB/s |  41 kB     00:00    
- (85/256): libXinerama-1.1.5-8.el10.x86_64.rpm    62 kB/s |  15 kB     00:00    
- (86/256): libXrandr-1.5.4-5.el10.x86_64.rpm     464 kB/s |  29 kB     00:00    
- (87/256): libXtst-1.2.4-8.el10.x86_64.rpm       286 kB/s |  22 kB     00:00    
- (88/256): libXv-1.0.12-5.el10.x86_64.rpm        605 kB/s |  20 kB     00:00    
- (89/256): libXxf86vm-1.1.5-8.el10.x86_64.rpm     73 kB/s |  19 kB     00:00    
- (90/256): libasyncns-0.8-30.el10.x86_64.rpm     187 kB/s |  31 kB     00:00    
- (91/256): leptonica-1.84.1-5.el10.x86_64.rpm    100 kB/s | 1.2 MB     00:11    
- (92/256): libcamera-ipa-0.6.0-1.el10.x86_64.rpm 179 kB/s | 167 kB     00:00    
- (93/256): libcanberra-0.30-37.el10.x86_64.rpm   249 kB/s |  91 kB     00:00    
- (94/256): libcanberra-gtk3-0.30-37.el10.x86_64. 1.1 MB/s |  33 kB     00:00    
- (95/256): libcdio-2.1.0-15.el10.x86_64.rpm      121 kB/s | 256 kB     00:02    
- (96/256): libdecor-0.2.2-5.el10.x86_64.rpm      831 kB/s |  59 kB     00:00    
- (97/256): libdex-0.8.1-1.el10.x86_64.rpm        223 kB/s |  85 kB     00:00    
- (98/256): libdvdnav-6.1.1-10.el10.x86_64.rpm    177 kB/s |  57 kB     00:00    
- (99/256): libdvdread-6.1.3-9.el10.x86_64.rpm    340 kB/s |  73 kB     00:00    
- (100/256): libepoxy-1.5.10-10.el10.x86_64.rpm   131 kB/s | 227 kB     00:01    
- (101/256): libexif-0.6.24-9.el10.x86_64.rpm     160 kB/s | 454 kB     00:02    
- (102/256): libgexiv2-0.14.3-3.el10.x86_64.rpm   2.3 MB/s | 106 kB     00:00    
- (103/256): libglvnd-1.7.0-7.el10.x86_64.rpm     2.0 MB/s | 116 kB     00:00    
- (104/256): libglvnd-egl-1.7.0-7.el10.x86_64.rpm 1.0 MB/s |  37 kB     00:00    
- (105/256): libglvnd-glx-1.7.0-7.el10.x86_64.rpm 610 kB/s | 132 kB     00:00    
- (106/256): libglvnd-opengl-1.7.0-7.el10.x86_64. 108 kB/s |  39 kB     00:00    
- [MIRROR] gtk3-3.24.43-5.el10.x86_64.rpm: Curl error (28): Timeout was reached for http://centos-stream.mirrorservice.org/10-stream/AppStream/x86_64/os/Packages/gtk3-3.24.43-5.el10.x86_64.rpm [Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds]
- (107/256): libcamera-0.6.0-1.el10.x86_64.rpm     22 kB/s | 662 kB     00:29    
- (108/256): libgsf-1.14.53-2.el10.x86_64.rpm      17 kB/s | 258 kB     00:15    
- (109/256): libiptcdata-1.0.5-20.el10.x86_64.rpm  52 kB/s |  62 kB     00:01    
- (110/256): liblc3-1.1.3-1.el10.x86_64.rpm       266 kB/s | 104 kB     00:00    
- (111/256): libgxps-0.3.2-11.el10.x86_64.rpm      13 kB/s |  77 kB     00:05    
- (112/256): libnotify-0.8.6-1.el10.x86_64.rpm    108 kB/s |  53 kB     00:00    
- (113/256): libogg-1.3.5-10.el10.x86_64.rpm      160 kB/s |  34 kB     00:00    
- (114/256): libldac-2.0.2.3-17.el10.x86_64.rpm    23 kB/s |  42 kB     00:01    
- (115/256): libosinfo-1.11.0-8.el10.x86_64.rpm   253 kB/s | 317 kB     00:01    
- (116/256): librabbitmq-0.14.0-3.el10.x86_64.rpm 184 kB/s |  44 kB     00:00    
- (117/256): libportal-0.9.0-3.el10.x86_64.rpm     24 kB/s |  84 kB     00:03    
- (118/256): libsbc-2.0-7.el10.x86_64.rpm         216 kB/s |  46 kB     00:00    
- (119/256): libshaderc-2025.4-1.el10.x86_64.rpm  278 kB/s | 1.1 MB     00:04    
- (120/256): libsndfile-1.2.2-6.el10.x86_64.rpm   204 kB/s | 214 kB     00:01    
- (121/256): libsoup3-3.6.5-5.el10.x86_64.rpm     146 kB/s | 396 kB     00:02    
- (122/256): libtheora-1.1.1-39.el10.x86_64.rpm   133 kB/s | 170 kB     00:01    
- (123/256): libtracker-sparql-3.7.3-4.el10.x86_6 405 kB/s | 376 kB     00:00    
- (124/256): libsamplerate-0.2.2-10.el10.x86_64.r 100 kB/s | 1.3 MB     00:13    
- (125/256): libv4l-1.26.1-5.el10.x86_64.rpm      480 kB/s | 213 kB     00:00    
- (126/256): libvdpau-1.5-8.el10.x86_64.rpm        71 kB/s |  18 kB     00:00    
- (127/256): libva-2.22.0-2.el10.x86_64.rpm       117 kB/s | 118 kB     00:01    
- (128/256): libvorbis-1.3.7-12.el10.x86_64.rpm   152 kB/s | 189 kB     00:01    
- (129/256): libwayland-client-1.24.0-1.el10.x86_ 122 kB/s |  34 kB     00:00    
- (130/256): libwayland-cursor-1.24.0-1.el10.x86_ 162 kB/s |  19 kB     00:00    
- (131/256): libwayland-egl-1.24.0-1.el10.x86_64.  39 kB/s |  12 kB     00:00    
- (132/256): libxkbcommon-1.7.0-4.el10.x86_64.rpm 198 kB/s | 145 kB     00:00    
- (133/256): libxshmfence-1.3.2-5.el10.x86_64.rpm 131 kB/s |  13 kB     00:00    
- (134/256): llvm-filesystem-21.1.8-1.el10.x86_64  12 kB/s |  13 kB     00:01    
- (135/256): libvpx-1.14.1-6.el10.x86_64.rpm      254 kB/s | 1.2 MB     00:04    
- (136/256): low-memory-monitor-2.1-12.el10.x86_6  33 kB/s |  35 kB     00:01    
- (137/256): gtk3-3.24.43-5.el10.x86_64.rpm        38 kB/s | 5.6 MB     02:29    
- (138/256): mesa-filesystem-25.2.7-5.el10.x86_64 7.7 kB/s |  10 kB     00:01    
- (139/256): mesa-libEGL-25.2.7-5.el10.x86_64.rpm 119 kB/s | 120 kB     00:01    
- (140/256): mesa-libGL-25.2.7-5.el10.x86_64.rpm  305 kB/s | 120 kB     00:00    
- (141/256): mesa-dri-drivers-25.2.7-5.el10.x86_6 175 kB/s |  11 MB     01:03    
- (142/256): mesa-libgbm-25.2.7-5.el10.x86_64.rpm  45 kB/s |  16 kB     00:00    
- (143/256): mesa-libGLU-9.0.3-7.el10.x86_64.rpm  102 kB/s | 164 kB     00:01    
- (144/256): mpg123-libs-1.32.9-1.el10.x86_64.rpm 134 kB/s | 353 kB     00:02    
- (145/256): openexr-libs-3.1.10-9.el10.x86_64.rp 183 kB/s | 1.1 MB     00:06    
- (146/256): opus-1.4-6.el10.x86_64.rpm           311 kB/s | 211 kB     00:00    
- (147/256): orc-0.4.39-2.el10.x86_64.rpm         329 kB/s | 229 kB     00:00    
- (148/256): osinfo-db-20250606-2.el10.noarch.rpm 1.8 MB/s | 564 kB     00:00    
- (149/256): osinfo-db-tools-1.11.0-8.el10.x86_64 1.2 MB/s |  74 kB     00:00    
- (150/256): pipewire-1.4.9-1.el10.x86_64.rpm     1.4 MB/s | 133 kB     00:00    
- (151/256): pipewire-alsa-1.4.9-1.el10.x86_64.rp 1.8 MB/s |  58 kB     00:00    
- (152/256): pipewire-jack-audio-connection-kit-1  44 kB/s | 9.9 kB     00:00    
- (153/256): pipewire-jack-audio-connection-kit-l 1.6 MB/s | 147 kB     00:00    
- (154/256): pipewire-libs-1.4.9-1.el10.x86_64.rp 247 kB/s | 2.5 MB     00:10    
- (155/256): pipewire-plugin-libcamera-1.4.9-1.el 109 kB/s |  73 kB     00:00    
- (156/256): pipewire-pulseaudio-1.4.9-1.el10.x86 405 kB/s | 211 kB     00:00    
- (157/256): pulseaudio-libs-17.0-6.el10.x86_64.r 397 kB/s | 706 kB     00:01    
- (158/256): rtkit-0.11-68.el10.x86_64.rpm        147 kB/s |  57 kB     00:00    
- (159/256): sdl2-compat-2.32.50-1.el10.x86_64.rp 487 kB/s | 129 kB     00:00    
- (160/256): sound-theme-freedesktop-0.8-23.el10. 334 kB/s | 383 kB     00:01    
- (161/256): speex-1.2.0-19.el10.x86_64.rpm       1.5 MB/s |  69 kB     00:00    
- (162/256): spirv-tools-libs-2025.4-1.el10.x86_6 748 kB/s | 1.6 MB     00:02    
- (163/256): tesseract-5.3.4-6.el10.x86_64.rpm    693 kB/s | 1.3 MB     00:01    
- (164/256): tesseract-langpack-eng-4.1.0-9.el10. 267 kB/s | 1.7 MB     00:06    
- (165/256): tesseract-tessdata-doc-4.1.0-9.el10. 499 kB/s |  14 kB     00:00    
- (166/256): tracker-3.7.3-4.el10.x86_64.rpm      120 kB/s | 644 kB     00:05    
- (167/256): tracker-miners-3.7.4-1.el10.x86_64.r 104 kB/s | 982 kB     00:09    
- (168/256): twolame-libs-0.4.0-6.el10.x86_64.rpm 4.6 MB/s |  70 kB     00:00    
- (169/256): upower-1.90.10-2.el10.x86_64.rpm     3.3 MB/s | 147 kB     00:00    
- (170/256): upower-libs-1.90.10-2.el10.x86_64.rp 179 kB/s |  60 kB     00:00    
- (171/256): vulkan-loader-1.4.328.1-1.el10.x86_6 613 kB/s | 161 kB     00:00    
- (172/256): webrtc-audio-processing-1.3-5.el10.x 218 kB/s | 527 kB     00:02    
- (173/256): wireplumber-0.5.10-1.el10.x86_64.rpm 138 kB/s | 121 kB     00:00    
- (174/256): wireplumber-libs-0.5.10-1.el10.x86_6 784 kB/s | 405 kB     00:00    
- (175/256): xdg-desktop-portal-1.20.0-2.el10.x86 358 kB/s | 532 kB     00:01    
- (176/256): xdg-desktop-portal-gtk-1.15.3-1.el10 1.1 MB/s | 145 kB     00:00    
- (177/256): xkeyboard-config-2.41-3.el10.noarch. 470 kB/s | 1.0 MB     00:02    
- (178/256): xprop-1.2.7-3.el10.x86_64.rpm        566 kB/s |  36 kB     00:00    
- (179/256): aribb24-1.0.3^20160216git5e9be27-1.e  17 kB/s |  40 kB     00:02    
- (180/256): cjson-1.7.18-1.el10_0.x86_64.rpm     1.0 MB/s |  32 kB     00:00    
- (181/256): codec2-1.2.0-5.el10_0~bootstrap.x86_ 1.1 MB/s | 637 kB     00:00    
- (182/256): cpuinfo-24.09.26-1.git1e83a2f.el10_1  22 kB/s |  42 kB     00:01    
- (183/256): ffmpeg-free-devel-7.1.2-1.el10_2.x86 179 kB/s | 141 kB     00:00    
- (184/256): game-music-emu-0.6.3-16.el10_0.x86_6 111 kB/s | 153 kB     00:01    
- (185/256): highway-1.3.0-1.el10_2.x86_64.rpm    120 kB/s | 505 kB     00:04    
- (186/256): llvm-libs-21.1.8-1.el10.x86_64.rpm   225 kB/s |  31 MB     02:19    
- (187/256): ilbc-3.0.4-12.el10_0.x86_64.rpm       18 kB/s |  54 kB     00:02    
- (188/256): mesa-vulkan-drivers-25.2.7-5.el10.x8 288 kB/s |  21 MB     01:15    
- (189/256): ladspa-1.17-6.el10_0.x86_64.rpm      1.3 MB/s |  44 kB     00:00    
- (190/256): jxl-pixbuf-loader-0.10.4-1.el10_1.x8  89 kB/s |  19 kB     00:00    
- (191/256): libaribcaption-1.1.1-1.el10_0.x86_64  79 kB/s | 110 kB     00:01    
- (192/256): libass-0.17.3-2.el10_0.x86_64.rpm    234 kB/s | 130 kB     00:00    
- (193/256): libavc1394-0.5.4-24.el10_0.x86_64.rp  73 kB/s |  56 kB     00:00    
- (194/256): libaom-3.13.1-1.el10_2.x86_64.rpm    319 kB/s | 1.8 MB     00:05    
- (195/256): libavcodec-free-devel-7.1.2-1.el10_2 1.3 MB/s |  72 kB     00:00    
- (196/256): libavdevice-free-7.1.2-1.el10_2.x86_ 256 kB/s |  89 kB     00:00    
- (197/256): libavdevice-free-devel-7.1.2-1.el10_ 680 kB/s |  20 kB     00:00    
- (198/256): intel-vpl-gpu-rt-25.4.5-1.el10_2.x86 303 kB/s | 3.9 MB     00:13    
- (199/256): libavfilter-free-devel-7.1.2-1.el10_  42 kB/s |  31 kB     00:00    
- (200/256): libavfilter-free-7.1.2-1.el10_2.x86_ 198 kB/s | 1.5 MB     00:07    
- (201/256): libavformat-free-devel-7.1.2-1.el10_ 548 kB/s |  50 kB     00:00    
- (202/256): libavutil-free-7.1.2-1.el10_2.x86_64 846 kB/s | 361 kB     00:00    
- (203/256): libavutil-free-devel-7.1.2-1.el10_2. 562 kB/s | 154 kB     00:00    
- (204/256): libbluray-1.3.4-7.el10_0.x86_64.rpm   50 kB/s | 175 kB     00:03    
- (205/256): libbs2b-3.1.0-34.el10_0.x86_64.rpm   126 kB/s |  29 kB     00:00    
- (206/256): libavcodec-free-7.1.2-1.el10_2.x86_6 231 kB/s | 4.3 MB     00:18    
- (207/256): libcdio-paranoia-10.2+2.0.2-2.el10_0 174 kB/s |  88 kB     00:00    
- (208/256): libdav1d-1.5.3-1.el10_3.x86_64.rpm    99 kB/s | 638 kB     00:06    
- (209/256): libavformat-free-7.1.2-1.el10_2.x86_  65 kB/s | 1.1 MB     00:17    
- (210/256): libdc1394-2.2.7-6.el10_0.x86_64.rpm  216 kB/s | 132 kB     00:00    
- (211/256): libiec61883-1.2.0-36.el10_0.x86_64.r 376 kB/s |  40 kB     00:00    
- (212/256): libdovi-3.3.1-1.el10_0.x86_64.rpm    495 kB/s | 264 kB     00:00    
- (213/256): libmodplug-0.8.9.0-25.el10_0.x86_64. 369 kB/s | 176 kB     00:00    
- (214/256): libmysofa-1.3.3-1.el10_0.x86_64.rpm   21 kB/s |  44 kB     00:02    
- (215/256): libcaca-0.99-0.75.beta20.el10_0.x86_  16 kB/s | 225 kB     00:13    
- (216/256): libopenmpt-0.8.4-1.el10_2.x86_64.rpm 269 kB/s | 783 kB     00:02    
- (217/256): libplacebo-7.349.0-4.el10_0.x86_64.r 169 kB/s | 424 kB     00:02    
- (218/256): libpostproc-free-devel-7.1.2-1.el10_ 597 kB/s |  15 kB     00:00    
- (219/256): libpostproc-free-7.1.2-1.el10_2.x86_ 245 kB/s |  49 kB     00:00    
- (220/256): libraw1394-2.1.2-21.el10_0.x86_64.rp 154 kB/s |  65 kB     00:00    
- (221/256): librist-0.2.7-6.el10_0.x86_64.rpm    180 kB/s |  77 kB     00:00    
- (222/256): libswresample-free-7.1.2-1.el10_2.x8  88 kB/s |  68 kB     00:00    
- (223/256): libjxl-0.10.4-1.el10_1.x86_64.rpm    171 kB/s | 1.2 MB     00:07    
- (224/256): libsodium-1.0.21-2.el10_2.x86_64.rpm 186 kB/s | 197 kB     00:01    
- (225/256): libswscale-free-devel-7.1.2-1.el10_2 681 kB/s |  20 kB     00:00    
- (226/256): libudfread-1.1.2-9.el10_0.x86_64.rpm 885 kB/s |  37 kB     00:00    
- (227/256): libunibreak-6.1-2.el10_0.x86_64.rpm  149 kB/s |  36 kB     00:00    
- (228/256): libswresample-free-devel-7.1.2-1.el1  23 kB/s |  22 kB     00:00    
- (229/256): libunwind-1.8.0-4.el10_0.x86_64.rpm   95 kB/s |  73 kB     00:00    
- (230/256): libvpl-2.16.0-1.el10_2.x86_64.rpm    590 kB/s | 161 kB     00:00    
- (231/256): lilv-libs-0.26.4-1.el10_3.x86_64.rpm 1.3 MB/s |  58 kB     00:00    
- (232/256): lv2-1.18.10-1.el10_0.x86_64.rpm      396 kB/s |  87 kB     00:00    
- (233/256): libswscale-free-7.1.2-1.el10_2.x86_6  63 kB/s | 202 kB     00:03    
- (234/256): noopenh264-0.1.0~openh264_2.4.1-2.el 852 kB/s |  22 kB     00:00    
- (235/256): libvmaf-3.0.0-2.el10_0.x86_64.rpm     55 kB/s | 194 kB     00:03    
- (236/256): openal-soft-1.23.1-6.el10_0.x86_64.r 457 kB/s | 571 kB     00:01    
- (237/256): openpgm-5.2.122-36.el10_0.x86_64.rpm 227 kB/s | 177 kB     00:00    
- (238/256): qrencode-libs-4.1.1-9.el10_0.x86_64. 851 kB/s |  62 kB     00:00    
- (239/256): opencore-amr-0.1.6-7.el10_0.x86_64.r 111 kB/s | 179 kB     00:01    
- (240/256): rubberband-3.3.0-8.el10_0.x86_64.rpm 496 kB/s | 410 kB     00:00    
- (241/256): mbedtls-3.6.5-1.el10_2.x86_64.rpm     99 kB/s | 514 kB     00:05    
- (242/256): sord-0.16.22-1.el10_3.x86_64.rpm     792 kB/s |  38 kB     00:00    
- (243/256): soxr-0.1.3-17.el10_0.x86_64.rpm      6.2 MB/s |  83 kB     00:00    
- (244/256): sratom-0.6.22-1.el10_3.x86_64.rpm    661 kB/s |  25 kB     00:00    
- (245/256): srt-libs-1.5.4-0.rc0.el10_0.1.x86_64 1.9 MB/s | 390 kB     00:00    
- (246/256): rav1e-libs-0.8.1-2.el10_2.x86_64.rpm 581 kB/s | 1.1 MB     00:01    
- (247/256): serd-0.32.8-1.el10_3.x86_64.rpm      152 kB/s |  65 kB     00:00    
- (248/256): vid.stab-1.1.1-4.el10_0.x86_64.rpm   122 kB/s |  50 kB     00:00    
- (249/256): vo-amrwbenc-0.1.3-21.el10_0.x86_64.r 212 kB/s |  80 kB     00:00    
- (250/256): vamp-plugin-sdk-2.10-2.el10_0.x86_64 155 kB/s | 179 kB     00:01    
- (251/256): xvidcore-1.3.7-12.el10_0.x86_64.rpm  305 kB/s | 269 kB     00:00    
- (252/256): zimg-3.0.6-2.el10_1.x86_64.rpm       507 kB/s | 277 kB     00:00    
- (253/256): zix-0.8.0-2.el10_3.x86_64.rpm        266 kB/s |  34 kB     00:00    
- (254/256): zvbi-0.2.42-1.el10_0.x86_64.rpm       66 kB/s | 427 kB     00:06    
- (255/256): svt-av1-libs-2.3.0-1.el10_0.x86_64.r 165 kB/s | 2.0 MB     00:12    
- [MIRROR] zeromq-4.3.5-18.el10_0.x86_64.rpm: Curl error (28): Timeout was reached for https://fedora.mirrorservice.org/epel/10.3/Everything/x86_64/Packages/z/zeromq-4.3.5-18.el10_0.x86_64.rpm [Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds]
- (256/256): zeromq-4.3.5-18.el10_0.x86_64.rpm    8.2 kB/s | 451 kB     00:54    
- --------------------------------------------------------------------------------
- Total                                           336 kB/s | 167 MB     08:29     
- Extra Packages for Enterprise Linux 10 - x86_64 1.6 MB/s | 1.6 kB     00:00    
- Importing GPG key 0xE37ED158:
-  Userid     : "Fedora (epel10) <epel@fedoraproject.org>"
-  Fingerprint: 7D8D 15CB FC4E 6268 8591 FB26 33D9 8517 E37E D158
-  From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-10
- Key imported successfully
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
-   Preparing        :                                                        1/1
-  
-   Installing       : libwayland-client-1.24.0-1.el10.x86_64               1/256 
-   Installing       : libogg-2:1.3.5-10.el10.x86_64                        2/256 
-   Installing       : libvorbis-1:1.3.7-12.el10.x86_64                     3/256 
-   Installing       : json-glib-1.8.0-5.el10.x86_64                        4/256 
-   Installing       : libXi-1.8.1-7.el10.x86_64                            5/256 
-   Installing       : alsa-lib-1.2.15.3-2.el10.x86_64                      6/256 
-   Installing       : libtdb-1.4.14-100.el10.x86_64                        7/256 
-   Installing       : libtalloc-2.4.3-100.el10.x86_64                      8/256 
-   Installing       : libraw1394-2.1.2-21.el10_0.x86_64                    9/256 
-   Installing       : opus-1.4-6.el10.x86_64                              10/256 
-   Installing       : libXfixes-6.0.1-5.el10.x86_64                       11/256 
-   Installing       : gstreamer1-1.26.7-5.el10.x86_64                     12/256 
-   Installing       : libtevent-0.17.1-100.el10.x86_64                    13/256 
-   Installing       : libwayland-cursor-1.24.0-1.el10.x86_64              14/256 
-   Installing       : serd-0.32.8-1.el10_3.x86_64                         15/256 
-   Installing       : spirv-tools-libs-2025.4-1.el10.x86_64               16/256 
-   Installing       : mesa-filesystem-25.2.7-5.el10.x86_64                17/256 
-   Installing       : libglvnd-1:1.7.0-7.el10.x86_64                      18/256 
-   Installing       : giflib-5.2.1-22.el10.x86_64                         19/256 
-   Installing       : avahi-glib-0.9~rc2-3.el10.x86_64                    20/256 
-   Running scriptlet: samba-common-4.23.5-105.el10.noarch                 21/256 
-   Installing       : samba-common-4.23.5-105.el10.noarch                 21/256 
-   Running scriptlet: samba-common-4.23.5-105.el10.noarch                 21/256 
-   Installing       : polkit-libs-125-4.el10.x86_64                       22/256 
-   Installing       : libusb1-1.0.29-3.el10.x86_64                        23/256 
-   Installing       : libgudev-238-7.el10.x86_64                          24/256 
-   Installing       : hwdata-0.379-10.8.el10.noarch                       25/256 
-   Installing       : libshaderc-2025.4-1.el10.x86_64                     26/256 
-   Installing       : libtheora-1:1.1.1-39.el10.x86_64                    27/256 
-   Installing       : zix-0.8.0-2.el10_3.x86_64                           28/256 
-   Installing       : sord-0.16.22-1.el10_3.x86_64                        29/256 
-   Installing       : libvmaf-3.0.0-2.el10_0.x86_64                       30/256 
-   Installing       : libunwind-1.8.0-4.el10_0.x86_64                     31/256 
-   Installing       : mpg123-libs-1.32.9-1.el10.x86_64                    32/256 
-   Installing       : libxshmfence-1.3.2-5.el10.x86_64                    33/256 
-   Installing       : libwayland-egl-1.24.0-1.el10.x86_64                 34/256 
-   Installing       : libdvdread-6.1.3-9.el10.x86_64                      35/256 
-   Installing       : libXv-1.0.12-5.el10.x86_64                          36/256 
-   Installing       : lame-libs-3.100-19.el10.x86_64                      37/256 
-   Installing       : gsm-1.0.22-8.el10.x86_64                            38/256 
-   Installing       : fdk-aac-free-2.0.0-15.el10.x86_64                   39/256 
-   Installing       : ocl-icd-2.3.2-8.el10.x86_64                         40/256 
-   Installing       : gsettings-desktop-schemas-47.1-4.el10.x86_64        41/256 
-   Installing       : fuse3-libs-3.16.2-5.el10.x86_64                     42/256 
-   Installing       : duktape-2.7.0-10.el10.x86_64                        43/256 
-   Running scriptlet: polkit-125-4.el10.x86_64                            44/256 
-   Installing       : polkit-125-4.el10.x86_64                            44/256 
-   Running scriptlet: polkit-125-4.el10.x86_64                            44/256 
-   Installing       : polkit-pkla-compat-0.1-30.el10.x86_64               45/256 
-   Running scriptlet: rtkit-0.11-68.el10.x86_64                           46/256 
-   Installing       : rtkit-0.11-68.el10.x86_64                           46/256 
-   Running scriptlet: rtkit-0.11-68.el10.x86_64                           46/256 
- Created symlink '/etc/systemd/system/graphical.target.wants/rtkit-daemon.service' → '/usr/lib/systemd/system/rtkit-daemon.service'.
- 
-   Installing       : libproxy-0.5.5-4.el10.x86_64                        47/256 
-   Installing       : glib-networking-2.80.0-3.el10.x86_64                48/256 
-   Installing       : libdvdnav-6.1.1-10.el10.x86_64                      49/256 
-   Installing       : libopenmpt-0.8.4-1.el10_2.x86_64                    50/256 
-   Installing       : libaom-3.13.1-1.el10_2.x86_64                       51/256 
-   Installing       : sratom-0.6.22-1.el10_3.x86_64                       52/256 
-   Installing       : lilv-libs-0.26.4-1.el10_3.x86_64                    53/256 
-   Installing       : libpciaccess-0.16-16.el10.x86_64                    54/256 
-   Installing       : libdrm-2.4.128-1.el10.x86_64                        55/256 
-   Installing       : osinfo-db-20250606-2.el10.noarch                    56/256 
-   Installing       : libgusb-0.4.9-4.el10.x86_64                         57/256 
-   Installing       : colord-libs-1.4.7-6.el10.x86_64                     58/256 
-   Installing       : libdc1394-2.2.7-6.el10_0.x86_64                     59/256 
-   Installing       : leptonica-1.84.1-5.el10.x86_64                      60/256 
-   Installing       : libglvnd-opengl-1:1.7.0-7.el10.x86_64               61/256 
-   Installing       : mesa-libGLU-9.0.3-7.el10.x86_64                     62/256 
-   Installing       : libXcursor-1.2.1-9.el10.x86_64                      63/256 
-   Installing       : libXdamage-1.1.6-5.el10.x86_64                      64/256 
-   Installing       : libavc1394-0.5.4-24.el10_0.x86_64                   65/256 
-   Installing       : libiec61883-1.2.0-36.el10_0.x86_64                  66/256 
-   Installing       : libXtst-1.2.4-8.el10.x86_64                         67/256 
-   Installing       : flac-libs-1.4.3-6.el10.x86_64                       68/256 
-   Installing       : libsndfile-1.2.2-6.el10.x86_64                      69/256 
-   Installing       : ladspa-1.17-6.el10_0.x86_64                         70/256 
-   Installing       : libbs2b-3.1.0-34.el10_0.x86_64                      71/256 
-   Installing       : zvbi-0.2.42-1.el10_0.x86_64                         72/256 
-   Running scriptlet: zvbi-0.2.42-1.el10_0.x86_64                         72/256 
-   Installing       : zimg-3.0.6-2.el10_1.x86_64                          73/256 
-   Installing       : xvidcore-1.3.7-12.el10_0.x86_64                     74/256 
-   Installing       : vo-amrwbenc-0.1.3-21.el10_0.x86_64                  75/256 
-   Installing       : vid.stab-1.1.1-4.el10_0.x86_64                      76/256 
-   Installing       : vamp-plugin-sdk-2.10-2.el10_0.x86_64                77/256 
-   Installing       : soxr-0.1.3-17.el10_0.x86_64                         78/256 
-   Installing       : rav1e-libs-0.8.1-2.el10_2.x86_64                    79/256 
-   Installing       : qrencode-libs-4.1.1-9.el10_0.x86_64                 80/256 
-   Installing       : openpgm-5.2.122-36.el10_0.x86_64                    81/256 
-   Installing       : opencore-amr-0.1.6-7.el10_0.x86_64                  82/256 
-   Installing       : openal-soft-1.23.1-6.el10_0.x86_64                  83/256 
-   Installing       : noopenh264-0.1.0~openh264_2.4.1-2.el10_0.x86_64     84/256 
-   Installing       : mbedtls-3.6.5-1.el10_2.x86_64                       85/256 
-   Installing       : lv2-1.18.10-1.el10_0.x86_64                         86/256 
-   Installing       : libunibreak-6.1-2.el10_0.x86_64                     87/256 
-   Installing       : libass-0.17.3-2.el10_0.x86_64                       88/256 
-   Installing       : libudfread-1.1.2-9.el10_0.x86_64                    89/256 
-   Installing       : libbluray-1.3.4-7.el10_0.x86_64                     90/256 
-   Installing       : libsodium-1.0.21-2.el10_2.x86_64                    91/256 
-   Installing       : zeromq-4.3.5-18.el10_0.x86_64                       92/256 
-   Installing       : libmysofa-1.3.3-1.el10_0.x86_64                     93/256 
-   Installing       : libmodplug-1:0.8.9.0-25.el10_0.x86_64               94/256 
-   Installing       : libdovi-3.3.1-1.el10_0.x86_64                       95/256 
-   Installing       : libdav1d-1.5.3-1.el10_3.x86_64                      96/256 
-   Installing       : libaribcaption-1.1.1-1.el10_0.x86_64                97/256 
-   Installing       : ilbc-3.0.4-12.el10_0.x86_64                         98/256 
-   Installing       : highway-1.3.0-1.el10_2.x86_64                       99/256 
-   Installing       : game-music-emu-0.6.3-16.el10_0.x86_64              100/256 
-   Installing       : cpuinfo-24.09.26-1.git1e83a2f.el10_1.1.x86_64      101/256 
-   Installing       : svt-av1-libs-2.3.0-1.el10_0.x86_64                 102/256 
-   Installing       : codec2-1.2.0-5.el10_0~bootstrap.x86_64             103/256 
-   Installing       : cjson-1.7.18-1.el10_0.x86_64                       104/256 
-   Running scriptlet: cjson-1.7.18-1.el10_0.x86_64                       104/256
-  
-   Installing       : librist-0.2.7-6.el10_0.x86_64                      105/256 
-   Installing       : aribb24-1.0.3^20160216git5e9be27-1.el10_0.x86_64   106/256 
-   Installing       : xprop-1.2.7-3.el10.x86_64                          107/256 
-   Installing       : at-spi2-core-2.56.1-1.el10.x86_64                  108/256 
-   Installing       : atk-2.56.1-1.el10.x86_64                           109/256 
-   Installing       : at-spi2-atk-2.56.1-1.el10.x86_64                   110/256 
-   Installing       : xkeyboard-config-2.41-3.el10.noarch                111/256 
-   Installing       : libxkbcommon-1.7.0-4.el10.x86_64                   112/256 
-   Installing       : webrtc-audio-processing-1.3-5.el10.x86_64          113/256 
-   Installing       : twolame-libs-0.4.0-6.el10.x86_64                   114/256 
-   Installing       : tesseract-tessdata-doc-4.1.0-9.el10.noarch         115/256 
-   Installing       : tesseract-langpack-eng-4.1.0-9.el10.noarch         116/256 
-   Installing       : tesseract-5.3.4-6.el10.x86_64                      117/256 
-   Installing       : speex-1.2.0-19.el10.x86_64                         118/256 
-   Installing       : sound-theme-freedesktop-0.8-23.el10.noarch         119/256 
-   Running scriptlet: sound-theme-freedesktop-0.8-23.el10.noarch         119/256 
-   Installing       : orc-0.4.39-2.el10.x86_64                           120/256 
-   Installing       : openexr-libs-3.1.10-9.el10.x86_64                  121/256 
-   Installing       : jxl-pixbuf-loader-1:0.10.4-1.el10_1.x86_64         122/256 
-   Installing       : libjxl-1:0.10.4-1.el10_1.x86_64                    123/256 
-   Installing       : low-memory-monitor-2.1-12.el10.x86_64              124/256 
-   Running scriptlet: low-memory-monitor-2.1-12.el10.x86_64              124/256 
-   Installing       : llvm-filesystem-21.1.8-1.el10.x86_64               125/256 
-   Installing       : llvm-libs-21.1.8-1.el10.x86_64                     126/256 
-   Installing       : mesa-dri-drivers-25.2.7-5.el10.x86_64              127/256 
-   Installing       : mesa-libgbm-25.2.7-5.el10.x86_64                   128/256 
-   Installing       : libglvnd-egl-1:1.7.0-7.el10.x86_64                 129/256 
-   Installing       : mesa-libEGL-25.2.7-5.el10.x86_64                   130/256 
-   Installing       : vulkan-loader-1.4.328.1-1.el10.x86_64              131/256
-  
-   Installing       : mesa-vulkan-drivers-25.2.7-5.el10.x86_64           132/256 
-   Installing       : libplacebo-7.349.0-4.el10_0.x86_64                 133/256 
-   Installing       : libvpx-1.14.1-6.el10.x86_64                        134/256 
-   Installing       : libvdpau-1.5-8.el10.x86_64                         135/256 
-   Installing       : libv4l-1.26.1-5.el10.x86_64                        136/256 
-   Installing       : libsbc-2.0-7.el10.x86_64                           137/256 
-   Installing       : libsamplerate-0.2.2-10.el10.x86_64                 138/256 
-   Installing       : librabbitmq-0.14.0-3.el10.x86_64                   139/256 
-   Installing       : libportal-0.9.0-3.el10.x86_64                      140/256 
-   Installing       : libnotify-0.8.6-1.el10.x86_64                      141/256 
-   Installing       : libldac-2.0.2.3-17.el10.x86_64                     142/256 
-   Installing       : liblc3-1.1.3-1.el10.x86_64                         143/256 
-   Installing       : libiptcdata-1.0.5-20.el10.x86_64                   144/256 
-   Installing       : libgxps-0.3.2-11.el10.x86_64                       145/256 
-   Installing       : libgsf-1.14.53-2.el10.x86_64                       146/256 
-   Installing       : libexif-0.6.24-9.el10.x86_64                       147/256 
-   Installing       : libepoxy-1.5.10-10.el10.x86_64                     148/256 
-   Installing       : libcdio-2.1.0-15.el10.x86_64                       149/256 
-   Installing       : libcdio-paranoia-10.2+2.0.2-2.el10_0.x86_64        150/256 
-   Installing       : libasyncns-0.8-30.el10.x86_64                      151/256 
-   Installing       : pulseaudio-libs-17.0-6.el10.x86_64                 152/256 
-   Installing       : libcanberra-0.30-37.el10.x86_64                    153/256 
-   Running scriptlet: libcanberra-0.30-37.el10.x86_64                    153/256 
-   Installing       : libXxf86vm-1.1.5-8.el10.x86_64                     154/256 
-   Installing       : libglvnd-glx-1:1.7.0-7.el10.x86_64                 155/256 
-   Installing       : mesa-libGL-25.2.7-5.el10.x86_64                    156/256 
-   Installing       : libva-2.22.0-2.el10.x86_64                         157/256 
-   Installing       : libvpl-1:2.16.0-1.el10_2.x86_64                    158/256 
-   Installing       : intel-vpl-gpu-rt-25.4.5-1.el10_2.x86_64            159/256 
-   Installing       : libavutil-free-7.1.2-1.el10_2.x86_64               160/256 
-   Installing       : libavutil-free-devel-7.1.2-1.el10_2.x86_64         161/256 
-   Installing       : libswresample-free-7.1.2-1.el10_2.x86_64           162/256 
-   Installing       : libswresample-free-devel-7.1.2-1.el10_2.x86_64     163/256 
-   Installing       : libpostproc-free-7.1.2-1.el10_2.x86_64             164/256 
-   Installing       : libpostproc-free-devel-7.1.2-1.el10_2.x86_64       165/256 
-   Installing       : libswscale-free-7.1.2-1.el10_2.x86_64              166/256 
-   Installing       : libswscale-free-devel-7.1.2-1.el10_2.x86_64        167/256 
-   Installing       : freeglut-3.4.0-9.el10.x86_64                       168/256 
-   Installing       : libXrandr-1.5.4-5.el10.x86_64                      169/256 
-   Installing       : libXinerama-1.1.5-8.el10.x86_64                    170/256 
-   Installing       : libXcomposite-0.4.6-5.el10.x86_64                  171/256 
-   Installing       : iso-codes-4.16.0-6.el10.noarch                     172/256 
-   Installing       : hicolor-icon-theme-0.17-20.el10.noarch             173/256 
-   Installing       : gtk-update-icon-cache-3.24.43-5.el10.x86_64        174/256 
-   Installing       : graphene-1.10.6-10.el10.x86_64                     175/256 
-   Installing       : gstreamer1-plugins-base-1.26.7-2.el10.x86_64       176/256 
-   Installing       : gdk-pixbuf2-modules-2.42.12-4.el10.x86_64          177/256 
-   Installing       : fftw-libs-single-3.3.10-15.el10.x86_64             178/256 
-   Installing       : fftw-libs-double-3.3.10-15.el10.x86_64             179/256 
-   Installing       : rubberband-3.3.0-8.el10_0.x86_64                   180/256 
-   Installing       : exempi-2.6.4-7.el10.x86_64                         181/256 
-   Installing       : dconf-0.40.0-17.el10.x86_64                        182/256 
-   Running scriptlet: dconf-0.40.0-17.el10.x86_64                        182/256 
-   Installing       : adwaita-cursor-theme-46.0-3.el10.noarch            183/256 
-   Installing       : adwaita-icon-theme-46.0-3.el10.noarch              184/256 
-   Installing       : snappy-1.1.10-7.el10.x86_64                        185/256 
-   Installing       : libavcodec-free-7.1.2-1.el10_2.x86_64              186/256 
-   Installing       : libavcodec-free-devel-7.1.2-1.el10_2.x86_64        187/256 
-   Installing       : slang-2.3.3-8.el10.x86_64                          188/256 
-   Installing       : libcaca-0.99-0.75.beta20.el10_0.x86_64             189/256 
-   Installing       : publicsuffix-list-dafsa-20240107-5.el10.noarch     190/256 
-   Installing       : libpsl-0.21.5-6.el10.x86_64                        191/256 
-   Installing       : libsoup3-3.6.5-5.el10.x86_64                       192/256 
-   Installing       : osinfo-db-tools-1.11.0-8.el10.x86_64               193/256 
-   Installing       : libosinfo-1.11.0-8.el10.x86_64                     194/256 
-   Installing       : nettle-3.10.1-1.el10.x86_64                        195/256 
-   Installing       : srt-libs-1.5.4-0.rc0.el10_0.1.x86_64               196/256 
-   Installing       : lmdb-libs-0.9.32-4.el10.x86_64                     197/256 
-   Installing       : libldb-4.23.5-105.el10.x86_64                      198/256 
-   Installing       : linux-firmware-whence-20260130-22.el10.noarch      199/256 
-   Installing       : intel-vsc-firmware-20260130-22.el10.noarch         200/256 
-   Installing       : libcamera-ipa-0.6.0-1.el10.x86_64                  201/256 
-   Installing       : libcamera-0.6.0-1.el10.x86_64                      202/256 
-   Installing       : liburing-2.12-1.el10.x86_64                        203/256 
-   Installing       : libtirpc-1.3.5-1.el10.x86_64                       204/256 
-   Running scriptlet: libwbclient-4.23.5-105.el10.x86_64                 205/256 
-   Installing       : libwbclient-4.23.5-105.el10.x86_64                 205/256 
-   Installing       : samba-client-libs-4.23.5-105.el10.x86_64           206/256
-  
-   Installing       : samba-common-libs-4.23.5-105.el10.x86_64           207/256 
-   Installing       : libsmbclient-4.23.5-105.el10.x86_64                208/256 
-   Installing       : libssh-config-0.12.0-2.el10.noarch                 209/256 
-   Installing       : libssh-0.12.0-2.el10.x86_64                        210/256 
-   Installing       : libavformat-free-7.1.2-1.el10_2.x86_64             211/256 
-   Installing       : libavformat-free-devel-7.1.2-1.el10_2.x86_64       212/256 
-   Installing       : libavfilter-free-7.1.2-1.el10_2.x86_64             213/256 
-   Installing       : libavfilter-free-devel-7.1.2-1.el10_2.x86_64       214/256 
-   Installing       : libatomic-14.3.1-4.4.el10.x86_64                   215/256 
-   Installing       : libdex-0.8.1-1.el10.x86_64                         216/256 
-   Installing       : kmod-31-13.el10.x86_64                             217/256 
-   Installing       : kbd-misc-2.6.4-7.el10.noarch                       218/256 
-   Installing       : kbd-legacy-2.6.4-7.el10.noarch                     219/256 
-   Installing       : kbd-2.6.4-7.el10.x86_64                            220/256 
-   Installing       : systemd-udev-257-23.el10.x86_64                    221/256 
-   Running scriptlet: systemd-udev-257-23.el10.x86_64                    221/256 
- Created symlink '/etc/systemd/system/sysinit.target.wants/systemd-pstore.service' → '/usr/lib/systemd/system/systemd-pstore.service'.
- Created symlink '/etc/systemd/system/multi-user.target.wants/remote-cryptsetup.target' → '/usr/lib/systemd/system/remote-cryptsetup.target'.
- 
-   Installing       : inih-58-3.el10.x86_64                              222/256 
-   Installing       : inih-cpp-58-3.el10.x86_64                          223/256 
-   Installing       : exiv2-0.28.3-5.el10.x86_64                         224/256 
-   Installing       : exiv2-libs-0.28.3-5.el10.x86_64                    225/256 
-   Installing       : libgexiv2-0.14.3-3.el10.x86_64                     226/256 
-   Installing       : gobject-introspection-1.79.1-6.el10.x86_64         227/256 
-   Installing       : upower-1.90.10-2.el10.x86_64                       228/256 
-   Running scriptlet: upower-1.90.10-2.el10.x86_64                       228/256 
- Created symlink '/etc/systemd/system/graphical.target.wants/upower.service' → '/usr/lib/systemd/system/upower.service'.
- 
-   Installing       : upower-libs-1.90.10-2.el10.x86_64                  229/256 
-   Installing       : libtracker-sparql-3.7.3-4.el10.x86_64              230/256 
-   Installing       : tracker-3.7.3-4.el10.x86_64                        231/256 
-   Running scriptlet: tracker-3.7.3-4.el10.x86_64                        231/256 
-   Installing       : tracker-miners-3.7.4-1.el10.x86_64                 232/256 
-   Running scriptlet: tracker-miners-3.7.4-1.el10.x86_64                 232/256 
-   Installing       : fuse-common-3.16.2-5.el10.x86_64                   233/256 
-   Installing       : fuse3-3.16.2-5.el10.x86_64                         234/256 
-   Installing       : bluez-libs-5.86-1.el10.x86_64                      235/256 
-   Installing       : pipewire-plugin-libcamera-1.4.9-1.el10.x86_64      236/256 
-   Installing       : pipewire-1.4.9-1.el10.x86_64                       237/256 
-   Running scriptlet: pipewire-1.4.9-1.el10.x86_64                       237/256
-  
- Created symlink '/etc/systemd/user/sockets.target.wants/pipewire.socket' → '/usr/lib/systemd/user/pipewire.socket'.
- 
-   Installing       : pipewire-libs-1.4.9-1.el10.x86_64                  238/256 
-   Installing       : wireplumber-0.5.10-1.el10.x86_64                   239/256 
-   Installing       : wireplumber-libs-0.5.10-1.el10.x86_64              240/256 
-   Installing       : pipewire-jack-audio-connection-kit-1.4.9-1.el10.   241/256 
-   Installing       : pipewire-jack-audio-connection-kit-libs-1.4.9-1.   242/256 
-   Installing       : ModemManager-glib-1.22.0-7.el10.x86_64             243/256 
-   Running scriptlet: geoclue2-2.7.2-1.el10.x86_64                       244/256 
-   Installing       : geoclue2-2.7.2-1.el10.x86_64                       244/256 
-   Running scriptlet: geoclue2-2.7.2-1.el10.x86_64                       244/256 
-   Installing       : xdg-desktop-portal-1.20.0-2.el10.x86_64            245/256 
-   Running scriptlet: xdg-desktop-portal-1.20.0-2.el10.x86_64            245/256 
-   Installing       : libcanberra-gtk3-0.30-37.el10.x86_64               246/256 
-   Installing       : gtk3-3.24.43-5.el10.x86_64                         247/256 
-   Installing       : xdg-desktop-portal-gtk-1.15.3-1.el10.x86_64        248/256 
-   Running scriptlet: xdg-desktop-portal-gtk-1.15.3-1.el10.x86_64        248/256 
-   Installing       : libdecor-0.2.2-5.el10.x86_64                       249/256 
-   Installing       : SDL3-3.2.4-1.el10.x86_64                           250/256 
-   Installing       : sdl2-compat-2.32.50-1.el10.x86_64                  251/256 
-   Installing       : libavdevice-free-7.1.2-1.el10_2.x86_64             252/256 
-   Installing       : libavdevice-free-devel-7.1.2-1.el10_2.x86_64       253/256 
-   Installing       : ffmpeg-free-devel-7.1.2-1.el10_2.x86_64            254/256 
-   Installing       : pipewire-alsa-1.4.9-1.el10.x86_64                  255/256 
-   Installing       : pipewire-pulseaudio-1.4.9-1.el10.x86_64            256/256 
-   Running scriptlet: pipewire-pulseaudio-1.4.9-1.el10.x86_64            256/256 
- Created symlink '/etc/systemd/user/sockets.target.wants/pipewire-pulse.socket' → '/usr/lib/systemd/user/pipewire-pulse.socket'.
- 
-   Running scriptlet: dconf-0.40.0-17.el10.x86_64                        256/256 
-   Running scriptlet: wireplumber-0.5.10-1.el10.x86_64                   256/256 
- Created symlink '/etc/systemd/user/pipewire-session-manager.service' → '/usr/lib/systemd/user/wireplumber.service'.
- Created symlink '/etc/systemd/user/pipewire.service.wants/wireplumber.service' → '/usr/lib/systemd/user/wireplumber.service'.
- 
-   Running scriptlet: pipewire-pulseaudio-1.4.9-1.el10.x86_64            256/256 
- Creating group 'pipewire' with GID 994.
- Creating user 'pipewire' (PipeWire System Daemon) with UID 994 and GID 994.
- Creating group 'systemd-coredump' with GID 993.
- Creating user 'systemd-coredump' (systemd Core Dumper) with UID 993 and GID 993.
- 
- 
- Installed:
-   ModemManager-glib-1.22.0-7.el10.x86_64                                        
-   SDL3-3.2.4-1.el10.x86_64                                                      
-   adwaita-cursor-theme-46.0-3.el10.noarch                                       
-   adwaita-icon-theme-46.0-3.el10.noarch                                         
-   alsa-lib-1.2.15.3-2.el10.x86_64                                               
-   aribb24-1.0.3^20160216git5e9be27-1.el10_0.x86_64                              
-   at-spi2-atk-2.56.1-1.el10.x86_64                                              
-   at-spi2-core-2.56.1-1.el10.x86_64                                             
-   atk-2.56.1-1.el10.x86_64                                                      
-   avahi-glib-0.9~rc2-3.el10.x86_64                                              
-   bluez-libs-5.86-1.el10.x86_64                                                 
-   cjson-1.7.18-1.el10_0.x86_64                                                  
-   codec2-1.2.0-5.el10_0~bootstrap.x86_64                                        
-   colord-libs-1.4.7-6.el10.x86_64                                               
-   cpuinfo-24.09.26-1.git1e83a2f.el10_1.1.x86_64                                 
-   dconf-0.40.0-17.el10.x86_64                                                   
-   duktape-2.7.0-10.el10.x86_64                                                  
-   exempi-2.6.4-7.el10.x86_64                                                    
-   exiv2-0.28.3-5.el10.x86_64                                                    
-   exiv2-libs-0.28.3-5.el10.x86_64                                               
-   fdk-aac-free-2.0.0-15.el10.x86_64                                             
-   ffmpeg-free-devel-7.1.2-1.el10_2.x86_64                                       
-   fftw-libs-double-3.3.10-15.el10.x86_64                                        
-   fftw-libs-single-3.3.10-15.el10.x86_64                                        
-   flac-libs-1.4.3-6.el10.x86_64                                                 
-   freeglut-3.4.0-9.el10.x86_64                                                  
-   fuse-common-3.16.2-5.el10.x86_64                                              
-   fuse3-3.16.2-5.el10.x86_64                                                    
-   fuse3-libs-3.16.2-5.el10.x86_64                                               
-   game-music-emu-0.6.3-16.el10_0.x86_64                                         
-   gdk-pixbuf2-modules-2.42.12-4.el10.x86_64                                     
-   geoclue2-2.7.2-1.el10.x86_64                                                  
-   giflib-5.2.1-22.el10.x86_64                                                   
-   glib-networking-2.80.0-3.el10.x86_64                                          
-   gobject-introspection-1.79.1-6.el10.x86_64                                    
-   graphene-1.10.6-10.el10.x86_64                                                
-   gsettings-desktop-schemas-47.1-4.el10.x86_64                                  
-   gsm-1.0.22-8.el10.x86_64                                                      
-   gstreamer1-1.26.7-5.el10.x86_64                                               
-   gstreamer1-plugins-base-1.26.7-2.el10.x86_64                                  
-   gtk-update-icon-cache-3.24.43-5.el10.x86_64                                   
-   gtk3-3.24.43-5.el10.x86_64                                                    
-   hicolor-icon-theme-0.17-20.el10.noarch                                        
-   highway-1.3.0-1.el10_2.x86_64                                                 
-   hwdata-0.379-10.8.el10.noarch                                                 
-   ilbc-3.0.4-12.el10_0.x86_64                                                   
-   inih-58-3.el10.x86_64                                                         
-   inih-cpp-58-3.el10.x86_64                                                     
-   intel-vpl-gpu-rt-25.4.5-1.el10_2.x86_64                                       
-   intel-vsc-firmware-20260130-22.el10.noarch                                    
-   iso-codes-4.16.0-6.el10.noarch                                                
-   json-glib-1.8.0-5.el10.x86_64                                                 
-   jxl-pixbuf-loader-1:0.10.4-1.el10_1.x86_64                                    
-   kbd-2.6.4-7.el10.x86_64                                                       
-   kbd-legacy-2.6.4-7.el10.noarch                                                
-   kbd-misc-2.6.4-7.el10.noarch                                                  
-   kmod-31-13.el10.x86_64                                                        
-   ladspa-1.17-6.el10_0.x86_64                                                   
-   lame-libs-3.100-19.el10.x86_64                                                
-   leptonica-1.84.1-5.el10.x86_64                                                
-   libXcomposite-0.4.6-5.el10.x86_64                                             
-   libXcursor-1.2.1-9.el10.x86_64                                                
-   libXdamage-1.1.6-5.el10.x86_64                                                
-   libXfixes-6.0.1-5.el10.x86_64                                                 
-   libXi-1.8.1-7.el10.x86_64                                                     
-   libXinerama-1.1.5-8.el10.x86_64                                               
-   libXrandr-1.5.4-5.el10.x86_64                                                 
-   libXtst-1.2.4-8.el10.x86_64                                                   
-   libXv-1.0.12-5.el10.x86_64                                                    
-   libXxf86vm-1.1.5-8.el10.x86_64                                                
-   libaom-3.13.1-1.el10_2.x86_64                                                 
-   libaribcaption-1.1.1-1.el10_0.x86_64                                          
-   libass-0.17.3-2.el10_0.x86_64                                                 
-   libasyncns-0.8-30.el10.x86_64                                                 
-   libatomic-14.3.1-4.4.el10.x86_64                                              
-   libavc1394-0.5.4-24.el10_0.x86_64                                             
-   libavcodec-free-7.1.2-1.el10_2.x86_64                                         
-   libavcodec-free-devel-7.1.2-1.el10_2.x86_64                                   
-   libavdevice-free-7.1.2-1.el10_2.x86_64                                        
-   libavdevice-free-devel-7.1.2-1.el10_2.x86_64                                  
-   libavfilter-free-7.1.2-1.el10_2.x86_64                                        
-   libavfilter-free-devel-7.1.2-1.el10_2.x86_64                                  
-   libavformat-free-7.1.2-1.el10_2.x86_64                                        
-   libavformat-free-devel-7.1.2-1.el10_2.x86_64                                  
-   libavutil-free-7.1.2-1.el10_2.x86_64                                          
-   libavutil-free-devel-7.1.2-1.el10_2.x86_64                                    
-   libbluray-1.3.4-7.el10_0.x86_64                                               
-   libbs2b-3.1.0-34.el10_0.x86_64                                                
-   libcaca-0.99-0.75.beta20.el10_0.x86_64                                        
-   libcamera-0.6.0-1.el10.x86_64                                                 
-   libcamera-ipa-0.6.0-1.el10.x86_64                                             
-   libcanberra-0.30-37.el10.x86_64                                               
-   libcanberra-gtk3-0.30-37.el10.x86_64                                          
-   libcdio-2.1.0-15.el10.x86_64                                                  
-   libcdio-paranoia-10.2+2.0.2-2.el10_0.x86_64                                   
-   libdav1d-1.5.3-1.el10_3.x86_64                                                
-   libdc1394-2.2.7-6.el10_0.x86_64                                               
-   libdecor-0.2.2-5.el10.x86_64                                                  
-   libdex-0.8.1-1.el10.x86_64                                                    
-   libdovi-3.3.1-1.el10_0.x86_64                                                 
-   libdrm-2.4.128-1.el10.x86_64                                                  
-   libdvdnav-6.1.1-10.el10.x86_64                                                
-   libdvdread-6.1.3-9.el10.x86_64                                                
-   libepoxy-1.5.10-10.el10.x86_64                                                
-   libexif-0.6.24-9.el10.x86_64                                                  
-   libgexiv2-0.14.3-3.el10.x86_64                                                
-   libglvnd-1:1.7.0-7.el10.x86_64                                                
-   libglvnd-egl-1:1.7.0-7.el10.x86_64                                            
-   libglvnd-glx-1:1.7.0-7.el10.x86_64                                            
-   libglvnd-opengl-1:1.7.0-7.el10.x86_64                                         
-   libgsf-1.14.53-2.el10.x86_64                                                  
-   libgudev-238-7.el10.x86_64                                                    
-   libgusb-0.4.9-4.el10.x86_64                                                   
-   libgxps-0.3.2-11.el10.x86_64                                                  
-   libiec61883-1.2.0-36.el10_0.x86_64                                            
-   libiptcdata-1.0.5-20.el10.x86_64                                              
-   libjxl-1:0.10.4-1.el10_1.x86_64                                               
-   liblc3-1.1.3-1.el10.x86_64                                                    
-   libldac-2.0.2.3-17.el10.x86_64                                                
-   libldb-4.23.5-105.el10.x86_64                                                 
-   libmodplug-1:0.8.9.0-25.el10_0.x86_64                                         
-   libmysofa-1.3.3-1.el10_0.x86_64                                               
-   libnotify-0.8.6-1.el10.x86_64                                                 
-   libogg-2:1.3.5-10.el10.x86_64                                                 
-   libopenmpt-0.8.4-1.el10_2.x86_64                                              
-   libosinfo-1.11.0-8.el10.x86_64                                                
-   libpciaccess-0.16-16.el10.x86_64                                              
-   libplacebo-7.349.0-4.el10_0.x86_64                                            
-   libportal-0.9.0-3.el10.x86_64                                                 
-   libpostproc-free-7.1.2-1.el10_2.x86_64                                        
-   libpostproc-free-devel-7.1.2-1.el10_2.x86_64                                  
-   libproxy-0.5.5-4.el10.x86_64                                                  
-   libpsl-0.21.5-6.el10.x86_64                                                   
-   librabbitmq-0.14.0-3.el10.x86_64                                              
-   libraw1394-2.1.2-21.el10_0.x86_64                                             
-   librist-0.2.7-6.el10_0.x86_64                                                 
-   libsamplerate-0.2.2-10.el10.x86_64                                            
-   libsbc-2.0-7.el10.x86_64                                                      
-   libshaderc-2025.4-1.el10.x86_64                                               
-   libsmbclient-4.23.5-105.el10.x86_64                                           
-   libsndfile-1.2.2-6.el10.x86_64                                                
-   libsodium-1.0.21-2.el10_2.x86_64                                              
-   libsoup3-3.6.5-5.el10.x86_64                                                  
-   libssh-0.12.0-2.el10.x86_64                                                   
-   libssh-config-0.12.0-2.el10.noarch                                            
-   libswresample-free-7.1.2-1.el10_2.x86_64                                      
-   libswresample-free-devel-7.1.2-1.el10_2.x86_64                                
-   libswscale-free-7.1.2-1.el10_2.x86_64                                         
-   libswscale-free-devel-7.1.2-1.el10_2.x86_64                                   
-   libtalloc-2.4.3-100.el10.x86_64                                               
-   libtdb-1.4.14-100.el10.x86_64                                                 
-   libtevent-0.17.1-100.el10.x86_64                                              
-   libtheora-1:1.1.1-39.el10.x86_64                                              
-   libtirpc-1.3.5-1.el10.x86_64                                                  
-   libtracker-sparql-3.7.3-4.el10.x86_64                                         
-   libudfread-1.1.2-9.el10_0.x86_64                                              
-   libunibreak-6.1-2.el10_0.x86_64                                               
-   libunwind-1.8.0-4.el10_0.x86_64                                               
-   liburing-2.12-1.el10.x86_64                                                   
-   libusb1-1.0.29-3.el10.x86_64                                                  
-   libv4l-1.26.1-5.el10.x86_64                                                   
-   libva-2.22.0-2.el10.x86_64                                                    
-   libvdpau-1.5-8.el10.x86_64                                                    
-   libvmaf-3.0.0-2.el10_0.x86_64                                                 
-   libvorbis-1:1.3.7-12.el10.x86_64                                              
-   libvpl-1:2.16.0-1.el10_2.x86_64                                               
-   libvpx-1.14.1-6.el10.x86_64                                                   
-   libwayland-client-1.24.0-1.el10.x86_64                                        
-   libwayland-cursor-1.24.0-1.el10.x86_64                                        
-   libwayland-egl-1.24.0-1.el10.x86_64                                           
-   libwbclient-4.23.5-105.el10.x86_64                                            
-   libxkbcommon-1.7.0-4.el10.x86_64                                              
-   libxshmfence-1.3.2-5.el10.x86_64                                              
-   lilv-libs-0.26.4-1.el10_3.x86_64                                              
-   linux-firmware-whence-20260130-22.el10.noarch                                 
-   llvm-filesystem-21.1.8-1.el10.x86_64                                          
-   llvm-libs-21.1.8-1.el10.x86_64                                                
-   lmdb-libs-0.9.32-4.el10.x86_64                                                
-   low-memory-monitor-2.1-12.el10.x86_64                                         
-   lv2-1.18.10-1.el10_0.x86_64                                                   
-   mbedtls-3.6.5-1.el10_2.x86_64                                                 
-   mesa-dri-drivers-25.2.7-5.el10.x86_64                                         
-   mesa-filesystem-25.2.7-5.el10.x86_64                                          
-   mesa-libEGL-25.2.7-5.el10.x86_64                                              
-   mesa-libGL-25.2.7-5.el10.x86_64                                               
-   mesa-libGLU-9.0.3-7.el10.x86_64                                               
-   mesa-libgbm-25.2.7-5.el10.x86_64                                              
-   mesa-vulkan-drivers-25.2.7-5.el10.x86_64                                      
-   mpg123-libs-1.32.9-1.el10.x86_64                                              
-   nettle-3.10.1-1.el10.x86_64                                                   
-   noopenh264-0.1.0~openh264_2.4.1-2.el10_0.x86_64                               
-   ocl-icd-2.3.2-8.el10.x86_64                                                   
-   openal-soft-1.23.1-6.el10_0.x86_64                                            
-   opencore-amr-0.1.6-7.el10_0.x86_64                                            
-   openexr-libs-3.1.10-9.el10.x86_64                                             
-   openpgm-5.2.122-36.el10_0.x86_64                                              
-   opus-1.4-6.el10.x86_64                                                        
-   orc-0.4.39-2.el10.x86_64                                                      
-   osinfo-db-20250606-2.el10.noarch                                              
-   osinfo-db-tools-1.11.0-8.el10.x86_64                                          
-   pipewire-1.4.9-1.el10.x86_64                                                  
-   pipewire-alsa-1.4.9-1.el10.x86_64                                             
-   pipewire-jack-audio-connection-kit-1.4.9-1.el10.x86_64                        
-   pipewire-jack-audio-connection-kit-libs-1.4.9-1.el10.x86_64                   
-   pipewire-libs-1.4.9-1.el10.x86_64                                             
-   pipewire-plugin-libcamera-1.4.9-1.el10.x86_64                                 
-   pipewire-pulseaudio-1.4.9-1.el10.x86_64                                       
-   polkit-125-4.el10.x86_64                                                      
-   polkit-libs-125-4.el10.x86_64                                                 
-   polkit-pkla-compat-0.1-30.el10.x86_64                                         
-   publicsuffix-list-dafsa-20240107-5.el10.noarch                                
-   pulseaudio-libs-17.0-6.el10.x86_64                                            
-   qrencode-libs-4.1.1-9.el10_0.x86_64                                           
-   rav1e-libs-0.8.1-2.el10_2.x86_64                                              
-   rtkit-0.11-68.el10.x86_64                                                     
-   rubberband-3.3.0-8.el10_0.x86_64                                              
-   samba-client-libs-4.23.5-105.el10.x86_64                                      
-   samba-common-4.23.5-105.el10.noarch                                           
-   samba-common-libs-4.23.5-105.el10.x86_64                                      
-   sdl2-compat-2.32.50-1.el10.x86_64                                             
-   serd-0.32.8-1.el10_3.x86_64                                                   
-   slang-2.3.3-8.el10.x86_64                                                     
-   snappy-1.1.10-7.el10.x86_64                                                   
-   sord-0.16.22-1.el10_3.x86_64                                                  
-   sound-theme-freedesktop-0.8-23.el10.noarch                                    
-   soxr-0.1.3-17.el10_0.x86_64                                                   
-   speex-1.2.0-19.el10.x86_64                                                    
-   spirv-tools-libs-2025.4-1.el10.x86_64                                         
-   sratom-0.6.22-1.el10_3.x86_64                                                 
-   srt-libs-1.5.4-0.rc0.el10_0.1.x86_64                                          
-   svt-av1-libs-2.3.0-1.el10_0.x86_64                                            
-   systemd-udev-257-23.el10.x86_64                                               
-   tesseract-5.3.4-6.el10.x86_64                                                 
-   tesseract-langpack-eng-4.1.0-9.el10.noarch                                    
-   tesseract-tessdata-doc-4.1.0-9.el10.noarch                                    
-   tracker-3.7.3-4.el10.x86_64                                                   
-   tracker-miners-3.7.4-1.el10.x86_64                                            
-   twolame-libs-0.4.0-6.el10.x86_64                                              
-   upower-1.90.10-2.el10.x86_64                                                  
-   upower-libs-1.90.10-2.el10.x86_64                                             
-   vamp-plugin-sdk-2.10-2.el10_0.x86_64                                          
-   vid.stab-1.1.1-4.el10_0.x86_64                                                
-   vo-amrwbenc-0.1.3-21.el10_0.x86_64                                            
-   vulkan-loader-1.4.328.1-1.el10.x86_64                                         
-   webrtc-audio-processing-1.3-5.el10.x86_64                                     
-   wireplumber-0.5.10-1.el10.x86_64                                              
-   wireplumber-libs-0.5.10-1.el10.x86_64                                         
-   xdg-desktop-portal-1.20.0-2.el10.x86_64                                       
-   xdg-desktop-portal-gtk-1.15.3-1.el10.x86_64                                   
-   xkeyboard-config-2.41-3.el10.noarch                                           
-   xprop-1.2.7-3.el10.x86_64                                                     
-   xvidcore-1.3.7-12.el10_0.x86_64                                               
-   zeromq-4.3.5-18.el10_0.x86_64                                                 
-   zimg-3.0.6-2.el10_1.x86_64                                                    
-   zix-0.8.0-2.el10_3.x86_64                                                     
-   zvbi-0.2.42-1.el10_0.x86_64                                                   
- 
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "epel-release" "ffmpeg-free-devel"
- epel-release-10-5.el10s.noarch
- ffmpeg-free-devel-7.1.2-1.el10_2.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.46 ---> saved as "1808fc6ac376853619eb9ecede549f6fc745384cc134817a9c3c868f83425451"

/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:02.51 ---> saved as "217dfd59a89338e4c648f56cf82441c2b4a90580301b5e04bec7bfbcf24a3ee7"

/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 \"\\\"centos-10\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != '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" "255" "@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:02.55 ---> saved as "c689906b4d3f3b7abe85354004fca2ba730aa57cee1166212e5f0f6e73edc22f"
Job succeeded
2026-04-10 15:03.00: Job succeeded