- github
- ocaml
- opam-repository
- 04bb69
- distributions,opensuse-16.0-ocaml-5.4,ffmpeg-avcodec.1.3.0,tests
(not at the head of any monitored branch or PR)
2026-04-13 14:55.04: New job: test ffmpeg-avcodec.1.3.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29703/head (04bb6962c1b0506de5a277289b857c4093d55649)
on opensuse-16.0-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 04bb6962
git fetch origin master
git merge --no-edit ba4685aeec7b28fde6af30c7b83004704c68c86a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-16.0-ocaml-5.4@sha256:e4ac2bf7c94033f0739c14e1bac6b4effb7b8f3f97d1a15dbfb85c28886f8ca2
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 "\"opensuse-16.0\""; 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 "\"opensuse-16.0\""; 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-13 14:55.04: Using cache hint "ocaml/opam:opensuse-16.0-ocaml-5.4@sha256:e4ac2bf7c94033f0739c14e1bac6b4effb7b8f3f97d1a15dbfb85c28886f8ca2-ffmpeg-avcodec.1.3.0-04bb6962c1b0506de5a277289b857c4093d55649"
2026-04-13 14:55.04: Using OBuilder spec:
((from ocaml/opam:opensuse-16.0-ocaml-5.4@sha256:e4ac2bf7c94033f0739c14e1bac6b4effb7b8f3f97d1a15dbfb85c28886f8ca2)
(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 \"\\\"opensuse-16.0\\\"\"; 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 \"\\\"opensuse-16.0\\\"\"; 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-13 14:55.04: Waiting for resource in pool OCluster
2026-04-13 15:41.42: Waiting for worker…
2026-04-13 15:46.55: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 79% (14887/18711)
Updating files: 80% (14969/18711)
Updating files: 81% (15156/18711)
Updating files: 82% (15344/18711)
Updating files: 83% (15531/18711)
Updating files: 84% (15718/18711)
Updating files: 85% (15905/18711)
Updating files: 86% (16092/18711)
Updating files: 87% (16279/18711)
Updating files: 88% (16466/18711)
Updating files: 89% (16653/18711)
Updating files: 90% (16840/18711)
Updating files: 91% (17028/18711)
Updating files: 92% (17215/18711)
Updating files: 93% (17402/18711)
Updating files: 94% (17589/18711)
Updating files: 95% (17776/18711)
Updating files: 96% (17963/18711)
Updating files: 97% (18150/18711)
Updating files: 98% (18337/18711)
Updating files: 99% (18524/18711)
Updating files: 100% (18711/18711)
Updating files: 100% (18711/18711), done.
HEAD is now at ba4685aeec Merge pull request #29653 from yakobowski/camlidl
Merge made by the 'ort' strategy.
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:opensuse-16.0-ocaml-5.4@sha256:e4ac2bf7c94033f0739c14e1bac6b4effb7b8f3f97d1a15dbfb85c28886f8ca2)
Unable to find image 'ocaml/opam:opensuse-16.0-ocaml-5.4@sha256:e4ac2bf7c94033f0739c14e1bac6b4effb7b8f3f97d1a15dbfb85c28886f8ca2' locally
docker.io/ocaml/opam@sha256:e4ac2bf7c94033f0739c14e1bac6b4effb7b8f3f97d1a15dbfb85c28886f8ca2: Pulling from ocaml/opam
64cfa2a65095: Already exists
204ffcf2f1fe: Already exists
f6fa4529cc6b: Already exists
97af65095748: Already exists
b802a6057f6d: Already exists
47b045e79836: Already exists
2ce8a10bf29f: Already exists
781ee767d1c7: Already exists
2271c058ae3a: Already exists
2e5754ca2c40: Already exists
de21e4dabd9c: Already exists
f047029589c4: Already exists
0f454d36be04: Already exists
04ab44a2df2c: Already exists
ad401f078830: Already exists
096a51bccb57: Already exists
e7134f98c78b: Already exists
afc7c35ee433: Already exists
7bfa5dba7952: Already exists
4f4fb700ef54: Already exists
f6b6a751bb6a: Already exists
f71dccae2ee7: Already exists
fe37a54a1499: Already exists
1815b99ebc09: Already exists
363d1f23b2cf: Already exists
4bb0990bd121: Already exists
ac4f9c652c6c: Already exists
ab5409fef174: Already exists
5e58ee45c6c7: Already exists
ee06219176b1: Already exists
34fd31afeec8: Already exists
c7a97b361486: Already exists
45eb0c786818: Already exists
53c3f15ee1d5: Already exists
d7bed9c465c4: Already exists
6e09106a38f7: Already exists
52f1c2830cbe: Already exists
70c3773e87cb: Already exists
4b1ae22fcf8a: Pulling fs layer
77e89ac38926: Pulling fs layer
b7ae7f0fde98: Pulling fs layer
cbb22dd1f6e4: Pulling fs layer
07c71167c2ca: Pulling fs layer
290e295d9ac8: Pulling fs layer
cbb22dd1f6e4: Waiting
07c71167c2ca: Waiting
b47078cf6c51: Pulling fs layer
290e295d9ac8: Waiting
b47078cf6c51: Waiting
4b1ae22fcf8a: Download complete
4b1ae22fcf8a: Pull complete
b7ae7f0fde98: Verifying Checksum
b7ae7f0fde98: Download complete
07c71167c2ca: Verifying Checksum
07c71167c2ca: Download complete
290e295d9ac8: Verifying Checksum
290e295d9ac8: Download complete
b47078cf6c51: Verifying Checksum
b47078cf6c51: Download complete
cbb22dd1f6e4: Verifying Checksum
cbb22dd1f6e4: Download complete
77e89ac38926: Verifying Checksum
77e89ac38926: Download complete
77e89ac38926: Pull complete
b7ae7f0fde98: Pull complete
cbb22dd1f6e4: Pull complete
07c71167c2ca: Pull complete
290e295d9ac8: Pull complete
b47078cf6c51: Pull complete
Digest: sha256:e4ac2bf7c94033f0739c14e1bac6b4effb7b8f3f97d1a15dbfb85c28886f8ca2
Status: Downloaded newer image for ocaml/opam@sha256:e4ac2bf7c94033f0739c14e1bac6b4effb7b8f3f97d1a15dbfb85c28886f8ca2
2026-04-13 15:47.16 ---> saved as "2c983d8ca9c8608d031dbb794486dbb64869e7cb9d27655f4007d7f81e5d7bba"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-13 15:47.16 ---> saved as "436418a93e3a38de0a2b1597930f28c1368bbfb5734a73bce4c7f2fea1cba22d"
/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 255 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=255 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-13 15:47.44 ---> saved as "72caf9d749aad7b7e11b4e2a575672c453d338c906f8b7a689445fb908410944"
/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=opensuse-leap os-version=16.0
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.1
2026-04-13 15:47.44 ---> saved as "69de20d3ddc25c4115964502cdff764d8a86c7b8eff44ddcbe1a296389894d4b"
/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-13 15:47.53 ---> saved as "e47b31e9dd96501fb5af72cc22b4e3813f87c8ffdf3e8a8dd94bd69d86d25bf6"
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-13 15:48.02 ---> saved as "687b41f127613ec8446ee077efad1219a45f379ad3ec5ff437f275e64d72ff6a"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-13 15:48.22 ---> saved as "78962af049f2bb175c2e5ac8b173eac4e3393a735f2f80a9320c717ab5f5b714"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Repository 'repo-openh264 (16.0)' is up to date.
- Retrieving repository 'repo-oss (16.0)' metadata [..
-
- Looking for gpg keys in repository repo-oss (16.0).
- gpgkey=http://cdn.opensuse.org/distribution/leap/16.0/repo/oss/x86_64/repodata/repomd.xml.key
- ...
- .
- .......
- .........
- .........
- .........
- ..........
- ..........
- .........
- .........
- ..........
- ........
- .........
- .........
- .........
- .........
- ........
- .........
- ......done]
- Building repository 'repo-oss (16.0)' cache [..
- ..done]
- All repositories have been refreshed.
2026-04-13 15:48.48 ---> saved as "b743dcae659d5d42900999769369753032a6ac07f759b057e4667fb33a835345"
/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-13 15:48.49 ---> saved as "9250b49f83f19284e979d3dce2e4ba2db45007f28e17f5c85b97d940f0ce49a3"
/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 \"\\\"opensuse-16.0\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ffmpeg-avcodec.1.3.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ffmpeg-avcodec.1.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
- install conf-ffmpeg 1 [required by ffmpeg-avcodec]
- install conf-pkg-config 4 [required by ffmpeg-avcodec]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.22.1 [required by ffmpeg-avcodec]
- install dune-configurator 3.22.1 [required by ffmpeg-avcodec]
- install ffmpeg-avcodec 1.3.0 (pinned)
- install ffmpeg-avutil 1.3.0 [required by ffmpeg-avcodec]
The following system packages will first need to be installed:
ffmpeg-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
2. Display the recommended zypper 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 "zypper" "--non-interactive" "install" "ffmpeg-devel"
- Refreshing service 'openSUSE'.
- Loading repository data...
- Reading installed packages...
- 'ffmpeg-devel' not found in package names. Trying capabilities.
- Resolving package dependencies...
-
- The following 104 NEW packages are going to be installed:
- ffmpeg-7-libavcodec-devel ffmpeg-7-libavdevice-devel ffmpeg-7-libavfilter-devel ffmpeg-7-libavformat-devel ffmpeg-7-libavutil-devel ffmpeg-7-libpostproc-devel ffmpeg-7-libswresample-devel ffmpeg-7-libswscale-devel fontconfig libFLAC12 libSDL2-2_0-0 libSPIRV-Tools-2025_1_rc1 libSvtAv1Enc2 libXext6 libXfixes3 libaom3 libasound2 libass9 libavc1394-0 libavcodec61 libavdevice61 libavfilter10 libavformat61 libavutil59 libbluray2 libbrotlienc1 libbs2b0 libcdio19 libcdio_cdda2 libcdio_paranoia2 libcodec2-1_0 libdav1d7 libdc1394-26 libdovi3 libdrm2 libfftw3-3 libfontconfig1 libfreetype6 libfribidi0 libglslang15 libgraphite2-3 libgsm1 libharfbuzz0 libhwy1 libiec61883-0 libjack0 libjxl0_11 liblcms2-2 liblilv-0-0 libmp3lame0 libmpg123-0 libmysofa1 libogg0 libopencore-amrnb0 libopencore-amrwb0 libopenh264-8 libopenjp2-7 libopenmpt0 libopus0 libpgm-5_3-0 libplacebo351 libpng16-16 libpostproc58 libpulse0 librav1e0_8 libraw1394-11 librist4 librubberband2 libserd-0-0 libshaderc_shared1 libsharpyuv0 libsndfile1 libsodium26 libsord-0-0 libsoxr0 libspeex1 libsratom-0-0 libsrt1_5 libswresample5 libswscale8 libtheoradec1 libtheoraenc1 libtwolame0 libunibreak5 libunwind8 libva-drm2 libva-x11-2 libva2 libvdpau1 libvidstab1_2 libvmaf3 libvo-amrwbenc0 libvorbis0 libvorbisenc2 libvorbisfile3 libvpl2 libvpx9 libvulkan1 libwebp7 libwebpmux3 libzimg2 libzix-0-0 libzmq5 libzvbi0
-
- 104 new packages to install.
-
- Package download size: 32.8 MiB
-
- Package install size change:
- | 87.5 MiB required by packages that will be installed
- 87.5 MiB | - 0 B released by packages that will be removed
-
- Backend: classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Preloading Packages [..
- Preloading: libvorbisenc2-1.3.7-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libharfbuzz0-11.4.5-160000.1.1.x86_64.rpm [done]
- .
- Preloading: libfontconfig1-2.16.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libopenh264-8-2.6.0-2.suse1600.2.x86_64.rpm [done]
- .
- Preloading: libvorbisfile3-1.3.7-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libshaderc_shared1-2025.1-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libsord-0-0-0.16.18-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libva-drm2-2.22.0-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libcdio_paranoia2-10.2+2.0.1-160000.3.2.x86_64.rpm [done]
- ..
- Preloading: libwebp7-1.5.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libva-x11-2-2.22.0-160000.3.2.x86_64.rpm [done]
- .
-
- Preloading: libzmq5-4.3.5-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libavc1394-0-0.5.4-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libiec61883-0-1.2.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libzvbi0-0.2.44-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libdc1394-26-2.2.7-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libtheoraenc1-1.1.1-160000.2.2.x86_64.rpm [done]
- ..
- Preloading: libFLAC12-1.4.3-160000.2.2.x86_64.rpm [done]
- ..
- Preloading: libjxl0_11-0.11.2-160000.1.1.x86_64.rpm [done]
- .
- Preloading: libvorbis0-1.3.7-160000.3.2.x86_64.rpm [done]
- .
-
- Preloading: libcdio_cdda2-10.2+2.0.1-160000.3.2.x86_64.rpm [done]
- .
- Preloading: librubberband2-3.1.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libvdpau1-1.5-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libfreetype6-2.13.3-160000.3.1.x86_64.rpm [done]
- .
- Preloading: ffmpeg-7-libavdevice-devel-7.1.2-160000.1.1.x86_64.rpm [done]
- ..
- Preloading: ffmpeg-7-libavfilter-devel-7.1.2-160000.1.1.x86_64.rpm [done]
- .
- Preloading: libSDL2-2_0-0-2.30.7-160000.2.2.x86_64.rpm [done]
- .
- Preloading: liblilv-0-0-0.24.24-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libavdevice61-7.1.2-160000.1.1.x86_64.rpm [done]
- .
- Preloading: fontconfig-2.16.0-160000.2.2.x86_64.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- .
- Preloading: ffmpeg-7-libavcodec-devel-7.1.2-160000.1.1.x86_64.rpm [done]
- .
- Preloading: fontconfig-2.16.0-160000.2.2.x86_64.rpm [done]
- ..
- Preloading: ffmpeg-7-libpostproc-devel-7.1.2-160000.1.1.x86_64.rpm [done]
- .
-
- Preloading: ffmpeg-7-libswresample-devel-7.1.2-160000.1.1.x86_64.rpm [done]
- .
- Preloading: ffmpeg-7-libswscale-devel-7.1.2-160000.1.1.x86_64.rpm [done]
- .
- Preloading: libglslang15-15.2.0-160000.2.2.x86_64.rpm [done]
- ..
- Preloading: ffmpeg-7-libavformat-devel-7.1.2-160000.1.1.x86_64.rpm [done]
- ..
-
- Preloading: libavfilter10-7.1.2-160000.1.1.x86_64.rpm [done]
- .
- Preloading: libzix-0-0-0.6.2-160000.2.2.x86_64.rpm [done]
- ..
- Preloading: libpulse0-17.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libpostproc58-7.1.2-160000.1.1.x86_64.rpm [done]
- .
- Preloading: ffmpeg-7-libavutil-devel-7.1.2-160000.1.1.x86_64.rpm [done]
- .
- Preloading: libswresample5-7.1.2-160000.1.1.x86_64.rpm [done]
- .
- Preloading: libswscale8-7.1.2-160000.1.1.x86_64.rpm [done]
- .
- Preloading: libass9-0.17.3-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libsndfile1-1.2.2-160000.3.2.x86_64.rpm [done]
- ..
-
- Preloading: libopenmpt0-0.7.13-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libbluray2-1.3.4-160000.3.2.x86_64.rpm [done]
- ..
- Preloading: libavformat61-7.1.2-160000.1.1.x86_64.rpm [done]
- .
- Preloading: libwebpmux3-1.5.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libplacebo351-7.351.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libsratom-0-0-0.6.14-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libdrm2-2.4.124-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libavutil59-7.1.2-160000.1.1.x86_64.rpm [done]
- ..
- Preloading: libogg0-1.3.5-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libopencore-amrnb0-0.1.6-160000.2.2.x86_64.rpm [done]
- .
-
- Preloading: libmpg123-0-1.32.7-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libmp3lame0-3.100-160000.3.2.x86_64.rpm [done]
- .
- Preloading: liblcms2-2-2.16-160000.3.2.x86_64.rpm [done]
- ..
- Preloading: libjack0-1.9.22-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libgsm1-1.0.22-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libgraphite2-3-1.3.14-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libhwy1-1.2.0-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libfribidi0-1.0.15-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libopencore-amrwb0-0.1.6-160000.2.2.x86_64.rpm [done]
- ..
- .
- Preloading: libfftw3-3-3.3.10-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libdovi3-3.3.1-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libdav1d7-1.5.1-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libcdio19-2.1.0-160000.2.2.x86_64.rpm [done]
- ..
-
- Preloading: libcodec2-1_0-1.0.5-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libbs2b0-3.1.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libbrotlienc1-1.1.0-160000.2.2.x86_64.rpm [done]
- ..
- Preloading: libmysofa1-1.3.2-160000.2.2.x86_64.rpm [done]
- ..
- Preloading: libXext6-1.3.6-160000.3.2.x86_64.rpm [done]
- .
- .
- Preloading: libaom3-3.11.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libasound2-1.2.14-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libXfixes3-6.0.1-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libspeex1-1.2.1-160000.2.2.x86_64.rpm [done]
- ..
- .
- Preloading: libSPIRV-Tools-2025_1_rc1-2025.1~rc1-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libvulkan1-1.4.309-160000.2.2.x86_64.rpm [done]
- ..
-
- Preloading: libvpx9-1.14.1-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libvpl2-2.14.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libvo-amrwbenc0-0.1.3+5-160000.2.2.x86_64.rpm [done]
- ..
- Preloading: libvidstab1_2-1.1.1-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libunwind8-1.8.1-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libvmaf3-3.0.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libunibreak5-5.1-160000.3.2.x86_64.rpm [done]
- ..
-
- Preloading: libva2-2.22.0-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libtheoradec1-1.1.1-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libtwolame0-0.4.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libsoxr0-0.1.3-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libsrt1_5-1.5.4-160000.2.2.x86_64.rpm [done]
- ..
- Preloading: libzimg2-3.0.5-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libsharpyuv0-1.5.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libsodium26-1.0.20-160000.3.1.x86_64.rpm [done]
- .
- Preloading: libserd-0-0-0.32.4-160000.2.2.x86_64.rpm [done]
- .
- Preloading: librist4-0.2.11-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libraw1394-11-2.1.2-160000.2.2.x86_64.rpm [done]
- ..
- Preloading: libpng16-16-1.6.44-160000.6.1.x86_64.rpm [done]
- .
-
- Preloading: libpgm-5_3-0-5.3.128-160000.2.2.x86_64.rpm [done]
- ..
- Preloading: libopus0-1.5.2-160000.2.2.x86_64.rpm [done]
- ..
-
- Preloading: librav1e0_8-0.8.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libSvtAv1Enc2-2.3.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libopenjp2-7-2.5.3-160000.3.1.x86_64.rpm [done]
- .
- Preloading: libavcodec61-7.1.2-160000.1.1.x86_64.rpm [done]
- .done]
- Retrieving: libopenh264-8-2.6.0-2.suse1600.2.x86_64 (repo-openh264 (16.0)) (1/104), 452.0 KiB
- Retrieving: libSPIRV-Tools-2025_1_rc1-2025.1~rc1-160000.2.2.x86_64 (repo-oss (16.0)) (2/104), 1.5 MiB
- Retrieving: libSvtAv1Enc2-2.3.0-160000.2.2.x86_64 (repo-oss (16.0)) (3/104), 1.9 MiB
- Retrieving: libXext6-1.3.6-160000.3.2.x86_64 (repo-oss (16.0)) (4/104), 37.3 KiB
- Retrieving: libXfixes3-6.0.1-160000.3.2.x86_64 (repo-oss (16.0)) (5/104), 19.9 KiB
- Retrieving: libaom3-3.11.0-160000.2.2.x86_64 (repo-oss (16.0)) (6/104), 1.8 MiB
- Retrieving: libasound2-1.2.14-160000.2.2.x86_64 (repo-oss (16.0)) (7/104), 589.8 KiB
- Retrieving: libbrotlienc1-1.1.0-160000.2.2.x86_64 (repo-oss (16.0)) (8/104), 263.6 KiB
- Retrieving: libbs2b0-3.1.0-160000.2.2.x86_64 (repo-oss (16.0)) (9/104), 17.7 KiB
- Retrieving: libcdio19-2.1.0-160000.2.2.x86_64 (repo-oss (16.0)) (10/104), 75.4 KiB
- Retrieving: libcodec2-1_0-1.0.5-160000.2.2.x86_64 (repo-oss (16.0)) (11/104), 646.6 KiB
- Retrieving: libdav1d7-1.5.1-160000.2.2.x86_64 (repo-oss (16.0)) (12/104), 618.2 KiB
- Retrieving: libdovi3-3.3.1-160000.3.2.x86_64 (repo-oss (16.0)) (13/104), 282.3 KiB
- Retrieving: libdrm2-2.4.124-160000.3.2.x86_64 (repo-oss (16.0)) (14/104), 107.8 KiB
- Retrieving: libfftw3-3-3.3.10-160000.2.2.x86_64 (repo-oss (16.0)) (15/104), 1.4 MiB
- Retrieving: libfribidi0-1.0.15-160000.2.2.x86_64 (repo-oss (16.0)) (16/104), 42.8 KiB
- Retrieving: libgraphite2-3-1.3.14-160000.2.2.x86_64 (repo-oss (16.0)) (17/104), 71.9 KiB
- Retrieving: libgsm1-1.0.22-160000.3.2.x86_64 (repo-oss (16.0)) (18/104), 30.7 KiB
- Retrieving: libhwy1-1.2.0-160000.3.2.x86_64 (repo-oss (16.0)) (19/104), 545.9 KiB
- Retrieving: libjack0-1.9.22-160000.2.2.x86_64 (repo-oss (16.0)) (20/104), 133.7 KiB
- Retrieving: liblcms2-2-2.16-160000.3.2.x86_64 (repo-oss (16.0)) (21/104), 171.6 KiB
- Retrieving: libmp3lame0-3.100-160000.3.2.x86_64 (repo-oss (16.0)) (22/104), 155.0 KiB
- Retrieving: libmpg123-0-1.32.7-160000.2.2.x86_64 (repo-oss (16.0)) (23/104), 212.3 KiB
- Retrieving: libmysofa1-1.3.2-160000.2.2.x86_64 (repo-oss (16.0)) (24/104), 1.1 MiB
- Retrieving: libogg0-1.3.5-160000.3.2.x86_64 (repo-oss (16.0)) (25/104), 35.5 KiB
- Retrieving: libopencore-amrnb0-0.1.6-160000.2.2.x86_64 (repo-oss (16.0)) (26/104), 101.2 KiB
- Retrieving: libopencore-amrwb0-0.1.6-160000.2.2.x86_64 (repo-oss (16.0)) (27/104), 56.1 KiB
- Retrieving: libopenjp2-7-2.5.3-160000.3.1.x86_64 (repo-oss (16.0)) (28/104), 171.0 KiB
- Retrieving: libopus0-1.5.2-160000.2.2.x86_64 (repo-oss (16.0)) (29/104), 229.3 KiB
- Retrieving: libpgm-5_3-0-5.3.128-160000.2.2.x86_64 (repo-oss (16.0)) (30/104), 178.4 KiB
- Retrieving: libpng16-16-1.6.44-160000.6.1.x86_64 (repo-oss (16.0)) (31/104), 187.4 KiB
- Retrieving: librav1e0_8-0.8.0-160000.2.2.x86_64 (repo-oss (16.0)) (32/104), 1.0 MiB
- Retrieving: libraw1394-11-2.1.2-160000.2.2.x86_64 (repo-oss (16.0)) (33/104), 33.4 KiB
- Retrieving: librist4-0.2.11-160000.2.2.x86_64 (repo-oss (16.0)) (34/104), 109.1 KiB
- Retrieving: libserd-0-0-0.32.4-160000.2.2.x86_64 (repo-oss (16.0)) (35/104), 60.3 KiB
- Retrieving: libsharpyuv0-1.5.0-160000.2.2.x86_64 (repo-oss (16.0)) (36/104), 31.6 KiB
- Retrieving: libsodium26-1.0.20-160000.3.1.x86_64 (repo-oss (16.0)) (37/104), 190.7 KiB
- Retrieving: libsoxr0-0.1.3-160000.2.2.x86_64 (repo-oss (16.0)) (38/104), 93.6 KiB
- Retrieving: libspeex1-1.2.1-160000.2.2.x86_64 (repo-oss (16.0)) (39/104), 64.7 KiB
- Retrieving: libsrt1_5-1.5.4-160000.2.2.x86_64 (repo-oss (16.0)) (40/104), 341.4 KiB
- Retrieving: libtheoradec1-1.1.1-160000.2.2.x86_64 (repo-oss (16.0)) (41/104), 58.7 KiB
- Retrieving: libtwolame0-0.4.0-160000.2.2.x86_64 (repo-oss (16.0)) (42/104), 59.0 KiB
- Retrieving: libunibreak5-5.1-160000.3.2.x86_64 (repo-oss (16.0)) (43/104), 29.1 KiB
- Retrieving: libunwind8-1.8.1-160000.2.2.x86_64 (repo-oss (16.0)) (44/104), 72.0 KiB
- Retrieving: libva2-2.22.0-160000.3.2.x86_64 (repo-oss (16.0)) (45/104), 106.7 KiB
- Retrieving: libvidstab1_2-1.1.1-160000.2.2.x86_64 (repo-oss (16.0)) (46/104), 42.6 KiB
- Retrieving: libvmaf3-3.0.0-160000.2.2.x86_64 (repo-oss (16.0)) (47/104), 203.8 KiB
- Retrieving: libvo-amrwbenc0-0.1.3+5-160000.2.2.x86_64 (repo-oss (16.0)) (48/104), 76.4 KiB
- Retrieving: libvpl2-2.14.0-160000.2.2.x86_64 (repo-oss (16.0)) (49/104), 136.7 KiB
- Retrieving: libvpx9-1.14.1-160000.2.2.x86_64 (repo-oss (16.0)) (50/104), 857.9 KiB
- Retrieving: libvulkan1-1.4.309-160000.2.2.x86_64 (repo-oss (16.0)) (51/104), 156.2 KiB
- Retrieving: libzimg2-3.0.5-160000.2.2.x86_64 (repo-oss (16.0)) (52/104), 263.3 KiB
- Retrieving: libzix-0-0-0.6.2-160000.2.2.x86_64 (repo-oss (16.0)) (53/104), 31.1 KiB
- Retrieving: libglslang15-15.2.0-160000.2.2.x86_64 (repo-oss (16.0)) (54/104), 984.2 KiB
- Retrieving: libvdpau1-1.5-160000.3.2.x86_64 (repo-oss (16.0)) (55/104), 29.5 KiB
- Retrieving: libSDL2-2_0-0-2.30.7-160000.2.2.x86_64 (repo-oss (16.0)) (56/104), 698.3 KiB
- Retrieving: libcdio_cdda2-10.2+2.0.1-160000.3.2.x86_64 (repo-oss (16.0)) (57/104), 22.5 KiB
- Retrieving: librubberband2-3.1.0-160000.2.2.x86_64 (repo-oss (16.0)) (58/104), 145.9 KiB
- Retrieving: libjxl0_11-0.11.2-160000.1.1.x86_64 (repo-oss (16.0)) (59/104), 955.7 KiB
- Retrieving: libvorbis0-1.3.7-160000.3.2.x86_64 (repo-oss (16.0)) (60/104), 112.2 KiB
- Retrieving: libtheoraenc1-1.1.1-160000.2.2.x86_64 (repo-oss (16.0)) (61/104), 126.4 KiB
- Retrieving: libFLAC12-1.4.3-160000.2.2.x86_64 (repo-oss (16.0)) (62/104), 230.6 KiB
- Retrieving: libzvbi0-0.2.44-160000.2.2.x86_64 (repo-oss (16.0)) (63/104), 236.9 KiB
- Retrieving: libfreetype6-2.13.3-160000.3.1.x86_64 (repo-oss (16.0)) (64/104), 564.1 KiB
- Retrieving: libiec61883-0-1.2.0-160000.2.2.x86_64 (repo-oss (16.0)) (65/104), 39.3 KiB
- Retrieving: libdc1394-26-2.2.7-160000.2.2.x86_64 (repo-oss (16.0)) (66/104), 99.7 KiB
- Retrieving: libavc1394-0-0.5.4-160000.3.2.x86_64 (repo-oss (16.0)) (67/104), 21.7 KiB
- Retrieving: libwebp7-1.5.0-160000.2.2.x86_64 (repo-oss (16.0)) (68/104), 227.4 KiB
- Retrieving: libzmq5-4.3.5-160000.2.2.x86_64 (repo-oss (16.0)) (69/104), 244.9 KiB
- Retrieving: libva-x11-2-2.22.0-160000.3.2.x86_64 (repo-oss (16.0)) (70/104), 48.3 KiB
- Retrieving: libva-drm2-2.22.0-160000.3.2.x86_64 (repo-oss (16.0)) (71/104), 43.3 KiB
- Retrieving: libsord-0-0-0.16.18-160000.2.2.x86_64 (repo-oss (16.0)) (72/104), 29.0 KiB
- Retrieving: libshaderc_shared1-2025.1-160000.2.2.x86_64 (repo-oss (16.0)) (73/104), 52.9 KiB
- Retrieving: libcdio_paranoia2-10.2+2.0.1-160000.3.2.x86_64 (repo-oss (16.0)) (74/104), 23.4 KiB
- Retrieving: libvorbisfile3-1.3.7-160000.3.2.x86_64 (repo-oss (16.0)) (75/104), 35.0 KiB
- Retrieving: libvorbisenc2-1.3.7-160000.3.2.x86_64 (repo-oss (16.0)) (76/104), 95.4 KiB
- Retrieving: libharfbuzz0-11.4.5-160000.1.1.x86_64 (repo-oss (16.0)) (77/104), 595.4 KiB
- Retrieving: libfontconfig1-2.16.0-160000.2.2.x86_64 (repo-oss (16.0)) (78/104), 199.5 KiB
- Retrieving: fontconfig-2.16.0-160000.2.2.x86_64 (repo-oss (16.0)) (79/104), 137.4 KiB
- Retrieving: libwebpmux3-1.5.0-160000.2.2.x86_64 (repo-oss (16.0)) (80/104), 40.2 KiB
- Retrieving: libavutil59-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (81/104), 350.6 KiB
- Retrieving: libsratom-0-0-0.6.14-160000.2.2.x86_64 (repo-oss (16.0)) (82/104), 25.5 KiB
- Retrieving: libplacebo351-7.351.0-160000.2.2.x86_64 (repo-oss (16.0)) (83/104), 478.6 KiB
- Retrieving: libopenmpt0-0.7.13-160000.2.2.x86_64 (repo-oss (16.0)) (84/104), 703.5 KiB
- Retrieving: libsndfile1-1.2.2-160000.3.2.x86_64 (repo-oss (16.0)) (85/104), 216.0 KiB
- Retrieving: libbluray2-1.3.4-160000.3.2.x86_64 (repo-oss (16.0)) (86/104), 189.4 KiB
- Retrieving: libass9-0.17.3-160000.2.2.x86_64 (repo-oss (16.0)) (87/104), 132.0 KiB
- Retrieving: libswscale8-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (88/104), 196.6 KiB
- Retrieving: libswresample5-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (89/104), 71.3 KiB
- Retrieving: libpostproc58-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (90/104), 54.2 KiB
- Retrieving: ffmpeg-7-libavutil-devel-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (91/104), 161.7 KiB
- Retrieving: liblilv-0-0-0.24.24-160000.2.2.x86_64 (repo-oss (16.0)) (92/104), 56.5 KiB
- Retrieving: libpulse0-17.0-160000.2.2.x86_64 (repo-oss (16.0)) (93/104), 354.2 KiB
- Retrieving: libavcodec61-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (94/104), 4.1 MiB
- Retrieving: ffmpeg-7-libswscale-devel-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (95/104), 28.1 KiB
- Retrieving: ffmpeg-7-libswresample-devel-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (96/104), 29.7 KiB
- Retrieving: ffmpeg-7-libpostproc-devel-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (97/104), 22.7 KiB
- Retrieving: libavformat61-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (98/104), 1.1 MiB
- Retrieving: ffmpeg-7-libavcodec-devel-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (99/104), 80.0 KiB
- Retrieving: libavfilter10-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (100/104), 1.5 MiB
- Retrieving: ffmpeg-7-libavformat-devel-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (101/104), 57.9 KiB
- Retrieving: libavdevice61-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (102/104), 81.9 KiB
- Retrieving: ffmpeg-7-libavfilter-devel-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (103/104), 39.0 KiB
- Retrieving: ffmpeg-7-libavdevice-devel-7.1.2-160000.1.1.x86_64 (repo-oss (16.0)) (104/104), 27.6 KiB
-
- Checking for file conflicts: [...done]
- ( 1/104) Installing: libopenh264-8-2.6.0-2.suse1600.2.x86_64 [..done]
- ( 2/104) Installing: libSPIRV-Tools-2025_1_rc1-2025.1~rc1-160000.2.2.x86_64 [..done]
- ( 3/104) Installing: libSvtAv1Enc2-2.3.0-160000.2.2.x86_64 [..done]
- ( 4/104) Installing: libXext6-1.3.6-160000.3.2.x86_64 [..done]
- ( 5/104) Installing: libXfixes3-6.0.1-160000.3.2.x86_64 [..done]
- ( 6/104) Installing: libaom3-3.11.0-160000.2.2.x86_64 [..done]
- ( 7/104) Installing: libasound2-1.2.14-160000.2.2.x86_64 [..done]
- ( 8/104) Installing: libbrotlienc1-1.1.0-160000.2.2.x86_64 [..done]
- ( 9/104) Installing: libbs2b0-3.1.0-160000.2.2.x86_64 [..done]
- ( 10/104) Installing: libcdio19-2.1.0-160000.2.2.x86_64 [..done]
- ( 11/104) Installing: libcodec2-1_0-1.0.5-160000.2.2.x86_64 [..done]
- ( 12/104) Installing: libdav1d7-1.5.1-160000.2.2.x86_64 [..
- done]
- ( 13/104) Installing: libdovi3-3.3.1-160000.3.2.x86_64 [..done]
- ( 14/104) Installing: libdrm2-2.4.124-160000.3.2.x86_64 [..done]
- ( 15/104) Installing: libfftw3-3-3.3.10-160000.2.2.x86_64 [..done]
- ( 16/104) Installing: libfribidi0-1.0.15-160000.2.2.x86_64 [..done]
- ( 17/104) Installing: libgraphite2-3-1.3.14-160000.2.2.x86_64 [..done]
- ( 18/104) Installing: libgsm1-1.0.22-160000.3.2.x86_64 [..done]
- ( 19/104) Installing: libhwy1-1.2.0-160000.3.2.x86_64 [..done]
- ( 20/104) Installing: libjack0-1.9.22-160000.2.2.x86_64 [..done]
- ( 21/104) Installing: liblcms2-2-2.16-160000.3.2.x86_64 [..done]
- ( 22/104) Installing: libmp3lame0-3.100-160000.3.2.x86_64 [..done]
- ( 23/104) Installing: libmpg123-0-1.32.7-160000.2.2.x86_64 [..done]
- ( 24/104) Installing: libmysofa1-1.3.2-160000.2.2.x86_64 [..done]
- ( 25/104) Installing: libogg0-1.3.5-160000.3.2.x86_64 [..done]
- ( 26/104) Installing: libopencore-amrnb0-0.1.6-160000.2.2.x86_64 [..done]
- ( 27/104) Installing: libopencore-amrwb0-0.1.6-160000.2.2.x86_64 [..done]
- ( 28/104) Installing: libopenjp2-7-2.5.3-160000.3.1.x86_64 [..done]
- ( 29/104) Installing: libopus0-1.5.2-160000.2.2.x86_64 [..done]
- ( 30/104) Installing: libpgm-5_3-0-5.3.128-160000.2.2.x86_64 [..done]
- ( 31/104) Installing: libpng16-16-1.6.44-160000.6.1.x86_64 [..done]
- ( 32/104) Installing: librav1e0_8-0.8.0-160000.2.2.x86_64 [..done]
- ( 33/104) Installing: libraw1394-11-2.1.2-160000.2.2.x86_64 [..done]
- ( 34/104) Installing: librist4-0.2.11-160000.2.2.x86_64 [.
- .done]
- ( 35/104) Installing: libserd-0-0-0.32.4-160000.2.2.x86_64 [..done]
- ( 36/104) Installing: libsharpyuv0-1.5.0-160000.2.2.x86_64 [..done]
- ( 37/104) Installing: libsodium26-1.0.20-160000.3.1.x86_64 [..done]
- ( 38/104) Installing: libsoxr0-0.1.3-160000.2.2.x86_64 [..done]
- ( 39/104) Installing: libspeex1-1.2.1-160000.2.2.x86_64 [..done]
- ( 40/104) Installing: libsrt1_5-1.5.4-160000.2.2.x86_64 [..done]
- ( 41/104) Installing: libtheoradec1-1.1.1-160000.2.2.x86_64 [..done]
- ( 42/104) Installing: libtwolame0-0.4.0-160000.2.2.x86_64 [..done]
- ( 43/104) Installing: libunibreak5-5.1-160000.3.2.x86_64 [..done]
- ( 44/104) Installing: libunwind8-1.8.1-160000.2.2.x86_64 [..done]
- ( 45/104) Installing: libva2-2.22.0-160000.3.2.x86_64 [..done]
- ( 46/104) Installing: libvidstab1_2-1.1.1-160000.2.2.x86_64 [..done]
- ( 47/104) Installing: libvmaf3-3.0.0-160000.2.2.x86_64 [..done]
- ( 48/104) Installing: libvo-amrwbenc0-0.1.3+5-160000.2.2.x86_64 [..done]
- ( 49/104) Installing: libvpl2-2.14.0-160000.2.2.x86_64 [..done]
- ( 50/104) Installing: libvpx9-1.14.1-160000.2.2.x86_64 [..done]
- ( 51/104) Installing: libvulkan1-1.4.309-160000.2.2.x86_64 [..done]
- ( 52/104) Installing: libzimg2-3.0.5-160000.2.2.x86_64 [..done]
- ( 53/104) Installing: libzix-0-0-0.6.2-160000.2.2.x86_64 [..done]
- ( 54/104) Installing: libglslang15-15.2.0-160000.2.2.x86_64 [..done]
- ( 55/104) Installing: libvdpau1-1.5-160000.3.2.x86_64 [..done]
- ( 56/104) Installing: libSDL2-2_0-0-2.30.7-160000.2.2.x86_64 [..done]
- ( 57/104) Installing: libcdio_cdda2-10.2+2.0.1-160000.3.2.x86_64 [..
- done]
- ( 58/104) Installing: librubberband2-3.1.0-160000.2.2.x86_64 [..done]
- ( 59/104) Installing: libjxl0_11-0.11.2-160000.1.1.x86_64 [..done]
- ( 60/104) Installing: libvorbis0-1.3.7-160000.3.2.x86_64 [..done]
- ( 61/104) Installing: libtheoraenc1-1.1.1-160000.2.2.x86_64 [..done]
- ( 62/104) Installing: libFLAC12-1.4.3-160000.2.2.x86_64 [..done]
- ( 63/104) Installing: libzvbi0-0.2.44-160000.2.2.x86_64 [..done]
- ( 64/104) Installing: libfreetype6-2.13.3-160000.3.1.x86_64 [..done]
- ( 65/104) Installing: libiec61883-0-1.2.0-160000.2.2.x86_64 [..done]
- ( 66/104) Installing: libdc1394-26-2.2.7-160000.2.2.x86_64 [..done]
- ( 67/104) Installing: libavc1394-0-0.5.4-160000.3.2.x86_64 [..done]
- ( 68/104) Installing: libwebp7-1.5.0-160000.2.2.x86_64 [..done]
- ( 69/104) Installing: libzmq5-4.3.5-160000.2.2.x86_64 [..done]
- ( 70/104) Installing: libva-x11-2-2.22.0-160000.3.2.x86_64 [..done]
- ( 71/104) Installing: libva-drm2-2.22.0-160000.3.2.x86_64 [..done]
- ( 72/104) Installing: libsord-0-0-0.16.18-160000.2.2.x86_64 [..done]
- ( 73/104) Installing: libshaderc_shared1-2025.1-160000.2.2.x86_64 [..done]
- ( 74/104) Installing: libcdio_paranoia2-10.2+2.0.1-160000.3.2.x86_64 [..done]
- ( 75/104) Installing: libvorbisfile3-1.3.7-160000.3.2.x86_64 [..done]
- ( 76/104) Installing: libvorbisenc2-1.3.7-160000.3.2.x86_64 [..done]
- ( 77/104) Installing: libharfbuzz0-11.4.5-160000.1.1.x86_64 [..done]
- ( 78/104) Installing: libfontconfig1-2.16.0-160000.2.2.x86_64 [..done]
- ( 79/104) Installing: fontconfig-2.16.0-160000.2.2.x86_64 [..done]
- ( 80/104) Installing: libwebpmux3-1.5.0-160000.2.2.x86_64 [..done]
- ( 81/104) Installing: libavutil59-7.1.2-160000.1.1.x86_64 [..
- done]
- ( 82/104) Installing: libsratom-0-0-0.6.14-160000.2.2.x86_64 [..done]
- ( 83/104) Installing: libplacebo351-7.351.0-160000.2.2.x86_64 [..done]
- ( 84/104) Installing: libopenmpt0-0.7.13-160000.2.2.x86_64 [..done]
- ( 85/104) Installing: libsndfile1-1.2.2-160000.3.2.x86_64 [..done]
- ( 86/104) Installing: libbluray2-1.3.4-160000.3.2.x86_64 [..done]
- ( 87/104) Installing: libass9-0.17.3-160000.2.2.x86_64 [..done]
- ( 88/104) Installing: libswscale8-7.1.2-160000.1.1.x86_64 [..done]
- ( 89/104) Installing: libswresample5-7.1.2-160000.1.1.x86_64 [..done]
- ( 90/104) Installing: libpostproc58-7.1.2-160000.1.1.x86_64 [..done]
- ( 91/104) Installing: ffmpeg-7-libavutil-devel-7.1.2-160000.1.1.x86_64 [..done]
- ( 92/104) Installing: liblilv-0-0-0.24.24-160000.2.2.x86_64 [..done]
- ( 93/104) Installing: libpulse0-17.0-160000.2.2.x86_64 [..done]
- ( 94/104) Installing: libavcodec61-7.1.2-160000.1.1.x86_64 [...done]
- ( 95/104) Installing: ffmpeg-7-libswscale-devel-7.1.2-160000.1.1.x86_64 [..done]
- ( 96/104) Installing: ffmpeg-7-libswresample-devel-7.1.2-160000.1.1.x86_64 [..done]
- ( 97/104) Installing: ffmpeg-7-libpostproc-devel-7.1.2-160000.1.1.x86_64 [..done]
- ( 98/104) Installing: libavformat61-7.1.2-160000.1.1.x86_64 [..done]
- ( 99/104) Installing: ffmpeg-7-libavcodec-devel-7.1.2-160000.1.1.x86_64 [..done]
- (100/104) Installing: libavfilter10-7.1.2-160000.1.1.x86_64 [..
- done]
- (101/104) Installing: ffmpeg-7-libavformat-devel-7.1.2-160000.1.1.x86_64 [..done]
- (102/104) Installing: libavdevice61-7.1.2-160000.1.1.x86_64 [..done]
- (103/104) Installing: ffmpeg-7-libavfilter-devel-7.1.2-160000.1.1.x86_64 [..done]
- (104/104) Installing: ffmpeg-7-libavdevice-devel-7.1.2-160000.1.1.x86_64 [..done]
- Running post-transaction scripts [...done]
<><> 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-13 15:49.55 ---> saved as "4515be4074d5fff603effd221378a404a1b0a4c5b07b44830dde70275e988b48"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ffmpeg-avcodec.1.3.0) || true"))
[WARNING] Opam package conf-ffmpeg.1 depends on the following system package that can no longer be found: ffmpeg-devel
The following actions will be performed:
=== recompile 2 packages
- recompile conf-ffmpeg 1 [upstream or system changes]
- recompile ffmpeg-avcodec 1.3.0 (pinned)
The following system packages will first need to be installed:
ffmpeg-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
2. Display the recommended zypper 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 "zypper" "--non-interactive" "install" "ffmpeg-devel"
- Refreshing service 'openSUSE'.
- Loading repository data...
- Reading installed packages...
- 'ffmpeg-devel' not found in package names. Trying capabilities.
- 'ffmpeg-7-libavdevice-devel' providing 'ffmpeg-devel' is already installed.
- Resolving package dependencies...
- Nothing to do.
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed ffmpeg-avcodec.1.3.0
-> removed conf-ffmpeg.1
-> installed conf-ffmpeg.1
-> installed ffmpeg-avcodec.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 15:50.03 ---> saved as "35bbe16473d496a93efce04cd180020c91c1d21faf238e798a337fd3381d0956"
/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 \"\\\"opensuse-16.0\\\"\"; 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"))
[WARNING] Opam package conf-ffmpeg.1 depends on the following system package that can no longer be found: ffmpeg-devel
The following actions will be performed:
=== recompile 2 packages
- recompile conf-ffmpeg 1 [upstream or system changes]
- recompile ffmpeg-avcodec 1.3.0 (pinned)
The following system packages will first need to be installed:
ffmpeg-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
2. Display the recommended zypper 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 "zypper" "--non-interactive" "install" "ffmpeg-devel"
- Refreshing service 'openSUSE'.
- Loading repository data...
- Reading installed packages...
- 'ffmpeg-devel' not found in package names. Trying capabilities.
- 'ffmpeg-7-libavdevice-devel' providing 'ffmpeg-devel' is already installed.
- Resolving package dependencies...
- Nothing to do.
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 3/8: [conf-ffmpeg: pkg-config libavutil]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "pkg-config" "--exists" "libavutil" "libavformat" "libavcodec" "libavdevice" "libavfilter" "libswresample" "libswscale" (CWD=/home/opam/.opam/5.4/.opam-switch/build/conf-ffmpeg.1)
-> compiled conf-ffmpeg.1
-> removed ffmpeg-avcodec.1.3.0
-> removed conf-ffmpeg.1
-> installed conf-ffmpeg.1
Processing 7/8: [ffmpeg-avcodec: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ffmpeg-avcodec" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ffmpeg-avcodec.1.3.0)
-> compiled ffmpeg-avcodec.1.3.0
-> installed ffmpeg-avcodec.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 15:50.11 ---> saved as "d584e621b839242e9fa522f213a2849ee52ceddd17789bfe7719a43675788628"
Job succeeded
2026-04-13 15:50.18: Job succeeded