(not at the head of any monitored branch or PR)
2025-08-05 14:01.51: New job: test liquidsoap.2.0.3-1 with dune.3.20.0~alpha2, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28298/head (dd5533520fdcb5364efecb41d297e786ddcc1f76)
                              on debian-12-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/28298/head" && git reset --hard dd553352
git fetch origin master
git merge --no-edit 39155538b0d7654773a68bd42b0b7dbb8eb14ad7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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 dune.3.20.0~alpha2 3.20.0~alpha2
RUN opam reinstall dune.3.20.0~alpha2; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune.3.20.0~alpha2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall liquidsoap.2.0.3-1; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'liquidsoap.2.0.3-1' && 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.0.3-1) || true
RUN opam reinstall --with-test --verbose liquidsoap.2.0.3-1; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'liquidsoap.2.0.3-1' && 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 .

2025-08-05 14:01.51: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63-dune.3.20.0~alpha2-liquidsoap.2.0.3-1-dd5533520fdcb5364efecb41d297e786ddcc1f76"
2025-08-05 14:01.51: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.3 /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 dune.3.20.0~alpha2 3.20.0~alpha2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.20.0~alpha2;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune.3.20.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall liquidsoap.2.0.3-1;\
             \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-12\\\"\"; 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.0.3-1' && 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.0.3-1) || true"))
 (run (shell  "opam reinstall --with-test --verbose liquidsoap.2.0.3-1;\
             \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-12\\\"\"; 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.0.3-1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-08-05 14:01.51: Waiting for resource in pool OCluster
2025-08-05 22:01.41: Waiting for worker…
2025-08-05 22:03.18: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 39155538b0 Merge pull request #28292 from gildor478/release-ocamlmod-v0.1.1
Updating 39155538b0..dd5533520f
Fast-forward
 .../chrome-trace/chrome-trace.3.20.0~alpha2/opam   | 41 ++++++++++++
 .../dune-action-plugin.3.20.0~alpha2/opam          | 54 ++++++++++++++++
 .../dune-build-info.3.20.0~alpha2/opam             | 47 ++++++++++++++
 .../dune-configurator.3.20.0~alpha2/opam           | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.20.0~alpha2/opam    | 44 +++++++++++++
 .../dune-private-libs.3.20.0~alpha2/opam           | 52 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha2/opam   | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.20.0~alpha2/opam      | 45 +++++++++++++
 packages/dune-site/dune-site.3.20.0~alpha2/opam    | 39 ++++++++++++
 packages/dune/dune.3.20.0~alpha2/opam              | 74 ++++++++++++++++++++++
 packages/dyn/dyn.3.20.0~alpha2/opam                | 42 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha2/opam  | 45 +++++++++++++
 packages/ordering/ordering.3.20.0~alpha2/opam      | 40 ++++++++++++
 packages/stdune/stdune.3.20.0~alpha2/opam          | 46 ++++++++++++++
 packages/xdg/xdg.3.20.0~alpha2/opam                | 41 ++++++++++++
 15 files changed, 704 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.20.0~alpha2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.20.0~alpha2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.20.0~alpha2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.20.0~alpha2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.20.0~alpha2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.20.0~alpha2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.20.0~alpha2/opam
 create mode 100644 packages/dune-site/dune-site.3.20.0~alpha2/opam
 create mode 100644 packages/dune/dune.3.20.0~alpha2/opam
 create mode 100644 packages/dyn/dyn.3.20.0~alpha2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha2/opam
 create mode 100644 packages/ordering/ordering.3.20.0~alpha2/opam
 create mode 100644 packages/stdune/stdune.3.20.0~alpha2/opam
 create mode 100644 packages/xdg/xdg.3.20.0~alpha2/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63' locally
docker.io/ocaml/opam@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63: Pulling from ocaml/opam
a77c4f4a24ac: Already exists
9d1a03aa3c71: Pulling fs layer
baba434270f2: Pulling fs layer
2a8a0f93626e: Pulling fs layer
f6ba2ed01176: Pulling fs layer
f6ba2ed01176: Waiting
2a8a0f93626e: Verifying Checksum
2a8a0f93626e: Download complete
baba434270f2: Verifying Checksum
baba434270f2: Download complete
f6ba2ed01176: Download complete
9d1a03aa3c71: Verifying Checksum
9d1a03aa3c71: Download complete
9d1a03aa3c71: Pull complete
baba434270f2: Pull complete
2a8a0f93626e: Pull complete
f6ba2ed01176: Pull complete
Digest: sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
Status: Downloaded newer image for ocaml/opam@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
2025-08-05 22:04.39 ---> using "7f53aba96fd697ea92c7c7d3f6be48133fa7f3f6538a693606c4cbcecd7917b8" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-08-05 22:04.39 ---> using "e4ec4ab2139d3c4a94c2b5470fe84288e4986c518ff4f4ae2d7c7e30aeac0731" 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 development 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 71 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=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-08-05 22:04.39 ---> using "707659fd6393183061072104f3ce800d69d94ba93e0f39ab380130268d0ee81e" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=12
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, 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.2
2025-08-05 22:04.39 ---> using "3ec3067d40f73cc0ec4554b242939c55b0261973e091b54a647662451dc49933" 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/"))
2025-08-05 22:04.39 ---> using "376e3b49c8c08cb1ff0d45feb403c06e037d8df5800c560fdd8dd472f1e36b9a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-08-05 22:04.40 ---> using "d7c14fc292f88db48f1d08b5e5bee64699faa33d6c6497ea4d0ded851936243b" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-08-05 22:04.40 ---> using "4d064c1160c8dcca737cd7528eeaed565bdc230fcc7555f114d63e3df515c34a" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [19.6 kB]
- Ign:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6916 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [272 kB]
- Fetched 402 kB in 0s (929 kB/s)
- Reading package lists...
2025-08-05 22:04.40 ---> using "f43accf761343248e80f7b61b22936d9bfc3109749567c716c34e25a997df933" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.20.0~alpha2 3.20.0~alpha2"))
dune is now pinned to version 3.20.0~alpha2
2025-08-05 22:04.40 ---> using "6638f587e9f000750e3e69596c6135f07b9c36d4a2f3df033c7caac1be116f53" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.20.0~alpha2;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune.3.20.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.20.0~alpha2 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.20.0~alpha2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.0~alpha2  (cached)
-> installed dune.3.20.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 22:04.40 ---> using "cdd243173bfeebba71c044bc8b6d060c2b698788bb7464614ff31bbb47a8931d" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall liquidsoap.2.0.3-1;\
                        \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-12\\\"\"; 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.0.3-1' && 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.0.3-1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 37 packages
  - install astring             0.8.5              [required by fpath]
  - install camomile            1.0.2              [required by liquidsoap]
  - install conf-libpcre        2                  [required by pcre]
  - install conf-pkg-config     4                  [required by liquidsoap]
  - install conf-which          1                  [required by liquidsoap]
  - install csexp               1.5.2              [required by dune-configurator]
  - install cstruct             6.2.0              [required by hex]
  - install dtools              0.4.6 (deprecated) [required by liquidsoap]
  - install dune-compiledb      0.6.0              [required by pcre]
  - install dune-configurator   3.20.0~alpha2      [required by mm]
  - install duppy               0.9.2 (deprecated) [required by liquidsoap]
  - install ezjsonm             1.3.0              [required by dune-compiledb]
  - install fmt                 0.11.0             [required by cstruct]
  - install fpath               0.7.3              [required by dune-compiledb]
  - install gen                 1.1                [required by sedlex]
  - install hex                 1.5.0              [required by ezjsonm]
  - install jsonm               1.0.2              [required by ezjsonm]
  - install liquidsoap          2.0.3-1
  - install menhir              20211128           [required by liquidsoap]
  - install menhirLib           20211128           [required by menhir]
  - install menhirSdk           20211128           [required by menhir]
  - install mm                  0.7.4              [required by liquidsoap]
  - install num                 1.6                [required by sexplib]
  - install ocaml-compiler-libs v0.12.4            [required by ppxlib]
  - install ocamlbuild          0.16.1             [required by fpath]
  - install ocamlfind           1.9.8              [required by liquidsoap]
  - install parsexp             v0.16.0            [required by sexplib]
  - install pcre                8.0.5              [required by liquidsoap]
  - install ppx_derivers        1.2.1              [required by ppxlib]
  - install ppxlib              0.36.0             [required by sedlex]
  - install sedlex              3.6                [required by liquidsoap]
  - install seq                 base               [required by gen]
  - install sexplib             v0.16.0            [required by dune-compiledb]
  - install sexplib0            v0.16.0            [required by ppxlib]
  - install stdlib-shims        0.3.0              [required by ppxlib]
  - install topkg               1.1.0              [required by fpath]
  - install uutf                1.0.4              [required by ezjsonm]

The following system packages will first need to be installed:
    libpcre3-dev pkg-config

<><> 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" "libpcre3-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libpcre16-3: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 ... 18747 files and directories currently installed.)
- Preparing to unpack .../0-libpcre16-3_2%3a8.39-15_amd64.deb ...
- Unpacking libpcre16-3:amd64 (2:8.39-15) ...
- Selecting previously unselected package libpcre3:amd64.
- Preparing to unpack .../1-libpcre3_2%3a8.39-15_amd64.deb ...
- Unpacking libpcre3:amd64 (2:8.39-15) ...
- Selecting previously unselected package libpcre32-3:amd64.
- Preparing to unpack .../2-libpcre32-3_2%3a8.39-15_amd64.deb ...
- Unpacking libpcre32-3:amd64 (2:8.39-15) ...
- Selecting previously unselected package libpcrecpp0v5:amd64.
- Preparing to unpack .../3-libpcrecpp0v5_2%3a8.39-15_amd64.deb ...
- Unpacking libpcrecpp0v5:amd64 (2:8.39-15) ...
- Selecting previously unselected package libpcre3-dev:amd64.
- Preparing to unpack .../4-libpcre3-dev_2%3a8.39-15_amd64.deb ...
- Unpacking libpcre3-dev:amd64 (2:8.39-15) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../5-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../6-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../7-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../8-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libpcre16-3:amd64 (2:8.39-15) ...
- Setting up libpcre3:amd64 (2:8.39-15) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libpcre32-3:amd64 (2:8.39-15) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libpcrecpp0v5:amd64 (2:8.39-15) ...
- Setting up libpcre3-dev:amd64 (2:8.39-15) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved camomile.1.0.2  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-which.1
-> installed conf-pkg-config.4
-> retrieved cstruct.6.2.0  (cached)
-> retrieved dtools.0.4.6  (cached)
-> retrieved dune-compiledb.0.6.0  (cached)
-> installed conf-libpcre.2
-> installed csexp.1.5.2
-> installed dtools.0.4.6
-> retrieved dune-configurator.3.20.0~alpha2  (cached)
-> retrieved duppy.0.9.2  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved liquidsoap.2.0.3-1  (cached)
-> retrieved menhir.20211128, menhirLib.20211128, menhirSdk.20211128  (cached)
-> installed camomile.1.0.2
-> installed dune-configurator.3.20.0~alpha2
-> retrieved mm.0.7.4  (cached)
-> installed menhirSdk.20211128
-> retrieved num.1.6  (cached)
-> installed menhirLib.20211128
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> retrieved pcre.8.0.5  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.36.0  (cached)
-> retrieved sedlex.3.6  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed ppx_derivers.1.2.1
-> retrieved topkg.1.1.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> installed stdlib-shims.0.3.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.16.0
-> installed gen.1.1
-> installed num.1.6
-> installed mm.0.7.4
-> installed parsexp.v0.16.0
-> installed ocamlfind.1.9.8
-> installed sexplib.v0.16.0
-> installed ocamlbuild.0.16.1
-> installed menhir.20211128
-> installed topkg.1.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed cstruct.6.2.0
-> installed jsonm.1.0.2
-> installed hex.1.5.0
-> installed ezjsonm.1.3.0
-> installed fpath.0.7.3
-> installed dune-compiledb.0.6.0
-> installed ppxlib.0.36.0
-> installed pcre.8.0.5
-> installed duppy.0.9.2
-> installed sedlex.3.6
-> installed liquidsoap.2.0.3-1
Done.

<><> liquidsoap.2.0.3-1 installed successfully ><><><><><><><><><><><><><><><><>
=> ✨ Congratulations on installing liquidsoap! ✨
=> We noticed that you did not install any mp3 decoder. This is a feature most
   users want. You might need to install the mad or ffmpeg package.
=> We noticed that you did not install any mp3 encoder. This is a feature most
   users want. You might need to install the lame or shine package.
=> We noticed that you did not install the taglib package that provides support
   for reading metatadata in audio files. This is a feature most users want.
=> We noticed that you did not install the ocurl package. We strongly
   recommend this package for http request resolving support.
=> We noticed that you did not install the cry package that provides icecast
   output. This is a feature most users want.

<><> duppy.0.9.2 installed successfully <><><><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.

<><> dtools.0.4.6 installed successfully ><><><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 22:05.58 ---> saved as "24426cca91bb9db94910fb7ccd078cee782a878ff90c4001e951d060296ed150"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved liquidsoap.2.0.3-1  (https://opam.ocaml.org/cache)
-> removed   liquidsoap.2.0.3-1
-> installed liquidsoap.2.0.3-1
Done.

<><> liquidsoap.2.0.3-1 installed successfully ><><><><><><><><><><><><><><><><>
=> ✨ Congratulations on installing liquidsoap! ✨
=> We noticed that you did not install any mp3 decoder. This is a feature most
   users want. You might need to install the mad or ffmpeg package.
=> We noticed that you did not install any mp3 encoder. This is a feature most
   users want. You might need to install the lame or shine package.
=> We noticed that you did not install the taglib package that provides support
   for reading metatadata in audio files. This is a feature most users want.
=> We noticed that you did not install the ocurl package. We strongly
   recommend this package for http request resolving support.
=> We noticed that you did not install the cry package that provides icecast
   output. This is a feature most users want.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 22:06.48 ---> saved as "7f2633730bb812b40498ed510fa2e40f7ef5e3050df48121054c561429d893e9"

/home/opam: (run (shell  "opam reinstall --with-test --verbose liquidsoap.2.0.3-1;\
                        \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-12\\\"\"; 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.0.3-1' && 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.0.3-1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [liquidsoap.2.0.3-1: extract]
-> retrieved liquidsoap.2.0.3-1  (cached)
Processing  2/4: [liquidsoap: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "--prefix" "/home/opam/.opam/4.14" "--sbindir=/home/opam/.opam/4.14/lib/liquidsoap/sbin" "--libexecdir=/home/opam/.opam/4.14/lib/liquidsoap/libexec" "--sysconfdir=/home/opam/.opam/4.14/lib/liquidsoap/etc" "--sharedstatedir=/home/opam/.opam/4.14/lib/liquidsoap/com" "--localstatedir=/home/opam/.opam/4.14/lib/liquidsoap/var" "--libdir=/home/opam/.opam/4.14/lib/liquidsoap/lib" "--includedir=/home/opam/.opam/4.14/lib/liquidsoap/include" "--datarootdir=/home/opam/.opam/4.14/lib/liquidsoap/share" "--with-bash-completion-dir=/home/opam/.opam/4.14/lib/liquidsoap/etc/bash_completion.d" "--with-user=dummy" "--with-group=dummy" (CWD=/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1)
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
- checking for a BSD-compatible install... /usr/bin/install -c
- checking for GNU make... make
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking whether user dummy exists... no
- configure: WARNING: Won't be able to install log and PID directories!
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables... 
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to accept ISO C89... none needed
- checking how to run the C preprocessor... gcc -E
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for ANSI C header files... yes
- checking for sys/types.h... yes
- checking for sys/stat.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for memory.h... yes
- checking for strings.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for unistd.h... yes
- checking whether byte ordering is bigendian... no
- checking for ocamlc... ocamlc
- OCaml version is 4.14.2
- checking if ocaml compiler supports first-class modules... yes
- OCaml library path is /home/opam/.opam/4.14/lib/ocaml
- checking for ocamlopt... ocamlopt
- checking for ocamlc.opt... ocamlc.opt
- checking for ocamlopt.opt... ocamlopt.opt
- checking for ocaml... ocaml
- checking for ocamldep... ocamldep
- checking for ocamldep.opt... ocamldep.opt
- checking for ocamlmktop... ocamlmktop
- checking for ocamlmklib... ocamlmklib
- checking for ocamldoc... ocamldoc
- checking for ocamldoc.opt... ocamldoc.opt
- checking for ocamlbuild... ocamlbuild
- checking for camlidl... no
- checking for ocamllex... ocamllex
- checking for ocamllex.opt... ocamllex.opt
- checking for ocamlyacc... ocamlyacc
- checking for camlp4... no
- checking for camlp4boot... no
- checking for camlp4o... no
- checking for camlp4of... no
- checking for camlp4oof... no
- checking for camlp4orf... no
- checking for camlp4prof... no
- checking for camlp4r... no
- checking for camlp4rf... no
- checking for ocamlfind... ocamlfind
- checking for ocaml standard library path... /home/opam/.opam/4.14/lib/ocaml
- checking for caml/threads.h... yes
- checking whether ocamlopt accepts -ffast-math... no
- checking for ocamlc version... 4.14.2
- checking for gawk... no
- checking for mawk... mawk
- checking for ocaml graphics module... Not found.
- checking for ocaml bytes module... ok
- checking for ocaml posix-time2 module... Not found.
- checking for ocaml pcre module... ok
- checking for ocaml sedlex module >= 2.2... ok
- checking for ocaml menhirLib module... ok
- checking for ocaml curl module... Not found.
- checking for ocaml memtrace module... Not found.
- checking for ocaml mem_usage module... Not found.
- checking for ocaml dtools module >= 0.4.4... ok
- checking for ocaml duppy module >= 0.9.1... ok
- checking for ocaml cry module >= 0.6.5... Not found.
- checking for ocaml mm module >= 0.7.4... ok
- checking for ocaml xmlplaylist module >= 0.1.3... Not found.
- checking for ocaml lastfm module >= 0.3.0... lastfm needs xmlplaylist curl
- checking for ocaml ogg module >= 0.7.0... Not found.
- checking for ocaml ogg.decoder module... ogg_decoder needs ogg
- checking for ocaml vorbis module >= 0.8.0... vorbis needs ogg
- checking for ocaml vorbis.decoder module... vorbis_decoder needs vorbis
- checking for ocaml opus module >= 0.2.0... opus needs ogg
- checking for ocaml opus.decoder module... opus_decoder needs opus
- checking for ocaml speex module >= 0.4.0... speex needs ogg
- checking for ocaml speex.decoder module... speex_decoder needs speex
- checking for ocaml mad module >= 0.5.0... Not found.
- checking for ocaml flac module >= 0.3.0... Not found.
- checking for ocaml flac.ogg module... flac_ogg needs ogg flac
- checking for ocaml flac.decoder module... Not found.
- checking for ocaml dynlink module... ok
- checking whether ocaml compiler supports dynlink... 
- yes
- checking for ocaml lame module >= 0.3.5... Not found.
- checking for ocaml shine module >= 0.2.0... Not found.
- checking for ocaml gstreamer module >= 0.3.1... Not found.
- checking for ocaml frei0r module >= 0.1.0... Not found.
- checking for ocaml fdkaac module >= 0.3.1... Not found.
- checking for ocaml theora module >= 0.4.0... theora needs ogg
- checking for ocaml theora.decoder module... theora_decoder needs theora
- checking for ocaml ffmpeg module >= 1.1.1... Not found.
- checking for ocaml bjack module >= 0.1.3... Not found.
- checking for ocaml alsa module >= 0.3.0... Not found.
- checking for ocaml ao module >= 0.2.0... Not found.
- checking for ocaml samplerate module >= 0.1.5... Not found.
- checking for ocaml taglib module >= 0.3.7... Not found.
- checking sys/soundcard.h usability... yes
- checking sys/soundcard.h presence... yes
- checking for sys/soundcard.h... yes
- checking for ocaml ssl module >= 0.5.2... Not found.
- checking for ocaml osx-secure-transport module... Not found.
- checking for ocaml magic module >= 0.6... Not found.
- checking for ocaml camomile module >= 1.0.0... ok
- checking for ocaml inotify module >= 1.0... Not found.
- checking for ocaml yojson module... Not found.
- checking for ocaml faad module >= 0.5.0... Not found.
- checking for ocaml soundtouch module >= 0.1.9... Not found.
- checking for ocaml portaudio module >= 0.2.0... Not found.
- checking for ocaml pulseaudio module >= 0.1.4... Not found.
- checking for ocaml ladspa module >= 0.2.0... Not found.
- checking for ocaml dssi module >= 0.1.3... Not found.
- checking for ocaml lilv module... Not found.
- checking for ocaml tsdl module >= 0.3.2... Not found.
- checking for ocaml tsdl-ttf module... tsdl_ttf needs tsdl
- checking for ocaml tsdl-image module >= 0.3.2... tsdl_image needs tsdl
- checking for ocaml camlimages module... Not found.
- checking for ocaml cohttp-lwt-unix module... Not found.
- checking for ocaml prometheus-app module... Not found.
- checking for ocaml srt.constants module... Not found.
- checking for ocaml srt.types module... Not found.
- checking for ocaml srt.stubs module... Not found.
- checking for ocaml srt.stubs.locked module... Not found.
- checking for ocaml srt module >= 0.2.1... Not found.
- checking for ocaml lo module >= 0.2.0... Not found.
- checking for ocaml gd module... Not found.
- checking for ocaml winsvc module... Not found.
- 
- configure: creating ./config.status
- config.status: creating doc/content/install.md
- config.status: creating doc/content/build.md
- config.status: creating doc/liquidsoap.1.md
- config.status: creating Makefile.defs
- config.status: creating src/META
- config.status: creating config.h
- Creating scripts/liquidsoap.logrotate
- 
-  Liquidsoap version: 2.0.3-1
- 
-  ----------------------------------------------------------------- Compilation
- 
-  Compiler       : ocamlfind ocamlopt
-  Version        : 4.14.2
-  OS             : Unix
-  Plugins        :
-  Library path   : ${datarootdir}/liquidsoap/2.0.3-1
-  Custom path    : no
-  OCAML_CFLAGS   : -g -annot -bin-annot  -g -w +A-4@5-7@8-9@11@12@20-35-44-45-50-70 -ccopt "$(CFLAGS)" -package bytes -package pcre -package sedlex -package sedlex.ppx -package menhirLib -package dtools -package duppy -package mm -package dynlink -package camomile -I /constants -I /types -I /stubs -I /stubs/locked
-  OCAML_LFLAGS   : -g -linkpkg -package unix -package threads -package str -package bigarray -cc "$(CC)"
-  CFLAGS         :  -I$(top_srcdir) -I/home/opam/.opam/4.14/include -fPIC -I/home/opam/.opam/4.14/lib/ocaml -g
-  LDFLAGS        :  -L/home/opam/.opam/4.14/lib
-  
-  ---------------------------------------------------------------- Installation
- 
-  prefix         : /home/opam/.opam/4.14
-  exec_prefix    : ${prefix}
-  binary         : ${exec_prefix}/bin
-  configuration  : /home/opam/.opam/4.14/lib/liquidsoap/etc/liquidsoap
-  logging        : /home/opam/.opam/4.14/lib/liquidsoap/var/log/liquidsoap
-  PIDs           : /home/opam/.opam/4.14/lib/liquidsoap/var/run/liquidsoap
-  logrotate conf : /home/opam/.opam/4.14/lib/liquidsoap/etc/logrotate.d
-  man page       : ${datarootdir}/man/man1
-  doc            : ${datarootdir}/doc
-  bash completion: /home/opam/.opam/4.14/lib/liquidsoap/etc/bash_completion.d
-  emacs mode     : ${prefix}/share/emacs/site-lisp/liquidsoap-mode
- 
-  -------------------------------------------------------------------- Features
- 
-  * Liquidsoap
-    - version           : 2.0.3-1
- 
-  * Supported input formats
-    - MP3               : no (requires mad)
-    - AAC               : no (requires faad)
-    - FFmpeg            : no (requires ffmpeg)
-    - Flac (native)     : no (requires flac)
-    - Flac (ogg)        : no (requires flac.ogg)
-    - Lastfm            : no (requires lastfm)
-    - Opus              : no (requires opus)
-    - Speex             : no (requires speex)
-    - Theora            : no (requires theora)
-    - Vorbis            : no (requires vorbis)
-    - XML playlists     : no (requires xmlplaylist)
- 
-  * Supported output formats
-    - FDK-AAC           : detected at runtime
-    - FFmpeg            : no (requires ffmpeg)
-    - MP3               : detected at runtime
-    - MP3 (fixed-point) : no (requires shine)
-    - Opus              : no (requires opus)
-    - SPEEX             : no (requires speex)
-    - Theora            : no (requires theora)
-    - Vorbis            : no (requires vorbis)
- 
-  * Tags
-    - charset detection : yes
-    - Taglib (ID3 tags) : no (requires taglib)
-    - Vorbis            : no (requires vorbis)
- 
-  * Input / output
-    - ALSA              : no (requires alsa)
-    - AO                : no (requires ao)
-    - FFmpeg            : no (requires ffmpeg)
-    - Icecast/Shoutcast : no (requires cry)
-    - GStreamer         : no (requires gstreamer)
-    - JACK              : no (requires bjack)
-    - 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)
- 
-  * Video manipulation
-    - camlimages        : no (requires camlimages)
-    - FFmpeg            : no (requires ffmpeg)
-    - frei0r            : no (requires frei0r)
-    - SDL-image         : no (requires tsdl-image)
-    - SDL-ttf           : no (requires tsdl-ttf)
- 
-  * MIDI manipulation
-    - DSSI              : no (requires dssi)
- 
-  * Visualization
-    - GD                : no (requires gd)
-    - Graphics          : no (requires graphics)
-    - SDL               : no (requires tsdl)
- 
-  * Additional libraries
-    - http requests     : no (requires curl)
-    - FFmpeg filters    : no (requires ffmpeg)
-    - FFmpeg devices    : no (requires ffmpeg)
-    - dynlink           : yes
-    - inotify           : no (requires inotify)
-    - lastfm            : no (requires lastfm)
-    - lo                : no (requires lo)
-    - magic             : no (requires magic)
-    - memtrace          : no (requires memtrace)
-    - mem_usage         : no (requires mem_usage)
-    - SecureTransport   : no (requires osx-secure-transport)
-    - ssl               : no (requires ssl)
-    - posix-time2       : no (requires posix-time2)
-    - windows service   : no (requires winsvc)
-    - yojson            : no (requires yojson)
- 
-  * Monitoring
-    - Prometheus        : no (requires prometheus-app)
- 
-  -----------------------------------------------------------------------------
- 
-  You may now compile liquidsoap by running "make".
-  In case of significant library update, "make clean" is needed first.
- 
-  If you want a local version of the documentation, run "make doc".
- 
-  Then, perform installation by running "make install" as root.
- 
-  And... have fun!
- 
- <WARNING>
- 
-  The specified user/group (dummy/dummy) for running liquidsoap as a daemon
-  do not exist, so I won't install log and PID directories.
- 
-  For a fully functional liquidsoap installation, please configure again
-  with existing user/group. You may use --with-user=<user> --with-group=<group>
-  to override the default.
- 
- </WARNING>
- 
Processing  2/4: [liquidsoap: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" (CWD=/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1)
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/tools'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/tools'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/decoder'
- make[3]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/decoder/image'
- make[3]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/decoder/image'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/decoder'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/playlists'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/playlists'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/encoder'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/encoder'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/protocols'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/protocols'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/stream'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/stream'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/lang'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/lang'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/ogg_formats'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/ogg_formats'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/converters'
- make[3]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/converters/audio'
- make[3]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/converters/audio'
- make[3]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/converters/video'
- make[3]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/converters/video'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/converters'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/operators'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/operators'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/sources'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/sources'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/conversions'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/conversions'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/outputs'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/outputs'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/io'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/io'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/visualization'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/visualization'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/synth'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/synth'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/harbor'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/harbor'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/lang_encoders'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/lang_encoders'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/encoder_formats'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/encoder_formats'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src'
- OCAMLDEP
- OCAMLOPT -c tools/log.mli
- OCAMLOPT -c tools/log.ml
- OCAMLOPT -c tools/extralib.ml
- OCAMLOPT -c tools/lifecycle.mli
- OCAMLOPT -c tools/lifecycle.ml
- OCAMLOPT -c tools/stringView.mli
- OCAMLOPT -c tools/stringView.ml
- OCAMLOPT -c tools/strings.mli
- OCAMLOPT -c tools/strings.ml
- OCAMLOPT -c tools/runtime_error.ml
- OCAMLOPT -c tools/utils.ml
- OCAMLOPT -c tools/JSON.mli
- OCAMLOPT -c tools/JSON.ml
- File "tools/JSON.ml", line 12, characters 12-29:
- 12 | let lexer = Genlex.make_lexer ["{"; "}"; "["; "]"; ","; ":"]
-                  ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 15, characters 8-19:
- 15 |   match Stream.next stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 16, characters 6-18:
- 16 |     | Genlex.Ident "true" -> `Bool true
-            ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 17, characters 6-18:
- 17 |     | Genlex.Ident "false" -> `Bool false
-            ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 18, characters 6-18:
- 18 |     | Genlex.Ident "null" -> `Null
-            ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 19, characters 6-19:
- 19 |     | Genlex.String s | Genlex.Ident s -> `String s
-            ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 19, characters 24-36:
- 19 |     | Genlex.String s | Genlex.Ident s -> `String s
-                              ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 20, characters 6-17:
- 20 |     | Genlex.Char c -> `String (String.make 1 c)
-            ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 21, characters 6-18:
- 21 |     | Genlex.Float f -> `Float f
-            ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 22, characters 6-16:
- 22 |     | Genlex.Int n -> `Int n
-            ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 23, characters 6-16:
- 23 |     | Genlex.Kwd "{" -> `Assoc (parse_assoc stream)
-            ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 24, characters 6-16:
- 24 |     | Genlex.Kwd "[" -> `List (parse_list stream)
-            ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 28, characters 8-19:
- 28 |   match Stream.next stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 29, characters 6-19:
- 29 |     | Genlex.String l | Genlex.Ident l ->
-            ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 29, characters 24-36:
- 29 |     | Genlex.String l | Genlex.Ident l ->
-                              ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 36, characters 6-16:
- 36 |     | Genlex.Kwd "}" -> []
-            ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 30, characters 11-22:
- 30 |         if Stream.next stream <> Genlex.Kwd ":" then raise Error;
-                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 30, characters 33-43:
- 30 |         if Stream.next stream <> Genlex.Kwd ":" then raise Error;
-                                       ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 32, characters 16-27:
- 32 |         let k = Stream.next stream in
-                      ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 33, characters 15-25:
- 33 |         if k = Genlex.Kwd "," then (l, v) :: parse_assoc stream
-                     ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 34, characters 20-30:
- 34 |         else if k = Genlex.Kwd "}" then [(l, v)]
-                          ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 40, characters 8-19:
- 40 |   match Stream.peek stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 41, characters 12-22:
- 41 |     | Some (Genlex.Kwd "]") ->
-                  ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 42, characters 8-19:
- 42 |         Stream.junk stream;
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 46, characters 16-27:
- 46 |         let k = Stream.next stream in
-                      ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 47, characters 15-25:
- 47 |         if k = Genlex.Kwd "," then v :: parse_list stream
-                     ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 48, characters 20-30:
- 48 |         else if k = Genlex.Kwd "]" then [v]
-                          ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "tools/JSON.ml", line 53, characters 21-37:
- 53 |   let lexer = lexer (Stream.of_string s) in
-                           ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT -c tools/doc.ml
- OCAMLOPT -c tools/plug.ml
- OCAMLOPT -c tools/rqueue.mli
- OCAMLOPT -c tools/rqueue.ml
- OCAMLOPT -c tools/unifier.mli
- OCAMLOPT -c tools/unifier.ml
- OCAMLOPT -c tools/lame_dynlink.mli
- OCAMLOPT -c tools/lame_dynlink.ml
- OCAMLOPT -c tools/fdkaac_dynlink.mli
- OCAMLOPT -c tools/fdkaac_dynlink.ml
- OCAMLOPT -c tools/wav_aiff.mli
- OCAMLOPT -c tools/wav_aiff.ml
- OCAMLOPT -c tools/tutils.mli
- OCAMLOPT -c tools/tutils.ml
- OCAMLOPT -c tools/file_watcher.ml
- OCAMLOPT -c tools/file_watcher_mtime.ml
- OCAMLOPT -c tools/dyntools.ml
- OCAMLOPT -c configure.mli
- OCAMLOPT -c configure.ml
- OCAMLOPT -c tools/console.mli
- OCAMLOPT -c tools/console.ml
- OCAMLOPT -c tools/process_handler.mli
- OCAMLOPT -c tools/process_handler.ml
- OCAMLOPT -c tools/http.mli
- OCAMLOPT -c tools/http.ml
- OCAMLOPT -c tools/pool.ml
- OCAMLOPT -c tools/sha1.ml
- OCAMLOPT -c tools/websocket.ml
- File "tools/websocket.ml", line 85, characters 6-18:
- 85 |       rsv3 : bool;
-            ^^^^^^^^^^^^
- Warning 69 [unused-field]: record field rsv3 is never read.
- (However, this field is used to build or mutate values.)
- OCAMLOPT -c tools/id3v2.ml
- OCAMLOPT -c stream/frame_settings.ml
- OCAMLOPT -c stream/frame_content.mli
- OCAMLOPT -c stream/frame_content.ml
- OCAMLOPT -c converters/audio_converter.mli
- OCAMLOPT -c converters/audio_converter.ml
- OCAMLOPT -c stream/frame.mli
- OCAMLOPT -c stream/frame.ml
- OCAMLOPT -c stream/aFrame.mli
- OCAMLOPT -c stream/aFrame.ml
- OCAMLOPT -c stream/generator.mli
- OCAMLOPT -c decoder/decoder_utils.mli
- OCAMLOPT -c decoder/decoder.mli
- OCAMLOPT -c request.mli
- OCAMLOPT -c source.mli
- OCAMLOPT -c stream/vFrame.mli
- OCAMLOPT -c stream/vFrame.ml
- OCAMLOPT -c stream/mFrame.mli
- OCAMLOPT -c stream/mFrame.ml
- OCAMLOPT -c stream/generator.ml
- OCAMLOPT -c converters/video_converter.mli
- OCAMLOPT -c converters/video_converter.ml
- OCAMLOPT -c decoder/decoder_utils.ml
- OCAMLOPT -c decoder/decoder.ml
- OCAMLOPT -c tools/liq_time.mli
- OCAMLOPT -c tools/liq_time.ml
- OCAMLOPT -c request.ml
- OCAMLOPT -c tools/server.mli
- OCAMLOPT -c tools/server.ml
- OCAMLOPT -c source.ml
- OCAMLOPT -c clock.mli
- OCAMLOPT -c clock.ml
- OCAMLOPT -c playlist_parser.ml
- OCAMLOPT -c encoder_formats.ml
- OCAMLOPT -c encoder_formats/meta_format.mli
- OCAMLOPT -c encoder_formats/meta_format.ml
- OCAMLOPT -c encoder_formats/avi_format.ml
- OCAMLOPT -c encoder_formats/external_encoder_format.ml
- OCAMLOPT -c encoder_formats/fdkaac_format.ml
- OCAMLOPT -c encoder_formats/flac_format.ml
- OCAMLOPT -c encoder_formats/ffmpeg_format.ml
- OCAMLOPT -c encoder_formats/gstreamer_format.ml
- OCAMLOPT -c encoder_formats/mp3_format.ml
- OCAMLOPT -c encoder_formats/opus_format.ml
- OCAMLOPT -c encoder_formats/shine_format.ml
- OCAMLOPT -c encoder_formats/speex_format.ml
- OCAMLOPT -c encoder_formats/theora_format.ml
- OCAMLOPT -c encoder_formats/vorbis_format.ml
- OCAMLOPT -c encoder_formats/ogg_format.ml
- OCAMLOPT -c encoder_formats/wav_format.ml
- OCAMLOPT -c encoder.mli
- OCAMLOPT -c encoder.ml
- OCAMLOPT -c tools/server_builtins.ml
- OCAMLOPT -c lang/type.mli
- OCAMLOPT -c lang/type.ml
- OCAMLOPT -c lang/typing.mli
- OCAMLOPT -c lang/typing.ml
- OCAMLOPT -c lang/profiler.ml
- OCAMLOPT -c lang/term.ml
- OCAMLOPT -c lang/environment.mli
- OCAMLOPT -c lang/environment.ml
- OCAMLOPT -c lang/typechecking.ml
- OCAMLOPT -c lang/evaluation.mli
- OCAMLOPT -c lang/evaluation.ml
- OCAMLOPT -c lang/lang_encoders.ml
- OCAMLOPT -c lang_encoders/lang_avi.ml
- OCAMLOPT -c lang_encoders/lang_external_encoder.ml
- OCAMLOPT -c lang_encoders/lang_fdkaac.ml
- OCAMLOPT -c lang_encoders/lang_ffmpeg.ml
- OCAMLOPT -c lang_encoders/lang_flac.ml
- OCAMLOPT -c lang_encoders/lang_gstreamer.ml
- OCAMLOPT -c lang_encoders/lang_mp3.ml
- OCAMLOPT -c lang_encoders/lang_opus.ml
- OCAMLOPT -c lang_encoders/lang_shine.ml
- OCAMLOPT -c lang_encoders/lang_speex.ml
- OCAMLOPT -c lang_encoders/lang_theora.ml
- OCAMLOPT -c lang_encoders/lang_vorbis.ml
- OCAMLOPT -c lang_encoders/lang_wav.ml
- OCAMLOPT -c lang/parser_helper.ml
- OCAMLOPT -c lang/parser.mli
- OCAMLOPT -c lang/parser.ml
- OCAMLOPT -c lang/lexer.ml
- OCAMLOPT -c lang/preprocessor.ml
- OCAMLOPT -c lang/error.mli
- OCAMLOPT -c lang/error.ml
- OCAMLOPT -c lang/documentation.ml
- OCAMLOPT -c lang/lang.mli
- OCAMLOPT -c lang/lang.ml
- OCAMLOPT -c lang/runtime.mli
- OCAMLOPT -c lang/runtime.ml
- OCAMLOPT -c lang/modules.ml
- OCAMLOPT -c tools/child_support.ml
- OCAMLOPT -c tools/start_stop.ml
- OCAMLOPT -c tools/ioRing.ml
- OCAMLOPT -c tools/icecast_utils.ml
- OCAMLOPT -c tools/avi.ml
- OCAMLOPT -c converters/video/native_video_converter.ml
- OCAMLOPT -c converters/audio/native_audio_converter.ml
- OCAMLOPT -c protocols/annotate.ml
- OCAMLOPT -c protocols/mpd.ml
- OCAMLOPT -c sources/synthesized.ml
- OCAMLOPT -c sources/noise.ml
- OCAMLOPT -c sources/blank.ml
- OCAMLOPT -c sources/debug_sources.ml
- OCAMLOPT -c sources/audio_gen.ml
- OCAMLOPT -c sources/request_source.mli
- OCAMLOPT -c sources/request_source.ml
- OCAMLOPT -c sources/latest_metadata.ml
- OCAMLOPT -c sources/request_simple.ml
- OCAMLOPT -c sources/generated.ml
- OCAMLOPT -c harbor/harbor_base.ml
- OCAMLOPT -c harbor/harbor.ml
- OCAMLOPT -c sources/harbor_input.ml
- OCAMLOPT -c tools/external_input.ml
- OCAMLOPT -c sources/external_input_audio.ml
- OCAMLOPT -c sources/external_input_video.ml
- OCAMLOPT -c tools/sandbox.mli
- OCAMLOPT -c tools/sandbox.ml
- OCAMLOPT -c outputs/output.mli
- OCAMLOPT -c outputs/output.ml
- OCAMLOPT -c outputs/pipe_output.ml
- OCAMLOPT -c outputs/hls_output.ml
- OCAMLOPT -c outputs/harbor_output.ml
- OCAMLOPT -c tools/producer_consumer.ml
- OCAMLOPT -c conversions/conversion.ml
- OCAMLOPT -c conversions/audio_to_stereo.ml
- OCAMLOPT -c conversions/drop.ml
- OCAMLOPT -c conversions/swap.ml
- OCAMLOPT -c conversions/mean.ml
- OCAMLOPT -c conversions/mux.ml
- OCAMLOPT -c operators/insert_metadata.ml
- OCAMLOPT -c operators/map_metadata.ml
- OCAMLOPT -c operators/on_end.ml
- OCAMLOPT -c operators/on_frame.ml
- OCAMLOPT -c operators/delay.ml
- OCAMLOPT -c operators/max_duration.ml
- OCAMLOPT -c operators/sequence.ml
- OCAMLOPT -c operators/add.ml
- OCAMLOPT -c operators/switch.ml
- OCAMLOPT -c operators/cross.ml
- OCAMLOPT -c operators/pitch.ml
- OCAMLOPT -c operators/pipe.ml
- OCAMLOPT -c operators/filter.ml
- OCAMLOPT -c operators/fir_filter.ml
- OCAMLOPT -c operators/iir_filter.ml
- OCAMLOPT -c operators/filter_rc.ml
- OCAMLOPT -c operators/biquad_filter.ml
- OCAMLOPT -c operators/cuepoint.ml
- OCAMLOPT -c operators/map_op.ml
- OCAMLOPT -c operators/flanger.ml
- OCAMLOPT -c operators/comb.ml
- OCAMLOPT -c operators/compress.ml
- OCAMLOPT -c operators/compress_old.ml
- OCAMLOPT -c operators/compress_exp.ml
- OCAMLOPT -c operators/clip.ml
- OCAMLOPT -c operators/amplify.ml
- OCAMLOPT -c operators/normalize.ml
- OCAMLOPT -c operators/echo.ml
- OCAMLOPT -c operators/gate.ml
- OCAMLOPT -c operators/append.ml
- OCAMLOPT -c operators/pan.ml
- OCAMLOPT -c operators/ms_stereo.ml
- OCAMLOPT -c operators/dyn_op.ml
- OCAMLOPT -c operators/video_effects.ml
- OCAMLOPT -c operators/video_fade.ml
- OCAMLOPT -c operators/noblank.ml
- OCAMLOPT -c operators/compand.ml
- OCAMLOPT -c operators/on_offset.ml
- OCAMLOPT -c operators/prepend.ml
- OCAMLOPT -c operators/lufs.ml
- OCAMLOPT -c operators/available.ml
- OCAMLOPT -c operators/midi_routing.ml
- OCAMLOPT -c operators/sleeper.ml
- OCAMLOPT -c operators/time_warp.ml
- OCAMLOPT -c operators/resample.ml
- OCAMLOPT -c operators/chord.ml
- OCAMLOPT -c operators/video_text.ml
- OCAMLOPT -c operators/window_op.ml
- OCAMLOPT -c operators/rms_smooth.ml
- OCAMLOPT -c operators/delay_line.ml
- OCAMLOPT -c operators/video_text_native.ml
- OCAMLOPT -c operators/accelerate.ml
- OCAMLOPT -c operators/still_frame.ml
- OCAMLOPT -c operators/dtmf.ml
- OCAMLOPT -c encoder/wav_encoder.ml
- OCAMLOPT -c encoder/avi_encoder.ml
- OCAMLOPT -c encoder/lame_encoder.ml
- OCAMLOPT -c encoder/fdkaac_encoder.ml
- OCAMLOPT -c encoder/external_encoder.ml
- OCAMLOPT -c encoder/lame_encoder_dynlink.ml
- OCAMLOPT -c encoder/fdkaac_encoder_dynlink.ml
- OCAMLOPT -c decoder/wav_aiff_decoder.ml
- OCAMLOPT -c decoder/midi_decoder.ml
- OCAMLOPT -c decoder/image_decoder.ml
- OCAMLOPT -c decoder/image/ppm_decoder.ml
- OCAMLOPT -c decoder/external_decoder.ml
- OCAMLOPT -c decoder/raw_audio_decoder.ml
- OCAMLOPT -c decoder/id3v2_plug.ml
- OCAMLOPT -c playlists/playlist_basic.ml
- OCAMLOPT -c visualization/midimeter.ml
- OCAMLOPT -c visualization/video_volume.ml
- OCAMLOPT -c synth/keyboard.ml
- OCAMLOPT -c synth/synth_op.ml
- OCAMLOPT -c io/udp_io.ml
- OCAMLOPT -c io/oss_io.ml
- OCAMLOPT -c shebang.ml
- OCAMLOPT -c lang/lang_builtins.ml
- OCAMLOPT -c lang/builtins_ref.ml
- OCAMLOPT -c lang/builtins_runtime.ml
- OCAMLOPT -c lang/builtins_bool.ml
- OCAMLOPT -c lang/builtins_list.ml
- OCAMLOPT -c lang/builtins_string.ml
- OCAMLOPT -c lang/builtins_json.ml
- OCAMLOPT -c lang/builtins_request.ml
- OCAMLOPT -c lang/builtins_error.ml
- OCAMLOPT -c lang/builtins_null.ml
- OCAMLOPT -c lang/builtins_settings.ml
- OCAMLOPT -c lang/builtins_time.ml
- OCAMLOPT -c lang/builtins_callbacks.ml
- OCAMLOPT -c lang/builtins_server.ml
- OCAMLOPT -c lang/builtins_math.ml
- OCAMLOPT -c lang/builtins_files.ml
- OCAMLOPT -c lang/builtins_resolvers.ml
- OCAMLOPT -c lang/builtins_thread.ml
- OCAMLOPT -c lang/builtins_process.ml
- OCAMLOPT -c lang/builtins_source.ml
- OCAMLOPT -c lang/builtins_getter.ml
- OCAMLOPT -c lang/builtins_profiler.ml
- OCAMLOPT -c lang/builtins_eval.ml
- OCAMLOPT -c lang/builtins_harbor.ml
- OCAMLOPT -c lang/builtins_ffmpeg_base.ml
- OCAMLOPT -c main.ml
- OCAMLOPT -c runner.ml
- CC -c tools/unix_c.c
- CC -c io/oss_io_c.c
- OCAMLOPT -o liquidsoap
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/examples'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/examples'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/doc'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/doc/content'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/doc/content'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/doc'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/scripts'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/scripts'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/fixme'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/fixme'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/media'
- Makefile:169: warning: overriding recipe for target 'clean'
- /home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/Makefile.rules:17: warning: ignoring old recipe for target 'clean'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/media'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/language'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/language'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/regression'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/regression'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/libs'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/libs'
-> compiled  liquidsoap.2.0.3-1
Processing  3/4: [liquidsoap: rm]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "rm" "-rf" "/home/opam/.opam/4.14/lib/liquidsoap" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/liquidsoap.2.0.3-1)
-> removed   liquidsoap.2.0.3-1
Processing  4/4: [liquidsoap: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1)
- make -C doc doc-install
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/doc'
- /usr/bin/install -c  -d /home/opam/.opam/4.14/lib/liquidsoap/share/doc/liquidsoap/html
- if [ -f html/index.html ] ; then \
-   cp -RfL html/* /home/opam/.opam/4.14/lib/liquidsoap/share/doc/liquidsoap/html ; \
-         fi
- if [ -f liquidsoap.1 ] ; then \
-   /usr/bin/install -c -d /home/opam/.opam/4.14/lib/liquidsoap/share/man/man1 ; \
-   /usr/bin/install -c -m 644 liquidsoap.1 /home/opam/.opam/4.14/lib/liquidsoap/share/man/man1 ; \
- fi
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/doc'
- make -C examples doc-install
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/examples'
- /usr/bin/install -c -d /home/opam/.opam/4.14/lib/liquidsoap/share/doc/liquidsoap-2.0.3-1/examples
- /usr/bin/install -c -m 644 fallible.liq geek.liq radio.liq transitions.liq README /home/opam/.opam/4.14/lib/liquidsoap/share/doc/liquidsoap-2.0.3-1/examples
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/examples'
- /usr/bin/install -c -d /home/opam/.opam/4.14/bin
- /usr/bin/install -c -d /home/opam/.opam/4.14/lib/liquidsoap/share/liquidsoap/2.0.3-1/bin
- /usr/bin/install -c -d /home/opam/.opam/4.14/lib/liquidsoap/share/liquidsoap/2.0.3-1/libs
- /usr/bin/install -c scripts/extract-replaygain /home/opam/.opam/4.14/lib/liquidsoap/share/liquidsoap/2.0.3-1/bin
- find libs | grep '\.liq$' | while read l; do \
-   /usr/bin/install -c -m 644 $l /home/opam/.opam/4.14/lib/liquidsoap/share/liquidsoap/2.0.3-1/libs ; \
- done
- /usr/bin/install -c -d /home/opam/.opam/4.14/lib/liquidsoap/etc/liquidsoap
- /usr/bin/install -c -m 644 examples/radio.liq /home/opam/.opam/4.14/lib/liquidsoap/etc/liquidsoap/radio.liq.example
- /usr/bin/install -c -d /home/opam/.opam/4.14/lib/liquidsoap/etc/logrotate.d
- /usr/bin/install -c -m 644 scripts/liquidsoap.logrotate /home/opam/.opam/4.14/lib/liquidsoap/etc/logrotate.d/liquidsoap
- /usr/bin/install -c -d /home/opam/.opam/4.14/lib/liquidsoap/etc/bash_completion.d
- /usr/bin/install -c -m 644 scripts/bash-completion /home/opam/.opam/4.14/lib/liquidsoap/etc/bash_completion.d/liquidsoap
- /usr/bin/install -c -d /home/opam/.opam/4.14/share/emacs/site-lisp/liquidsoap-mode
- /usr/bin/install -c -m 644 scripts/liquidsoap-mode.el /home/opam/.opam/4.14/share/emacs/site-lisp/liquidsoap-mode/
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src'
- make[2]: 'liquidsoap' is up to date.
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src'
- /usr/bin/install -c -d /home/opam/.opam/4.14/bin
- /usr/bin/install -c liquidsoap /home/opam/.opam/4.14/bin
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/tools'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/tools'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/decoder'
- make[3]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/decoder/image'
- make[3]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/decoder/image'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/decoder'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/playlists'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/playlists'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/encoder'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/encoder'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/protocols'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/protocols'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/stream'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/stream'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/lang'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/lang'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/ogg_formats'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/ogg_formats'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/converters'
- make[3]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/converters/audio'
- make[3]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/converters/audio'
- make[3]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/converters/video'
- make[3]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/converters/video'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/converters'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/operators'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/operators'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/sources'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/sources'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/conversions'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/conversions'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/outputs'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/outputs'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/io'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/io'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/visualization'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/visualization'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/synth'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/synth'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/harbor'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/harbor'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/lang_encoders'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/lang_encoders'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/encoder_formats'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src/encoder_formats'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/src'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/examples'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/examples'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/doc'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/doc/content'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/doc/content'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/doc'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/scripts'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/scripts'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/fixme'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/fixme'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/media'
- Makefile:169: warning: overriding recipe for target 'clean'
- /home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/Makefile.rules:17: warning: ignoring old recipe for target 'clean'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/media'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/language'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/language'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/regression'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests/regression'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/tests'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/libs'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/liquidsoap.2.0.3-1/libs'
-> installed liquidsoap.2.0.3-1
Done.

<><> liquidsoap.2.0.3-1 installed successfully ><><><><><><><><><><><><><><><><>
=> ✨ Congratulations on installing liquidsoap! ✨
=> We noticed that you did not install any mp3 decoder. This is a feature most
   users want. You might need to install the mad or ffmpeg package.
=> We noticed that you did not install any mp3 encoder. This is a feature most
   users want. You might need to install the lame or shine package.
=> We noticed that you did not install the taglib package that provides support
   for reading metatadata in audio files. This is a feature most users want.
=> We noticed that you did not install the ocurl package. We strongly
   recommend this package for http request resolving support.
=> We noticed that you did not install the cry package that provides icecast
   output. This is a feature most users want.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 22:07.44 ---> saved as "b1ef966a3e549515ecb486809410af2a9d7f14401b4038f93270251ac3187fb6"
Job succeeded
2025-08-05 22:07.54: Job succeeded