(not at the head of any monitored branch or PR)
2026-04-13 14:39.01: New job: test raylib.0.2.2 with dune.3.22.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
                              on debian-13-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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit ba4685aeec7b28fde6af30c7b83004704c68c86a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126
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 dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune.3.22.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall raylib.0.2.2; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'raylib.0.2.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test raylib.0.2.2) || true
RUN opam reinstall --with-test --verbose raylib.0.2.2; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'raylib.0.2.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-04-13 14:39.01: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126-dune.3.22.2-raylib.0.2.2-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-13 14:39.01: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126)
 (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 dune.3.22.2 3.22.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.2;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; 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.22.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall raylib.0.2.2;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'raylib.0.2.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test raylib.0.2.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose raylib.0.2.2;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'raylib.0.2.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-13 14:39.01: Waiting for resource in pool OCluster
2026-04-13 15:01.27: Waiting for worker…
2026-04-13 15:06.29: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at ba4685aeec Merge pull request #29653 from yakobowski/camlidl
Merge made by the 'ort' strategy.
 packages/chrome-trace/chrome-trace.3.22.2/opam     | 39 +++++++++++
 .../dune-action-plugin.3.22.2/opam                 | 52 +++++++++++++++
 .../dune-action-trace.3.22.2/opam                  | 39 +++++++++++
 .../dune-build-info/dune-build-info.3.22.2/opam    | 45 +++++++++++++
 .../dune-configurator.3.22.2/opam                  | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.2/opam           | 42 ++++++++++++
 .../dune-private-libs.3.22.2/opam                  | 50 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam     | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.2/opam             | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.2/opam           | 37 +++++++++++
 packages/dune/dune.3.22.2/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.2/opam                       | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.2/opam                   | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam         | 43 +++++++++++++
 packages/ordering/ordering.3.22.2/opam             | 38 +++++++++++
 packages/stdune/stdune.3.22.2/opam                 | 46 +++++++++++++
 packages/top-closure/top-closure.3.22.2/opam       | 38 +++++++++++
 packages/xdg/xdg.3.22.2/opam                       | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.2/opam
 create mode 100644 packages/dune/dune.3.22.2/opam
 create mode 100644 packages/dyn/dyn.3.22.2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
 create mode 100644 packages/ordering/ordering.3.22.2/opam
 create mode 100644 packages/stdune/stdune.3.22.2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.2/opam
 create mode 100644 packages/xdg/xdg.3.22.2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126' locally
docker.io/ocaml/opam@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126: Pulling from ocaml/opam
8f6ad858d0a4: Already exists
9cb5e198c8cf: Already exists
2d346d36dcf2: Already exists
cdc35e289b8d: Already exists
aeb7244bb580: Already exists
fc1943254a0d: Already exists
84238c416f8e: Already exists
fbbfe75d3112: Already exists
221fdc5d9929: Already exists
1fec9149b52a: Already exists
9c6e52557f24: Already exists
8737f5036aae: Already exists
d69c4074de14: Already exists
7237152a5f04: Already exists
fba4b414d8a0: Already exists
40d552afb3ef: Already exists
077cc17dc8e4: Already exists
077cc17dc8e4: Already exists
169e1be36a55: Already exists
0a8a005097ab: Already exists
caba3ec4b361: Already exists
6a364dc641f8: Already exists
4f4fb700ef54: Already exists
ab8052928cdc: Already exists
f5717a28dd6a: Already exists
79233a9b9bed: Already exists
d832d53e7392: Already exists
1872dad82243: Already exists
bfd849b08ba7: Already exists
834a8024ef15: Already exists
98ccec79258b: Already exists
fb48f36a0542: Already exists
3688b13db8e7: Already exists
a5c099f5f72c: Already exists
1ff1760de5b0: Already exists
98eec6764aa5: Already exists
aa22ae69debd: Already exists
12bfb7b962a2: Already exists
ec25ce9bb816: Already exists
beadd3cf7357: Already exists
d0d0c65a426d: Already exists
27080da82c6b: Pulling fs layer
3b99adeb504e: Pulling fs layer
867c8a52ad10: Pulling fs layer
01ca275a6ca2: Pulling fs layer
01ca275a6ca2: Waiting
867c8a52ad10: Verifying Checksum
867c8a52ad10: Download complete
3b99adeb504e: Verifying Checksum
3b99adeb504e: Download complete
01ca275a6ca2: Verifying Checksum
01ca275a6ca2: Download complete
27080da82c6b: Verifying Checksum
27080da82c6b: Download complete
27080da82c6b: Pull complete
3b99adeb504e: Pull complete
867c8a52ad10: Pull complete
01ca275a6ca2: Pull complete
Digest: sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126
Status: Downloaded newer image for ocaml/opam@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126
2026-04-13 15:07.17 ---> using "d0e330c08fa445d83f06df86dbe749aac73c20b9c3be340824d01a143f189b82" 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-13 15:07.17 ---> using "3ec7ac935151f5277a236626f366bf7f6f18395cb01e6e86eff2abeffc750f69" 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 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
2026-04-13 15:07.17 ---> using "b5a0847c35501fd963cedc3388b00c999e5617a9db85df5529c240a6fc10a617" 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=13
# 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.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-13 15:07.17 ---> using "28464b62e165a839b63b1c2ae024a4b4fcbe23c1802c3adf881d35db6bc1d4c2" 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-13 15:07.17 ---> using "4dfd69403557bd9c8ecec7a8b2fdd9b50feea12943fd8b9150cd347ede8d5f38" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-13 15:07.18 ---> using "e4440740ff32adbbcff2b06cb37b16278050a2f11fe3bbb84acde16cec6f57b3" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-13 15:07.18 ---> using "783c15b8b62b3b51001efd6e74ae6392d3b5bfd28262103a88dd85a8bc36074a" 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 trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [122 kB]
- Fetched 213 kB in 6s (37.9 kB/s)
- Reading package lists...
- 
2026-04-13 15:07.18 ---> using "2130130498394389e9bf01ee0c6f95746ce3be4212fa65c803222086e9e79898" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-13 15:07.18 ---> using "a58a3260573f46e665bd2898643e9c41f09fedf9a8dce9d606b49bf430b4a91b" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.2;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; 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.22.2' && 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.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2  (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 15:07.37 ---> saved as "72e5e0d76148f0a1a9dbe5c996a494d4743ec3246a9e99de2b80085ee7ec61e2"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall raylib.0.2.2;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'raylib.0.2.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
raylib.0.2.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 22 packages
  - install bigarray-compat     1.1.0   [required by ppx_cstubs]
  - install conf-libgl          1       [required by raylib]
  - install conf-libglu         1       [required by raylib]
  - install conf-pkg-config     4       [required by conf-libglu]
  - install containers          3.17    [required by ppx_cstubs]
  - install cppo                1.8.0   [required by ppx_cstubs]
  - install csexp               1.5.2   [required by dune-configurator]
  - install ctypes              0.24.0  [required by raylib]
  - install dune-configurator   3.22.2  [required by raylib]
  - install either              1.0.0   [required by containers]
  - install integers            0.7.0   [required by ctypes, ppx_cstubs]
  - install num                 1.6     [required by ppx_cstubs]
  - install ocaml-compiler-libs v0.12.4 [required by ppxlib]
  - install ocamlfind           1.9.8   [required by ppx_cstubs]
  - install ppx_cstubs          0.7.0   [required by raylib]
  - install ppx_derivers        1.2.1   [required by ppxlib]
  - install ppxlib              0.35.0  [required by ppx_cstubs]
  - install raylib              0.2.2
  - install re                  1.14.0  [required by ppx_cstubs]
  - install result              1.5     [required by ppx_cstubs]
  - install sexplib0            v0.17.0 [required by ppxlib]
  - install stdlib-shims        0.3.0   [required by integers, ppxlib]

The following system packages will first need to be installed:
    libasound2-dev libgl1-mesa-dev libglu1-mesa-dev libxi-dev libxrandr-dev mesa-common-dev pkg-config xorg-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" "libasound2-dev" "libgl1-mesa-dev" "libglu1-mesa-dev" "libxi-dev" "libxrandr-dev" "mesa-common-dev" "pkg-config" "xorg-dev"
- Preconfiguring packages ...
- Selecting previously unselected package alsa-topology-conf.
- (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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../000-alsa-topology-conf_1.2.5.1-3_all.deb ...
- Unpacking alsa-topology-conf (1.2.5.1-3) ...
- Selecting previously unselected package libasound2-data.
- Preparing to unpack .../001-libasound2-data_1.2.14-1_all.deb ...
- Unpacking libasound2-data (1.2.14-1) ...
- Selecting previously unselected package libasound2t64:amd64.
- Preparing to unpack .../002-libasound2t64_1.2.14-1_amd64.deb ...
- Unpacking libasound2t64:amd64 (1.2.14-1) ...
- Selecting previously unselected package alsa-ucm-conf.
- Preparing to unpack .../003-alsa-ucm-conf_1.2.14-1_all.deb ...
- Unpacking alsa-ucm-conf (1.2.14-1) ...
- Selecting previously unselected package bzip2-doc.
- Preparing to unpack .../004-bzip2-doc_1.0.8-6_all.deb ...
- Unpacking bzip2-doc (1.0.8-6) ...
- Selecting previously unselected package fonts-dejavu-mono.
- Preparing to unpack .../005-fonts-dejavu-mono_2.37-8_all.deb ...
- Unpacking fonts-dejavu-mono (2.37-8) ...
- Selecting previously unselected package fonts-dejavu-core.
- Preparing to unpack .../006-fonts-dejavu-core_2.37-8_all.deb ...
- Unpacking fonts-dejavu-core (2.37-8) ...
- Selecting previously unselected package fontconfig-config.
- Preparing to unpack .../007-fontconfig-config_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig-config (2.15.0-2.3) ...
- Selecting previously unselected package libasound2-dev:amd64.
- Preparing to unpack .../008-libasound2-dev_1.2.14-1_amd64.deb ...
- Unpacking libasound2-dev:amd64 (1.2.14-1) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../009-libbrotli-dev_1.1.0-2+b7_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Selecting previously unselected package libbz2-dev:amd64.
- Preparing to unpack .../010-libbz2-dev_1.0.8-6_amd64.deb ...
- Unpacking libbz2-dev:amd64 (1.0.8-6) ...
- Selecting previously unselected package libdrm-common.
- Preparing to unpack .../011-libdrm-common_2.4.124-2_all.deb ...
- Unpacking libdrm-common (2.4.124-2) ...
- Selecting previously unselected package libdrm2:amd64.
- Preparing to unpack .../012-libdrm2_2.4.124-2_amd64.deb ...
- Unpacking libdrm2:amd64 (2.4.124-2) ...
- Selecting previously unselected package libdrm-amdgpu1:amd64.
- Preparing to unpack .../013-libdrm-amdgpu1_2.4.124-2_amd64.deb ...
- Unpacking libdrm-amdgpu1:amd64 (2.4.124-2) ...
- Selecting previously unselected package libpciaccess0:amd64.
- Preparing to unpack .../014-libpciaccess0_0.17-3+b3_amd64.deb ...
- Unpacking libpciaccess0:amd64 (0.17-3+b3) ...
- Selecting previously unselected package libdrm-intel1:amd64.
- Preparing to unpack .../015-libdrm-intel1_2.4.124-2_amd64.deb ...
- Unpacking libdrm-intel1:amd64 (2.4.124-2) ...
- Selecting previously unselected package libdrm-radeon1:amd64.
- Preparing to unpack .../016-libdrm-radeon1_2.4.124-2_amd64.deb ...
- Unpacking libdrm-radeon1:amd64 (2.4.124-2) ...
- Selecting previously unselected package libdrm-nouveau2:amd64.
- Preparing to unpack .../017-libdrm-nouveau2_2.4.124-2_amd64.deb ...
- Unpacking libdrm-nouveau2:amd64 (2.4.124-2) ...
- Selecting previously unselected package libpciaccess-dev:amd64.
- Preparing to unpack .../018-libpciaccess-dev_0.17-3+b3_amd64.deb ...
- Unpacking libpciaccess-dev:amd64 (0.17-3+b3) ...
- Selecting previously unselected package libdrm-dev:amd64.
- Preparing to unpack .../019-libdrm-dev_2.4.124-2_amd64.deb ...
- Unpacking libdrm-dev:amd64 (2.4.124-2) ...
- Selecting previously unselected package libglvnd0:amd64.
- Preparing to unpack .../020-libglvnd0_1.7.0-1+b2_amd64.deb ...
- Unpacking libglvnd0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libwayland-server0:amd64.
- Preparing to unpack .../021-libwayland-server0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-server0:amd64 (1.23.1-3) ...
- Selecting previously unselected package libelf1t64:amd64.
- Preparing to unpack .../022-libelf1t64_0.192-4_amd64.deb ...
- Unpacking libelf1t64:amd64 (0.192-4) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../023-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../024-libz3-4_4.13.3-1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.13.3-1) ...
- Selecting previously unselected package libllvm19:amd64.
- Preparing to unpack .../025-libllvm19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libllvm19:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libsensors-config.
- Preparing to unpack .../026-libsensors-config_1%3a3.6.2-2_all.deb ...
- Unpacking libsensors-config (1:3.6.2-2) ...
- Selecting previously unselected package libsensors5:amd64.
- Preparing to unpack .../027-libsensors5_1%3a3.6.2-2_amd64.deb ...
- Unpacking libsensors5:amd64 (1:3.6.2-2) ...
- Selecting previously unselected package libx11-xcb1:amd64.
- Preparing to unpack .../028-libx11-xcb1_2%3a1.8.12-1_amd64.deb ...
- Unpacking libx11-xcb1:amd64 (2:1.8.12-1) ...
- Selecting previously unselected package libxcb-dri3-0:amd64.
- Preparing to unpack .../029-libxcb-dri3-0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-dri3-0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-present0:amd64.
- Preparing to unpack .../030-libxcb-present0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-present0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-randr0:amd64.
- Preparing to unpack .../031-libxcb-randr0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-randr0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-sync1:amd64.
- Preparing to unpack .../032-libxcb-sync1_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-sync1:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-xfixes0:amd64.
- Preparing to unpack .../033-libxcb-xfixes0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxshmfence1:amd64.
- Preparing to unpack .../034-libxshmfence1_1.3.3-1_amd64.deb ...
- Unpacking libxshmfence1:amd64 (1.3.3-1) ...
- Selecting previously unselected package mesa-libgallium:amd64.
- Preparing to unpack .../035-mesa-libgallium_25.0.7-2_amd64.deb ...
- Unpacking mesa-libgallium:amd64 (25.0.7-2) ...
- Selecting previously unselected package libgbm1:amd64.
- Preparing to unpack .../036-libgbm1_25.0.7-2_amd64.deb ...
- Unpacking libgbm1:amd64 (25.0.7-2) ...
- Selecting previously unselected package libwayland-client0:amd64.
- Preparing to unpack .../037-libwayland-client0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-client0:amd64 (1.23.1-3) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../038-libxcb-shm0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libegl-mesa0:amd64.
- Preparing to unpack .../039-libegl-mesa0_25.0.7-2_amd64.deb ...
- Unpacking libegl-mesa0:amd64 (25.0.7-2) ...
- Selecting previously unselected package libegl1:amd64.
- Preparing to unpack .../040-libegl1_1.7.0-1+b2_amd64.deb ...
- Unpacking libegl1:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libxcb-glx0:amd64.
- Preparing to unpack .../041-libxcb-glx0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-glx0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxxf86vm1:amd64.
- Preparing to unpack .../042-libxxf86vm1_1%3a1.1.4-1+b4_amd64.deb ...
- Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b4) ...
- Selecting previously unselected package libvulkan1:amd64.
- Preparing to unpack .../043-libvulkan1_1.4.309.0-1_amd64.deb ...
- Unpacking libvulkan1:amd64 (1.4.309.0-1) ...
- Selecting previously unselected package libgl1-mesa-dri:amd64.
- Preparing to unpack .../044-libgl1-mesa-dri_25.0.7-2_amd64.deb ...
- Unpacking libgl1-mesa-dri:amd64 (25.0.7-2) ...
- Selecting previously unselected package libglx-mesa0:amd64.
- Preparing to unpack .../045-libglx-mesa0_25.0.7-2_amd64.deb ...
- Unpacking libglx-mesa0:amd64 (25.0.7-2) ...
- Selecting previously unselected package libglx0:amd64.
- Preparing to unpack .../046-libglx0_1.7.0-1+b2_amd64.deb ...
- Unpacking libglx0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgl1:amd64.
- Preparing to unpack .../047-libgl1_1.7.0-1+b2_amd64.deb ...
- Unpacking libgl1:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libglx-dev:amd64.
- Preparing to unpack .../048-libglx-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libglx-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgl-dev:amd64.
- Preparing to unpack .../049-libgl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libgl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libegl-dev:amd64.
- Preparing to unpack .../050-libegl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libegl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libexpat1-dev:amd64.
- Preparing to unpack .../051-libexpat1-dev_2.7.1-2_amd64.deb ...
- Unpacking libexpat1-dev:amd64 (2.7.1-2) ...
- Selecting previously unselected package libpng16-16t64:amd64.
- Preparing to unpack .../052-libpng16-16t64_1.6.48-1+deb13u4_amd64.deb ...
- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u4) ...
- Selecting previously unselected package libfreetype6:amd64.
- Preparing to unpack .../053-libfreetype6_2.13.3+dfsg-1+deb13u1_amd64.deb ...
- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Selecting previously unselected package libfontconfig1:amd64.
- Preparing to unpack .../054-libfontconfig1_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../055-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package libpng-dev:amd64.
- Preparing to unpack .../056-libpng-dev_1.6.48-1+deb13u4_amd64.deb ...
- Unpacking libpng-dev:amd64 (1.6.48-1+deb13u4) ...
- Selecting previously unselected package libfreetype-dev:amd64.
- Preparing to unpack .../057-libfreetype-dev_2.13.3+dfsg-1+deb13u1_amd64.deb ...
- Unpacking libfreetype-dev:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Selecting previously unselected package uuid-dev:amd64.
- Preparing to unpack .../058-uuid-dev_2.41-5_amd64.deb ...
- Unpacking uuid-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../059-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../060-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../061-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package libfontconfig-dev:amd64.
- Preparing to unpack .../062-libfontconfig-dev_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig-dev:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package libfontconfig1-dev:amd64.
- Preparing to unpack .../063-libfontconfig1-dev_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig1-dev:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package libfontenc1:amd64.
- Preparing to unpack .../064-libfontenc1_1%3a1.1.8-1+b2_amd64.deb ...
- Unpacking libfontenc1:amd64 (1:1.1.8-1+b2) ...
- Selecting previously unselected package libfontenc-dev:amd64.
- Preparing to unpack .../065-libfontenc-dev_1%3a1.1.8-1+b2_amd64.deb ...
- Unpacking libfontenc-dev:amd64 (1:1.1.8-1+b2) ...
- Selecting previously unselected package libfs6:amd64.
- Preparing to unpack .../066-libfs6_2%3a1.0.10-1_amd64.deb ...
- Unpacking libfs6:amd64 (2:1.0.10-1) ...
- Selecting previously unselected package libfs-dev:amd64.
- Preparing to unpack .../067-libfs-dev_2%3a1.0.10-1_amd64.deb ...
- Unpacking libfs-dev:amd64 (2:1.0.10-1) ...
- Selecting previously unselected package libglvnd-core-dev:amd64.
- Preparing to unpack .../068-libglvnd-core-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libglvnd-core-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgles1:amd64.
- Preparing to unpack .../069-libgles1_1.7.0-1+b2_amd64.deb ...
- Unpacking libgles1:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgles2:amd64.
- Preparing to unpack .../070-libgles2_1.7.0-1+b2_amd64.deb ...
- Unpacking libgles2:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgles-dev:amd64.
- Preparing to unpack .../071-libgles-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libgles-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libopengl0:amd64.
- Preparing to unpack .../072-libopengl0_1.7.0-1+b2_amd64.deb ...
- Unpacking libopengl0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libopengl-dev:amd64.
- Preparing to unpack .../073-libopengl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libopengl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libglvnd-dev:amd64.
- Preparing to unpack .../074-libglvnd-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libglvnd-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgl1-mesa-dev:amd64.
- Preparing to unpack .../075-libgl1-mesa-dev_25.0.7-2_amd64.deb ...
- Unpacking libgl1-mesa-dev:amd64 (25.0.7-2) ...
- Selecting previously unselected package libglu1-mesa:amd64.
- Preparing to unpack .../076-libglu1-mesa_9.0.2-1.1+b3_amd64.deb ...
- Unpacking libglu1-mesa:amd64 (9.0.2-1.1+b3) ...
- Selecting previously unselected package libglu1-mesa-dev:amd64.
- Preparing to unpack .../077-libglu1-mesa-dev_9.0.2-1.1+b3_amd64.deb ...
- Unpacking libglu1-mesa-dev:amd64 (9.0.2-1.1+b3) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../078-x11-common_1%3a7.7+24+deb13u1_all.deb ...
- Unpacking x11-common (1:7.7+24+deb13u1) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../079-libice6_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice6:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package libice-dev:amd64.
- Preparing to unpack .../080-libice-dev_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice-dev:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../081-libpixman-1-0_0.44.0-3_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...
- Selecting previously unselected package libpixman-1-dev:amd64.
- Preparing to unpack .../082-libpixman-1-dev_0.44.0-3_amd64.deb ...
- Unpacking libpixman-1-dev:amd64 (0.44.0-3) ...
- Selecting previously unselected package libpng-tools.
- Preparing to unpack .../083-libpng-tools_1.6.48-1+deb13u4_amd64.deb ...
- Unpacking libpng-tools (1.6.48-1+deb13u4) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../084-libsm6_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libsm-dev:amd64.
- Preparing to unpack .../085-libsm-dev_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm-dev:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libxt6t64:amd64.
- Preparing to unpack .../086-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...
- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...
- Selecting previously unselected package libxmu6:amd64.
- Preparing to unpack .../087-libxmu6_2%3a1.1.3-3+b4_amd64.deb ...
- Unpacking libxmu6:amd64 (2:1.1.3-3+b4) ...
- Selecting previously unselected package libxpm4:amd64.
- Preparing to unpack .../088-libxpm4_1%3a3.5.17-1+b3_amd64.deb ...
- Unpacking libxpm4:amd64 (1:3.5.17-1+b3) ...
- Selecting previously unselected package libxaw7:amd64.
- Preparing to unpack .../089-libxaw7_2%3a1.0.16-1_amd64.deb ...
- Unpacking libxaw7:amd64 (2:1.0.16-1) ...
- Selecting previously unselected package libxext-dev:amd64.
- Preparing to unpack .../090-libxext-dev_2%3a1.3.4-1+b3_amd64.deb ...
- Unpacking libxext-dev:amd64 (2:1.3.4-1+b3) ...
- Selecting previously unselected package libxt-dev:amd64.
- Preparing to unpack .../091-libxt-dev_1%3a1.2.1-1.2+b2_amd64.deb ...
- Unpacking libxt-dev:amd64 (1:1.2.1-1.2+b2) ...
- Selecting previously unselected package libxmu-headers.
- Preparing to unpack .../092-libxmu-headers_2%3a1.1.3-3_all.deb ...
- Unpacking libxmu-headers (2:1.1.3-3) ...
- Selecting previously unselected package libxmu-dev:amd64.
- Preparing to unpack .../093-libxmu-dev_2%3a1.1.3-3+b4_amd64.deb ...
- Unpacking libxmu-dev:amd64 (2:1.1.3-3+b4) ...
- Selecting previously unselected package libxpm-dev:amd64.
- Preparing to unpack .../094-libxpm-dev_1%3a3.5.17-1+b3_amd64.deb ...
- Unpacking libxpm-dev:amd64 (1:3.5.17-1+b3) ...
- Selecting previously unselected package libxaw7-dev:amd64.
- Preparing to unpack .../095-libxaw7-dev_2%3a1.0.16-1_amd64.deb ...
- Unpacking libxaw7-dev:amd64 (2:1.0.16-1) ...
- Selecting previously unselected package libxcomposite1:amd64.
- Preparing to unpack .../096-libxcomposite1_1%3a0.4.6-1_amd64.deb ...
- Unpacking libxcomposite1:amd64 (1:0.4.6-1) ...
- Selecting previously unselected package libxfixes3:amd64.
- Preparing to unpack .../097-libxfixes3_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxfixes-dev:amd64.
- Preparing to unpack .../098-libxfixes-dev_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes-dev:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxcomposite-dev:amd64.
- Preparing to unpack .../099-libxcomposite-dev_1%3a0.4.6-1_amd64.deb ...
- Unpacking libxcomposite-dev:amd64 (1:0.4.6-1) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../100-libxrender1_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libxcursor1:amd64.
- Preparing to unpack .../101-libxcursor1_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxcursor1:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libxrender-dev:amd64.
- Preparing to unpack .../102-libxrender-dev_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender-dev:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libxcursor-dev:amd64.
- Preparing to unpack .../103-libxcursor-dev_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxcursor-dev:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libxcvt0:amd64.
- Preparing to unpack .../104-libxcvt0_0.1.3-1_amd64.deb ...
- Unpacking libxcvt0:amd64 (0.1.3-1) ...
- Selecting previously unselected package libxcvt-dev:amd64.
- Preparing to unpack .../105-libxcvt-dev_0.1.3-1_amd64.deb ...
- Unpacking libxcvt-dev:amd64 (0.1.3-1) ...
- Selecting previously unselected package libxdamage1:amd64.
- Preparing to unpack .../106-libxdamage1_1%3a1.1.6-1+b2_amd64.deb ...
- Unpacking libxdamage1:amd64 (1:1.1.6-1+b2) ...
- Selecting previously unselected package libxdamage-dev:amd64.
- Preparing to unpack .../107-libxdamage-dev_1%3a1.1.6-1+b2_amd64.deb ...
- Unpacking libxdamage-dev:amd64 (1:1.1.6-1+b2) ...
- Selecting previously unselected package libxfont2:amd64.
- Preparing to unpack .../108-libxfont2_1%3a2.0.6-1+b3_amd64.deb ...
- Unpacking libxfont2:amd64 (1:2.0.6-1+b3) ...
- Selecting previously unselected package libxfont-dev.
- Preparing to unpack .../109-libxfont-dev_1%3a2.0.6-1+b3_amd64.deb ...
- Unpacking libxfont-dev (1:2.0.6-1+b3) ...
- Selecting previously unselected package libxft2:amd64.
- Preparing to unpack .../110-libxft2_2.3.6-1+b4_amd64.deb ...
- Unpacking libxft2:amd64 (2.3.6-1+b4) ...
- Selecting previously unselected package libxft-dev:amd64.
- Preparing to unpack .../111-libxft-dev_2.3.6-1+b4_amd64.deb ...
- Unpacking libxft-dev:amd64 (2.3.6-1+b4) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../112-libxi6_2%3a1.8.2-1_amd64.deb ...
- Unpacking libxi6:amd64 (2:1.8.2-1) ...
- Selecting previously unselected package libxi-dev:amd64.
- Preparing to unpack .../113-libxi-dev_2%3a1.8.2-1_amd64.deb ...
- Unpacking libxi-dev:amd64 (2:1.8.2-1) ...
- Selecting previously unselected package libxinerama1:amd64.
- Preparing to unpack .../114-libxinerama1_2%3a1.1.4-3+b4_amd64.deb ...
- Unpacking libxinerama1:amd64 (2:1.1.4-3+b4) ...
- Selecting previously unselected package libxinerama-dev:amd64.
- Preparing to unpack .../115-libxinerama-dev_2%3a1.1.4-3+b4_amd64.deb ...
- Unpacking libxinerama-dev:amd64 (2:1.1.4-3+b4) ...
- Selecting previously unselected package libxkbfile1:amd64.
- Preparing to unpack .../116-libxkbfile1_1%3a1.1.0-1+b4_amd64.deb ...
- Unpacking libxkbfile1:amd64 (1:1.1.0-1+b4) ...
- Selecting previously unselected package libxkbfile-dev:amd64.
- Preparing to unpack .../117-libxkbfile-dev_1%3a1.1.0-1+b4_amd64.deb ...
- Unpacking libxkbfile-dev:amd64 (1:1.1.0-1+b4) ...
- Selecting previously unselected package libxmuu-dev:amd64.
- Preparing to unpack .../118-libxmuu-dev_2%3a1.1.3-3+b4_amd64.deb ...
- Unpacking libxmuu-dev:amd64 (2:1.1.3-3+b4) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../119-libxrandr2_2%3a1.5.4-1+b3_amd64.deb ...
- Unpacking libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Selecting previously unselected package libxrandr-dev:amd64.
- Preparing to unpack .../120-libxrandr-dev_2%3a1.5.4-1+b3_amd64.deb ...
- Unpacking libxrandr-dev:amd64 (2:1.5.4-1+b3) ...
- Selecting previously unselected package libxres1:amd64.
- Preparing to unpack .../121-libxres1_2%3a1.2.1-1+b2_amd64.deb ...
- Unpacking libxres1:amd64 (2:1.2.1-1+b2) ...
- Selecting previously unselected package libxres-dev:amd64.
- Preparing to unpack .../122-libxres-dev_2%3a1.2.1-1+b2_amd64.deb ...
- Unpacking libxres-dev:amd64 (2:1.2.1-1+b2) ...
- Selecting previously unselected package libxss1:amd64.
- Preparing to unpack .../123-libxss1_1%3a1.2.3-1+b3_amd64.deb ...
- Unpacking libxss1:amd64 (1:1.2.3-1+b3) ...
- Selecting previously unselected package libxss-dev:amd64.
- Preparing to unpack .../124-libxss-dev_1%3a1.2.3-1+b3_amd64.deb ...
- Unpacking libxss-dev:amd64 (1:1.2.3-1+b3) ...
- Selecting previously unselected package libxtst6:amd64.
- Preparing to unpack .../125-libxtst6_2%3a1.2.5-1_amd64.deb ...
- Unpacking libxtst6:amd64 (2:1.2.5-1) ...
- Selecting previously unselected package libxtst-dev:amd64.
- Preparing to unpack .../126-libxtst-dev_2%3a1.2.5-1_amd64.deb ...
- Unpacking libxtst-dev:amd64 (2:1.2.5-1) ...
- Selecting previously unselected package libxv1:amd64.
- Preparing to unpack .../127-libxv1_2%3a1.0.11-1.1+b3_amd64.deb ...
- Unpacking libxv1:amd64 (2:1.0.11-1.1+b3) ...
- Selecting previously unselected package libxv-dev:amd64.
- Preparing to unpack .../128-libxv-dev_2%3a1.0.11-1.1+b3_amd64.deb ...
- Unpacking libxv-dev:amd64 (2:1.0.11-1.1+b3) ...
- Selecting previously unselected package libxvmc1:amd64.
- Preparing to unpack .../129-libxvmc1_2%3a1.0.12-2+b3_amd64.deb ...
- Unpacking libxvmc1:amd64 (2:1.0.12-2+b3) ...
- Selecting previously unselected package libxvmc-dev:amd64.
- Preparing to unpack .../130-libxvmc-dev_2%3a1.0.12-2+b3_amd64.deb ...
- Unpacking libxvmc-dev:amd64 (2:1.0.12-2+b3) ...
- Selecting previously unselected package libxxf86dga1:amd64.
- Preparing to unpack .../131-libxxf86dga1_2%3a1.1.5-1+b3_amd64.deb ...
- Unpacking libxxf86dga1:amd64 (2:1.1.5-1+b3) ...
- Selecting previously unselected package libxxf86dga-dev:amd64.
- Preparing to unpack .../132-libxxf86dga-dev_2%3a1.1.5-1+b3_amd64.deb ...
- Unpacking libxxf86dga-dev:amd64 (2:1.1.5-1+b3) ...
- Selecting previously unselected package libxxf86vm-dev:amd64.
- Preparing to unpack .../133-libxxf86vm-dev_1%3a1.1.4-1+b4_amd64.deb ...
- Unpacking libxxf86vm-dev:amd64 (1:1.1.4-1+b4) ...
- Selecting previously unselected package mesa-common-dev:amd64.
- Preparing to unpack .../134-mesa-common-dev_25.0.7-2_amd64.deb ...
- Unpacking mesa-common-dev:amd64 (25.0.7-2) ...
- Selecting previously unselected package mesa-vulkan-drivers:amd64.
- Preparing to unpack .../135-mesa-vulkan-drivers_25.0.7-2_amd64.deb ...
- Unpacking mesa-vulkan-drivers:amd64 (25.0.7-2) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../136-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package xserver-xorg-dev.
- Preparing to unpack .../137-xserver-xorg-dev_2%3a21.1.16-1.3+deb13u1_amd64.deb ...
- Unpacking xserver-xorg-dev (2:21.1.16-1.3+deb13u1) ...
- Selecting previously unselected package xorg-dev.
- Preparing to unpack .../138-xorg-dev_1%3a7.7+24+deb13u1_all.deb ...
- Unpacking xorg-dev (1:7.7+24+deb13u1) ...
- Setting up libxcb-dri3-0:amd64 (1.17.0-2+b1) ...
- Setting up libpixman-1-0:amd64 (0.44.0-3) ...
- Setting up bzip2-doc (1.0.8-6) ...
- Setting up libwayland-server0:amd64 (1.23.1-3) ...
- Setting up libx11-xcb1:amd64 (2:1.8.12-1) ...
- Setting up libpciaccess0:amd64 (0.17-3+b3) ...
- Setting up libxmu-headers (2:1.1.3-3) ...
- Setting up libpixman-1-dev:amd64 (0.44.0-3) ...
- Setting up libxdamage1:amd64 (1:1.1.6-1+b2) ...
- Setting up libpciaccess-dev:amd64 (0.17-3+b3) ...
- Setting up libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
- Setting up libxpm4:amd64 (1:3.5.17-1+b3) ...
- Setting up libglvnd-core-dev:amd64 (1.7.0-1+b2) ...
- Setting up libxi6:amd64 (2:1.8.2-1) ...
- Setting up libxrender1:amd64 (1:0.9.12-1) ...
- Setting up libglvnd0:amd64 (1.7.0-1+b2) ...
- Setting up libxcb-glx0:amd64 (1.17.0-2+b1) ...
- Setting up x11-common (1:7.7+24+deb13u1) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libsensors-config (1:3.6.2-2) ...
- Setting up libxxf86dga1:amd64 (2:1.1.5-1+b3) ...
- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Setting up libxvmc1:amd64 (2:1.0.12-2+b3) ...
- Setting up libopengl0:amd64 (1.7.0-1+b2) ...
- Setting up libelf1t64:amd64 (0.192-4) ...
- Setting up libxxf86vm1:amd64 (1:1.1.4-1+b4) ...
- Setting up libxcb-present0:amd64 (1.17.0-2+b1) ...
- Setting up libasound2-data (1.2.14-1) ...
- Setting up libfontenc1:amd64 (1:1.1.8-1+b2) ...
- Setting up libz3-4:amd64 (4.13.3-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgles2:amd64 (1.7.0-1+b2) ...
- Setting up libasound2t64:amd64 (1.2.14-1) ...
- Setting up libexpat1-dev:amd64 (2.7.1-2) ...
- Setting up libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Setting up libxcb-sync1:amd64 (1.17.0-2+b1) ...
- Setting up uuid-dev:amd64 (2.41-5) ...
- Setting up libgles1:amd64 (1.7.0-1+b2) ...
- Setting up libxinerama1:amd64 (2:1.1.4-3+b4) ...
- Setting up libxpm-dev:amd64 (1:3.5.17-1+b3) ...
- Setting up libxv1:amd64 (2:1.0.11-1.1+b3) ...
- Setting up fonts-dejavu-mono (2.37-8) ...
- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u4) ...
- Setting up libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Setting up fonts-dejavu-core (2.37-8) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libsensors5:amd64 (1:3.6.2-2) ...
- Setting up libvulkan1:amd64 (1.4.309.0-1) ...
- Setting up libxext-dev:amd64 (2:1.3.4-1+b3) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libfs6:amd64 (2:1.0.10-1) ...
- Setting up alsa-topology-conf (1.2.5.1-3) ...
- Setting up libxshmfence1:amd64 (1.3.3-1) ...
- Setting up libxcb-randr0:amd64 (1.17.0-2+b1) ...
- Setting up libxcvt0:amd64 (0.1.3-1) ...
- Setting up libglu1-mesa:amd64 (9.0.2-1.1+b3) ...
- Setting up libxss1:amd64 (1:1.2.3-1+b3) ...
- Setting up libxkbfile1:amd64 (1:1.1.0-1+b4) ...
- Setting up libopengl-dev:amd64 (1.7.0-1+b2) ...
- Setting up libasound2-dev:amd64 (1.2.14-1) ...
- Setting up libxmuu-dev:amd64 (2:1.1.3-3+b4) ...
- Setting up libdrm-common (2.4.124-2) ...
- Setting up libxcomposite1:amd64 (1:0.4.6-1) ...
- Setting up libxrender-dev:amd64 (1:0.9.12-1) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Setting up libxres1:amd64 (2:1.2.1-1+b2) ...
- Setting up libbz2-dev:amd64 (1.0.8-6) ...
- Setting up libxkbfile-dev:amd64 (1:1.1.0-1+b4) ...
- Setting up libwayland-client0:amd64 (1.23.1-3) ...
- Setting up libllvm19:amd64 (1:19.1.7-3+b1) ...
- Setting up libice6:amd64 (2:1.1.1-1) ...
- Setting up libxcvt-dev:amd64 (0.1.3-1) ...
- Setting up libice-dev:amd64 (2:1.1.1-1) ...
- Setting up libpng-tools (1.6.48-1+deb13u4) ...
- Setting up alsa-ucm-conf (1.2.14-1) ...
- Setting up fontconfig-config (2.15.0-2.3) ...
- Setting up libxtst6:amd64 (2:1.2.5-1) ...
- Setting up libxxf86dga-dev:amd64 (2:1.1.5-1+b3) ...
- Setting up libxxf86vm-dev:amd64 (1:1.1.4-1+b4) ...
- Setting up libxcursor1:amd64 (1:1.2.3-1) ...
- Setting up libpng-dev:amd64 (1.6.48-1+deb13u4) ...
- Setting up libfontenc-dev:amd64 (1:1.1.8-1+b2) ...
- Setting up libxss-dev:amd64 (1:1.2.3-1+b3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libxfixes-dev:amd64 (1:6.0.0-2+b4) ...
- Setting up libxv-dev:amd64 (2:1.0.11-1.1+b3) ...
- Setting up libxrandr-dev:amd64 (2:1.5.4-1+b3) ...
- Setting up libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libxinerama-dev:amd64 (2:1.1.4-3+b4) ...
- Setting up libfs-dev:amd64 (2:1.0.10-1) ...
- Setting up libdrm2:amd64 (2.4.124-2) ...
- Setting up libxres-dev:amd64 (2:1.2.1-1+b2) ...
- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...
- Setting up libxi-dev:amd64 (2:1.8.2-1) ...
- Setting up libsm6:amd64 (2:1.2.6-1) ...
- Setting up libxfont2:amd64 (1:2.0.6-1+b3) ...
- Setting up libxvmc-dev:amd64 (2:1.0.12-2+b3) ...
- Setting up libdrm-amdgpu1:amd64 (2.4.124-2) ...
- Setting up libxtst-dev:amd64 (2:1.2.5-1) ...
- Setting up libxdamage-dev:amd64 (1:1.1.6-1+b2) ...
- Setting up mesa-vulkan-drivers:amd64 (25.0.7-2) ...
- Setting up libxft2:amd64 (2.3.6-1+b4) ...
- Setting up libdrm-nouveau2:amd64 (2.4.124-2) ...
- Setting up libsm-dev:amd64 (2:1.2.6-1) ...
- Setting up libdrm-radeon1:amd64 (2.4.124-2) ...
- Setting up libxcomposite-dev:amd64 (1:0.4.6-1) ...
- Setting up libxcursor-dev:amd64 (1:1.2.3-1) ...
- Setting up libdrm-intel1:amd64 (2.4.124-2) ...
- Setting up libfreetype-dev:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...
- Setting up mesa-libgallium:amd64 (25.0.7-2) ...
- Setting up libdrm-dev:amd64 (2.4.124-2) ...
- Setting up libxmu6:amd64 (2:1.1.3-3+b4) ...
- Setting up libgbm1:amd64 (25.0.7-2) ...
- Setting up libfontconfig-dev:amd64 (2.15.0-2.3) ...
- Setting up libxfont-dev (1:2.0.6-1+b3) ...
- Setting up libgl1-mesa-dri:amd64 (25.0.7-2) ...
- Setting up libxaw7:amd64 (2:1.0.16-1) ...
- Setting up libegl-mesa0:amd64 (25.0.7-2) ...
- Setting up libxt-dev:amd64 (1:1.2.1-1.2+b2) ...
- Setting up libegl1:amd64 (1.7.0-1+b2) ...
- Setting up libxft-dev:amd64 (2.3.6-1+b4) ...
- Setting up libfontconfig1-dev:amd64 (2.15.0-2.3) ...
- Setting up libglx-mesa0:amd64 (25.0.7-2) ...
- Setting up libglx0:amd64 (1.7.0-1+b2) ...
- Setting up libxmu-dev:amd64 (2:1.1.3-3+b4) ...
- Setting up libgl1:amd64 (1.7.0-1+b2) ...
- Setting up libxaw7-dev:amd64 (2:1.0.16-1) ...
- Setting up libglx-dev:amd64 (1.7.0-1+b2) ...
- Setting up libgl-dev:amd64 (1.7.0-1+b2) ...
- Setting up libegl-dev:amd64 (1.7.0-1+b2) ...
- Setting up libglu1-mesa-dev:amd64 (9.0.2-1.1+b3) ...
- Setting up mesa-common-dev:amd64 (25.0.7-2) ...
- Setting up libgles-dev:amd64 (1.7.0-1+b2) ...
- Setting up xserver-xorg-dev (2:21.1.16-1.3+deb13u1) ...
- Setting up libglvnd-dev:amd64 (1.7.0-1+b2) ...
- Setting up xorg-dev (1:7.7+24+deb13u1) ...
- Setting up libgl1-mesa-dev:amd64 (25.0.7-2) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigarray-compat.1.1.0  (cached)
-> installed conf-libgl.1
-> installed conf-pkg-config.4
-> retrieved containers.3.17  (cached)
-> installed conf-libglu.1
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved ctypes.0.24.0  (cached)
-> installed bigarray-compat.1.1.0
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.2  (cached)
-> installed cppo.1.8.0
-> retrieved either.1.0.0  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ppx_cstubs.0.7.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> installed either.1.0.0
-> installed ppx_derivers.1.2.1
-> retrieved raylib.0.2.2  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved result.1.5  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed stdlib-shims.0.3.0
-> installed result.1.5
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed dune-configurator.3.22.2
-> installed integers.0.7.0
-> installed num.1.6
-> installed re.1.14.0
-> installed ocamlfind.1.9.8
-> installed containers.3.17
-> installed ctypes.0.24.0
-> installed ppxlib.0.35.0
-> installed ppx_cstubs.0.7.0
[ERROR] The compilation of raylib.0.2.2 failed at "dune build -p raylib -j 255 @install".

#=== ERROR while compiling raylib.0.2.2 =======================================#
# context              2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.3 | file:///home/opam/opam-repository
# path                 ~/.opam/4.14/.opam-switch/build/raylib.0.2.2
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p raylib -j 255 @install
# exit-code            1
# env-file             ~/.opam/log/raylib-7-095492.env
# output-file          ~/.opam/log/raylib-7-095492.out
### output ###
# (cd _build/default/src/c && /usr/bin/patch --binary -p1) < _build/default/src/c/linux.patch
# patching file vendor/src/config.h
# File "src/c/dune", lines 34-55, characters 0-569:
# 34 | (rule
# 35 |  (alias build-raylib)
# 36 |  (targets libraylib.a dllraylib.so)
# ....
# 53 |     (run make -C vendor/src clean)
# 54 |     (run make -C vendor/src RAYLIB_LIBTYPE=SHARED -j 8)
# 55 |     (copy vendor/src/libraylib.so.3.0.0 dllraylib.so)))))
# (cd _build/default/src/c && /usr/bin/make -C vendor/src RAYLIB_LIBTYPE=STATIC -j 8)
# make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/raylib.0.2.2/_build/default/src/c/vendor/src'
# gcc -c core.c -Wall -D_DEFAULT_SOURCE -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -s -O1 -Werror=implicit-function-declaration -I. -Iexternal/glfw/include -Iexternal/glfw/deps/mingw -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33
# gcc -c shapes.c -Wall -D_DEFAULT_SOURCE -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -s -O1 -Werror=implicit-function-declaration -I. -Iexternal/glfw/include -Iexternal/glfw/deps/mingw -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33
# gcc -c textures.c -Wall -D_DEFAULT_SOURCE -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -s -O1 -Werror=implicit-function-declaration -I. -Iexternal/glfw/include -Iexternal/glfw/deps/mingw -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33
# gcc -c text.c -Wall -D_DEFAULT_SOURCE -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -s -O1 -Werror=implicit-function-declaration -I. -Iexternal/glfw/include -Iexternal/glfw/deps/mingw -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33
# gcc -c utils.c -Wall -D_DEFAULT_SOURCE -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -s -O1 -Werror=implicit-function-declaration -I. -Iexternal/glfw/include -Iexternal/glfw/deps/mingw -DPLATFORM_DESKTOP
# gcc -Wall -D_DEFAULT_SOURCE -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -s -O1 -Werror=implicit-function-declaration  -c rglfw.c  -I. -Iexternal/glfw/include -Iexternal/glfw/deps/mingw -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33
# gcc -c models.c -Wall -D_DEFAULT_SOURCE -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -s -O1 -Werror=implicit-function-declaration -I. -Iexternal/glfw/include -Iexternal/glfw/deps/mingw -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33
# gcc -c raudio.c -Wall -D_DEFAULT_SOURCE -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -s -O1 -Werror=implicit-function-declaration -I. -Iexternal/glfw/include -Iexternal/glfw/deps/mingw -DPLATFORM_DESKTOP
# make: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/raylib.0.2.2/_build/default/src/c/vendor/src'
# In file included from models.c:78:
# external/cgltf.h: In function 'cgltf_parse_file':
# external/cgltf.h:951:17: warning: unused variable 'memory_alloc' [-Wunused-variable]
#   951 |         void* (*memory_alloc)(void*, cgltf_size) = options->memory.alloc ? options->memory.alloc : &cgltf_default_alloc;
#       |                 ^~~~~~~~~~~~
# external/cgltf.h: In function 'cgltf_load_buffer_file':
# external/cgltf.h:998:16: warning: unused variable 'memory_free' [-Wunused-variable]
#   998 |         void (*memory_free)(void*, void*) = options->memory.free ? options->memory.free : &cgltf_default_free;
#       |                ^~~~~~~~~~~
# In file included from text.c:70:
# external/stb_truetype.h:4902:15: warning: 'stbtt_CompareUTF8toUTF16_bigendian' defined but not used [-Wunused-function]
#  4902 | STBTT_DEF int stbtt_CompareUTF8toUTF16_bigendian(const char *s1, int len1, const char *s2, int len2)
#       |               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:4897:15: warning: 'stbtt_FindMatchingFont' defined but not used [-Wunused-function]
#  4897 | STBTT_DEF int stbtt_FindMatchingFont(const unsigned char *fontdata, const char *name, int flags)
#       |               ^~~~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:4887:15: warning: 'stbtt_GetNumberOfFonts' defined but not used [-Wunused-function]
#  4887 | STBTT_DEF int stbtt_GetNumberOfFonts(const unsigned char *data)
#       |               ^~~~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:4875:15: warning: 'stbtt_BakeFontBitmap' defined but not used [-Wunused-function]
#  4875 | STBTT_DEF int stbtt_BakeFontBitmap(const unsigned char *data, int offset,
#       |               ^~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:4762:23: warning: 'stbtt_GetFontNameString' defined but not used [-Wunused-function]
#  4762 | STBTT_DEF const char *stbtt_GetFontNameString(const stbtt_fontinfo *font, int *length, int platformID, int encodingID, int languageID, int nameID)
#       |                       ^~~~~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:4705:16: warning: 'stbtt_FreeSDF' defined but not used [-Wunused-function]
#  4705 | STBTT_DEF void stbtt_FreeSDF(unsigned char *bitmap, void *userdata)
#       |                ^~~~~~~~~~~~~
# external/stb_truetype.h:4306:16: warning: 'stbtt_GetPackedQuad' defined but not used [-Wunused-function]
#  4306 | STBTT_DEF void stbtt_GetPackedQuad(const stbtt_packedchar *chardata, int pw, int ph, int char_index, float *xpos, float *ypos, stbtt_aligned_quad *q, int align_to_integer)
#       |                ^~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:4293:16: warning: 'stbtt_GetScaledFontVMetrics' defined but not used [-Wunused-function]
#  4293 | STBTT_DEF void stbtt_GetScaledFontVMetrics(const unsigned char *fontdata, int index, float size, float *ascent, float *descent, float *lineGap)
#       |                ^~~~~~~~~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:4281:15: warning: 'stbtt_PackFontRange' defined but not used [-Wunused-function]
#  4281 | STBTT_DEF int stbtt_PackFontRange(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, float font_size,
#       |               ^~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:3948:16: warning: 'stbtt_PackSetSkipMissingCodepoints' defined but not used [-Wunused-function]
#  3948 | STBTT_DEF void stbtt_PackSetSkipMissingCodepoints(stbtt_pack_context *spc, int skip)
#       |                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:3938:16: warning: 'stbtt_PackSetOversampling' defined but not used [-Wunused-function]
#  3938 | STBTT_DEF void stbtt_PackSetOversampling(stbtt_pack_context *spc, unsigned int h_oversample, unsigned int v_oversample)
#       |                ^~~~~~~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:3932:16: warning: 'stbtt_PackEnd' defined but not used [-Wunused-function]
#  3932 | STBTT_DEF void stbtt_PackEnd  (stbtt_pack_context *spc)
#       |                ^~~~~~~~~~~~~
# external/stb_truetype.h:3900:15: warning: 'stbtt_PackBegin' defined but not used [-Wunused-function]
#  3900 | STBTT_DEF int stbtt_PackBegin(stbtt_pack_context *spc, unsigned char *pixels, int pw, int ph, int stride_in_bytes, int padding, void *alloc_context)
#       |               ^~~~~~~~~~~~~~~
# external/stb_truetype.h:3802:16: warning: 'stbtt_GetBakedQuad' defined but not used [-Wunused-function]
#  3802 | STBTT_DEF void stbtt_GetBakedQuad(const stbtt_bakedchar *chardata, int pw, int ph, int char_index, float *xpos, float *ypos, stbtt_aligned_quad *q, int opengl_fillrule)
#       |                ^~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:3745:16: warning: 'stbtt_MakeCodepointBitmap' defined but not used [-Wunused-function]
#  3745 | STBTT_DEF void stbtt_MakeCodepointBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int codepoint)
#       |                ^~~~~~~~~~~~~~~~~~~~~~~~~
# In file included from rglfw.c:90:
# external/glfw/src/posix_time.c:30:9: warning: "_POSIX_C_SOURCE" redefined
#    30 | #define _POSIX_C_SOURCE 199309L
#       |         ^~~~~~~~~~~~~~~
# external/stb_truetype.h:3730:16: warning: 'stbtt_MakeCodepointBitmapSubpixelPrefilter' defined but not used [-Wunused-function]
#  3730 | STBTT_DEF void stbtt_MakeCodepointBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int codepoint)
#       |                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33,
#                  from /usr/include/stdint.h:26,
#                  from /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h:9,
#                  from external/glfw/src/../include/GLFW/glfw3.h:108,
#                  from external/glfw/src/internal.h:49,
#                  from external/glfw/src/context.c:30,
#                  from rglfw.c:54:
# /usr/include/features.h:313:10: note: this is the location of the previous definition
#   313 | # define _POSIX_C_SOURCE        200809L
#       |          ^~~~~~~~~~~~~~~
# external/stb_truetype.h:3696:26: warning: 'stbtt_GetGlyphBitmap' defined but not used [-Wunused-function]
#  3696 | STBTT_DEF unsigned char *stbtt_GetGlyphBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int glyph, int *width, int *height, int *xoff, int *yoff)
#       |                          ^~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:3651:16: warning: 'stbtt_FreeBitmap' defined but not used [-Wunused-function]
#  3651 | STBTT_DEF void stbtt_FreeBitmap(unsigned char *bitmap, void *userdata)
#       |                ^~~~~~~~~~~~~~~~
# external/stb_truetype.h:2762:16: warning: 'stbtt_GetCodepointBitmapBox' defined but not used [-Wunused-function]
#  2762 | STBTT_DEF void stbtt_GetCodepointBitmapBox(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1)
#       |                ^~~~~~~~~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:2724:15: warning: 'stbtt_GetCodepointSVG' defined but not used [-Wunused-function]
#  2724 | STBTT_DEF int stbtt_GetCodepointSVG(const stbtt_fontinfo *info, int unicode_codepoint, const char **svg)
#       |               ^~~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:2685:16: warning: 'stbtt_FreeShape' defined but not used [-Wunused-function]
#  2685 | STBTT_DEF void stbtt_FreeShape(const stbtt_fontinfo *info, stbtt_vertex *v)
#       |                ^~~~~~~~~~~~~~~
# external/stb_truetype.h:2665:16: warning: 'stbtt_GetFontBoundingBox' defined but not used [-Wunused-function]
#  2665 | STBTT_DEF void stbtt_GetFontBoundingBox(const stbtt_fontinfo *info, int *x0, int *y0, int *x1, int *y1)
#       |                ^~~~~~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:2654:16: warning: 'stbtt_GetFontVMetricsOS2' defined but not used [-Wunused-function]
#  2654 | STBTT_DEF int  stbtt_GetFontVMetricsOS2(const stbtt_fontinfo *info, int *typoAscent, int *typoDescent, int *typoLineGap)
#       |                ^~~~~~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:2635:16: warning: 'stbtt_GetCodepointKernAdvance' defined but not used [-Wunused-function]
#  2635 | STBTT_DEF int  stbtt_GetCodepointKernAdvance(const stbtt_fontinfo *info, int ch1, int ch2)
#       |                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:2327:15: warning: 'stbtt_GetKerningTable' defined but not used [-Wunused-function]
#  2327 | STBTT_DEF int stbtt_GetKerningTable(const stbtt_fontinfo *info, stbtt_kerningentry* table, int table_length)
#       |               ^~~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:2312:16: warning: 'stbtt_GetKerningTableLength' defined but not used [-Wunused-function]
#  2312 | STBTT_DEF int  stbtt_GetKerningTableLength(const stbtt_fontinfo *info)
#       |                ^~~~~~~~~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:1641:15: warning: 'stbtt_IsGlyphEmpty' defined but not used [-Wunused-function]
#  1641 | STBTT_DEF int stbtt_IsGlyphEmpty(const stbtt_fontinfo *info, int glyph_index)
#       |               ^~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:1636:15: warning: 'stbtt_GetCodepointBox' defined but not used [-Wunused-function]
#  1636 | STBTT_DEF int stbtt_GetCodepointBox(const stbtt_fontinfo *info, int codepoint, int *x0, int *y0, int *x1, int *y1)
#       |               ^~~~~~~~~~~~~~~~~~~~~
# external/stb_truetype.h:1584:15: warning: 'stbtt_GetCodepointShape' defined but not used [-Wunused-function]
#  1584 | STBTT_DEF int stbtt_GetCodepointShape(const stbtt_fontinfo *info, int unicode_codepoint, stbtt_vertex **vertices)
#       |               ^~~~~~~~~~~~~~~~~~~~~~~
# In file included from raudio.c:181:
# external/stb_vorbis.h: In function 'stbv_decode_residue':
# external/stb_vorbis.h:900:46: warning: statement with no effect [-Wunused-value]
#   900 | #define stbv_temp_free(f,p)                  0
#       |                                              ^
# external/stb_vorbis.h:2275:4: note: in expansion of macro 'stbv_temp_free'
#  2275 |    stbv_temp_free(f,part_classdata);
#       |    ^~~~~~~~~~~~~~
# external/stb_vorbis.h: In function 'stbv_inverse_mdct':
# external/stb_vorbis.h:900:46: warning: statement with no effect [-Wunused-value]
#   900 | #define stbv_temp_free(f,p)                  0
#       |                                              ^
# external/stb_vorbis.h:2924:4: note: in expansion of macro 'stbv_temp_free'
#  2924 |    stbv_temp_free(f,buf2);
#       |    ^~~~~~~~~~~~~~
# textures.c:3058:14: warning: 'LoadAnimatedGIF' defined but not used [-Wunused-function]
#  3058 | static Image LoadAnimatedGIF(const char *fileName, int *frames, int **delays)
#       |              ^~~~~~~~~~~~~~~
# raudio.c: In function 'LoadMP3':
# raudio.c:2101:65: error: passing argument 3 of 'drmp3_open_file_and_read_f32' from incompatible pointer type [-Wincompatible-pointer-types]
#  2101 |     wave.data = drmp3_open_file_and_read_f32(fileName, &config, &totalFrameCount);
#       |                                                                 ^~~~~~~~~~~~~~~~
#       |                                                                 |
#       |                                                                 long long unsigned int *
# In file included from raudio.c:216:
# external/dr_mp3.h:3767:96: note: expected 'drmp3_uint64 *' {aka 'long unsigned int *'} but argument is of type 'long long unsigned int *'
#  3767 | float* drmp3_open_file_and_read_f32(const char* filePath, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount)
#       |                                                                                  ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
# make: *** [Makefile:570: raudio.o] Error 1
# make: *** Waiting for unfinished jobs....
# In file included from models.c:39:
# external/par_shapes.h: In function 'par_shapes_create_disk':
# raylib.h:106:33: warning: argument 1 range [18446744069414584320, 18446744073709551610] exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=]
#   106 |     #define RL_MALLOC(sz)       malloc(sz)
#       |                                 ^~~~~~~~~~
# models.c:83:35: note: in expansion of macro 'RL_MALLOC'
#    83 |     #define PAR_MALLOC(T, N) ((T*)RL_MALLOC(N*sizeof(T)))
#       |                                   ^~~~~~~~~
# external/par_shapes.h:684:23: note: in expansion of macro 'PAR_MALLOC'
#   684 |     mesh->triangles = PAR_MALLOC(PAR_SHAPES_T, 3 * mesh->ntriangles);
#       |                       ^~~~~~~~~~
# In file included from models.c:48:
# /usr/include/stdlib.h:672:14: note: in a call to allocation function 'malloc' declared here
#   672 | extern void *malloc (size_t __size) __THROW __attribute_malloc__
#       |              ^~~~~~



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build raylib 0.2.2
+- 
+- The following changes have been performed
| - install bigarray-compat     1.1.0
| - install conf-libgl          1
| - install conf-libglu         1
| - install conf-pkg-config     4
| - install containers          3.17
| - install cppo                1.8.0
| - install csexp               1.5.2
| - install ctypes              0.24.0
| - install dune-configurator   3.22.2
| - install either              1.0.0
| - install integers            0.7.0
| - install num                 1.6
| - install ocaml-compiler-libs v0.12.4
| - install ocamlfind           1.9.8
| - install ppx_cstubs          0.7.0
| - install ppx_derivers        1.2.1
| - install ppxlib              0.35.0
| - install re                  1.14.0
| - install result              1.5
| - install sexplib0            v0.17.0
| - install stdlib-shims        0.3.0
+- 
# To update the current shell environment, run: eval $(opam env)

The former state can be restored with:
    /usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20260413150738.export"
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall raylib.0.2.2;
        res=$?;
        test "$res" != 31 && exit "$res";
        export OPAMCLI=2.0;
        build_dir=$(opam var prefix)/.opam-switch/build;
        failed=$(ls "$build_dir");
        partial_fails="";
        for pkg in $failed; do
          if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'raylib.0.2.2' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 1
2026-04-13 15:22.42: Job failed: Failed: Build failed
2026-04-13 15:22.42: Log analysis:
2026-04-13 15:22.42: >>> 
[ERROR] The compilation of raylib.0.2.2 failed at "dune build -p raylib -j 255 @install".
 (score = 20)
2026-04-13 15:22.42: >>> 
# raudio.c:2101:65: error: passing argument 3 of 'drmp3_open_file_and_read_f32' from incompatible pointer type [-Wincompatible-pointer-types]
 (score = 30)
2026-04-13 15:22.42: passing argument 3 of 'drmp3_open_file_and_read_f32' from incompatible pointer type [-Wincompatible-pointer-types]