- github
- ocaml
- opam-repository
- 04bb69
- distributions,archlinux-ocaml-5.4,ffmpeg-avcodec.1.3.0,tests
(not at the head of any monitored branch or PR)
2026-04-13 14:55.05: 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 archlinux-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:archlinux-ocaml-5.4@sha256:de79e33c026afe1c911ab1b6bcfc67a8030e2e24f98ecf79f3de8ee4c67c73d2
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 "\"archlinux\""; 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 "\"archlinux\""; 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.05: Using cache hint "ocaml/opam:archlinux-ocaml-5.4@sha256:de79e33c026afe1c911ab1b6bcfc67a8030e2e24f98ecf79f3de8ee4c67c73d2-ffmpeg-avcodec.1.3.0-04bb6962c1b0506de5a277289b857c4093d55649"
2026-04-13 14:55.05: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-5.4@sha256:de79e33c026afe1c911ab1b6bcfc67a8030e2e24f98ecf79f3de8ee4c67c73d2)
(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 \"\\\"archlinux\\\"\"; 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 \"\\\"archlinux\\\"\"; 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.05: Waiting for resource in pool OCluster
2026-04-13 15:45.26: Waiting for worker…
2026-04-13 15:49.37: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files: 99% (18589/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:archlinux-ocaml-5.4@sha256:de79e33c026afe1c911ab1b6bcfc67a8030e2e24f98ecf79f3de8ee4c67c73d2)
Unable to find image 'ocaml/opam:archlinux-ocaml-5.4@sha256:de79e33c026afe1c911ab1b6bcfc67a8030e2e24f98ecf79f3de8ee4c67c73d2' locally
docker.io/ocaml/opam@sha256:de79e33c026afe1c911ab1b6bcfc67a8030e2e24f98ecf79f3de8ee4c67c73d2: Pulling from ocaml/opam
c9ea86d6f9b5: Pulling fs layer
6bd69c77b316: Pulling fs layer
47fe046dcaa3: Pulling fs layer
2ef6a5333c92: Pulling fs layer
2bce953099e3: Pulling fs layer
c9ea86d6f9b5: Waiting
6bd69c77b316: Waiting
47fe046dcaa3: Waiting
2ef6a5333c92: Waiting
70ffc51f0084: Pulling fs layer
2bce953099e3: Waiting
b8b55c8422bb: Pulling fs layer
ec0d284b59b3: Pulling fs layer
aef12ae46f15: Pulling fs layer
b8b55c8422bb: Waiting
ec0d284b59b3: Waiting
70ffc51f0084: Waiting
99494cb74219: Pulling fs layer
aef12ae46f15: Waiting
6554d06eb0ae: Pulling fs layer
99494cb74219: Waiting
9206878af73c: Pulling fs layer
6554d06eb0ae: Waiting
46db03b7ba7f: Pulling fs layer
9206878af73c: Waiting
06a4e09cf289: Pulling fs layer
46db03b7ba7f: Waiting
4f4fb700ef54: Pulling fs layer
06a4e09cf289: Waiting
fadccc62c2ca: Pulling fs layer
4f4fb700ef54: Waiting
997af073108a: Pulling fs layer
fadccc62c2ca: Waiting
f05f4d2f6441: Pulling fs layer
1e338ee1032a: Pulling fs layer
997af073108a: Waiting
f05f4d2f6441: Waiting
0774f2ec3844: Pulling fs layer
1e338ee1032a: Waiting
54aa2dbb029d: Pulling fs layer
0774f2ec3844: Waiting
5f07be1dc3f7: Pulling fs layer
54aa2dbb029d: Waiting
5f07be1dc3f7: Waiting
807ebe9f8073: Pulling fs layer
bddf10f49d5e: Pulling fs layer
807ebe9f8073: Waiting
1307919f5507: Pulling fs layer
bddf10f49d5e: Waiting
67edb023280c: Pulling fs layer
a73fd304ea0f: Pulling fs layer
1307919f5507: Waiting
67edb023280c: Waiting
22825ff20a92: Pulling fs layer
a73fd304ea0f: Waiting
e4e4ef52ca8e: Pulling fs layer
e4e4ef52ca8e: Waiting
4c31e4e0b4cd: Pulling fs layer
22825ff20a92: Waiting
bc04313323af: Pulling fs layer
b0654d5f963f: Pulling fs layer
4c31e4e0b4cd: Waiting
bc04313323af: Waiting
7299618be8f1: Pulling fs layer
c4a3b3667177: Pulling fs layer
7299618be8f1: Waiting
eff4f5aff9e8: Pulling fs layer
c4a3b3667177: Waiting
17aced3f1ca0: Pulling fs layer
eff4f5aff9e8: Waiting
17aced3f1ca0: Waiting
7db8b839e733: Pulling fs layer
2f49ffab676a: Pulling fs layer
2f49ffab676a: Waiting
7db8b839e733: Waiting
6bd69c77b316: Download complete
47fe046dcaa3: Verifying Checksum
47fe046dcaa3: Download complete
2ef6a5333c92: Download complete
2bce953099e3: Verifying Checksum
2bce953099e3: Download complete
70ffc51f0084: Verifying Checksum
70ffc51f0084: Download complete
c9ea86d6f9b5: Verifying Checksum
c9ea86d6f9b5: Download complete
b8b55c8422bb: Verifying Checksum
b8b55c8422bb: Download complete
ec0d284b59b3: Verifying Checksum
ec0d284b59b3: Download complete
99494cb74219: Verifying Checksum
99494cb74219: Download complete
aef12ae46f15: Verifying Checksum
aef12ae46f15: Download complete
6554d06eb0ae: Verifying Checksum
6554d06eb0ae: Download complete
9206878af73c: Download complete
46db03b7ba7f: Verifying Checksum
46db03b7ba7f: Download complete
06a4e09cf289: Verifying Checksum
06a4e09cf289: Download complete
4f4fb700ef54: Download complete
fadccc62c2ca: Download complete
997af073108a: Download complete
f05f4d2f6441: Download complete
1e338ee1032a: Download complete
54aa2dbb029d: Download complete
0774f2ec3844: Verifying Checksum
0774f2ec3844: Download complete
5f07be1dc3f7: Verifying Checksum
5f07be1dc3f7: Download complete
bddf10f49d5e: Verifying Checksum
bddf10f49d5e: Download complete
807ebe9f8073: Download complete
1307919f5507: Download complete
67edb023280c: Verifying Checksum
67edb023280c: Download complete
a73fd304ea0f: Verifying Checksum
a73fd304ea0f: Download complete
e4e4ef52ca8e: Verifying Checksum
e4e4ef52ca8e: Download complete
bc04313323af: Verifying Checksum
bc04313323af: Download complete
b0654d5f963f: Verifying Checksum
b0654d5f963f: Download complete
7299618be8f1: Download complete
c4a3b3667177: Verifying Checksum
c4a3b3667177: Download complete
c9ea86d6f9b5: Pull complete
6bd69c77b316: Pull complete
4c31e4e0b4cd: Verifying Checksum
4c31e4e0b4cd: Download complete
17aced3f1ca0: Verifying Checksum
17aced3f1ca0: Download complete
7db8b839e733: Verifying Checksum
7db8b839e733: Download complete
2f49ffab676a: Verifying Checksum
2f49ffab676a: Download complete
22825ff20a92: Verifying Checksum
22825ff20a92: Download complete
47fe046dcaa3: Pull complete
2ef6a5333c92: Pull complete
2bce953099e3: Pull complete
70ffc51f0084: Pull complete
b8b55c8422bb: Pull complete
ec0d284b59b3: Pull complete
aef12ae46f15: Pull complete
99494cb74219: Pull complete
6554d06eb0ae: Pull complete
9206878af73c: Pull complete
46db03b7ba7f: Pull complete
06a4e09cf289: Pull complete
4f4fb700ef54: Pull complete
fadccc62c2ca: Pull complete
997af073108a: Pull complete
f05f4d2f6441: Pull complete
1e338ee1032a: Pull complete
0774f2ec3844: Pull complete
54aa2dbb029d: Pull complete
5f07be1dc3f7: Pull complete
807ebe9f8073: Pull complete
bddf10f49d5e: Pull complete
1307919f5507: Pull complete
67edb023280c: Pull complete
a73fd304ea0f: Pull complete
eff4f5aff9e8: Verifying Checksum
eff4f5aff9e8: Download complete
22825ff20a92: Pull complete
e4e4ef52ca8e: Pull complete
4c31e4e0b4cd: Pull complete
bc04313323af: Pull complete
b0654d5f963f: Pull complete
7299618be8f1: Pull complete
c4a3b3667177: Pull complete
eff4f5aff9e8: Pull complete
17aced3f1ca0: Pull complete
7db8b839e733: Pull complete
2f49ffab676a: Pull complete
Digest: sha256:de79e33c026afe1c911ab1b6bcfc67a8030e2e24f98ecf79f3de8ee4c67c73d2
Status: Downloaded newer image for ocaml/opam@sha256:de79e33c026afe1c911ab1b6bcfc67a8030e2e24f98ecf79f3de8ee4c67c73d2
2026-04-13 15:57.02 ---> saved as "7cb4e03af0e5890e1fe7b6863411d5fa73d5fc09809854da1c2ede2c57941bb4"
/: (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:57.02 ---> saved as "26cdb32ce18372efbfe3eb513e6bcdd678cd676ee6c2c3739f678643bca0e39f"
/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-13 15:57.31 ---> saved as "788765094510295a773839488ef10ff49cf26f463cfbb3925252eb056dbb21b4"
/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=arch os-version=20260405.0.511327
# 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:57.32 ---> saved as "00eefcd5154a5c3e71008a17d770776532aeb576e2e5a85a83e93e02129684ca"
/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:57.41 ---> saved as "36d00ac7606e508280b89bc8bebf5c793aa73f2e0b84ca1c8177bf712e838844"
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-13 15:57.53 ---> saved as "aa169e1d15e63452e91313023f351e2c17dba201cc8b0abaae84fe2a7a6ced64"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-13 15:58.12 ---> saved as "372b21a50bf43e2c01af7de42a437aa6512a5d081067476e226f4e09820bab86"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2026-04-13 15:58.29 ---> saved as "254bb11d813b9e03aa055231bf2c0ee768de3fc4bdc2c757a36093135e48d481"
/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:58.30 ---> saved as "a843bb0754f155bbcc6284f8b4177df76af8354e0ee3501ad337f2efc8a66427"
/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 \"\\\"archlinux\\\"\"; 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
∗ conf-ffmpeg 1 [required by ffmpeg-avcodec]
∗ conf-pkg-config 4 [required by ffmpeg-avcodec]
∗ csexp 1.5.2 [required by dune-configurator]
∗ dune 3.22.1 [required by ffmpeg-avcodec]
∗ dune-configurator 3.22.1 [required by ffmpeg-avcodec]
∗ ffmpeg-avcodec 1.3.0 (pinned)
∗ ffmpeg-avutil 1.3.0 [required by ffmpeg-avcodec]
The following system packages will first need to be installed:
ffmpeg pkgconf
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
2. Display the recommended pacman command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/sbin/sudo "pacman" "-Su" "--noconfirm" "ffmpeg" "pkgconf"
- :: Starting full system upgrade...
- resolving dependencies...
- :: There are 2 providers available for jack:
- :: Repository extra
- 1) jack2 2) pipewire-jack
-
- Enter a number (default=1):
- looking for conflicting packages...
-
- Package (128) Old Version New Version Net Change Download Size
-
- extra/alsa-lib 1.2.15.3-2 1.72 MiB 0.49 MiB
- extra/alsa-topology-conf 1.2.5.1-4 0.33 MiB 0.01 MiB
- extra/alsa-ucm-conf 1.2.15.3-1 0.62 MiB 0.12 MiB
- extra/aom 3.13.3-1 9.16 MiB 2.91 MiB
- core/archlinux-keyring 20260323-1 20260409-1 0.00 MiB 1.20 MiB
- extra/cairo 1.18.4-1 1.59 MiB 0.61 MiB
- extra/dav1d 1.5.3-1 1.78 MiB 0.63 MiB
- extra/default-cursors 3-1 0.00 MiB 0.00 MiB
- extra/fftw 3.3.10-8 8.81 MiB 2.66 MiB
- extra/flac 1.5.0-1 1.14 MiB 0.33 MiB
- extra/fontconfig 2:2.17.1-1 1.12 MiB 0.37 MiB
- extra/freetype2 2.14.3-1 1.66 MiB 0.52 MiB
- extra/fribidi 1.0.16-2 0.24 MiB 0.07 MiB
- extra/gdk-pixbuf2 2.44.6-2 2.96 MiB 0.48 MiB
- extra/giflib 6.1.2-1 0.33 MiB 0.10 MiB
- extra/glslang 1:1.4.341.0-2 12.91 MiB 2.39 MiB
- extra/glycin 2.1.1-1 17.50 MiB 3.78 MiB
- extra/gperftools 2.18.1-1 2.01 MiB 0.49 MiB
- extra/graphite 1:1.3.14-6 0.20 MiB 0.08 MiB
- extra/gsm 1.0.24-1 0.10 MiB 0.04 MiB
- extra/gtest 1.17.0-2 1.63 MiB 0.38 MiB
- extra/harfbuzz 14.1.0-1 4.67 MiB 1.25 MiB
- extra/hicolor-icon-theme 0.18-1 0.05 MiB 0.01 MiB
- extra/hidapi 0.15.0-1 0.13 MiB 0.04 MiB
- extra/highway 1.3.0-2 9.87 MiB 1.16 MiB
- core/iana-etc 20260328-1 20260409-1 0.00 MiB 0.39 MiB
- core/iptables 1:1.8.12-1 1:1.8.13-1 0.00 MiB 0.41 MiB
- extra/jack2 1.9.22-2 1.84 MiB 0.46 MiB
- extra/jbigkit 2.1-8 0.16 MiB 0.05 MiB
- extra/l-smash 2.14.5-4 1.02 MiB 0.31 MiB
- extra/lame 3.101.r6531-1 1.09 MiB 0.30 MiB
- extra/lcms2 2.18-1 0.68 MiB 0.22 MiB
- core/leancrypto 1.7.1-1 1.7.2-1 0.04 MiB 1.40 MiB
- extra/libass 0.17.4-2 0.29 MiB 0.12 MiB
- extra/libasyncns 1:0.8+r3+g68cd5af-3 0.05 MiB 0.02 MiB
- extra/libavc1394 0.5.4-7 0.12 MiB 0.03 MiB
- extra/libbluray 1.4.1-1 1.23 MiB 0.86 MiB
- extra/libbs2b 3.1.0-10 0.07 MiB 0.02 MiB
- extra/libbsd 0.12.2-2 0.33 MiB 0.16 MiB
- core/libcap-ng 0.9.2-1 0.9.3-1 0.01 MiB 0.07 MiB
- extra/libdatrie 0.2.14-1 0.49 MiB 0.11 MiB
- extra/libdeflate 1.25-1 0.14 MiB 0.06 MiB
- extra/libdovi 3.3.2-1 0.59 MiB 0.24 MiB
- extra/libdrm 2.4.131-1 1.28 MiB 0.35 MiB
- extra/libdvdnav 7.0.0-1 0.16 MiB 0.06 MiB
- extra/libdvdread 7.0.1-1 0.36 MiB 0.12 MiB
- core/libedit 20251016_3.1-1 0.26 MiB 0.11 MiB
- extra/libglvnd 1.7.0-3 3.34 MiB 0.32 MiB
- extra/libiec61883 1.2.0-9 0.12 MiB 0.03 MiB
- extra/libjpeg-turbo 3.1.4.1-1 2.43 MiB 0.57 MiB
- extra/libjxl 0.11.2-2 9.65 MiB 2.18 MiB
- extra/libmd 1.1.0-2 0.10 MiB 0.05 MiB
- extra/libmodplug 0.8.9.0-7 0.37 MiB 0.17 MiB
- extra/libogg 1.3.6-1 0.44 MiB 0.19 MiB
- extra/libopenmpt 0.8.6-1 2.45 MiB 0.87 MiB
- extra/libpciaccess 0.19-1 0.06 MiB 0.02 MiB
- extra/libpgm 5.3.128-4 0.35 MiB 0.17 MiB
- extra/libplacebo 7.360.1-1 1.59 MiB 0.51 MiB
- extra/libpng 1.6.57-1 0.58 MiB 0.25 MiB
- extra/libpulse 17.0+r98+gb096704c0-1 1.46 MiB 0.39 MiB
- extra/libraw1394 2.1.2-4 0.16 MiB 0.05 MiB
- extra/librsvg 2:2.62.1-1 10.25 MiB 2.37 MiB
- extra/libsamplerate 0.2.2-3 1.55 MiB 1.33 MiB
- extra/libsndfile 1.2.2-4 0.93 MiB 0.31 MiB
- extra/libsodium 1.0.22-1 0.64 MiB 0.21 MiB
- extra/libsoxr 0.1.3-4 0.20 MiB 0.08 MiB
- extra/libssh 0.12.0-1 0.71 MiB 0.24 MiB
- extra/libthai 0.1.30-1 1.24 MiB 0.26 MiB
- extra/libtheora 1.2.0-1 2.34 MiB 0.42 MiB
- extra/libtiff 4.7.1-2 1.26 MiB 0.38 MiB
- extra/libunibreak 7.0-1 0.15 MiB 0.03 MiB
- extra/libunwind 1.8.2-1 0.29 MiB 0.13 MiB
- extra/libva 2.23.0-1 0.98 MiB 0.20 MiB
- extra/libvdpau 1.5-4 0.28 MiB 0.06 MiB
- core/libverto 0.3.2-5 0.3.2-6 0.00 MiB 0.02 MiB
- extra/libvorbis 1.3.7-4 0.83 MiB 0.18 MiB
- extra/libvpl 2.16.0-2 0.97 MiB 0.22 MiB
- extra/libvpx 1.16.0-3 3.68 MiB 1.29 MiB
- extra/libwebp 1.6.0-2 1.04 MiB 0.32 MiB
- extra/libxcursor 1.2.3-1 0.07 MiB 0.03 MiB
- extra/libxext 1.3.7-1 0.30 MiB 0.10 MiB
- extra/libxfixes 6.0.2-1 0.04 MiB 0.01 MiB
- extra/libxft 2.3.9-1 0.13 MiB 0.06 MiB
- extra/libxrender 0.9.12-1 0.09 MiB 0.03 MiB
- extra/libxshmfence 1.3.3-1 0.02 MiB 0.01 MiB
- extra/libxv 1.0.13-1 0.06 MiB 0.03 MiB
- extra/libxxf86vm 1.1.7-1 0.03 MiB 0.02 MiB
- extra/llvm-libs 22.1.3-1 160.11 MiB 39.72 MiB
- extra/lm_sensors 1:3.6.2-1 0.48 MiB 0.13 MiB
- core/lzo 2.10-5 0.38 MiB 0.09 MiB
- core/make 4.4.1-2 4.4.1-3 -0.01 MiB 0.51 MiB
- extra/mesa 1:26.0.4-1 50.73 MiB 12.73 MiB
- core/mpdecimal 4.0.1-3 0.32 MiB 0.10 MiB
- extra/mpg123 1.33.4-1 1.18 MiB 0.44 MiB
- extra/ocl-icd 2.3.4-1 0.48 MiB 0.10 MiB
- extra/opencore-amr 0.1.6-2 0.29 MiB 0.14 MiB
- extra/openjpeg2 2.5.4-1 13.37 MiB 0.87 MiB
- extra/opus 1.6.1-1 4.16 MiB 3.29 MiB
- extra/pango 1:1.57.1-1 2.33 MiB 0.42 MiB
- extra/pixman 0.46.4-1 0.74 MiB 0.28 MiB
- extra/portaudio 1:19.7.0-4 0.33 MiB 0.10 MiB
- core/python 3.14.4-1 72.32 MiB 13.05 MiB
- extra/rav1e 0.8.1-2 7.61 MiB 1.60 MiB
- extra/rubberband 4.0.0-2 1.52 MiB 0.29 MiB
- extra/sdl2-compat 2.32.66-1 3.08 MiB 0.45 MiB
- extra/sdl3 3.4.4-1 6.76 MiB 1.61 MiB
- extra/shaderc 2026.1-2 0.67 MiB 0.16 MiB
- extra/shared-mime-info 2.4-3 4.58 MiB 0.60 MiB
- extra/snappy 1.2.2-3 0.09 MiB 0.03 MiB
- extra/sndio 1.10.0-1 0.28 MiB 0.12 MiB
- extra/speex 1.2.1-2 0.62 MiB 0.47 MiB
- extra/speexdsp 1.2.1-2 0.54 MiB 0.44 MiB
- extra/spirv-tools 1:1.4.341.0-2 7.59 MiB 1.91 MiB
- extra/srt 1.5.4-1 1.60 MiB 0.51 MiB
- extra/svt-av1 4.1.0-1 5.24 MiB 1.92 MiB
- extra/v4l-utils 1.32.0-2 11.31 MiB 1.99 MiB
- extra/vapoursynth 73-2 3.05 MiB 0.96 MiB
- extra/vid.stab 1.1.1-2 0.14 MiB 0.05 MiB
- extra/vmaf 3.1.0-1 6.53 MiB 0.41 MiB
- extra/vulkan-icd-loader 1.4.341.0-1 0.58 MiB 0.15 MiB
- extra/wayland 1.24.0-1 0.82 MiB 0.14 MiB
- extra/x264 3:0.165.r3222.b35605a-2 3.79 MiB 0.75 MiB
- extra/x265 4.1-1 20.84 MiB 1.94 MiB
- extra/xvidcore 1.3.7-3 0.67 MiB 0.22 MiB
- extra/zeromq 4.3.5-3 3.03 MiB 0.55 MiB
- extra/zimg 3.0.6-1 0.67 MiB 0.22 MiB
- extra/ffmpeg 2:8.1-3 47.30 MiB 14.48 MiB
- core/pkgconf 2.5.1-1 0.20 MiB 0.07 MiB
-
- Total Download Size: 144.08 MiB
- Total Installed Size: 604.36 MiB
- Net Upgrade Size: 588.25 MiB
-
- :: Proceed with installation? [Y/n]
- :: Retrieving packages...
- llvm-libs-22.1.3-1-x86_64 downloading...
- ffmpeg-2:8.1-3-x86_64 downloading...
- python-3.14.4-1-x86_64 downloading...
- mesa-1:26.0.4-1-x86_64 downloading...
- glycin-2.1.1-1-x86_64 downloading...
- opus-1.6.1-1-x86_64 downloading...
- aom-3.13.3-1-x86_64 downloading...
- fftw-3.3.10-8-x86_64 downloading...
- glslang-1:1.4.341.0-2-x86_64 downloading...
- librsvg-2:2.62.1-1-x86_64 downloading...
- libjxl-0.11.2-2-x86_64 downloading...
- v4l-utils-1.32.0-2-x86_64 downloading...
- x265-4.1-1-x86_64 downloading...
- svt-av1-4.1.0-1-x86_64 downloading...
- spirv-tools-1:1.4.341.0-2-x86_64 downloading...
- sdl3-3.4.4-1-x86_64 downloading...
- rav1e-0.8.1-2-x86_64 downloading...
- leancrypto-1.7.2-1-x86_64 downloading...
- libsamplerate-0.2.2-3-x86_64 downloading...
- libvpx-1.16.0-3-x86_64 downloading...
- harfbuzz-14.1.0-1-x86_64 downloading...
- archlinux-keyring-20260409-1-any downloading...
- highway-1.3.0-2-x86_64 downloading...
- vapoursynth-73-2-x86_64 downloading...
- openjpeg2-2.5.4-1-x86_64 downloading...
- libopenmpt-0.8.6-1-x86_64 downloading...
- libbluray-1.4.1-1-x86_64 downloading...
- x264-3:0.165.r3222.b35605a-2-x86_64 downloading...
- dav1d-1.5.3-1-x86_64 downloading...
- cairo-1.18.4-1-x86_64 downloading...
- shared-mime-info-2.4-3-x86_64 downloading...
- libjpeg-turbo-3.1.4.1-1-x86_64 downloading...
- zeromq-4.3.5-3-x86_64 downloading...
- freetype2-2.14.3-1-x86_64 downloading...
- srt-1.5.4-1-x86_64 downloading...
- libplacebo-7.360.1-1-x86_64 downloading...
- make-4.4.1-3-x86_64 downloading...
- alsa-lib-1.2.15.3-2-x86_64 downloading...
- gperftools-2.18.1-1-x86_64 downloading...
- gdk-pixbuf2-2.44.6-2-x86_64 downloading...
- speex-1.2.1-2-x86_64 downloading...
- jack2-1.9.22-2-x86_64 downloading...
- sdl2-compat-2.32.66-1-x86_64 downloading...
- mpg123-1.33.4-1-x86_64 downloading...
- speexdsp-1.2.1-2-x86_64 downloading...
- libtheora-1.2.0-1-x86_64 downloading...
- pango-1:1.57.1-1-x86_64 downloading...
- vmaf-3.1.0-1-x86_64 downloading...
- iptables-1:1.8.13-1-x86_64 downloading...
- libpulse-17.0+r98+gb096704c0-1-x86_64 downloading...
- iana-etc-20260409-1-any downloading...
- libtiff-4.7.1-2-x86_64 downloading...
- gtest-1.17.0-2-x86_64 downloading...
- fontconfig-2:2.17.1-1-x86_64 downloading...
- libdrm-2.4.131-1-x86_64 downloading...
- flac-1.5.0-1-x86_64 downloading...
- libwebp-1.6.0-2-x86_64 downloading...
- libglvnd-1.7.0-3-x86_64 downloading...
- l-smash-2.14.5-4-x86_64 downloading...
- libsndfile-1.2.2-4-x86_64 downloading...
- lame-3.101.r6531-1-x86_64 downloading...
- rubberband-4.0.0-2-x86_64 downloading...
- pixman-0.46.4-1-x86_64 downloading...
- libthai-0.1.30-1-x86_64 downloading...
- libpng-1.6.57-1-x86_64 downloading...
- libssh-0.12.0-1-x86_64 downloading...
- libdovi-3.3.2-1-x86_64 downloading...
- libvpl-2.16.0-2-x86_64 downloading...
- zimg-3.0.6-1-x86_64 downloading...
- xvidcore-1.3.7-3-x86_64 downloading...
- lcms2-2.18-1-x86_64 downloading...
- libsodium-1.0.22-1-x86_64 downloading...
- libva-2.23.0-1-x86_64 downloading...
- libogg-1.3.6-1-x86_64 downloading...
- libvorbis-1.3.7-4-x86_64 downloading...
- libpgm-5.3.128-4-x86_64 downloading...
- libmodplug-0.8.9.0-7-x86_64 downloading...
- libbsd-0.12.2-2-x86_64 downloading...
- shaderc-2026.1-2-x86_64 downloading...
- vulkan-icd-loader-1.4.341.0-1-x86_64 downloading...
- opencore-amr-0.1.6-2-x86_64 downloading...
- wayland-1.24.0-1-x86_64 downloading...
- lm_sensors-1:3.6.2-1-x86_64 downloading...
- libunwind-1.8.2-1-x86_64 downloading...
- sndio-1.10.0-1-x86_64 downloading...
- alsa-ucm-conf-1.2.15.3-1-any downloading...
- libass-0.17.4-2-x86_64 downloading...
- libdvdread-7.0.1-1-x86_64 downloading...
- libedit-20251016_3.1-1-x86_64 downloading...
- libdatrie-0.2.14-1-x86_64 downloading...
- libxext-1.3.7-1-x86_64 downloading...
- mpdecimal-4.0.1-3-x86_64 downloading...
- ocl-icd-2.3.4-1-x86_64 downloading...
- portaudio-1:19.7.0-4-x86_64 downloading...
- giflib-6.1.2-1-x86_64 downloading...
- lzo-2.10-5-x86_64 downloading...
- graphite-1:1.3.14-6-x86_64 downloading...
- libsoxr-0.1.3-4-x86_64 downloading...
- pkgconf-2.5.1-1-x86_64 downloading...
- fribidi-1.0.16-2-x86_64 downloading...
- libcap-ng-0.9.3-1-x86_64 downloading...
- libdeflate-1.25-1-x86_64 downloading...
- libvdpau-1.5-4-x86_64 downloading...
- libxft-2.3.9-1-x86_64 downloading...
- libdvdnav-7.0.0-1-x86_64 downloading...
- jbigkit-2.1-8-x86_64 downloading...
- vid.stab-1.1.1-2-x86_64 downloading...
- libmd-1.1.0-2-x86_64 downloading...
- libraw1394-2.1.2-4-x86_64 downloading...
- hidapi-0.15.0-1-x86_64 downloading...
- gsm-1.0.24-1-x86_64 downloading...
- libxv-1.0.13-1-x86_64 downloading...
- libiec61883-1.2.0-9-x86_64 downloading...
- snappy-1.2.2-3-x86_64 downloading...
- libxcursor-1.2.3-1-x86_64 downloading...
- libavc1394-0.5.4-7-x86_64 downloading...
- libxrender-0.9.12-1-x86_64 downloading...
- libunibreak-7.0-1-x86_64 downloading...
- libpciaccess-0.19-1-x86_64 downloading...
- libverto-0.3.2-6-x86_64 downloading...
- libbs2b-3.1.0-10-x86_64 downloading...
- libasyncns-1:0.8+r3+g68cd5af-3-x86_64 downloading...
- libxxf86vm-1.1.7-1-x86_64 downloading...
- libxfixes-6.0.2-1-x86_64 downloading...
- alsa-topology-conf-1.2.5.1-4-any downloading...
- hicolor-icon-theme-0.18-1-any downloading...
- libxshmfence-1.3.3-1-x86_64 downloading...
- default-cursors-3-1-any downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- installing alsa-topology-conf...
- installing alsa-ucm-conf...
- upgrading iana-etc...
- installing alsa-lib...
- installing aom...
- installing libpng...
- installing freetype2...
- Optional dependencies for freetype2
- harfbuzz: Improved autohinting [pending]
- installing fontconfig...
- Creating fontconfig configuration...
- Rebuilding fontconfig cache...
- installing libxext...
- installing libxrender...
- installing lzo...
- installing pixman...
- installing cairo...
- installing dav1d...
- Optional dependencies for dav1d
- dav1d-doc: HTML documentation
- installing fribidi...
- installing spirv-tools...
- installing glslang...
- installing gsm...
- installing graphite...
- Optional dependencies for graphite
- graphite-docs: Documentation
- installing harfbuzz...
- Optional dependencies for harfbuzz
- harfbuzz-utils: utilities
- installing libsamplerate...
- installing opus...
- upgrading libcap-ng...
- upgrading libverto...
- installing jack2...
- Optional dependencies for jack2
- a2jmidid: for ALSA MIDI to JACK MIDI bridging
- libffado: for firewire support using FFADO
- jack-example-tools: for official JACK example-clients and tools
- jack2-dbus: for dbus integration
- jack2-docs: for developer documentation
- realtime-privileges: for realtime privileges
- installing mpg123...
- Optional dependencies for mpg123
- sdl2: for sdl audio support [pending]
- jack: for jack audio support [installed]
- libpulse: for pulse audio support [pending]
- perl: for conplay [installed]
- installing lame...
- installing libjpeg-turbo...
- Optional dependencies for libjpeg-turbo
- java-runtime>11: for TurboJPEG Java wrapper
- installing jbigkit...
- installing libdeflate...
- installing libwebp...
- Optional dependencies for libwebp
- libwebp-utils: WebP conversion and inspection tools
- installing libtiff...
- Optional dependencies for libtiff
- freeglut: for using tiffgt
- installing lcms2...
- installing libunibreak...
- installing libass...
- installing libraw1394...
- installing libavc1394...
- installing libbluray...
- Optional dependencies for libbluray
- java-runtime: BD-J library
- installing libogg...
- installing flac...
- installing libvorbis...
- installing libsndfile...
- Optional dependencies for libsndfile
- alsa-lib: for sndfile-play [installed]
- installing libbs2b...
- installing libpciaccess...
- installing libdrm...
- Optional dependencies for libdrm
- cairo: needed for modetest tool [installed]
- installing libdvdread...
- Optional dependencies for libdvdread
- libdvdcss: Decoding encrypted DVDs
- installing libdvdnav...
- installing libxshmfence...
- installing libxxf86vm...
- installing libedit...
- installing llvm-libs...
- installing lm_sensors...
- Optional dependencies for lm_sensors
- rrdtool: for logging with sensord
- perl: for sensor detection and configuration convert [installed]
- installing default-cursors...
- Optional dependencies for default-cursors
- adwaita-cursors: default cursor theme
- installing wayland...
- upgrading leancrypto...
- installing mesa...
- Optional dependencies for mesa
- opengl-man-pages: for the OpenGL API man pages
- installing libglvnd...
- installing libiec61883...
- installing giflib...
- installing libunwind...
- installing gperftools...
- installing gtest...
- Optional dependencies for gtest
- python: gmock generator [pending]
- installing highway...
- installing libjxl...
- Optional dependencies for libjxl
- java-runtime: for JNI bindings
- installing libmodplug...
- installing libasyncns...
- installing libpulse...
- Optional dependencies for libpulse
- pulse-native-provider: PulseAudio backend
- installing portaudio...
- installing libopenmpt...
- installing vulkan-icd-loader...
- Optional dependencies for vulkan-icd-loader
- vulkan-driver: packaged vulkan driver
- installing shaderc...
- installing libdovi...
- installing libplacebo...
- installing glycin...
- Optional dependencies for glycin
- libheif: Load .avif, .heic and .heif
- installing shared-mime-info...
- installing gdk-pixbuf2...
- Optional dependencies for gdk-pixbuf2
- libheif: Load .avif, .heic and .heif
- libopenraw: Load .arw, .cr2, .crw, .dng, .erf, .mrw, .nef, .orf, .pef and .raf
- libwmf: Load .apm and .wmf
- installing libdatrie...
- installing libthai...
- installing libxft...
- installing pango...
- installing librsvg...
- installing libsoxr...
- installing libssh...
- installing libtheora...
- installing libxfixes...
- installing libva...
- Optional dependencies for libva
- intel-media-driver: backend for Intel GPUs (>= Broadwell)
- libva-intel-driver: backend for Intel GPUs (<= Haswell)
- libva-mesa-driver: backend for AMD and NVIDIA GPUs [installed]
- installing libvdpau...
- Optional dependencies for libvdpau
- libvdpau-va-gl: driver using VAAPI
- nvidia-utils: driver for NVIDIA
- installing libvpx...
- installing libxv...
- installing ocl-icd...
- Optional dependencies for ocl-icd
- opencl-driver: packaged opencl driver
- installing libvpl...
- Optional dependencies for libvpl
- intel-media-sdk: runtime implementation for legacy Intel GPUs
- vpl-gpu-rt: runtime implementation for Tiger Lake and newer GPUs
- installing opencore-amr...
- installing openjpeg2...
- installing rav1e...
- installing fftw...
- Optional dependencies for fftw
- fftw-openmpi: for OpenMPI integration
- installing rubberband...
- installing libxcursor...
- installing hidapi...
- Optional dependencies for hidapi
- libusb: for hidapi-libusb [installed]
- installing sdl3...
- Optional dependencies for sdl3
- alsa-lib: ALSA audio driver [installed]
- libpulse: PulseAudio audio driver [installed]
- jack: JACK audio driver [installed]
- pipewire: PipeWire audio driver
- vulkan-driver: vulkan renderer
- sndio: sndio audio driver [pending]
- libdecor: Wayland client decorations
- installing sdl2-compat...
- installing snappy...
- installing libmd...
- installing libbsd...
- installing sndio...
- installing speexdsp...
- installing speex...
- installing srt...
- installing svt-av1...
- installing hicolor-icon-theme...
- installing v4l-utils...
- Optional dependencies for v4l-utils
- qt6-base: for qv4l2 and qvidcap
- qt6-5compat: for qv4l2
- alsa-lib: for qv4l2 [installed]
- installing zimg...
- installing mpdecimal...
- installing python...
- Optional dependencies for python
- python-setuptools: for building Python packages using tooling that is usually bundled with Python
- python-pip: for installing Python packages using tooling that is usually bundled with Python
- python-pipx: for installing Python software not packaged on Arch Linux
- sqlite: for a default database integration [installed]
- xz: for lzma [installed]
- tk: for tkinter
- installing vapoursynth...
- installing vid.stab...
- installing vmaf...
- installing l-smash...
- installing x264...
- installing x265...
- installing xvidcore...
- installing libsodium...
- installing libpgm...
- installing zeromq...
- Optional dependencies for zeromq
- cppzmq: C++ binding for libzmq
- installing ffmpeg...
- Optional dependencies for ffmpeg
- avisynthplus: AviSynthPlus support
- frei0r-plugins: Frei0r video effects support
- intel-media-sdk: Intel QuickSync support (legacy)
- ladspa: LADSPA filters
- nvidia-utils: Nvidia NVDEC/NVENC support
- onevpl-intel-gpu: Intel QuickSync support
- installing pkgconf...
- upgrading archlinux-keyring...
- ==> ERROR: There is no secret key available to sign with.
- ==> Use 'pacman-key --init' to generate a default secret key.
- error: command failed to execute correctly
- upgrading iptables...
- upgrading make...
- :: Running post-transaction hooks...
- (1/8) Reloading system manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (2/8) Reloading user manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (3/8) Updating the MIME type database...
- (4/8) Enqueuing marked services...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (5/8) Reloading device manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (6/8) Arming ConditionNeedsUpdate...
- (7/8) Updating fontconfig configuration...
- (8/8) Updating fontconfig cache...
<><> 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 16:00.17 ---> saved as "136707d3116d186047b8ff733b4428d8b446a8734dbd8ba49dc48fe3230108b0"
/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
↻ 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-13 16:00.24 ---> saved as "d6ff12e8f90d7a5923baec1e1cb06e27bec9fd30e00886ece489dc08e7a883cd"
/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 \"\\\"archlinux\\\"\"; 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
↻ ffmpeg-avcodec 1.3.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [ffmpeg-avcodec: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ffmpeg-avcodec" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ffmpeg-avcodec.1.3.0)
λ compiled ffmpeg-avcodec.1.3.0
⊘ removed ffmpeg-avcodec.1.3.0
∗ installed ffmpeg-avcodec.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 16:00.32 ---> saved as "a867b62714fb572bcb5c9e961034191e5daf55a3f78ed4f054f6b7d61fd5cfdd"
Job succeeded
2026-04-13 16:00.38: Job succeeded