(not at the head of any monitored branch or PR)
2026-04-10 14:44.28: New job: test liquidsoap.2.4.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29703/head (d2c2fde7ed0f03ab1c97ec11eae2846e1c000577)
                              on debian-testing-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29703/head" && git reset --hard d2c2fde7
git fetch origin master
git merge --no-edit 812fb968341c1eec82e23a29dcf794db8f990936
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-testing-ocaml-4.14@sha256:48d6552421f385f5106cd0567bd042dc678419d59c611dd743e9183cd3baf58a
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.0 2.4.0
RUN opam reinstall liquidsoap.2.4.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 "\"debian-testing\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'liquidsoap.2.4.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 liquidsoap.2.4.0) || true
RUN opam reinstall --with-test --verbose liquidsoap.2.4.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 "\"debian-testing\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'liquidsoap.2.4.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-04-10 14:44.28: Using cache hint "ocaml/opam:debian-testing-ocaml-4.14@sha256:48d6552421f385f5106cd0567bd042dc678419d59c611dd743e9183cd3baf58a-liquidsoap.2.4.0-d2c2fde7ed0f03ab1c97ec11eae2846e1c000577"
2026-04-10 14:44.28: Using OBuilder spec:
((from ocaml/opam:debian-testing-ocaml-4.14@sha256:48d6552421f385f5106cd0567bd042dc678419d59c611dd743e9183cd3baf58a)
 (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.0 2.4.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall liquidsoap.2.4.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 \"\\\"debian-testing\\\"\"; 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.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 liquidsoap.2.4.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose liquidsoap.2.4.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 \"\\\"debian-testing\\\"\"; 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.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-10 14:44.28: Waiting for resource in pool OCluster
2026-04-10 14:52.12: Waiting for worker…
2026-04-10 14:55.42: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files:  97% (18227/18673)
Updating files:  98% (18300/18673)
Updating files:  99% (18487/18673)
Updating files: 100% (18673/18673)
Updating files: 100% (18673/18673), done.
HEAD is now at 812fb96834 Merge pull request #29689 from voodoos/release-merlin-v5.7.0-504
Updating 812fb96834..d2c2fde7ed
Fast-forward
 packages/ffmpeg-av/ffmpeg-av.1.3.0/opam            | 51 ++++++++++++++++++++++
 packages/ffmpeg-avcodec/ffmpeg-avcodec.1.3.0/opam  | 50 +++++++++++++++++++++
 .../ffmpeg-avdevice/ffmpeg-avdevice.1.3.0/opam     | 50 +++++++++++++++++++++
 .../ffmpeg-avfilter/ffmpeg-avfilter.1.3.0/opam     | 50 +++++++++++++++++++++
 packages/ffmpeg-avutil/ffmpeg-avutil.1.3.0/opam    | 51 ++++++++++++++++++++++
 .../ffmpeg-swresample/ffmpeg-swresample.1.3.0/opam | 51 ++++++++++++++++++++++
 packages/ffmpeg-swscale/ffmpeg-swscale.1.3.0/opam  | 50 +++++++++++++++++++++
 packages/ffmpeg/ffmpeg.1.3.0/opam                  | 44 +++++++++++++++++++
 .../liquidsoap-core/liquidsoap-core.2.2.0/opam     |  2 +-
 .../liquidsoap-core/liquidsoap-core.2.2.1/opam     |  2 +-
 .../liquidsoap-core/liquidsoap-core.2.2.2/opam     |  2 +-
 .../liquidsoap-core/liquidsoap-core.2.2.3/opam     |  2 +-
 .../liquidsoap-core/liquidsoap-core.2.2.4-1/opam   |  2 +-
 .../liquidsoap-core/liquidsoap-core.2.2.5/opam     |  2 +-
 .../liquidsoap-core/liquidsoap-core.2.3.0/opam     |  2 +-
 packages/liquidsoap/liquidsoap.2.4.0/opam          |  2 +-
 packages/liquidsoap/liquidsoap.2.4.2/opam          |  2 +-
 17 files changed, 406 insertions(+), 9 deletions(-)
 create mode 100644 packages/ffmpeg-av/ffmpeg-av.1.3.0/opam
 create mode 100644 packages/ffmpeg-avcodec/ffmpeg-avcodec.1.3.0/opam
 create mode 100644 packages/ffmpeg-avdevice/ffmpeg-avdevice.1.3.0/opam
 create mode 100644 packages/ffmpeg-avfilter/ffmpeg-avfilter.1.3.0/opam
 create mode 100644 packages/ffmpeg-avutil/ffmpeg-avutil.1.3.0/opam
 create mode 100644 packages/ffmpeg-swresample/ffmpeg-swresample.1.3.0/opam
 create mode 100644 packages/ffmpeg-swscale/ffmpeg-swscale.1.3.0/opam
 create mode 100644 packages/ffmpeg/ffmpeg.1.3.0/opam

(from ocaml/opam:debian-testing-ocaml-4.14@sha256:48d6552421f385f5106cd0567bd042dc678419d59c611dd743e9183cd3baf58a)
Unable to find image 'ocaml/opam:debian-testing-ocaml-4.14@sha256:48d6552421f385f5106cd0567bd042dc678419d59c611dd743e9183cd3baf58a' locally
docker.io/ocaml/opam@sha256:48d6552421f385f5106cd0567bd042dc678419d59c611dd743e9183cd3baf58a: Pulling from ocaml/opam
7bdf93a2879f: Pulling fs layer
ec62c0de4dca: Pulling fs layer
09d37fa00da2: Pulling fs layer
9a10e848aeb3: Pulling fs layer
fab4fc622e59: Pulling fs layer
7bdf93a2879f: Waiting
ec62c0de4dca: Waiting
09d37fa00da2: Waiting
b0d14a46215e: Pulling fs layer
9a10e848aeb3: Waiting
ae692a02c882: Pulling fs layer
fab4fc622e59: Waiting
b0d14a46215e: Waiting
c68b65e8a5e5: Pulling fs layer
b416ab77abfb: Pulling fs layer
ba5c179ccab6: Pulling fs layer
c68b65e8a5e5: Waiting
c9a711a3b10d: Pulling fs layer
b416ab77abfb: Waiting
d412b9129373: Pulling fs layer
ba5c179ccab6: Waiting
c9a711a3b10d: Waiting
958f5137a4bc: Pulling fs layer
85bccb01f516: Pulling fs layer
88b174105502: Pulling fs layer
81346a28b617: Pulling fs layer
00288accabb3: Pulling fs layer
d412b9129373: Waiting
88b174105502: Waiting
85bccb01f516: Waiting
81346a28b617: Waiting
958f5137a4bc: Waiting
02fda2865b64: Pulling fs layer
00288accabb3: Waiting
02d2de184cef: Pulling fs layer
02fda2865b64: Waiting
1e8976bcf07a: Pulling fs layer
e4216cd64cb3: Pulling fs layer
02d2de184cef: Waiting
1e8976bcf07a: Waiting
4f4fb700ef54: Pulling fs layer
1ed842bac257: Pulling fs layer
1a62f81c6de7: Pulling fs layer
7f6655a62f8c: Pulling fs layer
1ed842bac257: Waiting
4f4fb700ef54: Waiting
e4216cd64cb3: Waiting
3f604c26cec6: Pulling fs layer
3604f7b6e82a: Pulling fs layer
fb98e02cd367: Pulling fs layer
3f604c26cec6: Waiting
3604f7b6e82a: Waiting
c18ccd052a54: Pulling fs layer
fb98e02cd367: Waiting
26586c11da76: Pulling fs layer
17945d1a26ec: Pulling fs layer
26586c11da76: Waiting
6052742dc1f3: Pulling fs layer
17945d1a26ec: Waiting
d556487748a2: Pulling fs layer
294f22be94f4: Pulling fs layer
5e3eba394efd: Pulling fs layer
d556487748a2: Waiting
294f22be94f4: Waiting
e08cd7eebf1f: Pulling fs layer
3a8fb01dd973: Pulling fs layer
5e3eba394efd: Waiting
d763437d29be: Pulling fs layer
e08cd7eebf1f: Waiting
0b5fb4b4f67d: Pulling fs layer
3a8fb01dd973: Waiting
bb79a8b5fb39: Pulling fs layer
d763437d29be: Waiting
a38b19040eca: Pulling fs layer
bb79a8b5fb39: Waiting
d08966cef99b: Pulling fs layer
a38b19040eca: Waiting
a38183f4eb94: Pulling fs layer
d08966cef99b: Waiting
8a50b121d43c: Pulling fs layer
b3e1d292ed5f: Pulling fs layer
8a50b121d43c: Waiting
b3e1d292ed5f: Waiting
7bdf93a2879f: Verifying Checksum
7bdf93a2879f: Download complete
ec62c0de4dca: Verifying Checksum
ec62c0de4dca: Download complete
09d37fa00da2: Verifying Checksum
09d37fa00da2: Download complete
9a10e848aeb3: Verifying Checksum
9a10e848aeb3: Download complete
fab4fc622e59: Verifying Checksum
fab4fc622e59: Download complete
7bdf93a2879f: Pull complete
ec62c0de4dca: Pull complete
09d37fa00da2: Pull complete
9a10e848aeb3: Pull complete
fab4fc622e59: Pull complete
b0d14a46215e: Verifying Checksum
b0d14a46215e: Download complete
ae692a02c882: Verifying Checksum
ae692a02c882: Download complete
c68b65e8a5e5: Verifying Checksum
c68b65e8a5e5: Download complete
b416ab77abfb: Verifying Checksum
b416ab77abfb: Download complete
ba5c179ccab6: Download complete
c9a711a3b10d: Verifying Checksum
c9a711a3b10d: Download complete
d412b9129373: Verifying Checksum
d412b9129373: Download complete
958f5137a4bc: Verifying Checksum
958f5137a4bc: Download complete
85bccb01f516: Verifying Checksum
85bccb01f516: Download complete
88b174105502: Verifying Checksum
88b174105502: Download complete
81346a28b617: Verifying Checksum
81346a28b617: Download complete
00288accabb3: Download complete
02fda2865b64: Download complete
02d2de184cef: Verifying Checksum
02d2de184cef: Download complete
1e8976bcf07a: Download complete
e4216cd64cb3: Verifying Checksum
e4216cd64cb3: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
1ed842bac257: Verifying Checksum
1ed842bac257: Download complete
1a62f81c6de7: Download complete
7f6655a62f8c: Verifying Checksum
7f6655a62f8c: Download complete
b0d14a46215e: Pull complete
3f604c26cec6: Download complete
ae692a02c882: Pull complete
c68b65e8a5e5: Pull complete
3604f7b6e82a: Download complete
b416ab77abfb: Pull complete
ba5c179ccab6: Pull complete
fb98e02cd367: Verifying Checksum
fb98e02cd367: Download complete
c9a711a3b10d: Pull complete
c18ccd052a54: Download complete
d412b9129373: Pull complete
958f5137a4bc: Pull complete
26586c11da76: Download complete
17945d1a26ec: Verifying Checksum
17945d1a26ec: Download complete
85bccb01f516: Pull complete
88b174105502: Pull complete
81346a28b617: Pull complete
00288accabb3: Pull complete
6052742dc1f3: Verifying Checksum
6052742dc1f3: Download complete
d556487748a2: Download complete
02fda2865b64: Pull complete
02d2de184cef: Pull complete
1e8976bcf07a: Pull complete
e4216cd64cb3: Pull complete
4f4fb700ef54: Pull complete
1ed842bac257: Pull complete
1a62f81c6de7: Pull complete
7f6655a62f8c: Pull complete
3f604c26cec6: Pull complete
3604f7b6e82a: Pull complete
fb98e02cd367: Pull complete
c18ccd052a54: Pull complete
26586c11da76: Pull complete
17945d1a26ec: Pull complete
6052742dc1f3: Pull complete
d556487748a2: Pull complete
294f22be94f4: Verifying Checksum
294f22be94f4: Download complete
294f22be94f4: Pull complete
5e3eba394efd: Verifying Checksum
5e3eba394efd: Download complete
e08cd7eebf1f: Verifying Checksum
e08cd7eebf1f: Download complete
5e3eba394efd: Pull complete
e08cd7eebf1f: Pull complete
0b5fb4b4f67d: Verifying Checksum
0b5fb4b4f67d: Download complete
d763437d29be: Verifying Checksum
d763437d29be: Download complete
bb79a8b5fb39: Verifying Checksum
bb79a8b5fb39: Download complete
a38b19040eca: Verifying Checksum
a38b19040eca: Download complete
a38183f4eb94: Download complete
8a50b121d43c: Verifying Checksum
8a50b121d43c: Download complete
b3e1d292ed5f: Download complete
d08966cef99b: Verifying Checksum
d08966cef99b: Download complete
3a8fb01dd973: Verifying Checksum
3a8fb01dd973: Download complete
3a8fb01dd973: Pull complete
d763437d29be: Pull complete
0b5fb4b4f67d: Pull complete
bb79a8b5fb39: Pull complete
a38b19040eca: Pull complete
d08966cef99b: Pull complete
a38183f4eb94: Pull complete
8a50b121d43c: Pull complete
b3e1d292ed5f: Pull complete
Digest: sha256:48d6552421f385f5106cd0567bd042dc678419d59c611dd743e9183cd3baf58a
Status: Downloaded newer image for ocaml/opam@sha256:48d6552421f385f5106cd0567bd042dc678419d59c611dd743e9183cd3baf58a
2026-04-10 14:56.07 ---> using "86ab7e6d6bd7247b3655614ac815b271bf6572ba9fa9512e33c0bce4244456f1" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-10 14:56.07 ---> using "2bc918fcb68f0c3fe62e9a935b277151d83ac2f74eb8d3b9c85c4637da5d75af" from cache

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

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

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ocaml-patches-overlay] no changes from git+https://github.com/ocurrent/opam-repository#patches
[default] Initialised
2026-04-10 14:56.07 ---> using "870ee83b55983f43a3c14ec797407dd78f5788d7017baa403bbb72460324b737" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=unknown
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         2 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.3
2026-04-10 14:56.07 ---> using "48e54c8bd5d2ab522f5fe38ecfd49f2110358dd98eb5760e028f405a4be67a69" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-10 14:56.07 ---> using "ec54033ae7a6219ba6708d5354f4a3e5e6d543ba129232294afc1a2d1bdae0ff" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-10 14:56.08 ---> using "337f04830a9344dab8b02fe4ada31fa51319044da30d139a09d00ec97406826b" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-10 14:56.08 ---> using "3ce65d5b7998b772aa483cd39fc5f60f398e0e837b56d80257f1b39d0b41c7d3" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian testing InRelease [137 kB]
- Get:2 http://deb.debian.org/debian testing-updates InRelease [40.6 kB]
- Get:3 http://deb.debian.org/debian-security testing-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index [63.6 kB]
- Err:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index
-   Couldn't find the start of the patch series
- Get:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index [63.6 kB]
- Ign:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index
- Get:5 http://deb.debian.org/debian testing/main amd64 Packages [9724 kB]
- Fetched 10.0 MB in 6s (1715 kB/s)
- Reading package lists...
- 
2026-04-10 14:56.08 ---> using "e3b3300bac6474d13c69fc6ca75f1df00cff86bb92f0f2b7616642c65a0be251" from cache

/home/opam: (run (shell "opam pin add -k version -yn liquidsoap.2.4.0 2.4.0"))
liquidsoap is now pinned to version 2.4.0
2026-04-10 14:56.08 ---> using "9178d57786e328c51b8a62ac502f01090b19142f3144f27e432b8bd4debd35c7" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall liquidsoap.2.4.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 \"\\\"debian-testing\\\"\"; 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.0' && 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.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 55 packages
  - install angstrom            0.16.1         [required by uri]
  - install base                v0.16.4        [required by ppx_hash, ppx_string]
  - install base-bytes          base           [required by cry]
  - 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 ocurl]
  - install cry                 1.0.3          [required by liquidsoap]
  - install csexp               1.5.2          [required by dune-private-libs]
  - 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 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]
  - install fs-io               3.22.1         [required by stdune]
  - install gen                 1.1            [required by sedlex]
  - install liquidsoap          2.4.0 (pinned)
  - install liquidsoap-lang     2.4.0          [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.12.4        [required by ppxlib]
  - install ocaml-syntax-shims  1.0.0          [required by angstrom]
  - install ocamlfind           1.9.8          [required by ocurl]
  - install ocurl               0.9.2          [required by liquidsoap]
  - install ordering            3.22.1         [required by dyn, stdune]
  - install pp                  2.0.0          [required by dune-private-libs]
  - install ppx_base            v0.16.0        [required by ppx_string]
  - install ppx_cold            v0.16.0        [required by ppx_base]
  - install ppx_compare         v0.16.0        [required by ppx_hash]
  - install ppx_derivers        1.2.1          [required by ppxlib]
  - install ppx_enumerate       v0.16.0        [required by ppx_base]
  - install ppx_globalize       v0.16.0        [required by ppx_base]
  - install ppx_hash            v0.16.0        [required by liquidsoap-lang]
  - install ppx_sexp_conv       v0.16.0        [required by ppx_hash]
  - install ppx_string          v0.16.0        [required by liquidsoap]
  - install ppxlib              0.35.0         [required by ppx_string, ppx_hash, sedlex]
  - install re                  1.14.0         [required by liquidsoap]
  - install sedlex              3.7            [required by liquidsoap-lang]
  - install seq                 base           [required by gen]
  - install sexplib0            v0.16.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:
    libcurl4-gnutls-dev

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get 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 "apt-get" "install" "-qq" "-yy" "libcurl4-gnutls-dev"
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 22095 files and directories currently installed.)
- Preparing to unpack .../libssl3t64_3.6.1-3_amd64.deb ...
- Unpacking libssl3t64:amd64 (3.6.1-3) over (3.5.5-1) ...
- Setting up libssl3t64:amd64 (3.6.1-3) ...
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 22095 files and directories currently installed.)
- Preparing to unpack .../openssl-provider-legacy_3.6.1-3_amd64.deb ...
- Unpacking openssl-provider-legacy (3.6.1-3) over (3.5.5-1) ...
- Setting up openssl-provider-legacy (3.6.1-3) ...
- Selecting previously unselected package comerr-dev:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 22095 files and directories currently installed.)
- Preparing to unpack .../00-comerr-dev_2.1-1.47.4-1_amd64.deb ...
- Unpacking comerr-dev:amd64 (2.1-1.47.4-1) ...
- Preparing to unpack .../01-libnghttp2-14_1.68.1-1_amd64.deb ...
- Unpacking libnghttp2-14:amd64 (1.68.1-1) over (1.68.0-2) ...
- Preparing to unpack .../02-libpsl5t64_0.21.5-1_amd64.deb ...
- Unpacking libpsl5t64:amd64 (0.21.5-1) over (0.21.2-1.1+b2) ...
- Preparing to unpack .../03-curl_8.19.0-3_amd64.deb ...
- Unpacking curl (8.19.0-3) over (8.19.0-1) ...
- Preparing to unpack .../04-libcurl4t64_8.19.0-3_amd64.deb ...
- Unpacking libcurl4t64:amd64 (8.19.0-3) over (8.19.0-1) ...
- Selecting previously unselected package libgssrpc4t64:amd64.
- Preparing to unpack .../05-libgssrpc4t64_1.22.1-2_amd64.deb ...
- Unpacking libgssrpc4t64:amd64 (1.22.1-2) ...
- Selecting previously unselected package libkadm5clnt-mit12:amd64.
- Preparing to unpack .../06-libkadm5clnt-mit12_1.22.1-2_amd64.deb ...
- Unpacking libkadm5clnt-mit12:amd64 (1.22.1-2) ...
- Selecting previously unselected package libkdb5-10t64:amd64.
- Preparing to unpack .../07-libkdb5-10t64_1.22.1-2_amd64.deb ...
- Unpacking libkdb5-10t64:amd64 (1.22.1-2) ...
- Selecting previously unselected package libkadm5srv-mit12:amd64.
- Preparing to unpack .../08-libkadm5srv-mit12_1.22.1-2_amd64.deb ...
- Unpacking libkadm5srv-mit12:amd64 (1.22.1-2) ...
- Selecting previously unselected package krb5-multidev:amd64.
- Preparing to unpack .../09-krb5-multidev_1.22.1-2_amd64.deb ...
- Unpacking krb5-multidev:amd64 (1.22.1-2) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../10-libbrotli-dev_1.2.0-3_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.2.0-3) ...
- Preparing to unpack .../11-libcurl3t64-gnutls_8.19.0-3_amd64.deb ...
- Unpacking libcurl3t64-gnutls:amd64 (8.19.0-3) over (8.19.0-1) ...
- Selecting previously unselected package libevent-2.1-7t64:amd64.
- Preparing to unpack .../12-libevent-2.1-7t64_2.1.12-stable-10+b2_amd64.deb ...
- Unpacking libevent-2.1-7t64:amd64 (2.1.12-stable-10+b2) ...
- Selecting previously unselected package libunbound8:amd64.
- Preparing to unpack .../13-libunbound8_1.24.2-1_amd64.deb ...
- Unpacking libunbound8:amd64 (1.24.2-1) ...
- Selecting previously unselected package libgnutls-dane0t64:amd64.
- Preparing to unpack .../14-libgnutls-dane0t64_3.8.12-3_amd64.deb ...
- Unpacking libgnutls-dane0t64:amd64 (3.8.12-3) ...
- Selecting previously unselected package libidn2-dev:amd64.
- Preparing to unpack .../15-libidn2-dev_2.3.8-4+b1_amd64.deb ...
- Unpacking libidn2-dev:amd64 (2.3.8-4+b1) ...
- Selecting previously unselected package libp11-kit-dev:amd64.
- Preparing to unpack .../16-libp11-kit-dev_0.26.2-2_amd64.deb ...
- Unpacking libp11-kit-dev:amd64 (0.26.2-2) ...
- Selecting previously unselected package libtasn1-6-dev:amd64.
- Preparing to unpack .../17-libtasn1-6-dev_4.21.0-2_amd64.deb ...
- Unpacking libtasn1-6-dev:amd64 (4.21.0-2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../18-libgmpxx4ldbl_2%3a6.3.0+dfsg-5+b1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-5+b1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../19-libgmp-dev_2%3a6.3.0+dfsg-5+b1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-5+b1) ...
- Selecting previously unselected package nettle-dev:amd64.
- Preparing to unpack .../20-nettle-dev_3.10.2-1_amd64.deb ...
- Unpacking nettle-dev:amd64 (3.10.2-1) ...
- Selecting previously unselected package libgnutls28-dev:amd64.
- Preparing to unpack .../21-libgnutls28-dev_3.8.12-3_amd64.deb ...
- Unpacking libgnutls28-dev:amd64 (3.8.12-3) ...
- Selecting previously unselected package libkrb5-dev:amd64.
- Preparing to unpack .../22-libkrb5-dev_1.22.1-2_amd64.deb ...
- Unpacking libkrb5-dev:amd64 (1.22.1-2) ...
- Selecting previously unselected package libldap-dev:amd64.
- Preparing to unpack .../23-libldap-dev_2.6.10+dfsg-1+b1_amd64.deb ...
- Unpacking libldap-dev:amd64 (2.6.10+dfsg-1+b1) ...
- Selecting previously unselected package libpkgconf7:amd64.
- Preparing to unpack .../24-libpkgconf7_2.5.1-4_amd64.deb ...
- Unpacking libpkgconf7:amd64 (2.5.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../25-pkgconf-bin_2.5.1-4_amd64.deb ...
- Unpacking pkgconf-bin (2.5.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../26-pkgconf_2.5.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (2.5.1-4) ...
- Selecting previously unselected package libnghttp2-dev:amd64.
- Preparing to unpack .../27-libnghttp2-dev_1.68.1-1_amd64.deb ...
- Unpacking libnghttp2-dev:amd64 (1.68.1-1) ...
- Selecting previously unselected package libnghttp3-dev:amd64.
- Preparing to unpack .../28-libnghttp3-dev_1.15.0-1_amd64.deb ...
- Unpacking libnghttp3-dev:amd64 (1.15.0-1) ...
- Selecting previously unselected package libngtcp2-crypto-gnutls-dev:amd64.
- Preparing to unpack .../29-libngtcp2-crypto-gnutls-dev_1.21.0-1_amd64.deb ...
- Unpacking libngtcp2-crypto-gnutls-dev:amd64 (1.21.0-1) ...
- Selecting previously unselected package libngtcp2-dev:amd64.
- Preparing to unpack .../30-libngtcp2-dev_1.21.0-1_amd64.deb ...
- Unpacking libngtcp2-dev:amd64 (1.21.0-1) ...
- Selecting previously unselected package libpsl-dev:amd64.
- Preparing to unpack .../31-libpsl-dev_0.21.5-1_amd64.deb ...
- Unpacking libpsl-dev:amd64 (0.21.5-1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../32-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-3_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-3) ...
- Selecting previously unselected package librtmp-dev:amd64.
- Preparing to unpack .../33-librtmp-dev_2.4+20151223.gitfa8646d.1-3+b1_amd64.deb ...
- Unpacking librtmp-dev:amd64 (2.4+20151223.gitfa8646d.1-3+b1) ...
- Selecting previously unselected package libssl-dev:amd64.
- Preparing to unpack .../34-libssl-dev_3.6.1-3_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.6.1-3) ...
- Selecting previously unselected package libssh2-1-dev:amd64.
- Preparing to unpack .../35-libssh2-1-dev_1.11.1-2_amd64.deb ...
- Unpacking libssh2-1-dev:amd64 (1.11.1-2) ...
- Selecting previously unselected package libzstd-dev:amd64.
- Preparing to unpack .../36-libzstd-dev_1.5.7+dfsg-3+b1_amd64.deb ...
- Unpacking libzstd-dev:amd64 (1.5.7+dfsg-3+b1) ...
- Selecting previously unselected package libcurl4-gnutls-dev:amd64.
- Preparing to unpack .../37-libcurl4-gnutls-dev_8.19.0-3_amd64.deb ...
- Unpacking libcurl4-gnutls-dev:amd64 (8.19.0-3) ...
- Selecting previously unselected package libtasn1-doc.
- Preparing to unpack .../38-libtasn1-doc_4.21.0-2_all.deb ...
- Unpacking libtasn1-doc (4.21.0-2) ...
- Preparing to unpack .../39-openssl_3.6.1-3_amd64.deb ...
- Unpacking openssl (3.6.1-3) over (3.5.5-1) ...
- Setting up libzstd-dev:amd64 (1.5.7+dfsg-3+b1) ...
- Setting up libtasn1-doc (4.21.0-2) ...
- Setting up libpkgconf7:amd64 (2.5.1-4) ...
- Setting up libpsl5t64:amd64 (0.21.5-1) ...
- Setting up libnghttp2-14:amd64 (1.68.1-1) ...
- Setting up libcurl3t64-gnutls:amd64 (8.19.0-3) ...
- Setting up libevent-2.1-7t64:amd64 (2.1.12-stable-10+b2) ...
- Setting up libngtcp2-crypto-gnutls-dev:amd64 (1.21.0-1) ...
- Setting up libngtcp2-dev:amd64 (1.21.0-1) ...
- Setting up libpsl-dev:amd64 (0.21.5-1) ...
- Setting up libunbound8:amd64 (1.24.2-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-5+b1) ...
- Setting up libgnutls-dane0t64:amd64 (3.8.12-3) ...
- Setting up libgssrpc4t64:amd64 (1.22.1-2) ...
- Setting up libldap-dev:amd64 (2.6.10+dfsg-1+b1) ...
- Setting up comerr-dev:amd64 (2.1-1.47.4-1) ...
- Setting up libssl-dev:amd64 (3.6.1-3) ...
- Setting up pkgconf-bin (2.5.1-4) ...
- Setting up libidn2-dev:amd64 (2.3.8-4+b1) ...
- Setting up libnghttp3-dev:amd64 (1.15.0-1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-3) ...
- Setting up libtasn1-6-dev:amd64 (4.21.0-2) ...
- Setting up openssl (3.6.1-3) ...
- Setting up libbrotli-dev:amd64 (1.2.0-3) ...
- Setting up libp11-kit-dev:amd64 (0.26.2-2) ...
- Setting up libkadm5clnt-mit12:amd64 (1.22.1-2) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-5+b1) ...
- Setting up nettle-dev:amd64 (3.10.2-1) ...
- Setting up libcurl4t64:amd64 (8.19.0-3) ...
- Setting up libkdb5-10t64:amd64 (1.22.1-2) ...
- Setting up pkgconf:amd64 (2.5.1-4) ...
- Setting up libssh2-1-dev:amd64 (1.11.1-2) ...
- Setting up libkadm5srv-mit12:amd64 (1.22.1-2) ...
- Setting up curl (8.19.0-3) ...
- Setting up krb5-multidev:amd64 (1.22.1-2) ...
- Setting up libgnutls28-dev:amd64 (3.8.12-3) ...
- Setting up libnghttp2-dev:amd64 (1.68.1-1) ...
- Setting up libkrb5-dev:amd64 (1.22.1-2) ...
- Setting up librtmp-dev:amd64 (2.4+20151223.gitfa8646d.1-3+b1) ...
- Setting up libcurl4-gnutls-dev:amd64 (8.19.0-3) ...
- Processing triggers for libc-bin (2.42-13) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved camomile.2.0.0  (cached)
-> retrieved cry.1.0.3  (cached)
-> retrieved csexp.1.5.2  (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.0, liquidsoap-lang.2.4.0  (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.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocurl.0.9.2  (cached)
-> retrieved pp.2.0.0  (cached)
-> retrieved ppx_base.v0.16.0  (cached)
-> retrieved ppx_cold.v0.16.0  (cached)
-> retrieved ppx_compare.v0.16.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_enumerate.v0.16.0  (cached)
-> retrieved ppx_globalize.v0.16.0  (cached)
-> retrieved ppx_hash.v0.16.0  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppx_string.v0.16.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved sedlex.3.7  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.16.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 cry.1.0.3
-> 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.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed ordering.3.22.1
-> installed pp.2.0.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed top-closure.3.22.1
-> installed xml-light.2.5
-> installed ocurl.0.9.2
-> 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 uri.4.4.0
-> installed stdune.3.22.1
-> installed menhir.20260209
-> installed base.v0.16.4
-> installed dune-private-libs.3.22.1
-> installed dune-site.3.22.1
-> installed ppxlib.0.35.0
-> installed camomile.2.0.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_sexp_conv.v0.16.0
-> installed sedlex.3.7
-> installed ppx_hash.v0.16.0
-> installed ppx_base.v0.16.0
-> installed ppx_string.v0.16.0
-> installed liquidsoap-lang.2.4.0
-> installed liquidsoap.2.4.0
Done.

<><> liquidsoap.2.4.0 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-10 14:58.05 ---> saved as "a0d3f9888544d6e0def0ed8ce0670290adbc0f9c78950601434d78d9e08684bf"

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

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

<><> liquidsoap.2.4.0 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-10 14:58.19 ---> saved as "0e8824b7ffe3051fb3d83a7375fc22d70f8cf7321bb294723b4260adc67f793d"

/home/opam: (run (shell  "opam reinstall --with-test --verbose liquidsoap.2.4.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 \"\\\"debian-testing\\\"\"; 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.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile liquidsoap 2.4.0 (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/4.14/.opam-switch/build/liquidsoap.2.4.0)
- 
- 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.0+dev
- 
-  * Compilation options
-    - Release build       : false
-    - Git SHA             : (none)
-    - OCaml version       : 4.14.3
-    - OS type             : Unix
-    - Libs versions       : angstrom=0.16.1 base=v0.16.4 base.base_internalhash_types=v0.16.4 base.caml=v0.16.4 base.shadow_stdlib=v0.16.4 bigarray=[distributed with Ocaml] bigstringaf=0.10.0 bytes=[distributed with OCaml 4.02 or above] camlp-streams camomile.lib=2.0 cron cry=1.0.3 curl=0.9.2 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.0 liquidsoap-lang.console=2.4.0 liquidsoap-lang.stdlib=2.4.0 liquidsoap-lang.tooling=2.4.0 liquidsoap_builtins liquidsoap_core 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 ppx_compare.runtime-lib=v0.16.0 ppx_hash.runtime-lib=v0.16.0 ppx_sexp_conv.runtime-lib=v0.16.0 re sedlex=3.7 seq=[distributed with OCaml 4.07 or above] sexplib0=v0.16.0 str=[distributed with Ocaml] stringext=1.6.0 threads=[distributed with Ocaml] threads.posix=[internal] unix=[distributed with Ocaml] 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 -pthread -fPIC
-    - native_c_compiler   : gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64
-    - native_c_libraries  : -lm
- 
-  * 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/4.14/.opam-switch/build/liquidsoap.2.4.0)
-> compiled  liquidsoap.2.4.0
-> removed   liquidsoap.2.4.0
-> installed liquidsoap.2.4.0
Done.

<><> liquidsoap.2.4.0 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-10 14:58.32 ---> saved as "2fa13b97baf9aa194d1df495cfe692eea47b1c72f78c3b1ee8d85340f5c3e3b7"
Job succeeded
2026-04-10 14:58.39: Job succeeded