(not at the head of any monitored branch or PR)
2026-04-13 14:55.04: New job: test liquidsoap.2.4.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29703/head (04bb6962c1b0506de5a277289b857c4093d55649)
                              on fedora-42-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:fedora-42-ocaml-5.4@sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20
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 liquidsoap.2.4.2 2.4.2
RUN opam reinstall liquidsoap.2.4.2; \
    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 "\"fedora-42\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'liquidsoap.2.4.2' && 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 liquidsoap.2.4.2) || true
RUN opam reinstall --with-test --verbose liquidsoap.2.4.2; \
    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 "\"fedora-42\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'liquidsoap.2.4.2' && 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:fedora-42-ocaml-5.4@sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20-liquidsoap.2.4.2-04bb6962c1b0506de5a277289b857c4093d55649"
2026-04-13 14:55.04: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-5.4@sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20)
 (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 liquidsoap.2.4.2 2.4.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall liquidsoap.2.4.2;\
             \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 \"\\\"fedora-42\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'liquidsoap.2.4.2' && 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 liquidsoap.2.4.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose liquidsoap.2.4.2;\
             \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 \"\\\"fedora-42\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'liquidsoap.2.4.2' && 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:42.23: Waiting for worker…
2026-04-13 15:46.45: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
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:fedora-42-ocaml-5.4@sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20)
Unable to find image 'ocaml/opam:fedora-42-ocaml-5.4@sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20' locally
docker.io/ocaml/opam@sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20: Pulling from ocaml/opam
bcbfb8588268: Pulling fs layer
7c86f07d981d: Pulling fs layer
e523f6cbdc73: Pulling fs layer
e196c832855a: Pulling fs layer
bcbfb8588268: Waiting
7c86f07d981d: Waiting
c24dcc89d23e: Pulling fs layer
e523f6cbdc73: Waiting
e196c832855a: Waiting
cd9def049d81: Pulling fs layer
c24dcc89d23e: Waiting
e360f9824a3f: Pulling fs layer
cd9def049d81: Waiting
fbeadbd8287f: Pulling fs layer
e360f9824a3f: Waiting
b5be9212d8a5: Pulling fs layer
fbeadbd8287f: Waiting
58850ac9f02f: Pulling fs layer
b5be9212d8a5: Waiting
94de074660d5: Pulling fs layer
58850ac9f02f: Waiting
c6d785172de9: Pulling fs layer
94de074660d5: Waiting
5642a0bc3a02: Pulling fs layer
c6d785172de9: Waiting
677ac3b3af73: Pulling fs layer
5642a0bc3a02: Waiting
97f4a46fa01c: Pulling fs layer
887c8b3bd767: Pulling fs layer
97f4a46fa01c: Waiting
887c8b3bd767: Waiting
8572bae05e44: Pulling fs layer
a801ab04175f: Pulling fs layer
8572bae05e44: Waiting
8eb7359ab813: Pulling fs layer
a801ab04175f: Waiting
ea7dd170751f: Pulling fs layer
8eb7359ab813: Waiting
4f4fb700ef54: Pulling fs layer
4eeb3f6c741a: Pulling fs layer
4f4fb700ef54: Waiting
d8096e11e5a7: Pulling fs layer
4eeb3f6c741a: Waiting
b45c71862e05: Pulling fs layer
d8096e11e5a7: Waiting
3d3025681a79: Pulling fs layer
b45c71862e05: Waiting
3619e9f4de7b: Pulling fs layer
3d3025681a79: Waiting
e1d8131f324a: Pulling fs layer
3619e9f4de7b: Waiting
e1d8131f324a: Waiting
98ffe2fff5c0: Pulling fs layer
ecf008026c3e: Pulling fs layer
98ffe2fff5c0: Waiting
b7768b04427d: Pulling fs layer
ecf008026c3e: Waiting
aad28dcc458f: Pulling fs layer
b7768b04427d: Waiting
2972bd6e2f3d: Pulling fs layer
aad28dcc458f: Waiting
ca68011eb393: Pulling fs layer
2972bd6e2f3d: Waiting
9b422c636e47: Pulling fs layer
ca68011eb393: Waiting
63cf593f7c6c: Pulling fs layer
9b422c636e47: Waiting
8f3a2bf8a3f5: Pulling fs layer
63cf593f7c6c: Waiting
fd59c3ff8fe9: Pulling fs layer
8f3a2bf8a3f5: Waiting
c19e7369255b: Pulling fs layer
fd59c3ff8fe9: Waiting
379fcd94e8be: Pulling fs layer
c19e7369255b: Waiting
9f42b986b124: Pulling fs layer
379fcd94e8be: Waiting
5265afd8716d: Pulling fs layer
9f42b986b124: Waiting
85416eeda842: Pulling fs layer
5265afd8716d: Waiting
bcd50729bf5d: Pulling fs layer
85416eeda842: Waiting
b11563d96a68: Pulling fs layer
bcd50729bf5d: Waiting
b11563d96a68: Waiting
7c86f07d981d: Verifying Checksum
7c86f07d981d: Download complete
bcbfb8588268: Verifying Checksum
bcbfb8588268: Download complete
c24dcc89d23e: Verifying Checksum
c24dcc89d23e: Download complete
cd9def049d81: Verifying Checksum
cd9def049d81: Download complete
e360f9824a3f: Download complete
bcbfb8588268: Pull complete
7c86f07d981d: Pull complete
fbeadbd8287f: Verifying Checksum
fbeadbd8287f: Download complete
b5be9212d8a5: Download complete
58850ac9f02f: Download complete
94de074660d5: Verifying Checksum
94de074660d5: Download complete
c6d785172de9: Download complete
5642a0bc3a02: Download complete
677ac3b3af73: Verifying Checksum
677ac3b3af73: Download complete
97f4a46fa01c: Download complete
887c8b3bd767: Download complete
8572bae05e44: Verifying Checksum
8572bae05e44: Download complete
a801ab04175f: Download complete
8eb7359ab813: Verifying Checksum
8eb7359ab813: Download complete
ea7dd170751f: Verifying Checksum
ea7dd170751f: Download complete
4f4fb700ef54: Download complete
4eeb3f6c741a: Verifying Checksum
4eeb3f6c741a: Download complete
d8096e11e5a7: Verifying Checksum
d8096e11e5a7: Download complete
b45c71862e05: Verifying Checksum
b45c71862e05: Download complete
3d3025681a79: Verifying Checksum
3d3025681a79: Download complete
e1d8131f324a: Verifying Checksum
e1d8131f324a: Download complete
98ffe2fff5c0: Verifying Checksum
98ffe2fff5c0: Download complete
ecf008026c3e: Download complete
b7768b04427d: Verifying Checksum
b7768b04427d: Download complete
aad28dcc458f: Download complete
2972bd6e2f3d: Verifying Checksum
2972bd6e2f3d: Download complete
ca68011eb393: Download complete
e523f6cbdc73: Verifying Checksum
e523f6cbdc73: Download complete
63cf593f7c6c: Download complete
e523f6cbdc73: Pull complete
8f3a2bf8a3f5: Verifying Checksum
8f3a2bf8a3f5: Download complete
fd59c3ff8fe9: Download complete
c19e7369255b: Verifying Checksum
c19e7369255b: Download complete
379fcd94e8be: Verifying Checksum
379fcd94e8be: Download complete
9f42b986b124: Verifying Checksum
9f42b986b124: Download complete
5265afd8716d: Verifying Checksum
5265afd8716d: Download complete
85416eeda842: Verifying Checksum
85416eeda842: Download complete
bcd50729bf5d: Verifying Checksum
bcd50729bf5d: Download complete
b11563d96a68: Download complete
e196c832855a: Verifying Checksum
e196c832855a: Download complete
e196c832855a: Pull complete
c24dcc89d23e: Pull complete
cd9def049d81: Pull complete
e360f9824a3f: Pull complete
fbeadbd8287f: Pull complete
b5be9212d8a5: Pull complete
58850ac9f02f: Pull complete
94de074660d5: Pull complete
c6d785172de9: Pull complete
5642a0bc3a02: Pull complete
677ac3b3af73: Pull complete
97f4a46fa01c: Pull complete
887c8b3bd767: Pull complete
8572bae05e44: Pull complete
a801ab04175f: Pull complete
8eb7359ab813: Pull complete
ea7dd170751f: Pull complete
4f4fb700ef54: Pull complete
4eeb3f6c741a: Pull complete
d8096e11e5a7: Pull complete
b45c71862e05: Pull complete
3d3025681a79: Pull complete
3619e9f4de7b: Pull complete
e1d8131f324a: Pull complete
98ffe2fff5c0: Pull complete
ecf008026c3e: Pull complete
b7768b04427d: Pull complete
aad28dcc458f: Pull complete
2972bd6e2f3d: Pull complete
ca68011eb393: Pull complete
9b422c636e47: Verifying Checksum
9b422c636e47: Download complete
9b422c636e47: Pull complete
63cf593f7c6c: Pull complete
8f3a2bf8a3f5: Pull complete
fd59c3ff8fe9: Pull complete
c19e7369255b: Pull complete
379fcd94e8be: Pull complete
9f42b986b124: Pull complete
5265afd8716d: Pull complete
85416eeda842: Pull complete
bcd50729bf5d: Pull complete
b11563d96a68: Pull complete
Digest: sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20
Status: Downloaded newer image for ocaml/opam@sha256:124aa82c714b990e603c31155a66ffc2c8d35aaed7f91d66af2f2976302f5d20
2026-04-13 15:53.07 ---> saved as "026d3cf1aee2d78e6ed81a600679704a94b27ab6856c8be16b9050008424a4ca"

/: (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:53.07 ---> saved as "9b9d372e7d13eea844ea87db532460d03c0ee9c750905d4fb13071888402d949"

/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:53.33 ---> saved as "bdb0bf964210f8e37e9be3bc5aa66f6c063ff3d7c88670e45aa86d1e3ceafcd9"

/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=fedora os-version=42
# 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:53.34 ---> saved as "72f692234000cbca56412ee60f975caaa96e70ae39886d071b16b08f204ef234"

/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:53.43 ---> saved as "2d280ec6f3a7b9b1d8525d2e6d8ab307170fd4cb4ea6bf48001ea31910d20ec6"

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-13 15:53.54 ---> saved as "e4b9cef25beafad2cf078c8a2ce4a65882a688d7a400419febb16462dd092bef"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-13 15:54.14 ---> saved as "431285e46c28b7ced71902749c612045db43093dee0cc4fa5e0a0a8dadc39222"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
-  Fedora 42 - x86_64 - Updates           100% |   8.4 KiB/s |  17.1 KiB |  00m02s
-  Fedora 42 - x86_64                     100% |  30.9 KiB/s |  21.9 KiB |  00m01s
- Repositories loaded.
- Metadata cache created.
2026-04-13 15:54.29 ---> saved as "2d170e4da3519f422047e8c9b4a3e6baf2d82dc8cda5d8c0fc570aa6380eadbd"

/home/opam: (run (shell "opam pin add -k version -yn liquidsoap.2.4.2 2.4.2"))
liquidsoap is now pinned to version 2.4.2
2026-04-13 15:54.30 ---> saved as "28c6722a5c934803a4c158b9fa392f127c0a142cdac8ddc2a06e4dface0e63ad"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall liquidsoap.2.4.2;\
                        \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 \"\\\"fedora-42\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'liquidsoap.2.4.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
liquidsoap.2.4.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 56 packages
  - install angstrom                0.16.1         [required by uri]
  - install base                    v0.17.3        [required by ppx_hash, ppx_string]
  - install base-bytes              base           [required by liquidsoap]
  - install bigstringaf             0.10.0         [required by angstrom]
  - install camlp-streams           5.0.1          [required by camomile]
  - install camomile                2.0.0          [required by liquidsoap]
  - install conf-libcurl            2              [required by curl]
  - install csexp                   1.5.2          [required by dune-configurator]
  - install curl                    0.10.0         [required by liquidsoap]
  - install dune                    3.22.1         [required by liquidsoap]
  - install dune-build-info         3.22.1         [required by liquidsoap]
  - install dune-configurator       3.22.1         [required by curl, mm]
  - install dune-private-libs       3.22.1         [required by dune-site]
  - install dune-site               3.22.1         [required by camomile, liquidsoap-lang]
  - install dyn                     3.22.1         [required by dune-private-libs]
  - install fileutils               0.6.6          [required by liquidsoap-lang]
  - install fs-io                   3.22.1         [required by stdune]
  - install gen                     1.1            [required by sedlex]
  - install liquidsoap              2.4.2 (pinned)
  - install liquidsoap-lang         2.4.2          [required by liquidsoap]
  - install magic-mime              1.3.1          [required by liquidsoap]
  - install mem_usage               0.1.3          [required by liquidsoap]
  - install menhir                  20260209       [required by liquidsoap-lang]
  - install menhirCST               20260209       [required by menhir]
  - install menhirGLR               20260209       [required by menhir]
  - install menhirLib               20260209       [required by liquidsoap]
  - install menhirSdk               20260209       [required by menhir]
  - install metadata                0.3.2          [required by liquidsoap]
  - install mm                      0.8.6          [required by liquidsoap]
  - install ocaml-compiler-libs     v0.17.0        [required by ppxlib]
  - install ocaml-syntax-shims      1.0.0          [required by angstrom]
  - install ocaml_intrinsics_kernel v0.17.1        [required by base]
  - install ocamlfind               1.9.8          [required by base-bytes]
  - install ordering                3.22.1         [required by dyn, stdune]
  - install pp                      2.0.0          [required by dune-private-libs]
  - install ppx_base                v0.17.0        [required by ppx_string]
  - install ppx_cold                v0.17.0        [required by ppx_base]
  - install ppx_compare             v0.17.0        [required by ppx_hash]
  - install ppx_derivers            1.2.1          [required by ppxlib]
  - install ppx_enumerate           v0.17.0        [required by ppx_base]
  - install ppx_globalize           v0.17.2        [required by ppx_base]
  - install ppx_hash                v0.17.0        [required by liquidsoap-lang]
  - install ppx_sexp_conv           v0.17.1        [required by ppx_hash]
  - install ppx_string              v0.17.0        [required by liquidsoap]
  - install ppxlib                  0.38.0         [required by ppx_string, ppx_hash, sedlex]
  - install ppxlib_jane             v0.17.4        [required by ppx_hash]
  - install re                      1.13.2         [required by liquidsoap]
  - install sedlex                  3.7            [required by liquidsoap-lang]
  - install seq                     base           [required by re]
  - install sexplib0                v0.17.0        [required by base, ppx_sexp_conv]
  - install stdlib-shims            0.3.0          [required by ppxlib]
  - install stdune                  3.22.1         [required by dune-private-libs]
  - install stringext               1.6.0          [required by uri]
  - install top-closure             3.22.1         [required by stdune]
  - install uri                     4.4.0          [required by liquidsoap]
  - install xml-light               2.5            [required by liquidsoap-lang]

The following system packages will first need to be installed:
    libcurl-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/sbin/sudo "yum" "install" "-y" "libcurl-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package               Arch   Version         Repository      Size
- Installing:
-  libcurl-devel        x86_64 8.11.1-7.fc42   updates      1.3 MiB
- Installing dependencies:
-  brotli               x86_64 1.2.0-1.fc42    updates     33.6 KiB
-  brotli-devel         x86_64 1.2.0-1.fc42    updates     65.9 KiB
-  cmake-filesystem     x86_64 3.31.11-1.fc42  updates      0.0   B
-  keyutils-libs-devel  x86_64 1.6.3-5.fc42    fedora      48.2 KiB
-  krb5-devel           x86_64 1.21.3-6.fc42   updates    705.9 KiB
-  libcom_err-devel     x86_64 1.47.2-3.fc42   fedora      16.7 KiB
-  libidn2-devel        x86_64 2.3.8-1.fc42    fedora     149.1 KiB
-  libkadm5             x86_64 1.21.3-6.fc42   updates    213.9 KiB
-  libnghttp2-devel     x86_64 1.64.0-3.fc42   fedora     295.4 KiB
-  libpsl-devel         x86_64 0.21.5-5.fc42   fedora     110.3 KiB
-  libselinux-devel     x86_64 3.8-3.fc42      updates    126.8 KiB
-  libsepol-devel       x86_64 3.8-1.fc42      fedora     120.8 KiB
-  libssh-devel         x86_64 0.11.4-1.fc42   updates    178.0 KiB
-  libverto-devel       x86_64 0.3.2-10.fc42   fedora      25.7 KiB
-  openssl-devel        x86_64 1:3.2.6-3.fc42  updates      4.3 MiB
-  pcre2-devel          x86_64 10.46-1.fc42    updates      2.1 MiB
-  pcre2-utf16          x86_64 10.46-1.fc42    updates    626.3 KiB
-  pcre2-utf32          x86_64 10.46-1.fc42    updates    602.2 KiB
-  publicsuffix-list    noarch 20260116-1.fc42 updates    342.2 KiB
-  zlib-ng-compat-devel x86_64 2.2.5-2.fc42    updates    107.0 KiB
- 
- Transaction Summary:
-  Installing:        21 packages
- 
- Total size of inbound packages is 6 MiB. Need to download 6 MiB.
- After this operation, 11 MiB extra will be used (install 11 MiB, remove 0 B).
- [ 1/21] brotli-0:1.2.0-1.fc42.x86_64    100% |  53.8 KiB/s |  23.8 KiB |  00m00s
- [ 2/21] brotli-devel-0:1.2.0-1.fc42.x86 100% |  14.6 KiB/s |  34.3 KiB |  00m02s
- [ 3/21] libkadm5-0:1.21.3-6.fc42.x86_64 100% |  92.6 KiB/s |  76.4 KiB |  00m01s
- [ 4/21] libidn2-devel-0:2.3.8-1.fc42.x8 100% |  65.2 KiB/s |  64.0 KiB |  00m01s
- [ 5/21] libnghttp2-devel-0:1.64.0-3.fc4 100% |  57.4 KiB/s |  55.7 KiB |  00m01s
- [ 6/21] krb5-devel-0:1.21.3-6.fc42.x86_ 100% |  29.3 KiB/s | 142.5 KiB |  00m05s
- [ 7/21] libpsl-devel-0:0.21.5-5.fc42.x8 100% |  25.1 KiB/s |  33.2 KiB |  00m01s
- [ 8/21] libssh-devel-0:0.11.4-1.fc42.x8 100% |  24.1 KiB/s |  41.9 KiB |  00m02s
- [ 9/21] zlib-ng-compat-devel-0:2.2.5-2. 100% |  41.4 KiB/s |  38.3 KiB |  00m01s
- [10/21] libcurl-devel-0:8.11.1-7.fc42.x 100% |  69.7 KiB/s | 881.0 KiB |  00m13s
- [11/21] keyutils-libs-devel-0:1.6.3-5.f 100% |  12.4 KiB/s |  59.9 KiB |  00m05s
- [12/21] libcom_err-devel-0:1.47.2-3.fc4 100% |  39.7 KiB/s |  16.7 KiB |  00m00s
- [13/21] libsepol-devel-0:3.8-1.fc42.x86 100% |  26.9 KiB/s |  48.4 KiB |  00m02s
- [14/21] libverto-devel-0:0.3.2-10.fc42. 100% |  75.8 KiB/s |  14.4 KiB |  00m00s
- [15/21] libselinux-devel-0:3.8-3.fc42.x 100% |  52.3 KiB/s | 151.4 KiB |  00m03s
- [16/21] cmake-filesystem-0:3.31.11-1.fc 100% |  17.9 KiB/s |  12.8 KiB |  00m01s
- [17/21] publicsuffix-list-0:20260116-1. 100% |  50.0 KiB/s |  91.8 KiB |  00m02s
- [18/21] pcre2-devel-0:10.46-1.fc42.x86_ 100% |  56.2 KiB/s | 543.1 KiB |  00m10s
- [19/21] pcre2-utf16-0:10.46-1.fc42.x86_ 100% |  25.1 KiB/s | 241.6 KiB |  00m10s
- [20/21] pcre2-utf32-0:10.46-1.fc42.x86_ 100% | 108.9 KiB/s | 228.8 KiB |  00m02s
- [21/21] openssl-devel-1:3.2.6-3.fc42.x8 100% |  78.8 KiB/s |   2.8 MiB |  00m37s
- --------------------------------------------------------------------------------
- [21/21] Total                           100% | 127.5 KiB/s |   5.5 MiB |  00m45s
- Running transaction
- [ 1/23] Verify package files            100% | 368.0   B/s |  21.0   B |  00m00s
- [ 2/23] Prepare transaction             100% | 140.0   B/s |  21.0   B |  00m00s
- [ 3/23] Installing cmake-filesystem-0:3 100% |   1.5 MiB/s |   7.6 KiB |  00m00s
- [ 4/23] Installing libssh-devel-0:0.11. 100% |  58.8 MiB/s | 180.6 KiB |  00m00s
- [ 5/23] Installing zlib-ng-compat-devel 100% |  35.3 MiB/s | 108.5 KiB |  00m00s
- [ 6/23] Installing pcre2-utf32-0:10.46- 100% |  98.2 MiB/s | 603.1 KiB |  00m00s
- [ 7/23] Installing pcre2-utf16-0:10.46- 100% |  87.5 MiB/s | 627.2 KiB |  00m00s
- [ 8/23] Installing pcre2-devel-0:10.46- 100% |  65.4 MiB/s |   2.1 MiB |  00m00s
- [ 9/23] Installing publicsuffix-list-0: 100% |  83.8 MiB/s | 343.2 KiB |  00m00s
- [10/23] Installing libpsl-devel-0:0.21. 100% | 110.9 MiB/s | 113.6 KiB |  00m00s
- [11/23] Installing libverto-devel-0:0.3 100% |  25.7 MiB/s |  26.4 KiB |  00m00s
- [12/23] Installing libsepol-devel-0:3.8 100% |  17.9 MiB/s | 128.3 KiB |  00m00s
- [13/23] Installing libselinux-devel-0:3 100% |  31.6 MiB/s | 161.6 KiB |  00m00s
- [14/23] Installing libcom_err-devel-0:1 100% | 730.9 KiB/s |  18.3 KiB |  00m00s
- [15/23] Installing keyutils-libs-devel- 100% |   3.2 MiB/s |  55.2 KiB |  00m00s
- [16/23] Installing openssl-devel-1:3.2. 100% |  76.4 MiB/s |   5.2 MiB |  00m00s
- [17/23] Installing libnghttp2-devel-0:1 100% |  96.5 MiB/s | 296.5 KiB |  00m00s
- [18/23] Installing libidn2-devel-0:2.3. 100% |  76.5 MiB/s | 156.7 KiB |  00m00s
- [19/23] Installing libkadm5-0:1.21.3-6. 100% |  52.7 MiB/s | 215.9 KiB |  00m00s
- [20/23] Installing krb5-devel-0:1.21.3- 100% |  21.2 MiB/s | 715.2 KiB |  00m00s
- [21/23] Installing brotli-0:1.2.0-1.fc4 100% |   1.5 MiB/s |  34.4 KiB |  00m00s
- [22/23] Installing brotli-devel-0:1.2.0 100% |  13.4 MiB/s |  68.4 KiB |  00m00s
- [23/23] Installing libcurl-devel-0:8.11 100% |  12.4 MiB/s |   1.4 MiB |  00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "libcurl-devel"
- libcurl-devel-8.11.1-7.fc42.x86_64

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved base.v0.17.3  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved camomile.2.0.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved curl.0.10.0  (cached)
-> installed conf-libcurl.2
-> retrieved dune.3.22.1, dune-build-info.3.22.1, dune-configurator.3.22.1, dune-private-libs.3.22.1, dune-site.3.22.1, dyn.3.22.1, fs-io.3.22.1, ordering.3.22.1, stdune.3.22.1, top-closure.3.22.1  (cached)
-> retrieved fileutils.0.6.6  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved liquidsoap.2.4.2, liquidsoap-lang.2.4.2  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved mem_usage.0.1.3  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> retrieved metadata.0.3.2  (cached)
-> retrieved mm.0.8.6  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved pp.2.0.0  (cached)
-> retrieved ppx_base.v0.17.0  (cached)
-> retrieved ppx_cold.v0.17.0  (cached)
-> retrieved ppx_compare.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_enumerate.v0.17.0  (cached)
-> retrieved ppx_globalize.v0.17.2  (cached)
-> retrieved ppx_hash.v0.17.0  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> retrieved ppx_string.v0.17.0  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved re.1.13.2  (cached)
-> retrieved sedlex.3.7  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved uri.4.4.0  (cached)
-> retrieved xml-light.2.5  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.22.1
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> installed dune-build-info.3.22.1
-> installed fs-io.3.22.1
-> installed gen.1.1
-> installed magic-mime.1.3.1
-> installed mem_usage.0.1.3
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed metadata.0.3.2
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ordering.3.22.1
-> installed pp.2.0.0
-> installed ppx_derivers.1.2.1
-> installed re.1.13.2
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed top-closure.3.22.1
-> installed xml-light.2.5
-> installed dune-configurator.3.22.1
-> installed fileutils.0.6.6
-> installed dyn.3.22.1
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed mm.0.8.6
-> installed curl.0.10.0
-> installed uri.4.4.0
-> installed stdune.3.22.1
-> installed menhir.20260209
-> installed base.v0.17.3
-> installed dune-private-libs.3.22.1
-> installed dune-site.3.22.1
-> installed camomile.2.0.0
-> installed ppxlib.0.38.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_cold.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_enumerate.v0.17.0
-> installed ppx_compare.v0.17.0
-> installed sedlex.3.7
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_hash.v0.17.0
-> installed ppx_base.v0.17.0
-> installed ppx_string.v0.17.0
-> installed liquidsoap-lang.2.4.2
-> installed liquidsoap.2.4.2
Done.

<><> liquidsoap.2.4.2 installed successfully ><><><><><><><><><><><><><><><><><>
=> ✨ Congratulations on installing liquidsoap! ✨
=> We noticed that you did not install the ffmpeg package. This package is
   highly recommended for most users and provides a lot of useful features,
   including decoding and encoding multiple media format, sending and
   receiving from various inputs and outputs and more.
=> We noticed that you did not install any ssl or tls support. Liquidsoap won't
   be able to use SSL encryption in its input or output operators. You might want
   to install one of ssl or tls-liquidsoap package.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 15:57.27 ---> saved as "a3217210843cd24cf5bbadcb3e248799feda4832e6cf4f8e92c0883b9e3cbf27"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test liquidsoap.2.4.2) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile liquidsoap 2.4.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   liquidsoap.2.4.2
-> installed liquidsoap.2.4.2
Done.

<><> liquidsoap.2.4.2 installed successfully ><><><><><><><><><><><><><><><><><>
=> ✨ Congratulations on installing liquidsoap! ✨
=> We noticed that you did not install the ffmpeg package. This package is
   highly recommended for most users and provides a lot of useful features,
   including decoding and encoding multiple media format, sending and
   receiving from various inputs and outputs and more.
=> We noticed that you did not install any ssl or tls support. Liquidsoap won't
   be able to use SSL encryption in its input or output operators. You might want
   to install one of ssl or tls-liquidsoap package.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 15:57.41 ---> saved as "823f9ccb9f90d0495b01790ae8c9bfd44bbcb77e637af73bc356b77e424d5b6f"

/home/opam: (run (shell  "opam reinstall --with-test --verbose liquidsoap.2.4.2;\
                        \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 \"\\\"fedora-42\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'liquidsoap.2.4.2' && 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 liquidsoap 2.4.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [liquidsoap: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "liquidsoap" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/liquidsoap.2.4.2)
- 
- Congratulation on building liquidsoap! Here are the details of your build and configuration:
- (cd _build/default && ../install/default/bin/liquidsoap --build-config)
- 
-  * Liquidsoap version  : 2.4.2+dev
- 
-  * Compilation options
-    - Release build       : false
-    - Git SHA             : (none)
-    - OCaml version       : 5.4.1
-    - OS type             : Unix
-    - Libs versions       : angstrom=0.16.1 base=v0.17.3 base.base_internalhash_types=v0.17.3 base.shadow_stdlib=v0.17.3 bigstringaf=0.10.0 bytes=[distributed with OCaml 4.02 or above] camlp-streams camomile.lib=2.0 cron cry curl=0.10.0 dtools dune-build-info=3.22.1 dune-private-libs.dune-section=3.22.1 dune-site=3.22.1 dune-site.private=3.22.1 duppy fileutils=v0.6.6 gen=1.1 liquidsoap-lang=2.4.2 liquidsoap-lang.console=2.4.2 liquidsoap-lang.stdlib=2.4.2 liquidsoap-lang.tooling=2.4.2 liquidsoap_builtins liquidsoap_core liquidsoap_file_watcher liquidsoap_memtrace liquidsoap_optionals liquidsoap_oss liquidsoap_runtime magic-mime=1.3.1 mem_usage=0.1.3 menhirLib=20260209 metadata=0.3.2 mm=0.8.6 mm.audio=0.8.6 mm.base=0.8.6 mm.image=0.8.6 mm.midi=0.8.6 mm.video=0.8.6 ocaml_intrinsics_kernel=v0.17.1 ppx_compare.runtime-lib=v0.17.0 ppx_hash.runtime-lib=v0.17.0 ppx_sexp_conv.runtime-lib=v0.17.1 ppx_string.runtime=v0.17.0 re sedlex=3.7 seq=[distributed with OCaml 4.07 or above] sexplib0=v0.17.0 str=5.4.1 stringext=1.6.0 threads=5.4.1 unix=5.4.1 uri=4.4.0 xml-light=2.5
-    - architecture        : amd64
-    - host                : x86_64-pc-linux-gnu
-    - target              : x86_64-pc-linux-gnu
-    - system              : linux
-    - ocamlopt_cflags     : -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread
-    - native_c_compiler   : gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64
-    - native_c_libraries  : -lm -lpthread
- 
-  * Configured paths
-    - mode              : default
-    - standard library  : (set by dune-site)
-    - scripted binaries : (set by dune-site)
-    - rundir            : (set by dune-site)
-    - logdir            : (set by dune-site)
-    - user cache        : $HOME/.cache/liquidsoap (override with $LIQ_CACHE_USER_DIR)
-    - system cache      : (set by dune-site) (override with $LIQ_CACHE_SYSTEM_DIR)
-    - camomile files    : (set by dune-site)
- 
-  * Supported input formats
-    - MP3               : no (requires mad)
-    - AAC               : no (requires faad)
-    - Ffmpeg            : no (requires ffmpeg)
-    - Flac (native)     : no (requires flac)
-    - Flac (ogg)        : no (requires ogg)
-    - Opus              : no (requires opus)
-    - Speex             : no (requires speex)
-    - Theora            : no (requires theora)
-    - Vorbis            : no (requires vorbis)
-    - WAV/AIFF          : yes (native)
- 
-  * Supported output formats
-    - FDK-AAC           : no (requires fdkaac)
-    - FFmpeg            : no (requires ffmpeg)
-    - MP3               : no (requires lame)
-    - MP3 (fixed-point) : no (requires shine)
-    - Flac (native)     : no (requires flac)
-    - Flac (ogg)        : no (requires ogg)
-    - Opus              : no (requires opus)
-    - Speex             : no (requires speex)
-    - Theora            : no (requires theora)
-    - Vorbis            : no (requires vorbis)
-    - WAV/AIFF          : yes (native)
- 
-  * Tags
-    - AAC               : no (requires faad)
-    - FFmpeg            : no (requires ffmpeg)
-    - FLAC (native)     : no (requires flac)
-    - Flac (ogg)        : no (requires ogg)
-    - Native decoder    : yes
-    - Vorbis            : no (requires vorbis)
- 
-  * Input / output
-    - ALSA              : no (requires alsa)
-    - AO                : no (requires ao)
-    - FFmpeg            : no (requires ffmpeg)
-    - JACK              : no (requires bjack)
-    - NDI               : no (requires ctypes-foreign)
-    - OSS               : yes
-    - Portaudio         : no (requires portaudio)
-    - Pulseaudio        : no (requires pulseaudio)
-    - SRT               : no (requires srt)
- 
-  * Audio manipulation
-    - FFmpeg            : no (requires ffmpeg)
-    - LADSPA            : no (requires ladspa)
-    - Lilv              : no (requires lilv)
-    - Samplerate        : no (requires samplerate)
-    - SoundTouch        : no (requires soundtouch)
-    - StereoTool        : no (requires ctypes-foreign)
- 
-  * Video manipulation
-    - camlimages        : no (requires camlimages)
-    - FFmpeg            : no (requires ffmpeg)
-    - frei0r            : no (requires frei0r)
-    - SDL               : no (requires sdl-liquidsoap)
- 
-  * MIDI manipulation
-    - DSSI              : no (requires dssi)
- 
-  * Visualization
-    - GD                : no (requires gd)
-    - Graphics          : no (requires graphics)
-    - SDL               : no (requires sdl-liquidsoap)
- 
-  * Additional libraries
-    - FFmpeg filters    : no (requires ffmpeg)
-    - FFmpeg devices    : no (requires ffmpeg)
-    - inotify           : no (requires inotify)
-    - irc               : no (requires irc-client-unix)
-    - jemalloc          : no (requires jemalloc)
-    - lo                : no (requires lo)
-    - memtrace          : no (requires memtrace)
-    - osc               : no (requires osc-unix)
-    - ssl               : no (requires ssl)
-    - sqlite3           : no (requires sqlite3)
-    - tls               : no (requires tls-liquidsoap)
-    - posix-time2       : no (requires posix)
-    - windows service   : no (requires winsvc)
-    - YAML support      : no (requires yaml)
-    - XML playlists     : no (requires xmlm)
- 
-  * Monitoring
-    - Prometheus        : no (requires prometheus)
- 
Processing  2/4: [liquidsoap: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "liquidsoap" "--create-install-files" "liquidsoap" (CWD=/home/opam/.opam/5.4/.opam-switch/build/liquidsoap.2.4.2)
-> compiled  liquidsoap.2.4.2
-> removed   liquidsoap.2.4.2
-> installed liquidsoap.2.4.2
Done.

<><> liquidsoap.2.4.2 installed successfully ><><><><><><><><><><><><><><><><><>
=> ✨ Congratulations on installing liquidsoap! ✨
=> We noticed that you did not install the ffmpeg package. This package is
   highly recommended for most users and provides a lot of useful features,
   including decoding and encoding multiple media format, sending and
   receiving from various inputs and outputs and more.
=> We noticed that you did not install any ssl or tls support. Liquidsoap won't
   be able to use SSL encryption in its input or output operators. You might want
   to install one of ssl or tls-liquidsoap package.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 15:57.56 ---> saved as "cdc3e9f208c9b4c0eb43824b2a2e642e4a80145690be4fb102105e73ca4eef8d"
Job succeeded
2026-04-13 15:58.03: Job succeeded