(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-9-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-9-ocaml-5.4@sha256:0006bfe3e73e34ca6671131cc6ce6c8347abaa92b27c80a06070b1e5bc106bac
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-9\""; 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-9\""; 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-9-ocaml-5.4@sha256:0006bfe3e73e34ca6671131cc6ce6c8347abaa92b27c80a06070b1e5bc106bac-ffmpeg-avcodec.1.3.0-d2c2fde7ed0f03ab1c97ec11eae2846e1c000577"
2026-04-10 14:44.28: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-5.4@sha256:0006bfe3e73e34ca6671131cc6ce6c8347abaa92b27c80a06070b1e5bc106bac)
 (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-9\\\"\"; 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-9\\\"\"; 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.58: Waiting for worker…
2026-04-10 14:51.32: Got resource from pool OCluster
Building on asteria.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-9-ocaml-5.4@sha256:0006bfe3e73e34ca6671131cc6ce6c8347abaa92b27c80a06070b1e5bc106bac)
2026-04-10 14:51.41 ---> using "5a483e8f384c1537bd6414fb1d6ecd3225b81ddae6fbf219b83d309e284e23ed" 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.41 ---> using "cc866741f68ba0820027f959034bbac9d8ed1b253b6a4b890ea810e0febc9293" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-10 14:51.41 ---> using "1abe7714bd7ebb3bddf5c6252090e0b09511e9f875ff9d165571f697a60e2a4b" 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=9
# 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.41 ---> using "1ebab396bbda61aacd87e5f6925a5a09c28010175ae84fbb33f76e9b036f5623" 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.41 ---> using "ffe25c3850d1bb9516372defcb6239181e7b51ce707e83406dcc6ff2a0e9b32b" from cache

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

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

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS                         78 kB/s |  14 kB     00:00    
- CentOS Stream 9 - BaseOS                        272 kB/s | 8.9 MB     00:33    
- CentOS Stream 9 - AppStream                     115 kB/s |  15 kB     00:00    
- CentOS Stream 9 - AppStream                      97 kB/s |  27 MB     04:48    
- CentOS Stream 9 - CRB                           108 kB/s |  14 kB     00:00    
- CentOS Stream 9 - CRB                           183 kB/s | 8.0 MB     00:44    
- CentOS Stream 9 - Extras packages               118 kB/s |  16 kB     00:00    
- Metadata cache created.
2026-04-10 14:58.10 ---> saved as "b9ae9716101941ed2d959261d5fc5ffd79c77cf8f31f99bd84162cc517f7e3eb"

/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:58.11 ---> saved as "d7222aff757299d9d9a459d5fecea19caf431a7ac2ed66579a11cab9b3b60091"

/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-9\\\"\"; 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:58:09 2026.
- Dependencies resolved.
- ================================================================================
-  Package                Arch        Version            Repository          Size
- ================================================================================
- Installing:
-  epel-release           noarch      9-7.el9            extras-common       19 k
- Installing weak dependencies:
-  dnf-plugins-core       noarch      4.3.0-26.el9       baseos              36 k
-  epel-next-release      noarch      9-7.el9            extras-common      8.1 k
- 
- Transaction Summary
- ================================================================================
- Install  3 Packages
- 
- Total download size: 62 k
- Installed size: 51 k
- Downloading Packages:
- (1/3): epel-next-release-9-7.el9.noarch.rpm     131 kB/s | 8.1 kB     00:00    
- (2/3): epel-release-9-7.el9.noarch.rpm          211 kB/s |  19 kB     00:00    
- (3/3): dnf-plugins-core-4.3.0-26.el9.noarch.rpm 5.7 kB/s |  36 kB     00:06    
- --------------------------------------------------------------------------------
- Total                                           9.5 kB/s |  62 kB     00:06     
- CentOS Stream 9 - 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
- 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.3.0-26.el9.noarch                   1/3 
-   Installing       : epel-next-release-9-7.el9.noarch                       2/3 
-   Installing       : epel-release-9-7.el9.noarch                            3/3 
-   Running scriptlet: epel-release-9-7.el9.noarch                            3/3 
- Many EPEL packages require the CodeReady Builder (CRB) repository.
- It is recommended that you run /usr/bin/crb enable to enable the CRB repository.
- 
-   Verifying        : dnf-plugins-core-4.3.0-26.el9.noarch                   1/3 
-   Verifying        : epel-next-release-9-7.el9.noarch                       2/3 
-   Verifying        : epel-release-9-7.el9.noarch                            3/3 
- 
- Installed:
-   dnf-plugins-core-4.3.0-26.el9.noarch     epel-next-release-9-7.el9.noarch    
-   epel-release-9-7.el9.noarch             
- 
- Complete!
+ /usr/bin/sudo "yum" "install" "-y" "ffmpeg-free-devel"
- Extra Packages for Enterprise Linux 9 - x86_64  288 kB/s |  20 MB     01:12    
- Extra Packages for Enterprise Linux 9 openh264  5.7 kB/s | 2.5 kB     00:00    
- Extra Packages for Enterprise Linux 9 - Next -   72 kB/s | 260 kB     00:03    
- Dependencies resolved.
- ==============================================================================================
-  Package                    Arch    Version                         Repository            Size
- ==============================================================================================
- Installing:
-  ffmpeg-free-devel          x86_64  5.1.4-3.el9                     epel                 129 k
- Installing dependencies:
-  SDL2                       x86_64  2.26.0-1.el9                    appstream            682 k
-  cjson                      x86_64  1.7.18-1.el9                    epel                  31 k
-  codec2                     x86_64  1.0.3-1.el9                     epel                 637 k
-  fftw-libs-double           x86_64  3.3.8-12.el9                    appstream            910 k
-  game-music-emu             x86_64  0.6.3-9.el9                     epel                 154 k
-  highway                    x86_64  1.3.0-1.el9                     epel                 553 k
-  ilbc                       x86_64  3.0.4-1.el9                     epel                  51 k
-  intel-mediasdk             x86_64  21.3.5-1.el9                    epel                 2.6 M
-  jansson                    x86_64  2.14-1.el9                      baseos                46 k
-  ladspa                     x86_64  1.13-28.el9                     crb                   51 k
-  lame-libs                  x86_64  3.100-12.el9                    appstream            333 k
-  leptonica                  x86_64  1.80.0-4.el9.1                  appstream            1.1 M
-  libaom                     x86_64  3.13.1-1.el9                    epel                 1.8 M
-  libass                     x86_64  0.17.1-1.el9                    epel                 116 k
-  libavc1394                 x86_64  0.5.4-17.el9                    epel                  55 k
-  libavcodec-free            x86_64  5.1.4-3.el9                     epel                 4.0 M
-  libavcodec-free-devel      x86_64  5.1.4-3.el9                     epel                  68 k
-  libavdevice-free           x86_64  5.1.4-3.el9                     epel                  86 k
-  libavdevice-free-devel     x86_64  5.1.4-3.el9                     epel                  18 k
-  libavfilter-free           x86_64  5.1.4-3.el9                     epel                 1.4 M
-  libavfilter-free-devel     x86_64  5.1.4-3.el9                     epel                  27 k
-  libavformat-free           x86_64  5.1.4-3.el9                     epel                 1.1 M
-  libavformat-free-devel     x86_64  5.1.4-3.el9                     epel                  47 k
-  libavutil-free             x86_64  5.1.4-3.el9                     epel                 320 k
-  libavutil-free-devel       x86_64  5.1.4-3.el9                     epel                 137 k
-  libbluray                  x86_64  1.3.4-1.el9                     epel                 171 k
-  libbs2b                    x86_64  3.1.0-27.el9                    epel                  28 k
-  libcaca                    x86_64  0.99-0.69.beta20.el9            epel                 218 k
-  libcdio                    x86_64  2.1.0-6.el9                     appstream            254 k
-  libcdio-paranoia           x86_64  10.2+2.0.1-6.el9                appstream             87 k
-  libchromaprint             x86_64  1.5.1-1.el9                     epel                  39 k
-  libdav1d                   x86_64  1.5.3-1.el9                     epel                 610 k
-  libdc1394                  x86_64  2.2.6-7.el9                     epel                 127 k
-  libdecor                   x86_64  0.1.1-1.el9                     appstream             43 k
-  libiec61883                x86_64  1.2.0-29.el9                    epel                  40 k
-  libjxl                     x86_64  0.7.2-2.el9                     epel                 982 k
-  libldb                     x86_64  4.23.5-6.el9                    baseos               186 k
-  libmodplug                 x86_64  1:0.8.9.0-13.el9                epel                 171 k
-  libmysofa                  x86_64  1.2.1-1.el9                     epel                  42 k
-  libopenmpt                 x86_64  0.8.4-1.el9                     epel                 748 k
-  libpostproc-free           x86_64  5.1.4-3.el9                     epel                  55 k
-  libpostproc-free-devel     x86_64  5.1.4-3.el9                     epel                  11 k
-  librabbitmq                x86_64  0.11.0-7.el9                    appstream             45 k
-  libraw1394                 x86_64  2.1.2-14.el9                    epel                  65 k
-  librist                    x86_64  0.2.7-1.el9                     epel                  76 k
-  libsamplerate              x86_64  0.1.9-10.el9                    appstream            1.3 M
-  libshaderc                 x86_64  2025.4-1.el9                    appstream            1.0 M
-  libsmbclient               x86_64  4.23.5-6.el9                    baseos                75 k
-  libsodium                  x86_64  1.0.18-9.el9                    epel                 160 k
-  libssh                     x86_64  0.10.4-18.el9                   baseos               213 k
-  libssh-config              noarch  0.10.4-18.el9                   baseos               8.0 k
-  libswresample-free         x86_64  5.1.4-3.el9                     epel                  64 k
-  libswresample-free-devel   x86_64  5.1.4-3.el9                     epel                  19 k
-  libswscale-free            x86_64  5.1.4-3.el9                     epel                 185 k
-  libswscale-free-devel      x86_64  5.1.4-3.el9                     epel                  17 k
-  libtalloc                  x86_64  2.4.3-1.el9                     baseos                34 k
-  libtevent                  x86_64  0.17.1-1.el9                    baseos                50 k
-  libtirpc                   x86_64  1.3.3-9.el9                     baseos                94 k
-  libudfread                 x86_64  1.1.2-2.el9                     epel                  33 k
-  libunwind                  x86_64  1.6.2-1.el9                     epel                  67 k
-  libv4l                     x86_64  1.20.0-6.el9                    appstream            202 k
-  libva                      x86_64  2.22.0-1.el9                    appstream            116 k
-  libvdpau                   x86_64  1.5-1.el9                       appstream             17 k
-  libvmaf                    x86_64  2.3.0-2.el9                     epel                 177 k
-  libvpx                     x86_64  1.9.0-10.el9                    appstream            1.0 M
-  libwbclient                x86_64  4.23.5-6.el9                    baseos                43 k
-  lilv-libs                  x86_64  0.24.14-3.el9                   epel                  58 k
-  lmdb-libs                  x86_64  0.9.29-3.el9                    baseos                61 k
-  lpcnetfreedv               x86_64  0.2-11.el9                      epel                 7.3 M
-  lv2                        x86_64  1.18.8-4.el9                    epel                  90 k
-  mbedtls                    x86_64  2.28.8-1.el9                    epel                 398 k
-  mpg123-libs                x86_64  1.32.9-1.el9                    appstream            350 k
-  ocl-icd                    x86_64  2.2.13-4.el9                    appstream             52 k
-  openal-soft                x86_64  1.19.1-16.el9                   appstream            535 k
-  opencore-amr               x86_64  0.1.6-3.el9                     epel                 172 k
-  openpgm                    x86_64  5.2.122-28.el9                  epel                 176 k
-  rav1e-libs                 x86_64  0.8.1-2.el9                     epel                 1.1 M
-  rubberband                 x86_64  3.1.3-2.el9                     epel                 365 k
-  samba-client-libs          x86_64  4.23.5-6.el9                    baseos               5.6 M
-  samba-common               noarch  4.23.5-6.el9                    baseos               177 k
-  samba-common-libs          x86_64  4.23.5-6.el9                    baseos               104 k
-  serd                       x86_64  0.30.12-2.el9                   epel                  61 k
-  slang                      x86_64  2.3.2-11.el9                    baseos               374 k
-  snappy                     x86_64  1.1.8-8.el9                     baseos                35 k
-  sord                       x86_64  0.16.10-2.el9                   epel                  46 k
-  soxr                       x86_64  0.1.3-11.el9                    epel                  82 k
-  speex                      x86_64  1.2.0-11.el9                    appstream             68 k
-  sratom                     x86_64  0.6.10-2.el9                    epel                  26 k
-  srt-libs                   x86_64  1.4.4-1.el9                     epel                 291 k
-  svt-av1-libs               x86_64  0.9.0-1.el9                     epel                 1.7 M
-  tesseract                  x86_64  4.1.1-7.el9                     appstream            1.3 M
-  tesseract-langpack-eng     noarch  4.1.0-3.el9                     appstream            1.7 M
-  tesseract-tessdata-doc     noarch  4.1.0-3.el9                     appstream             14 k
-  twolame-libs               x86_64  0.3.13-19.el9                   appstream             58 k
-  vamp-plugin-sdk            x86_64  2.9.0-4.el9                     epel                 171 k
-  vapoursynth-libs           x86_64  57-4.el9                        epel                 501 k
-  vid.stab                   x86_64  1.1.0-14.20201110gitf9166e9.el9 epel                  49 k
-  vo-amrwbenc                x86_64  0.1.3-18.el9                    epel                  75 k
-  xvidcore                   x86_64  1.3.7-9.el9                     epel                 252 k
-  zeromq                     x86_64  4.3.4-2.el9                     epel                 431 k
-  zimg                       x86_64  3.0.6-2.el9                     epel                 275 k
-  zvbi                       x86_64  0.2.35-15.el9                   epel                 413 k
- Installing weak dependencies:
-  jxl-pixbuf-loader          x86_64  0.7.2-2.el9                     epel                  52 k
-  openh264                   x86_64  2.3.1-1.el9                     epel-cisco-openh264  425 k
- 
- Transaction Summary
- ==============================================================================================
- Install  105 Packages
- 
- Total download size: 50 M
- Installed size: 152 M
- Downloading Packages:
- (1/105): libldb-4.23.5-6.el9.x86_64.rpm         834 kB/s | 186 kB     00:00    
- (2/105): libssh-0.10.4-18.el9.x86_64.rpm        531 kB/s | 213 kB     00:00    
- (3/105): jansson-2.14-1.el9.x86_64.rpm           57 kB/s |  46 kB     00:00    
- (4/105): libtalloc-2.4.3-1.el9.x86_64.rpm       1.0 MB/s |  34 kB     00:00    
- (5/105): libtevent-0.17.1-1.el9.x86_64.rpm      1.3 MB/s |  50 kB     00:00    
- (6/105): libssh-config-0.10.4-18.el9.noarch.rpm  29 kB/s | 8.0 kB     00:00    
- (7/105): libtirpc-1.3.3-9.el9.x86_64.rpm        1.1 MB/s |  94 kB     00:00    
- (8/105): lmdb-libs-0.9.29-3.el9.x86_64.rpm      325 kB/s |  61 kB     00:00    
- (9/105): libsmbclient-4.23.5-6.el9.x86_64.rpm    65 kB/s |  75 kB     00:01    
- (10/105): libwbclient-4.23.5-6.el9.x86_64.rpm   140 kB/s |  43 kB     00:00    
- (11/105): samba-common-libs-4.23.5-6.el9.x86_64 928 kB/s | 104 kB     00:00    
- (12/105): slang-2.3.2-11.el9.x86_64.rpm         992 kB/s | 374 kB     00:00    
- (13/105): snappy-1.1.8-8.el9.x86_64.rpm         734 kB/s |  35 kB     00:00    
- (14/105): samba-common-4.23.5-6.el9.noarch.rpm  232 kB/s | 177 kB     00:00    
- (15/105): SDL2-2.26.0-1.el9.x86_64.rpm          296 kB/s | 682 kB     00:02    
- (16/105): fftw-libs-double-3.3.8-12.el9.x86_64.  94 kB/s | 910 kB     00:09    
- (17/105): leptonica-1.80.0-4.el9.1.x86_64.rpm   131 kB/s | 1.1 MB     00:08    
- (18/105): libcdio-2.1.0-6.el9.x86_64.rpm        247 kB/s | 254 kB     00:01    
- (19/105): lame-libs-3.100-12.el9.x86_64.rpm      19 kB/s | 333 kB     00:17    
- (20/105): libdecor-0.1.1-1.el9.x86_64.rpm        66 kB/s |  43 kB     00:00    
- (21/105): libcdio-paranoia-10.2+2.0.1-6.el9.x86  62 kB/s |  87 kB     00:01    
- (22/105): librabbitmq-0.11.0-7.el9.x86_64.rpm    98 kB/s |  45 kB     00:00    
- (23/105): libshaderc-2025.4-1.el9.x86_64.rpm     87 kB/s | 1.0 MB     00:12    
- (24/105): libv4l-1.20.0-6.el9.x86_64.rpm        770 kB/s | 202 kB     00:00    
- (25/105): libva-2.22.0-1.el9.x86_64.rpm         955 kB/s | 116 kB     00:00    
- (26/105): libvdpau-1.5-1.el9.x86_64.rpm         406 kB/s |  17 kB     00:00    
- (27/105): libsamplerate-0.1.9-10.el9.x86_64.rpm 100 kB/s | 1.3 MB     00:13    
- (28/105): mpg123-libs-1.32.9-1.el9.x86_64.rpm   160 kB/s | 350 kB     00:02    
- (29/105): ocl-icd-2.2.13-4.el9.x86_64.rpm        40 kB/s |  52 kB     00:01    
- (30/105): libvpx-1.9.0-10.el9.x86_64.rpm        230 kB/s | 1.0 MB     00:04    
- (31/105): speex-1.2.0-11.el9.x86_64.rpm         158 kB/s |  68 kB     00:00    
- (32/105): openal-soft-1.19.1-16.el9.x86_64.rpm  243 kB/s | 535 kB     00:02    
- (33/105): samba-client-libs-4.23.5-6.el9.x86_64 131 kB/s | 5.6 MB     00:43    
- (34/105): tesseract-tessdata-doc-4.1.0-3.el9.no  90 kB/s |  14 kB     00:00    
- (35/105): twolame-libs-0.3.13-19.el9.x86_64.rpm  88 kB/s |  58 kB     00:00    
- (36/105): ladspa-1.13-28.el9.x86_64.rpm          42 kB/s |  51 kB     00:01    
- (37/105): cjson-1.7.18-1.el9.x86_64.rpm         124 kB/s |  31 kB     00:00    
- (38/105): codec2-1.0.3-1.el9.x86_64.rpm         950 kB/s | 637 kB     00:00    
- (39/105): ffmpeg-free-devel-5.1.4-3.el9.x86_64.  82 kB/s | 129 kB     00:01    
- (40/105): game-music-emu-0.6.3-9.el9.x86_64.rpm 764 kB/s | 154 kB     00:00    
- (41/105): tesseract-4.1.1-7.el9.x86_64.rpm      136 kB/s | 1.3 MB     00:09    
- (42/105): highway-1.3.0-1.el9.x86_64.rpm        498 kB/s | 553 kB     00:01    
- (43/105): ilbc-3.0.4-1.el9.x86_64.rpm            81 kB/s |  51 kB     00:00    
- (44/105): jxl-pixbuf-loader-0.7.2-2.el9.x86_64. 383 kB/s |  52 kB     00:00    
- (45/105): libaom-3.13.1-1.el9.x86_64.rpm        366 kB/s | 1.8 MB     00:05    
- (46/105): libass-0.17.1-1.el9.x86_64.rpm        165 kB/s | 116 kB     00:00    
- (47/105): libavc1394-0.5.4-17.el9.x86_64.rpm    169 kB/s |  55 kB     00:00    
- (48/105): intel-mediasdk-21.3.5-1.el9.x86_64.rp 111 kB/s | 2.6 MB     00:24    
- (49/105): libavcodec-free-devel-5.1.4-3.el9.x86  36 kB/s |  68 kB     00:01    
- (50/105): libavdevice-free-5.1.4-3.el9.x86_64.r 765 kB/s |  86 kB     00:00    
- (51/105): libavdevice-free-devel-5.1.4-3.el9.x8  34 kB/s |  18 kB     00:00    
- (52/105): libavfilter-free-5.1.4-3.el9.x86_64.r 190 kB/s | 1.4 MB     00:07    
- (53/105): libavfilter-free-devel-5.1.4-3.el9.x8 110 kB/s |  27 kB     00:00    
- (54/105): libavcodec-free-5.1.4-3.el9.x86_64.rp 123 kB/s | 4.0 MB     00:33    
- (55/105): libavformat-free-devel-5.1.4-3.el9.x8  50 kB/s |  47 kB     00:00    
- (56/105): libavutil-free-5.1.4-3.el9.x86_64.rpm 696 kB/s | 320 kB     00:00    
- (57/105): libavutil-free-devel-5.1.4-3.el9.x86_  76 kB/s | 137 kB     00:01    
- (58/105): libbluray-1.3.4-1.el9.x86_64.rpm      167 kB/s | 171 kB     00:01    
- (59/105): libbs2b-3.1.0-27.el9.x86_64.rpm        72 kB/s |  28 kB     00:00    
- (60/105): libcaca-0.99-0.69.beta20.el9.x86_64.r  94 kB/s | 218 kB     00:02    
- (61/105): libchromaprint-1.5.1-1.el9.x86_64.rpm 183 kB/s |  39 kB     00:00    
- (62/105): libdav1d-1.5.3-1.el9.x86_64.rpm        44 kB/s | 610 kB     00:13    
- (63/105): libdc1394-2.2.6-7.el9.x86_64.rpm       62 kB/s | 127 kB     00:02    
- (64/105): libiec61883-1.2.0-29.el9.x86_64.rpm    73 kB/s |  40 kB     00:00    
- (65/105): libavformat-free-5.1.4-3.el9.x86_64.r  29 kB/s | 1.1 MB     00:37    
- (66/105): libmodplug-0.8.9.0-13.el9.x86_64.rpm  103 kB/s | 171 kB     00:01    
- (67/105): libmysofa-1.2.1-1.el9.x86_64.rpm      109 kB/s |  42 kB     00:00    
- (68/105): libjxl-0.7.2-2.el9.x86_64.rpm          83 kB/s | 982 kB     00:11    
- (69/105): libpostproc-free-5.1.4-3.el9.x86_64.r 245 kB/s |  55 kB     00:00    
- (70/105): libpostproc-free-devel-5.1.4-3.el9.x8  11 kB/s |  11 kB     00:00    
- (71/105): libraw1394-2.1.2-14.el9.x86_64.rpm    2.4 MB/s |  65 kB     00:00    
- (72/105): librist-0.2.7-1.el9.x86_64.rpm        1.8 MB/s |  76 kB     00:00    
- (73/105): libsodium-1.0.18-9.el9.x86_64.rpm     557 kB/s | 160 kB     00:00    
- (74/105): libswresample-free-5.1.4-3.el9.x86_64 1.4 MB/s |  64 kB     00:00    
- (75/105): libswresample-free-devel-5.1.4-3.el9. 212 kB/s |  19 kB     00:00    
- (76/105): libswscale-free-5.1.4-3.el9.x86_64.rp 1.6 MB/s | 185 kB     00:00    
- (77/105): libswscale-free-devel-5.1.4-3.el9.x86  36 kB/s |  17 kB     00:00    
- (78/105): libudfread-1.1.2-2.el9.x86_64.rpm     134 kB/s |  33 kB     00:00    
- (79/105): libunwind-1.6.2-1.el9.x86_64.rpm      1.9 MB/s |  67 kB     00:00    
- (80/105): libvmaf-2.3.0-2.el9.x86_64.rpm        338 kB/s | 177 kB     00:00    
- (81/105): libopenmpt-0.8.4-1.el9.x86_64.rpm     110 kB/s | 748 kB     00:06    
- (82/105): lilv-libs-0.24.14-3.el9.x86_64.rpm     27 kB/s |  58 kB     00:02    
- (83/105): lv2-1.18.8-4.el9.x86_64.rpm           1.4 MB/s |  90 kB     00:00    
- (84/105): mbedtls-2.28.8-1.el9.x86_64.rpm       1.1 MB/s | 398 kB     00:00    
- (85/105): opencore-amr-0.1.6-3.el9.x86_64.rpm   2.3 MB/s | 172 kB     00:00    
- (86/105): openpgm-5.2.122-28.el9.x86_64.rpm     2.4 MB/s | 176 kB     00:00    
- (87/105): rav1e-libs-0.8.1-2.el9.x86_64.rpm     546 kB/s | 1.1 MB     00:02    
- (88/105): rubberband-3.1.3-2.el9.x86_64.rpm     531 kB/s | 365 kB     00:00    
- (89/105): serd-0.30.12-2.el9.x86_64.rpm         228 kB/s |  61 kB     00:00    
- (90/105): sord-0.16.10-2.el9.x86_64.rpm         533 kB/s |  46 kB     00:00    
- (91/105): soxr-0.1.3-11.el9.x86_64.rpm          271 kB/s |  82 kB     00:00    
- (92/105): sratom-0.6.10-2.el9.x86_64.rpm        1.4 MB/s |  26 kB     00:00    
- (93/105): srt-libs-1.4.4-1.el9.x86_64.rpm       338 kB/s | 291 kB     00:00    
- (94/105): svt-av1-libs-0.9.0-1.el9.x86_64.rpm   392 kB/s | 1.7 MB     00:04    
- (95/105): vamp-plugin-sdk-2.9.0-4.el9.x86_64.rp 171 kB/s | 171 kB     00:00    
- (96/105): vapoursynth-libs-57-4.el9.x86_64.rpm  887 kB/s | 501 kB     00:00    
- (97/105): vid.stab-1.1.0-14.20201110gitf9166e9. 496 kB/s |  49 kB     00:00    
- (98/105): vo-amrwbenc-0.1.3-18.el9.x86_64.rpm   481 kB/s |  75 kB     00:00    
- (99/105): xvidcore-1.3.7-9.el9.x86_64.rpm       835 kB/s | 252 kB     00:00    
- (100/105): zeromq-4.3.4-2.el9.x86_64.rpm        204 kB/s | 431 kB     00:02    
- (101/105): zimg-3.0.6-2.el9.x86_64.rpm          270 kB/s | 275 kB     00:01    
- (102/105): zvbi-0.2.35-15.el9.x86_64.rpm        106 kB/s | 413 kB     00:03    
- [MIRROR] tesseract-langpack-eng-4.1.0-3.el9.noarch.rpm: Curl error (28): Timeout was reached for http://centos-stream.mirrorservice.org/9-stream/AppStream/x86_64/os/Packages/tesseract-langpack-eng-4.1.0-3.el9.noarch.rpm [Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds]
- (103/105): openh264-2.3.1-1.el9.x86_64.rpm      181 kB/s | 425 kB     00:02    
- (104/105): tesseract-langpack-eng-4.1.0-3.el9.n  15 kB/s | 1.7 MB     01:55    
- (105/105): lpcnetfreedv-0.2-11.el9.x86_64.rpm    68 kB/s | 7.3 MB     01:50    
- --------------------------------------------------------------------------------
- Total                                           212 kB/s |  50 MB     04:01     
- Extra Packages for Enterprise Linux 9 - x86_64  1.6 MB/s | 1.6 kB     00:00    
- Importing GPG key 0x3228467C:
-  Userid     : "Fedora (epel9) <epel@fedoraproject.org>"
-  Fingerprint: FF8A D134 4597 106E CE81 3B91 8A38 72BF 3228 467C
-  From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-9
- Key imported successfully
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
-   Preparing        :                                                        1/1 
-   Installing       : libtalloc-2.4.3-1.el9.x86_64                         1/105 
-   Installing       : libraw1394-2.1.2-14.el9.x86_64                       2/105 
-   Installing       : libva-2.22.0-1.el9.x86_64                            3/105 
-   Installing       : intel-mediasdk-21.3.5-1.el9.x86_64                   4/105 
-   Installing       : libtevent-0.17.1-1.el9.x86_64                        5/105 
-   Installing       : serd-0.30.12-2.el9.x86_64                            6/105 
-   Running scriptlet: samba-common-4.23.5-6.el9.noarch                     7/105 
-   Installing       : samba-common-4.23.5-6.el9.noarch                     7/105 
-   Running scriptlet: samba-common-4.23.5-6.el9.noarch                     7/105 
-   Installing       : sord-0.16.10-2.el9.x86_64                            8/105 
-   Installing       : lpcnetfreedv-0.2-11.el9.x86_64                       9/105 
-   Installing       : codec2-1.0.3-1.el9.x86_64                           10/105 
-   Installing       : zimg-3.0.6-2.el9.x86_64                             11/105 
-   Installing       : libvmaf-2.3.0-2.el9.x86_64                          12/105 
-   Installing       : ocl-icd-2.2.13-4.el9.x86_64                         13/105 
-   Installing       : fftw-libs-double-3.3.8-12.el9.x86_64                14/105 
-   Installing       : libchromaprint-1.5.1-1.el9.x86_64                   15/105 
-   Installing       : vapoursynth-libs-57-4.el9.x86_64                    16/105 
-   Installing       : sratom-0.6.10-2.el9.x86_64                          17/105 
-   Installing       : lilv-libs-0.24.14-3.el9.x86_64                      18/105 
-   Installing       : libavc1394-0.5.4-17.el9.x86_64                      19/105 
-   Installing       : libdc1394-2.2.6-7.el9.x86_64                        20/105 
-   Installing       : libiec61883-1.2.0-29.el9.x86_64                     21/105 
-   Installing       : openh264-2.3.1-1.el9.x86_64                         22/105 
-   Installing       : zvbi-0.2.35-15.el9.x86_64                           23/105 
-   Running scriptlet: zvbi-0.2.35-15.el9.x86_64                           23/105 
-   Installing       : xvidcore-1.3.7-9.el9.x86_64                         24/105 
-   Installing       : vo-amrwbenc-0.1.3-18.el9.x86_64                     25/105 
-   Installing       : vid.stab-1.1.0-14.20201110gitf9166e9.el9.x86_64     26/105 
-   Installing       : vamp-plugin-sdk-2.9.0-4.el9.x86_64                  27/105 
-   Installing       : svt-av1-libs-0.9.0-1.el9.x86_64                     28/105 
-   Installing       : srt-libs-1.4.4-1.el9.x86_64                         29/105 
-   Installing       : soxr-0.1.3-11.el9.x86_64                            30/105 
-   Installing       : rav1e-libs-0.8.1-2.el9.x86_64                       31/105 
-   Installing       : openpgm-5.2.122-28.el9.x86_64                       32/105 
-   Installing       : opencore-amr-0.1.6-3.el9.x86_64                     33/105 
-   Installing       : mbedtls-2.28.8-1.el9.x86_64                         34/105 
-   Installing       : lv2-1.18.8-4.el9.x86_64                             35/105 
-   Installing       : libunwind-1.6.2-1.el9.x86_64                        36/105 
-   Installing       : libudfread-1.1.2-2.el9.x86_64                       37/105 
-   Installing       : libbluray-1.3.4-1.el9.x86_64                        38/105 
-   Installing       : libsodium-1.0.18-9.el9.x86_64                       39/105 
-   Installing       : zeromq-4.3.4-2.el9.x86_64                           40/105 
-   Installing       : libmysofa-1.2.1-1.el9.x86_64                        41/105 
-   Installing       : libmodplug-1:0.8.9.0-13.el9.x86_64                  42/105 
-   Installing       : libdav1d-1.5.3-1.el9.x86_64                         43/105 
-   Installing       : libbs2b-3.1.0-27.el9.x86_64                         44/105 
-   Installing       : libass-0.17.1-1.el9.x86_64                          45/105 
-   Installing       : ilbc-3.0.4-1.el9.x86_64                             46/105 
-   Installing       : highway-1.3.0-1.el9.x86_64                          47/105 
-   Installing       : jxl-pixbuf-loader-0.7.2-2.el9.x86_64                48/105 
-   Installing       : libjxl-0.7.2-2.el9.x86_64                           49/105 
-   Installing       : libaom-3.13.1-1.el9.x86_64                          50/105 
-   Installing       : game-music-emu-0.6.3-9.el9.x86_64                   51/105 
-   Installing       : cjson-1.7.18-1.el9.x86_64                           52/105 
-   Running scriptlet: cjson-1.7.18-1.el9.x86_64                           52/105 
-   Installing       : librist-0.2.7-1.el9.x86_64                          53/105 
-   Installing       : ladspa-1.13-28.el9.x86_64                           54/105 
-   Installing       : twolame-libs-0.3.13-19.el9.x86_64                   55/105 
-   Installing       : tesseract-tessdata-doc-4.1.0-3.el9.noarch           56/105 
-   Installing       : speex-1.2.0-11.el9.x86_64                           57/105 
-   Installing       : openal-soft-1.19.1-16.el9.x86_64                    58/105 
-   Installing       : mpg123-libs-1.32.9-1.el9.x86_64                     59/105 
-   Installing       : libopenmpt-0.8.4-1.el9.x86_64                       60/105 
-   Installing       : libvpx-1.9.0-10.el9.x86_64                          61/105 
-   Installing       : libvdpau-1.5-1.el9.x86_64                           62/105 
-   Installing       : libavutil-free-5.1.4-3.el9.x86_64                   63/105 
-   Installing       : libavutil-free-devel-5.1.4-3.el9.x86_64             64/105 
-   Installing       : libswresample-free-5.1.4-3.el9.x86_64               65/105 
-   Installing       : libswresample-free-devel-5.1.4-3.el9.x86_64         66/105 
-   Installing       : libpostproc-free-5.1.4-3.el9.x86_64                 67/105 
-   Installing       : libpostproc-free-devel-5.1.4-3.el9.x86_64           68/105 
-   Installing       : libswscale-free-5.1.4-3.el9.x86_64                  69/105 
-   Installing       : libswscale-free-devel-5.1.4-3.el9.x86_64            70/105 
-   Installing       : libv4l-1.20.0-6.el9.x86_64                          71/105 
-   Installing       : libshaderc-2025.4-1.el9.x86_64                      72/105 
-   Installing       : libsamplerate-0.1.9-10.el9.x86_64                   73/105 
-   Installing       : rubberband-3.1.3-2.el9.x86_64                       74/105 
-   Installing       : librabbitmq-0.11.0-7.el9.x86_64                     75/105 
-   Installing       : libdecor-0.1.1-1.el9.x86_64                         76/105 
-   Installing       : SDL2-2.26.0-1.el9.x86_64                            77/105 
-   Installing       : libcdio-2.1.0-6.el9.x86_64                          78/105 
-   Installing       : libcdio-paranoia-10.2+2.0.1-6.el9.x86_64            79/105 
-   Installing       : leptonica-1.80.0-4.el9.1.x86_64                     80/105 
-   Installing       : tesseract-langpack-eng-4.1.0-3.el9.noarch           81/105 
-   Installing       : tesseract-4.1.1-7.el9.x86_64                        82/105 
-   Installing       : lame-libs-3.100-12.el9.x86_64                       83/105 
-   Installing       : snappy-1.1.8-8.el9.x86_64                           84/105 
-   Installing       : libavcodec-free-5.1.4-3.el9.x86_64                  85/105 
-   Installing       : libavcodec-free-devel-5.1.4-3.el9.x86_64            86/105 
-   Installing       : slang-2.3.2-11.el9.x86_64                           87/105 
-   Installing       : libcaca-0.99-0.69.beta20.el9.x86_64                 88/105 
-   Installing       : lmdb-libs-0.9.29-3.el9.x86_64                       89/105 
-   Installing       : libldb-4.23.5-6.el9.x86_64                          90/105 
-   Installing       : libtirpc-1.3.3-9.el9.x86_64                         91/105 
-   Installing       : libssh-config-0.10.4-18.el9.noarch                  92/105 
-   Installing       : libssh-0.10.4-18.el9.x86_64                         93/105 
-   Installing       : jansson-2.14-1.el9.x86_64                           94/105 
-   Running scriptlet: libwbclient-4.23.5-6.el9.x86_64                     95/105 
-   Installing       : libwbclient-4.23.5-6.el9.x86_64                     95/105 
-   Installing       : samba-common-libs-4.23.5-6.el9.x86_64               96/105
-  
-   Installing       : samba-client-libs-4.23.5-6.el9.x86_64               97/105 
-   Installing       : libsmbclient-4.23.5-6.el9.x86_64                    98/105 
-   Installing       : libavformat-free-5.1.4-3.el9.x86_64                 99/105 
-   Installing       : libavformat-free-devel-5.1.4-3.el9.x86_64          100/105 
-   Installing       : libavfilter-free-5.1.4-3.el9.x86_64                101/105 
-   Installing       : libavfilter-free-devel-5.1.4-3.el9.x86_64          102/105 
-   Installing       : libavdevice-free-5.1.4-3.el9.x86_64                103/105 
-   Installing       : libavdevice-free-devel-5.1.4-3.el9.x86_64          104/105 
-   Installing       : ffmpeg-free-devel-5.1.4-3.el9.x86_64               105/105 
-   Running scriptlet: ffmpeg-free-devel-5.1.4-3.el9.x86_64               105/105 
-   Verifying        : jansson-2.14-1.el9.x86_64                            1/105 
-   Verifying        : libldb-4.23.5-6.el9.x86_64                           2/105 
-   Verifying        : libsmbclient-4.23.5-6.el9.x86_64                     3/105 
-   Verifying        : libssh-0.10.4-18.el9.x86_64                          4/105 
-   Verifying        : libssh-config-0.10.4-18.el9.noarch                   5/105 
-   Verifying        : libtalloc-2.4.3-1.el9.x86_64                         6/105 
-   Verifying        : libtevent-0.17.1-1.el9.x86_64                        7/105 
-   Verifying        : libtirpc-1.3.3-9.el9.x86_64                          8/105 
-   Verifying        : libwbclient-4.23.5-6.el9.x86_64                      9/105 
-   Verifying        : lmdb-libs-0.9.29-3.el9.x86_64                       10/105 
-   Verifying        : samba-client-libs-4.23.5-6.el9.x86_64               11/105 
-   Verifying        : samba-common-4.23.5-6.el9.noarch                    12/105 
-   Verifying        : samba-common-libs-4.23.5-6.el9.x86_64               13/105 
-   Verifying        : slang-2.3.2-11.el9.x86_64                           14/105 
-   Verifying        : snappy-1.1.8-8.el9.x86_64                           15/105 
-   Verifying        : SDL2-2.26.0-1.el9.x86_64                            16/105 
-   Verifying        : fftw-libs-double-3.3.8-12.el9.x86_64                17/105 
-   Verifying        : lame-libs-3.100-12.el9.x86_64                       18/105 
-   Verifying        : leptonica-1.80.0-4.el9.1.x86_64                     19/105 
-   Verifying        : libcdio-2.1.0-6.el9.x86_64                          20/105 
-   Verifying        : libcdio-paranoia-10.2+2.0.1-6.el9.x86_64            21/105 
-   Verifying        : libdecor-0.1.1-1.el9.x86_64                         22/105 
-   Verifying        : librabbitmq-0.11.0-7.el9.x86_64                     23/105 
-   Verifying        : libsamplerate-0.1.9-10.el9.x86_64                   24/105 
-   Verifying        : libshaderc-2025.4-1.el9.x86_64                      25/105 
-   Verifying        : libv4l-1.20.0-6.el9.x86_64                          26/105 
-   Verifying        : libva-2.22.0-1.el9.x86_64                           27/105 
-   Verifying        : libvdpau-1.5-1.el9.x86_64                           28/105 
-   Verifying        : libvpx-1.9.0-10.el9.x86_64                          29/105 
-   Verifying        : mpg123-libs-1.32.9-1.el9.x86_64                     30/105 
-   Verifying        : ocl-icd-2.2.13-4.el9.x86_64                         31/105 
-   Verifying        : openal-soft-1.19.1-16.el9.x86_64                    32/105 
-   Verifying        : speex-1.2.0-11.el9.x86_64                           33/105 
-   Verifying        : tesseract-4.1.1-7.el9.x86_64                        34/105 
-   Verifying        : tesseract-langpack-eng-4.1.0-3.el9.noarch           35/105 
-   Verifying        : tesseract-tessdata-doc-4.1.0-3.el9.noarch           36/105 
-   Verifying        : twolame-libs-0.3.13-19.el9.x86_64                   37/105 
-   Verifying        : ladspa-1.13-28.el9.x86_64                           38/105 
-   Verifying        : cjson-1.7.18-1.el9.x86_64                           39/105 
-   Verifying        : codec2-1.0.3-1.el9.x86_64                           40/105 
-   Verifying        : ffmpeg-free-devel-5.1.4-3.el9.x86_64                41/105 
-   Verifying        : game-music-emu-0.6.3-9.el9.x86_64                   42/105 
-   Verifying        : highway-1.3.0-1.el9.x86_64                          43/105 
-   Verifying        : ilbc-3.0.4-1.el9.x86_64                             44/105 
-   Verifying        : intel-mediasdk-21.3.5-1.el9.x86_64                  45/105 
-   Verifying        : jxl-pixbuf-loader-0.7.2-2.el9.x86_64                46/105 
-   Verifying        : libaom-3.13.1-1.el9.x86_64                          47/105 
-   Verifying        : libass-0.17.1-1.el9.x86_64                          48/105 
-   Verifying        : libavc1394-0.5.4-17.el9.x86_64                      49/105 
-   Verifying        : libavcodec-free-5.1.4-3.el9.x86_64                  50/105 
-   Verifying        : libavcodec-free-devel-5.1.4-3.el9.x86_64            51/105 
-   Verifying        : libavdevice-free-5.1.4-3.el9.x86_64                 52/105 
-   Verifying        : libavdevice-free-devel-5.1.4-3.el9.x86_64           53/105 
-   Verifying        : libavfilter-free-5.1.4-3.el9.x86_64                 54/105 
-   Verifying        : libavfilter-free-devel-5.1.4-3.el9.x86_64           55/105 
-   Verifying        : libavformat-free-5.1.4-3.el9.x86_64                 56/105 
-   Verifying        : libavformat-free-devel-5.1.4-3.el9.x86_64           57/105 
-   Verifying        : libavutil-free-5.1.4-3.el9.x86_64                   58/105 
-   Verifying        : libavutil-free-devel-5.1.4-3.el9.x86_64             59/105 
-   Verifying        : libbluray-1.3.4-1.el9.x86_64                        60/105 
-   Verifying        : libbs2b-3.1.0-27.el9.x86_64                         61/105 
-   Verifying        : libcaca-0.99-0.69.beta20.el9.x86_64                 62/105 
-   Verifying        : libchromaprint-1.5.1-1.el9.x86_64                   63/105 
-   Verifying        : libdav1d-1.5.3-1.el9.x86_64                         64/105 
-   Verifying        : libdc1394-2.2.6-7.el9.x86_64                        65/105 
-   Verifying        : libiec61883-1.2.0-29.el9.x86_64                     66/105 
-   Verifying        : libjxl-0.7.2-2.el9.x86_64                           67/105 
-   Verifying        : libmodplug-1:0.8.9.0-13.el9.x86_64                  68/105 
-   Verifying        : libmysofa-1.2.1-1.el9.x86_64                        69/105 
-   Verifying        : libopenmpt-0.8.4-1.el9.x86_64                       70/105 
-   Verifying        : libpostproc-free-5.1.4-3.el9.x86_64                 71/105 
-   Verifying        : libpostproc-free-devel-5.1.4-3.el9.x86_64           72/105 
-   Verifying        : libraw1394-2.1.2-14.el9.x86_64                      73/105 
-   Verifying        : librist-0.2.7-1.el9.x86_64                          74/105 
-   Verifying        : libsodium-1.0.18-9.el9.x86_64                       75/105 
-   Verifying        : libswresample-free-5.1.4-3.el9.x86_64               76/105 
-   Verifying        : libswresample-free-devel-5.1.4-3.el9.x86_64         77/105 
-   Verifying        : libswscale-free-5.1.4-3.el9.x86_64                  78/105 
-   Verifying        : libswscale-free-devel-5.1.4-3.el9.x86_64            79/105 
-   Verifying        : libudfread-1.1.2-2.el9.x86_64                       80/105 
-   Verifying        : libunwind-1.6.2-1.el9.x86_64                        81/105 
-   Verifying        : libvmaf-2.3.0-2.el9.x86_64                          82/105 
-   Verifying        : lilv-libs-0.24.14-3.el9.x86_64                      83/105 
-   Verifying        : lpcnetfreedv-0.2-11.el9.x86_64                      84/105 
-   Verifying        : lv2-1.18.8-4.el9.x86_64                             85/105 
-   Verifying        : mbedtls-2.28.8-1.el9.x86_64                         86/105 
-   Verifying        : opencore-amr-0.1.6-3.el9.x86_64                     87/105 
-   Verifying        : openpgm-5.2.122-28.el9.x86_64                       88/105 
-   Verifying        : rav1e-libs-0.8.1-2.el9.x86_64                       89/105 
-   Verifying        : rubberband-3.1.3-2.el9.x86_64                       90/105 
-   Verifying        : serd-0.30.12-2.el9.x86_64                           91/105 
-   Verifying        : sord-0.16.10-2.el9.x86_64                           92/105 
-   Verifying        : soxr-0.1.3-11.el9.x86_64                            93/105 
-   Verifying        : sratom-0.6.10-2.el9.x86_64                          94/105 
-   Verifying        : srt-libs-1.4.4-1.el9.x86_64                         95/105 
-   Verifying        : svt-av1-libs-0.9.0-1.el9.x86_64                     96/105 
-   Verifying        : vamp-plugin-sdk-2.9.0-4.el9.x86_64                  97/105 
-   Verifying        : vapoursynth-libs-57-4.el9.x86_64                    98/105 
-   Verifying        : vid.stab-1.1.0-14.20201110gitf9166e9.el9.x86_64     99/105 
-   Verifying        : vo-amrwbenc-0.1.3-18.el9.x86_64                    100/105 
-   Verifying        : xvidcore-1.3.7-9.el9.x86_64                        101/105 
-   Verifying        : zeromq-4.3.4-2.el9.x86_64                          102/105 
-   Verifying        : zimg-3.0.6-2.el9.x86_64                            103/105 
-   Verifying        : zvbi-0.2.35-15.el9.x86_64                          104/105 
-   Verifying        : openh264-2.3.1-1.el9.x86_64                        105/105 
- 
- Installed:
-   SDL2-2.26.0-1.el9.x86_64                                                      
-   cjson-1.7.18-1.el9.x86_64                                                     
-   codec2-1.0.3-1.el9.x86_64                                                     
-   ffmpeg-free-devel-5.1.4-3.el9.x86_64                                          
-   fftw-libs-double-3.3.8-12.el9.x86_64                                          
-   game-music-emu-0.6.3-9.el9.x86_64                                             
-   highway-1.3.0-1.el9.x86_64                                                    
-   ilbc-3.0.4-1.el9.x86_64                                                       
-   intel-mediasdk-21.3.5-1.el9.x86_64                                            
-   jansson-2.14-1.el9.x86_64                                                     
-   jxl-pixbuf-loader-0.7.2-2.el9.x86_64                                          
-   ladspa-1.13-28.el9.x86_64                                                     
-   lame-libs-3.100-12.el9.x86_64                                                 
-   leptonica-1.80.0-4.el9.1.x86_64                                               
-   libaom-3.13.1-1.el9.x86_64                                                    
-   libass-0.17.1-1.el9.x86_64                                                    
-   libavc1394-0.5.4-17.el9.x86_64                                                
-   libavcodec-free-5.1.4-3.el9.x86_64                                            
-   libavcodec-free-devel-5.1.4-3.el9.x86_64                                      
-   libavdevice-free-5.1.4-3.el9.x86_64                                           
-   libavdevice-free-devel-5.1.4-3.el9.x86_64                                     
-   libavfilter-free-5.1.4-3.el9.x86_64                                           
-   libavfilter-free-devel-5.1.4-3.el9.x86_64                                     
-   libavformat-free-5.1.4-3.el9.x86_64                                           
-   libavformat-free-devel-5.1.4-3.el9.x86_64                                     
-   libavutil-free-5.1.4-3.el9.x86_64                                             
-   libavutil-free-devel-5.1.4-3.el9.x86_64                                       
-   libbluray-1.3.4-1.el9.x86_64                                                  
-   libbs2b-3.1.0-27.el9.x86_64                                                   
-   libcaca-0.99-0.69.beta20.el9.x86_64                                           
-   libcdio-2.1.0-6.el9.x86_64                                                    
-   libcdio-paranoia-10.2+2.0.1-6.el9.x86_64                                      
-   libchromaprint-1.5.1-1.el9.x86_64                                             
-   libdav1d-1.5.3-1.el9.x86_64                                                   
-   libdc1394-2.2.6-7.el9.x86_64                                                  
-   libdecor-0.1.1-1.el9.x86_64                                                   
-   libiec61883-1.2.0-29.el9.x86_64                                               
-   libjxl-0.7.2-2.el9.x86_64                                                     
-   libldb-4.23.5-6.el9.x86_64                                                    
-   libmodplug-1:0.8.9.0-13.el9.x86_64                                            
-   libmysofa-1.2.1-1.el9.x86_64                                                  
-   libopenmpt-0.8.4-1.el9.x86_64                                                 
-   libpostproc-free-5.1.4-3.el9.x86_64                                           
-   libpostproc-free-devel-5.1.4-3.el9.x86_64                                     
-   librabbitmq-0.11.0-7.el9.x86_64                                               
-   libraw1394-2.1.2-14.el9.x86_64                                                
-   librist-0.2.7-1.el9.x86_64                                                    
-   libsamplerate-0.1.9-10.el9.x86_64                                             
-   libshaderc-2025.4-1.el9.x86_64                                                
-   libsmbclient-4.23.5-6.el9.x86_64                                              
-   libsodium-1.0.18-9.el9.x86_64                                                 
-   libssh-0.10.4-18.el9.x86_64                                                   
-   libssh-config-0.10.4-18.el9.noarch                                            
-   libswresample-free-5.1.4-3.el9.x86_64                                         
-   libswresample-free-devel-5.1.4-3.el9.x86_64                                   
-   libswscale-free-5.1.4-3.el9.x86_64                                            
-   libswscale-free-devel-5.1.4-3.el9.x86_64                                      
-   libtalloc-2.4.3-1.el9.x86_64                                                  
-   libtevent-0.17.1-1.el9.x86_64                                                 
-   libtirpc-1.3.3-9.el9.x86_64                                                   
-   libudfread-1.1.2-2.el9.x86_64                                                 
-   libunwind-1.6.2-1.el9.x86_64                                                  
-   libv4l-1.20.0-6.el9.x86_64                                                    
-   libva-2.22.0-1.el9.x86_64                                                     
-   libvdpau-1.5-1.el9.x86_64                                                     
-   libvmaf-2.3.0-2.el9.x86_64                                                    
-   libvpx-1.9.0-10.el9.x86_64                                                    
-   libwbclient-4.23.5-6.el9.x86_64                                               
-   lilv-libs-0.24.14-3.el9.x86_64                                                
-   lmdb-libs-0.9.29-3.el9.x86_64                                                 
-   lpcnetfreedv-0.2-11.el9.x86_64                                                
-   lv2-1.18.8-4.el9.x86_64                                                       
-   mbedtls-2.28.8-1.el9.x86_64                                                   
-   mpg123-libs-1.32.9-1.el9.x86_64                                               
-   ocl-icd-2.2.13-4.el9.x86_64                                                   
-   openal-soft-1.19.1-16.el9.x86_64                                              
-   opencore-amr-0.1.6-3.el9.x86_64                                               
-   openh264-2.3.1-1.el9.x86_64                                                   
-   openpgm-5.2.122-28.el9.x86_64                                                 
-   rav1e-libs-0.8.1-2.el9.x86_64                                                 
-   rubberband-3.1.3-2.el9.x86_64                                                 
-   samba-client-libs-4.23.5-6.el9.x86_64                                         
-   samba-common-4.23.5-6.el9.noarch                                              
-   samba-common-libs-4.23.5-6.el9.x86_64                                         
-   serd-0.30.12-2.el9.x86_64                                                     
-   slang-2.3.2-11.el9.x86_64                                                     
-   snappy-1.1.8-8.el9.x86_64                                                     
-   sord-0.16.10-2.el9.x86_64                                                     
-   soxr-0.1.3-11.el9.x86_64                                                      
-   speex-1.2.0-11.el9.x86_64                                                     
-   sratom-0.6.10-2.el9.x86_64                                                    
-   srt-libs-1.4.4-1.el9.x86_64                                                   
-   svt-av1-libs-0.9.0-1.el9.x86_64                                               
-   tesseract-4.1.1-7.el9.x86_64                                                  
-   tesseract-langpack-eng-4.1.0-3.el9.noarch                                     
-   tesseract-tessdata-doc-4.1.0-3.el9.noarch                                     
-   twolame-libs-0.3.13-19.el9.x86_64                                             
-   vamp-plugin-sdk-2.9.0-4.el9.x86_64                                            
-   vapoursynth-libs-57-4.el9.x86_64                                              
-   vid.stab-1.1.0-14.20201110gitf9166e9.el9.x86_64                               
-   vo-amrwbenc-0.1.3-18.el9.x86_64                                               
-   xvidcore-1.3.7-9.el9.x86_64                                                   
-   zeromq-4.3.4-2.el9.x86_64                                                     
-   zimg-3.0.6-2.el9.x86_64                                                       
-   zvbi-0.2.35-15.el9.x86_64                                                     
- 
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "epel-release" "ffmpeg-free-devel"
- epel-release-9-7.el9.noarch
- ffmpeg-free-devel-5.1.4-3.el9.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:04.33 ---> saved as "bf44868ae1e24abcbf1f2ad707f81b787184a0a6251b149acbafbb217e4d6b20"

/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:04.37 ---> saved as "671aaf5d94fb7c9d33765ff9dc5be5d6d82730a39a46f32d78af3b699cfe1744"

/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-9\\\"\"; 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:04.41 ---> saved as "b0123fb9947d6c2e1b9337714c9ccbd3bd6e6c41455e76b5ee853528c0f4787d"
Job succeeded
2026-04-10 15:04.51: Job succeeded