- github
- ocaml
- opam-repository
- d2c2fd
- distributions,centos-9-ocaml-4.14,ffmpeg-avcodec.1.3.0,tests
(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-4.14/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-4.14@sha256:c88a8dd5557c6e7de3112fb0a71c6e479a9463c7d7db04b91ba60e34082cc73d
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-4.14@sha256:c88a8dd5557c6e7de3112fb0a71c6e479a9463c7d7db04b91ba60e34082cc73d-ffmpeg-avcodec.1.3.0-d2c2fde7ed0f03ab1c97ec11eae2846e1c000577"
2026-04-10 14:44.28: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-4.14@sha256:c88a8dd5557c6e7de3112fb0a71c6e479a9463c7d7db04b91ba60e34082cc73d)
(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:53.06: Waiting for worker…
2026-04-10 14:57.03: Got resource from pool OCluster
Building on phoebe.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-4.14@sha256:c88a8dd5557c6e7de3112fb0a71c6e479a9463c7d7db04b91ba60e34082cc73d)
Unable to find image 'ocaml/opam:centos-9-ocaml-4.14@sha256:c88a8dd5557c6e7de3112fb0a71c6e479a9463c7d7db04b91ba60e34082cc73d' locally
docker.io/ocaml/opam@sha256:c88a8dd5557c6e7de3112fb0a71c6e479a9463c7d7db04b91ba60e34082cc73d: Pulling from ocaml/opam
770dd3c6e92a: Already exists
2911f7a46957: Already exists
1ba9cdf1cfa2: Already exists
b8cab8220132: Already exists
0fc6a39ae9a6: Already exists
8e3c4b256b97: Already exists
81d04adc2c14: Already exists
32c8500591a6: Already exists
4742b13dfe20: Already exists
75e8da1c41c0: Already exists
4ab47d63416a: Already exists
cfcf083e24eb: Already exists
11a895b5c6b8: Already exists
7315a5f1d521: Already exists
6d53afc9944a: Already exists
01a19d7847db: Already exists
468b202f5c51: Already exists
9483876bca3a: Already exists
9483876bca3a: Already exists
d6107db0e83f: Already exists
9c6e5669169a: Already exists
4df4284e66b0: Already exists
0edefb19f27d: Already exists
4f4fb700ef54: Already exists
2807c7feeb16: Already exists
8680bb8a718a: Already exists
06751cba04f2: Already exists
13f5be086fed: Already exists
957abdf3ad3f: Already exists
09d6d06570d8: Already exists
cc7c7e93d349: Already exists
9a2f817a1a31: Already exists
edd80250b1b7: Already exists
62d651938aec: Already exists
eb6ca9ab5ee4: Already exists
cf62d41b045f: Already exists
95cf778f2748: Already exists
980d060a5b06: Already exists
f2f419e9f123: Already exists
2862ab4a5d4a: Already exists
cd2c468df6a8: Already exists
2520e20ac8f9: Already exists
34f32e8081d2: Pulling fs layer
7599ab655cd4: Pulling fs layer
6677f2542f59: Pulling fs layer
ad7a79772988: Pulling fs layer
34f32e8081d2: Waiting
7599ab655cd4: Waiting
6677f2542f59: Waiting
ad7a79772988: Waiting
7599ab655cd4: Download complete
6677f2542f59: Download complete
ad7a79772988: Verifying Checksum
ad7a79772988: Download complete
34f32e8081d2: Verifying Checksum
34f32e8081d2: Download complete
34f32e8081d2: Pull complete
7599ab655cd4: Pull complete
6677f2542f59: Pull complete
ad7a79772988: Pull complete
Digest: sha256:c88a8dd5557c6e7de3112fb0a71c6e479a9463c7d7db04b91ba60e34082cc73d
Status: Downloaded newer image for ocaml/opam@sha256:c88a8dd5557c6e7de3112fb0a71c6e479a9463c7d7db04b91ba60e34082cc73d
2026-04-10 14:57.04 ---> using "c12e2683b1b7ccfd4c3fbeab718f9187e348fe216065f1494d2140dffddc01a2" 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:57.04 ---> using "65280ae944a3d789bae6518b368f1a8da0d261ce83bde3bd2773b24ed5890349" 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:57.04 ---> using "007fe2a6ea8fcb5134e6a455038f453f7754a6e2eff6e9c589467dbeb25d6310" 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 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.3
2026-04-10 14:57.04 ---> using "6ea348567818f3efd15ff5914a3401c33c88366492ac7386bd5ac8f5a9d132b4" 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:57.04 ---> using "0876e5deec9e4a9f153239abfebbb2b346abbfef9264a5b4b6f414be496cc668" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-10 14:57.05 ---> using "e65e6938adcfde41a7fbde6477c18977070f55b6e5bde56e661bd82ed1bf642b" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-10 14:57.06 ---> saved as "33bb6477d1493113d3b5b8bea8cf1fb67f4b8f65c5d4d404d0661c1e89148dc0"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS 65 kB/s | 14 kB 00:00
- CentOS Stream 9 - BaseOS 81 kB/s | 8.9 MB 01:53
- CentOS Stream 9 - AppStream 48 kB/s | 15 kB 00:00
- CentOS Stream 9 - AppStream 127 kB/s | 27 MB 03:38
- CentOS Stream 9 - CRB 57 kB/s | 14 kB 00:00
- CentOS Stream 9 - CRB 65 kB/s | 8.0 MB 02:04
- CentOS Stream 9 - Extras packages 59 kB/s | 16 kB 00:00
- Metadata cache created.
2026-04-10 15:04.58 ---> saved as "a287a2b219572113dbfa1e33d80aa0f2f4c9a1314ab1fd5220ade5f76318960d"
/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 15:04.58 ---> saved as "eca64b756abe772022e43c86dc70e3e3b82728c67f292a29ddf9b3646184a654"
/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:06 ago on Fri Apr 10 15:04:56 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 66 kB/s | 8.1 kB 00:00
- (2/3): dnf-plugins-core-4.3.0-26.el9.noarch.rpm 139 kB/s | 36 kB 00:00
- (3/3): epel-release-9-7.el9.noarch.rpm 59 kB/s | 19 kB 00:00
- --------------------------------------------------------------------------------
- Total 105 kB/s | 62 kB 00:00
- 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 74 kB/s | 20 MB 04:43
- Extra Packages for Enterprise Linux 9 openh264 3.4 kB/s | 2.5 kB 00:00
- Extra Packages for Enterprise Linux 9 - Next - 73 kB/s | 260 kB 00:03
- Last metadata expiration check: 0:00:01 ago on Fri Apr 10 15:10:02 2026.
- 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): libsmbclient-4.23.5-6.el9.x86_64.rpm 294 kB/s | 75 kB 00:00
- (2/105): libssh-0.10.4-18.el9.x86_64.rpm 550 kB/s | 213 kB 00:00
- (3/105): libssh-config-0.10.4-18.el9.noarch.rpm 136 kB/s | 8.0 kB 00:00
- (4/105): jansson-2.14-1.el9.x86_64.rpm 64 kB/s | 46 kB 00:00
- (5/105): libldb-4.23.5-6.el9.x86_64.rpm 254 kB/s | 186 kB 00:00
- (6/105): libtalloc-2.4.3-1.el9.x86_64.rpm 100 kB/s | 34 kB 00:00
- (7/105): libtevent-0.17.1-1.el9.x86_64.rpm 150 kB/s | 50 kB 00:00
- (8/105): libwbclient-4.23.5-6.el9.x86_64.rpm 830 kB/s | 43 kB 00:00
- (9/105): lmdb-libs-0.9.29-3.el9.x86_64.rpm 1.3 MB/s | 61 kB 00:00
- (10/105): samba-common-4.23.5-6.el9.noarch.rpm 1.0 MB/s | 177 kB 00:00
- (11/105): samba-common-libs-4.23.5-6.el9.x86_64 893 kB/s | 104 kB 00:00
- (12/105): libtirpc-1.3.3-9.el9.x86_64.rpm 127 kB/s | 94 kB 00:00
- (13/105): snappy-1.1.8-8.el9.x86_64.rpm 202 kB/s | 35 kB 00:00
- (14/105): slang-2.3.2-11.el9.x86_64.rpm 1.4 MB/s | 374 kB 00:00
- (15/105): fftw-libs-double-3.3.8-12.el9.x86_64. 1.2 MB/s | 910 kB 00:00
- (16/105): lame-libs-3.100-12.el9.x86_64.rpm 1.1 MB/s | 333 kB 00:00
- (17/105): leptonica-1.80.0-4.el9.1.x86_64.rpm 835 kB/s | 1.1 MB 00:01
- (18/105): libcdio-2.1.0-6.el9.x86_64.rpm 983 kB/s | 254 kB 00:00
- (19/105): libcdio-paranoia-10.2+2.0.1-6.el9.x86 697 kB/s | 87 kB 00:00
- (20/105): libdecor-0.1.1-1.el9.x86_64.rpm 113 kB/s | 43 kB 00:00
- (21/105): librabbitmq-0.11.0-7.el9.x86_64.rpm 726 kB/s | 45 kB 00:00
- (22/105): libsamplerate-0.1.9-10.el9.x86_64.rpm 1.1 MB/s | 1.3 MB 00:01
- (23/105): libshaderc-2025.4-1.el9.x86_64.rpm 1.1 MB/s | 1.0 MB 00:00
- (24/105): libv4l-1.20.0-6.el9.x86_64.rpm 809 kB/s | 202 kB 00:00
- (25/105): libva-2.22.0-1.el9.x86_64.rpm 1.0 MB/s | 116 kB 00:00
- (26/105): libvdpau-1.5-1.el9.x86_64.rpm 309 kB/s | 17 kB 00:00
- (27/105): SDL2-2.26.0-1.el9.x86_64.rpm 116 kB/s | 682 kB 00:05
- (28/105): libvpx-1.9.0-10.el9.x86_64.rpm 953 kB/s | 1.0 MB 00:01
- (29/105): ocl-icd-2.2.13-4.el9.x86_64.rpm 858 kB/s | 52 kB 00:00
- (30/105): openal-soft-1.19.1-16.el9.x86_64.rpm 1.1 MB/s | 535 kB 00:00
- (31/105): speex-1.2.0-11.el9.x86_64.rpm 680 kB/s | 68 kB 00:00
- (32/105): mpg123-libs-1.32.9-1.el9.x86_64.rpm 205 kB/s | 350 kB 00:01
- (33/105): tesseract-4.1.1-7.el9.x86_64.rpm 661 kB/s | 1.3 MB 00:02
- (34/105): tesseract-tessdata-doc-4.1.0-3.el9.no 254 kB/s | 14 kB 00:00
- (35/105): twolame-libs-0.3.13-19.el9.x86_64.rpm 902 kB/s | 58 kB 00:00
- (36/105): ladspa-1.13-28.el9.x86_64.rpm 82 kB/s | 51 kB 00:00
- (37/105): cjson-1.7.18-1.el9.x86_64.rpm 42 kB/s | 31 kB 00:00
- (38/105): codec2-1.0.3-1.el9.x86_64.rpm 2.1 MB/s | 637 kB 00:00
- (39/105): ffmpeg-free-devel-5.1.4-3.el9.x86_64. 187 kB/s | 129 kB 00:00
- (40/105): game-music-emu-0.6.3-9.el9.x86_64.rpm 286 kB/s | 154 kB 00:00
- (41/105): highway-1.3.0-1.el9.x86_64.rpm 521 kB/s | 553 kB 00:01
- (42/105): ilbc-3.0.4-1.el9.x86_64.rpm 46 kB/s | 51 kB 00:01
- (43/105): tesseract-langpack-eng-4.1.0-3.el9.no 202 kB/s | 1.7 MB 00:08
- (44/105): jxl-pixbuf-loader-0.7.2-2.el9.x86_64. 88 kB/s | 52 kB 00:00
- (45/105): libaom-3.13.1-1.el9.x86_64.rpm 4.3 MB/s | 1.8 MB 00:00
- (46/105): libass-0.17.1-1.el9.x86_64.rpm 1.8 MB/s | 116 kB 00:00
- (47/105): libavc1394-0.5.4-17.el9.x86_64.rpm 960 kB/s | 55 kB 00:00
- (48/105): libavcodec-free-5.1.4-3.el9.x86_64.rp 3.2 MB/s | 4.0 MB 00:01
- (49/105): libavcodec-free-devel-5.1.4-3.el9.x86 1.1 MB/s | 68 kB 00:00
- (50/105): libavdevice-free-5.1.4-3.el9.x86_64.r 2.0 MB/s | 86 kB 00:00
- (51/105): libavdevice-free-devel-5.1.4-3.el9.x8 328 kB/s | 18 kB 00:00
- (52/105): libavfilter-free-5.1.4-3.el9.x86_64.r 2.3 MB/s | 1.4 MB 00:00
- (53/105): libavfilter-free-devel-5.1.4-3.el9.x8 499 kB/s | 27 kB 00:00
- (54/105): libavformat-free-5.1.4-3.el9.x86_64.r 1.7 MB/s | 1.1 MB 00:00
- (55/105): libavformat-free-devel-5.1.4-3.el9.x8 767 kB/s | 47 kB 00:00
- (56/105): libavutil-free-5.1.4-3.el9.x86_64.rpm 1.2 MB/s | 320 kB 00:00
- (57/105): libavutil-free-devel-5.1.4-3.el9.x86_ 899 kB/s | 137 kB 00:00
- (58/105): libbluray-1.3.4-1.el9.x86_64.rpm 784 kB/s | 171 kB 00:00
- (59/105): libbs2b-3.1.0-27.el9.x86_64.rpm 433 kB/s | 28 kB 00:00
- (60/105): libcaca-0.99-0.69.beta20.el9.x86_64.r 1.3 MB/s | 218 kB 00:00
- (61/105): libchromaprint-1.5.1-1.el9.x86_64.rpm 639 kB/s | 39 kB 00:00
- (62/105): libdav1d-1.5.3-1.el9.x86_64.rpm 1.5 MB/s | 610 kB 00:00
- (63/105): libdc1394-2.2.6-7.el9.x86_64.rpm 296 kB/s | 127 kB 00:00
- (64/105): libiec61883-1.2.0-29.el9.x86_64.rpm 641 kB/s | 40 kB 00:00
- (65/105): libjxl-0.7.2-2.el9.x86_64.rpm 1.5 MB/s | 982 kB 00:00
- (66/105): libmodplug-0.8.9.0-13.el9.x86_64.rpm 205 kB/s | 171 kB 00:00
- (67/105): samba-client-libs-4.23.5-6.el9.x86_64 235 kB/s | 5.6 MB 00:24
- (68/105): libmysofa-1.2.1-1.el9.x86_64.rpm 466 kB/s | 42 kB 00:00
- (69/105): libpostproc-free-5.1.4-3.el9.x86_64.r 752 kB/s | 55 kB 00:00
- (70/105): libpostproc-free-devel-5.1.4-3.el9.x8 35 kB/s | 11 kB 00:00
- (71/105): libraw1394-2.1.2-14.el9.x86_64.rpm 631 kB/s | 65 kB 00:00
- (72/105): librist-0.2.7-1.el9.x86_64.rpm 458 kB/s | 76 kB 00:00
- (73/105): libopenmpt-0.8.4-1.el9.x86_64.rpm 937 kB/s | 748 kB 00:00
- (74/105): libswresample-free-5.1.4-3.el9.x86_64 1.1 MB/s | 64 kB 00:00
- (75/105): libsodium-1.0.18-9.el9.x86_64.rpm 349 kB/s | 160 kB 00:00
- (76/105): libswscale-free-5.1.4-3.el9.x86_64.rp 1.0 MB/s | 185 kB 00:00
- (77/105): libswresample-free-devel-5.1.4-3.el9. 37 kB/s | 19 kB 00:00
- (78/105): libswscale-free-devel-5.1.4-3.el9.x86 56 kB/s | 17 kB 00:00
- (79/105): libunwind-1.6.2-1.el9.x86_64.rpm 619 kB/s | 67 kB 00:00
- (80/105): libvmaf-2.3.0-2.el9.x86_64.rpm 1.0 MB/s | 177 kB 00:00
- (81/105): lilv-libs-0.24.14-3.el9.x86_64.rpm 973 kB/s | 58 kB 00:00
- (82/105): libudfread-1.1.2-2.el9.x86_64.rpm 52 kB/s | 33 kB 00:00
- (83/105): lv2-1.18.8-4.el9.x86_64.rpm 201 kB/s | 90 kB 00:00
- (84/105): mbedtls-2.28.8-1.el9.x86_64.rpm 769 kB/s | 398 kB 00:00
- (85/105): opencore-amr-0.1.6-3.el9.x86_64.rpm 267 kB/s | 172 kB 00:00
- (86/105): openpgm-5.2.122-28.el9.x86_64.rpm 533 kB/s | 176 kB 00:00
- (87/105): lpcnetfreedv-0.2-11.el9.x86_64.rpm 901 kB/s | 7.3 MB 00:08
- (88/105): rubberband-3.1.3-2.el9.x86_64.rpm 1.2 MB/s | 365 kB 00:00
- (89/105): serd-0.30.12-2.el9.x86_64.rpm 901 kB/s | 61 kB 00:00
- (90/105): sord-0.16.10-2.el9.x86_64.rpm 144 kB/s | 46 kB 00:00
- (91/105): soxr-0.1.3-11.el9.x86_64.rpm 247 kB/s | 82 kB 00:00
- (92/105): sratom-0.6.10-2.el9.x86_64.rpm 525 kB/s | 26 kB 00:00
- (93/105): srt-libs-1.4.4-1.el9.x86_64.rpm 570 kB/s | 291 kB 00:00
- (94/105): rav1e-libs-0.8.1-2.el9.x86_64.rpm 119 kB/s | 1.1 MB 00:09
- (95/105): svt-av1-libs-0.9.0-1.el9.x86_64.rpm 1.1 MB/s | 1.7 MB 00:01
- (96/105): intel-mediasdk-21.3.5-1.el9.x86_64.rp 118 kB/s | 2.6 MB 00:22
- (97/105): vid.stab-1.1.0-14.20201110gitf9166e9. 75 kB/s | 49 kB 00:00
- (98/105): vamp-plugin-sdk-2.9.0-4.el9.x86_64.rp 98 kB/s | 171 kB 00:01
- (99/105): vo-amrwbenc-0.1.3-18.el9.x86_64.rpm 127 kB/s | 75 kB 00:00
- (100/105): vapoursynth-libs-57-4.el9.x86_64.rpm 264 kB/s | 501 kB 00:01
- (101/105): zimg-3.0.6-2.el9.x86_64.rpm 912 kB/s | 275 kB 00:00
- (102/105): zvbi-0.2.35-15.el9.x86_64.rpm 1.1 MB/s | 413 kB 00:00
- (103/105): openh264-2.3.1-1.el9.x86_64.rpm 642 kB/s | 425 kB 00:00
- (104/105): zeromq-4.3.4-2.el9.x86_64.rpm 164 kB/s | 431 kB 00:02
- (105/105): xvidcore-1.3.7-9.el9.x86_64.rpm 73 kB/s | 252 kB 00:03
- --------------------------------------------------------------------------------
- Total 1.1 MB/s | 50 MB 00:45
- 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:11.41 ---> saved as "98becbccbb390218b6f57bc79a3faa2ebb71bc39789eedc2291dd60f601f7f41"
/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:11.47 ---> saved as "fe21c6738844104b198bf1e958ee86d5d5ad03af6376310d1e73c04ad5504e35"
/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" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.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:11.53 ---> saved as "9f6780ac1938c2631b8235e8e2e11bdf5b3582799689664b844144e1597a89b9"
Job succeeded
2026-04-10 15:11.58: Job succeeded