- github
- ocaml
- opam-repository
- c56e58
- compilers,4.14,dune.3.20.2,revdeps,cairo2.0.6
(not at the head of any monitored branch or PR)
2025-09-03 22:19.03: New job: test cairo2.0.6 with dune.3.20.2, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/28437/head (c56e58d25e43ce7dd35f9942ad32b42e22d608c9)
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/28437/head" && git reset --hard c56e58d2
git fetch origin master
git merge --no-edit 48e6fa91c818759730429373230507f2458bffc3
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:4603dfe290f76ff9a2d24e81f3f31209452440f74fe71806d899fe199d10f678
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.2 3.20.2
RUN opam reinstall dune.3.20.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-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.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall cairo2.0.6; \
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" != 'cairo2.0.6' && 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 cairo2.0.6) || true
RUN opam reinstall --with-test --verbose cairo2.0.6; \
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" != 'cairo2.0.6' && 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-09-03 22:19.03: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:4603dfe290f76ff9a2d24e81f3f31209452440f74fe71806d899fe199d10f678-dune.3.20.2-cairo2.0.6-c56e58d25e43ce7dd35f9942ad32b42e22d608c9"
2025-09-03 22:19.03: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:4603dfe290f76ff9a2d24e81f3f31209452440f74fe71806d899fe199d10f678)
(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.2 3.20.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.20.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-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.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 cairo2.0.6;\
\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\" != 'cairo2.0.6' && 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 cairo2.0.6) || true"))
(run (shell "opam reinstall --with-test --verbose cairo2.0.6;\
\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\" != 'cairo2.0.6' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-09-03 22:19.03: Waiting for resource in pool OCluster
2025-09-04 11:49.49: Waiting for worker…
2025-09-04 11:52.24: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 48e6fa91c8 Merge pull request #28440 from hannesm/align-git-kv-git-net-dev-repo
Merge made by the 'ort' strategy.
packages/chrome-trace/chrome-trace.3.20.2/opam | 41 ++++++++++++
.../dune-action-plugin.3.20.2/opam | 54 ++++++++++++++++
.../dune-build-info/dune-build-info.3.20.2/opam | 47 ++++++++++++++
.../dune-configurator.3.20.2/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.20.2/opam | 44 +++++++++++++
.../dune-private-libs.3.20.2/opam | 52 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.20.2/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.20.2/opam | 46 ++++++++++++++
packages/dune-site/dune-site.3.20.2/opam | 39 ++++++++++++
packages/dune/dune.3.20.2/opam | 74 ++++++++++++++++++++++
packages/dyn/dyn.3.20.2/opam | 42 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.20.2/opam | 45 +++++++++++++
packages/ordering/ordering.3.20.2/opam | 40 ++++++++++++
packages/stdune/stdune.3.20.2/opam | 46 ++++++++++++++
packages/xdg/xdg.3.20.2/opam | 41 ++++++++++++
15 files changed, 705 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.20.2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.20.2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.20.2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.20.2/opam
create mode 100644 packages/dune-glob/dune-glob.3.20.2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.20.2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.20.2/opam
create mode 100644 packages/dune-site/dune-site.3.20.2/opam
create mode 100644 packages/dune/dune.3.20.2/opam
create mode 100644 packages/dyn/dyn.3.20.2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.20.2/opam
create mode 100644 packages/ordering/ordering.3.20.2/opam
create mode 100644 packages/stdune/stdune.3.20.2/opam
create mode 100644 packages/xdg/xdg.3.20.2/opam
(from ocaml/opam:debian-12-ocaml-4.14@sha256:4603dfe290f76ff9a2d24e81f3f31209452440f74fe71806d899fe199d10f678)
2025-09-04 11:52.30 ---> using "77a40307c411f5d1823247ca3b8b3ea2aa56acde8c01fd84fb59cd0eebf33d78" 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-09-04 11:52.30 ---> using "c026694a7f8bbf828d61abaf1ba9ea717728e71cdd844e07de0a7a47bf374891" 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-09-04 11:52.30 ---> using "1fcdc6aa00cef1b6c13f5ac5ea17ef3b8e8ee84bdcf4cec01b64e5dcf9a8851e" 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-09-04 11:52.30 ---> using "2d46141becfbbbbbbe98c1384933b2bdb43bfeae47155579163d54a9d154d5d9" 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-09-04 11:52.30 ---> using "967ac08931cb898a3361431f42e1141490c4262301076d051ed73170eaf25424" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-09-04 11:52.31 ---> using "c94c80755ee2b6b21028e6f1b0238bb710783ad1365abe725a5560b4002bc908" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-09-04 11:52.31 ---> using "4475aed4fb3f63fb51711edc14a1550417bec1fbeeda35e50af9a14a7c56f9c2" 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-security bookworm-security/main amd64 Packages [277 kB]
- Fetched 380 kB in 0s (1212 kB/s)
- Reading package lists...
2025-09-04 11:52.31 ---> using "01b36b6b852c01cb468dc16f633ffec5a116bebc09b76dda91b15f4c7b50cb68" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.20.2 3.20.2"))
dune is now pinned to version 3.20.2
2025-09-04 11:52.31 ---> using "19c9422e2eb21e20e2287953d689ef1f5c42ccd6055b4cf8487665957d77577d" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.20.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-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.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.20.2 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.20.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.2 (cached)
-> installed dune.3.20.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-04 11:52.31 ---> using "b7cbbf5da597b225d6f3f7f2b6670f325ba39c8f0c1ba72b9afab4e6cc719b2c" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall cairo2.0.6;\
\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\" != 'cairo2.0.6' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
cairo2.0.6 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 5 packages
- install cairo2 0.6
- install conf-cairo 1 [required by cairo2]
- install conf-pkg-config 4 [required by conf-cairo]
- install csexp 1.5.2 [required by dune-configurator]
- install dune-configurator 3.20.2 [required by cairo2]
The following system packages will first need to be installed:
libcairo2-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" "libcairo2-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libpython3.11-minimal: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 .../libpython3.11-minimal_3.11.2-6+deb12u6_amd64.deb ...
- Unpacking libpython3.11-minimal:amd64 (3.11.2-6+deb12u6) ...
- Selecting previously unselected package python3.11-minimal.
- Preparing to unpack .../python3.11-minimal_3.11.2-6+deb12u6_amd64.deb ...
- Unpacking python3.11-minimal (3.11.2-6+deb12u6) ...
- Setting up libpython3.11-minimal:amd64 (3.11.2-6+deb12u6) ...
- Setting up python3.11-minimal (3.11.2-6+deb12u6) ...
- Selecting previously unselected package python3-minimal.
- (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 ... 19054 files and directories currently installed.)
- Preparing to unpack .../python3-minimal_3.11.2-1+b1_amd64.deb ...
- Unpacking python3-minimal (3.11.2-1+b1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../media-types_10.0.0_all.deb ...
- Unpacking media-types (10.0.0) ...
- Selecting previously unselected package libpython3.11-stdlib:amd64.
- Preparing to unpack .../libpython3.11-stdlib_3.11.2-6+deb12u6_amd64.deb ...
- Unpacking libpython3.11-stdlib:amd64 (3.11.2-6+deb12u6) ...
- Selecting previously unselected package python3.11.
- Preparing to unpack .../python3.11_3.11.2-6+deb12u6_amd64.deb ...
- Unpacking python3.11 (3.11.2-6+deb12u6) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../libpython3-stdlib_3.11.2-1+b1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.11.2-1+b1) ...
- Setting up python3-minimal (3.11.2-1+b1) ...
- Selecting previously unselected package python3.
- (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 ... 19464 files and directories currently installed.)
- Preparing to unpack .../00-python3_3.11.2-1+b1_amd64.deb ...
- Unpacking python3 (3.11.2-1+b1) ...
- Selecting previously unselected package uuid-dev:amd64.
- Preparing to unpack .../01-uuid-dev_2.38.1-5+deb12u3_amd64.deb ...
- Unpacking uuid-dev:amd64 (2.38.1-5+deb12u3) ...
- Selecting previously unselected package libblkid-dev:amd64.
- Preparing to unpack .../02-libblkid-dev_2.38.1-5+deb12u3_amd64.deb ...
- Unpacking libblkid-dev:amd64 (2.38.1-5+deb12u3) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../03-libbrotli-dev_1.0.9-2+b6_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.0.9-2+b6) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../04-libpixman-1-0_0.42.2-1_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.42.2-1) ...
- Selecting previously unselected package libxcb-render0:amd64.
- Preparing to unpack .../05-libxcb-render0_1.15-1_amd64.deb ...
- Unpacking libxcb-render0:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../06-libxcb-shm0_1.15-1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.15-1) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../07-libxrender1_1%3a0.9.10-1.1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.10-1.1) ...
- Selecting previously unselected package libcairo2:amd64.
- Preparing to unpack .../08-libcairo2_1.16.0-7_amd64.deb ...
- Unpacking libcairo2:amd64 (1.16.0-7) ...
- Selecting previously unselected package libglib2.0-0:amd64.
- Preparing to unpack .../09-libglib2.0-0_2.74.6-2+deb12u6_amd64.deb ...
- Unpacking libglib2.0-0:amd64 (2.74.6-2+deb12u6) ...
- Selecting previously unselected package libcairo-gobject2:amd64.
- Preparing to unpack .../10-libcairo-gobject2_1.16.0-7_amd64.deb ...
- Unpacking libcairo-gobject2:amd64 (1.16.0-7) ...
- Selecting previously unselected package liblzo2-2:amd64.
- Preparing to unpack .../11-liblzo2-2_2.10-2_amd64.deb ...
- Unpacking liblzo2-2:amd64 (2.10-2) ...
- Selecting previously unselected package libcairo-script-interpreter2:amd64.
- Preparing to unpack .../12-libcairo-script-interpreter2_1.16.0-7_amd64.deb ...
- Unpacking libcairo-script-interpreter2:amd64 (1.16.0-7) ...
- Selecting previously unselected package libexpat1-dev:amd64.
- Preparing to unpack .../13-libexpat1-dev_2.5.0-1+deb12u1_amd64.deb ...
- Unpacking libexpat1-dev:amd64 (2.5.0-1+deb12u1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../14-zlib1g-dev_1%3a1.2.13.dfsg-1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Selecting previously unselected package libpng-dev:amd64.
- Preparing to unpack .../15-libpng-dev_1.6.39-2_amd64.deb ...
- Unpacking libpng-dev:amd64 (1.6.39-2) ...
- Selecting previously unselected package libfreetype-dev:amd64.
- Preparing to unpack .../16-libfreetype-dev_2.12.1+dfsg-5+deb12u4_amd64.deb ...
- Unpacking libfreetype-dev:amd64 (2.12.1+dfsg-5+deb12u4) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../17-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../18-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../19-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../20-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Selecting previously unselected package libfontconfig-dev:amd64.
- Preparing to unpack .../21-libfontconfig-dev_2.14.1-4_amd64.deb ...
- Unpacking libfontconfig-dev:amd64 (2.14.1-4) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../22-libffi-dev_3.4.4-1_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.4-1) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../23-libglib2.0-data_2.74.6-2+deb12u6_all.deb ...
- Unpacking libglib2.0-data (2.74.6-2+deb12u6) ...
- Selecting previously unselected package libelf1:amd64.
- Preparing to unpack .../24-libelf1_0.188-2.1_amd64.deb ...
- Unpacking libelf1:amd64 (0.188-2.1) ...
- Selecting previously unselected package libglib2.0-bin.
- Preparing to unpack .../25-libglib2.0-bin_2.74.6-2+deb12u6_amd64.deb ...
- Unpacking libglib2.0-bin (2.74.6-2+deb12u6) ...
- Selecting previously unselected package python3-lib2to3.
- Preparing to unpack .../26-python3-lib2to3_3.11.2-3_all.deb ...
- Unpacking python3-lib2to3 (3.11.2-3) ...
- Selecting previously unselected package python3-distutils.
- Preparing to unpack .../27-python3-distutils_3.11.2-3_all.deb ...
- Unpacking python3-distutils (3.11.2-3) ...
- Selecting previously unselected package libglib2.0-dev-bin.
- Preparing to unpack .../28-libglib2.0-dev-bin_2.74.6-2+deb12u6_amd64.deb ...
- Unpacking libglib2.0-dev-bin (2.74.6-2+deb12u6) ...
- Selecting previously unselected package libsepol-dev:amd64.
- Preparing to unpack .../29-libsepol-dev_3.4-2.1_amd64.deb ...
- Unpacking libsepol-dev:amd64 (3.4-2.1) ...
- Selecting previously unselected package libpcre2-16-0:amd64.
- Preparing to unpack .../30-libpcre2-16-0_10.42-1_amd64.deb ...
- Unpacking libpcre2-16-0:amd64 (10.42-1) ...
- Selecting previously unselected package libpcre2-32-0:amd64.
- Preparing to unpack .../31-libpcre2-32-0_10.42-1_amd64.deb ...
- Unpacking libpcre2-32-0:amd64 (10.42-1) ...
- Selecting previously unselected package libpcre2-posix3:amd64.
- Preparing to unpack .../32-libpcre2-posix3_10.42-1_amd64.deb ...
- Unpacking libpcre2-posix3:amd64 (10.42-1) ...
- Selecting previously unselected package libpcre2-dev:amd64.
- Preparing to unpack .../33-libpcre2-dev_10.42-1_amd64.deb ...
- Unpacking libpcre2-dev:amd64 (10.42-1) ...
- Selecting previously unselected package libselinux1-dev:amd64.
- Preparing to unpack .../34-libselinux1-dev_3.4-1+b6_amd64.deb ...
- Unpacking libselinux1-dev:amd64 (3.4-1+b6) ...
- Selecting previously unselected package libmount-dev:amd64.
- Preparing to unpack .../35-libmount-dev_2.38.1-5+deb12u3_amd64.deb ...
- Unpacking libmount-dev:amd64 (2.38.1-5+deb12u3) ...
- Selecting previously unselected package libglib2.0-dev:amd64.
- Preparing to unpack .../36-libglib2.0-dev_2.74.6-2+deb12u6_amd64.deb ...
- Unpacking libglib2.0-dev:amd64 (2.74.6-2+deb12u6) ...
- Selecting previously unselected package libpixman-1-dev:amd64.
- Preparing to unpack .../37-libpixman-1-dev_0.42.2-1_amd64.deb ...
- Unpacking libpixman-1-dev:amd64 (0.42.2-1) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../38-x11-common_1%3a7.7+23_all.deb ...
- Unpacking x11-common (1:7.7+23) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../39-libice6_2%3a1.0.10-1_amd64.deb ...
- Unpacking libice6:amd64 (2:1.0.10-1) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../40-libsm6_2%3a1.2.3-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.3-1) ...
- Selecting previously unselected package libice-dev:amd64.
- Preparing to unpack .../41-libice-dev_2%3a1.0.10-1_amd64.deb ...
- Unpacking libice-dev:amd64 (2:1.0.10-1) ...
- Selecting previously unselected package libsm-dev:amd64.
- Preparing to unpack .../42-libsm-dev_2%3a1.2.3-1_amd64.deb ...
- Unpacking libsm-dev:amd64 (2:1.2.3-1) ...
- Selecting previously unselected package libxcb-render0-dev:amd64.
- Preparing to unpack .../43-libxcb-render0-dev_1.15-1_amd64.deb ...
- Unpacking libxcb-render0-dev:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-shm0-dev:amd64.
- Preparing to unpack .../44-libxcb-shm0-dev_1.15-1_amd64.deb ...
- Unpacking libxcb-shm0-dev:amd64 (1.15-1) ...
- Selecting previously unselected package libxext-dev:amd64.
- Preparing to unpack .../45-libxext-dev_2%3a1.3.4-1+b1_amd64.deb ...
- Unpacking libxext-dev:amd64 (2:1.3.4-1+b1) ...
- Selecting previously unselected package libxrender-dev:amd64.
- Preparing to unpack .../46-libxrender-dev_1%3a0.9.10-1.1_amd64.deb ...
- Unpacking libxrender-dev:amd64 (1:0.9.10-1.1) ...
- Selecting previously unselected package libcairo2-dev:amd64.
- Preparing to unpack .../47-libcairo2-dev_1.16.0-7_amd64.deb ...
- Unpacking libcairo2-dev:amd64 (1.16.0-7) ...
- Selecting previously unselected package libicu72:amd64.
- Preparing to unpack .../48-libicu72_72.1-3+deb12u1_amd64.deb ...
- Unpacking libicu72:amd64 (72.1-3+deb12u1) ...
- Selecting previously unselected package libpng-tools.
- Preparing to unpack .../49-libpng-tools_1.6.39-2_amd64.deb ...
- Unpacking libpng-tools (1.6.39-2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../50-libxml2_2.9.14+dfsg-1.3~deb12u4_amd64.deb ...
- Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u4) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../51-shared-mime-info_2.2-1_amd64.deb ...
- Unpacking shared-mime-info (2.2-1) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../52-xdg-user-dirs_0.18-1_amd64.deb ...
- Unpacking xdg-user-dirs (0.18-1) ...
- Setting up media-types (10.0.0) ...
- Setting up libpixman-1-0:amd64 (0.42.2-1) ...
- Setting up libpixman-1-dev:amd64 (0.42.2-1) ...
- Setting up libicu72:amd64 (72.1-3+deb12u1) ...
- Setting up libxrender1:amd64 (1:0.9.10-1.1) ...
- Setting up xdg-user-dirs (0.18-1) ...
- Setting up libpng-tools (1.6.39-2) ...
- Setting up libxcb-render0:amd64 (1.15-1) ...
- Setting up libglib2.0-0:amd64 (2.74.6-2+deb12u6) ...
- No schema files found: doing nothing.
- Setting up libpython3.11-stdlib:amd64 (3.11.2-6+deb12u6) ...
- Setting up x11-common (1:7.7+23) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of restart.
- Setting up liblzo2-2:amd64 (2.10-2) ...
- Setting up libxcb-shm0:amd64 (1.15-1) ...
- Setting up libffi-dev:amd64 (3.4.4-1) ...
- Setting up libcairo2:amd64 (1.16.0-7) ...
- Setting up libpcre2-16-0:amd64 (10.42-1) ...
- Setting up libxcb-shm0-dev:amd64 (1.15-1) ...
- Setting up libpcre2-32-0:amd64 (10.42-1) ...
- Setting up libglib2.0-data (2.74.6-2+deb12u6) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libexpat1-dev:amd64 (2.5.0-1+deb12u1) ...
- Setting up uuid-dev:amd64 (2.38.1-5+deb12u3) ...
- Setting up libsepol-dev:amd64 (3.4-2.1) ...
- Setting up libxcb-render0-dev:amd64 (1.15-1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libxext-dev:amd64 (2:1.3.4-1+b1) ...
- Setting up zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Setting up libpcre2-posix3:amd64 (10.42-1) ...
- Setting up libcairo-gobject2:amd64 (1.16.0-7) ...
- Setting up libelf1:amd64 (0.188-2.1) ...
- Setting up libxrender-dev:amd64 (1:0.9.10-1.1) ...
- Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u4) ...
- Setting up libbrotli-dev:amd64 (1.0.9-2+b6) ...
- Setting up libpython3-stdlib:amd64 (3.11.2-1+b1) ...
- Setting up libcairo-script-interpreter2:amd64 (1.16.0-7) ...
- Setting up libblkid-dev:amd64 (2.38.1-5+deb12u3) ...
- Setting up python3.11 (3.11.2-6+deb12u6) ...
- Setting up libice6:amd64 (2:1.0.10-1) ...
- Setting up libpcre2-dev:amd64 (10.42-1) ...
- Setting up libice-dev:amd64 (2:1.0.10-1) ...
- Setting up libselinux1-dev:amd64 (3.4-1+b6) ...
- Setting up libpng-dev:amd64 (1.6.39-2) ...
- Setting up libglib2.0-bin (2.74.6-2+deb12u6) ...
- Setting up python3 (3.11.2-1+b1) ...
- running python rtupdate hooks for python3.11...
- running python post-rtupdate hooks for python3.11...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up libfreetype-dev:amd64 (2.12.1+dfsg-5+deb12u4) ...
- Setting up shared-mime-info (2.2-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Setting up python3-lib2to3 (3.11.2-3) ...
- Setting up libsm6:amd64 (2:1.2.3-1) ...
- Setting up libmount-dev:amd64 (2.38.1-5+deb12u3) ...
- Setting up python3-distutils (3.11.2-3) ...
- Setting up libglib2.0-dev-bin (2.74.6-2+deb12u6) ...
- Setting up libfontconfig-dev:amd64 (2.14.1-4) ...
- Setting up libsm-dev:amd64 (2:1.2.3-1) ...
- Setting up libglib2.0-dev:amd64 (2.74.6-2+deb12u6) ...
- Setting up libcairo2-dev:amd64 (1.16.0-7) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cairo2.0.6 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> installed conf-cairo.1
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.20.2 (cached)
-> installed dune-configurator.3.20.2
-> installed cairo2.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-04 11:52.47 ---> saved as "de41b3ba7f37194b386063cc0bf1ebbb56570acf92a785c023684c5cbe124f06"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test cairo2.0.6) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile cairo2 0.6
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cairo2.0.6 (https://opam.ocaml.org/cache)
-> removed cairo2.0.6
-> installed cairo2.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-04 11:52.52 ---> saved as "f0b900a4d61d65a8d3055c3d9f4a53964be8e65809e4afce1ade0b678d307d7d"
/home/opam: (run (shell "opam reinstall --with-test --verbose cairo2.0.6;\
\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\" != 'cairo2.0.6' && 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 cairo2 0.6
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [cairo2.0.6: extract]
-> retrieved cairo2.0.6 (cached)
Processing 2/4: [cairo2: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "cairo2" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/cairo2.0.6)
- (cd _build/default/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -I/usr/include/libpng16 -I/usr/include/libpng16/freetype -I/usr/include/freetype2 -I/usr/include/freetype2/freetype -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng16 -g -I /home/opam/.opam/4.14/lib/ocaml -o cairo_stubs.o -c cairo_stubs.c)
- In file included from /usr/include/freetype2/freetype/fttypes.h:25,
- from /usr/include/freetype2/freetype/freetype.h:25,
- from /usr/include/cairo/cairo-ft.h:47,
- from cairo_ocaml.h:151,
- from cairo_ocaml_types.h:3,
- from cairo_stubs.c:35:
- /usr/include/freetype2/freetype/ftsystem.h:172:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 172 | FT_Alloc_Func alloc;
- | ^~~~~~~~~~~~~~~
- cairo_ocaml_types.h: In function 'caml_cairo_raise_Error':
- cairo_ocaml_types.h:53:11: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 53 | exn = caml_named_value("Cairo.Error");
- | ^
- cairo_stubs.c: In function 'caml_cairo_create':
- cairo_stubs.c:53:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 53 | CAIRO_ASSIGN(vcontext, cr);
- | ^~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_get_target':
- cairo_stubs.c:71:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 71 | SURFACE_ASSIGN(vsurf, surf);
- | ^~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_pop_group':
- cairo_stubs.c:95:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 95 | PATTERN_ASSIGN(vpat, pat);
- | ^~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_get_group_target':
- cairo_stubs.c:111:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 111 | SURFACE_ASSIGN(vsurf, surf);
- | ^~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_get_source':
- cairo_stubs.c:134:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 134 | PATTERN_ASSIGN(vpat, pat);
- | ^~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_copy_path':
- cairo_stubs.c:314:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 314 | PATH_ASSIGN(vpath, path);
- | ^~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_copy_path_flat':
- cairo_stubs.c:324:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 324 | PATH_ASSIGN(vpath, path);
- | ^~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_path_of_array':
- cairo_stubs.c:480:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 480 | PATH_ASSIGN(vpath, path); /* vpath points to path */
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_pattern_create_rgb':
- cairo_stubs.c:554:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 554 | PATTERN_ASSIGN(vpat, pat);
- | ^~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_pattern_create_rgba':
- cairo_stubs.c:568:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 568 | PATTERN_ASSIGN(vpat, pat);
- | ^~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_pattern_create_for_surface':
- cairo_stubs.c:594:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 594 | PATTERN_ASSIGN(vpat, pat);
- | ^~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_pattern_get_surface':
- cairo_stubs.c:608:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 608 | SURFACE_ASSIGN(vsurf, surface);
- | ^~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_pattern_create_linear':
- cairo_stubs.c:620:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 620 | PATTERN_ASSIGN(vpat, pat);
- | ^~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_pattern_create_radial':
- cairo_stubs.c:650:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 650 | PATTERN_ASSIGN(vpat, pat);
- | ^~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_get_font_options':
- cairo_stubs.c:791:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 791 | FONT_OPTIONS_ASSIGN(vfont_option, options);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_font_options_create':
- cairo_stubs.c:801:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 801 | FONT_OPTIONS_ASSIGN(vfo, fo);
- | ^~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_font_options_copy':
- cairo_stubs.c:811:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 811 | FONT_OPTIONS_ASSIGN(vcopy, copy);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_get_font_face':
- cairo_stubs.c:881:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 881 | FONT_FACE_ASSIGN(vff, ff);
- | ^~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_toy_font_face_create':
- cairo_stubs.c:894:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 894 | FONT_FACE_ASSIGN(vff, ff);
- | ^~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_get_scaled_font':
- cairo_stubs.c:934:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 934 | vsf = ALLOC(scaled_font);
- | ^~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_scaled_font_create':
- cairo_stubs.c:948:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 948 | vsf = ALLOC(scaled_font);
- | ^~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_scaled_font_text_to_glyphs':
- cairo_stubs.c:1009:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 1009 | String_val(vutf8), string_length(vutf8),
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_scaled_font_get_font_face':
- cairo_stubs.c:1043:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1043 | vff = ALLOC(font_face);
- | ^~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_scaled_font_get_font_options':
- cairo_stubs.c:1056:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1056 | FONT_OPTIONS_ASSIGN(vfo, fo);
- | ^~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_Ft_init_FreeType':
- cairo_stubs.c:1097:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1097 | FT_LIBRARY_ASSIGN(vft, ft);
- | ^~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_Ft_new_face':
- cairo_stubs.c:1114:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1114 | FT_FACE_ASSIGN(vface, face);
- | ^~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_ft_create_for_ft_face':
- cairo_stubs.c:1131:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1131 | FONT_FACE_ASSIGN(vff, ff);
- | ^~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_ft_create_for_pattern':
- cairo_stubs.c:1168:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1168 | FONT_FACE_ASSIGN(vff, ff);
- | ^~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_ft_scaled_font_lock_face':
- cairo_stubs.c:1180:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1180 | FT_FACE_ASSIGN(vface, face);
- | ^~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_show_text_glyphs':
- cairo_stubs.c:1272:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 1272 | cairo_show_text_glyphs(cr, String_val(vutf8), string_length(vutf8),
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_surface_create_similar':
- cairo_stubs.c:1376:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1376 | SURFACE_ASSIGN(vsurf, surf);
- | ^~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_surface_get_font_options':
- cairo_stubs.c:1404:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1404 | FONT_OPTIONS_ASSIGN(vfo, fo);
- | ^~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_image_surface_create':
- cairo_stubs.c:1514:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1514 | vsurf = ALLOC(surface); /* alloc this first in case it raises an exn */
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_image_surface_create_for_data8':
- cairo_stubs.c:1611:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1611 | SURFACE_CREATE_DATA(data8)
- | ^~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_image_surface_create_for_data32':
- cairo_stubs.c:1612:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1612 | SURFACE_CREATE_DATA(data32)
- | ^~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_image_surface_get_UINT8':
- cairo_stubs.c:1638:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 1638 | * cairo_image_surface_get_height(SURFACE_VAL(vsurf)) )
- | ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c:1638:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- cairo_stubs.c: In function 'caml_cairo_image_surface_get_INT32':
- cairo_stubs.c:1641:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 1641 | cairo_image_surface_get_stride(SURFACE_VAL(vsurf)) / 4 )
- | ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c:1641:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- In file included from cairo_stubs.c:24:
- cairo_stubs.c: In function 'caml_cairo_output_string':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memmove' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c:1684:11: note: in expansion of macro 'String_val'
- 1684 | memmove(String_val(s), data, length);
- | ^~~~~~~~~~
- In file included from cairo_stubs.c:18:
- /usr/include/string.h:47:29: note: expected 'void *' but argument is of type 'const char *'
- 47 | extern void *memmove (void *__dest, const void *__src, size_t __n)
- | ~~~~~~^~~~~~
- cairo_stubs.c: In function 'caml_cairo_pdf_surface_create_for_stream':
- cairo_stubs.c:1726:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1726 | SURFACE_CREATE_FROM_STREAM(cairo_pdf_surface_create_for_stream)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_pdf_surface_create':
- cairo_stubs.c:1727:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1727 | SURFACE_CREATE(cairo_pdf_surface_create)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_image_surface_create_from_png':
- cairo_stubs.c:1769:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1769 | SURFACE_ASSIGN(vsurf, surf);
- | ^~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_image_surface_create_from_png_stream':
- cairo_stubs.c:1783:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1783 | SURFACE_ASSIGN(vsurf, surf);
- | ^~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_ps_surface_create':
- cairo_stubs.c:1821:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1821 | SURFACE_CREATE(cairo_ps_surface_create)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_ps_surface_create_for_stream':
- cairo_stubs.c:1822:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1822 | SURFACE_CREATE_FROM_STREAM(cairo_ps_surface_create_for_stream)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_svg_surface_create':
- cairo_stubs.c:1894:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1894 | SURFACE_CREATE(cairo_svg_surface_create)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_svg_surface_create_for_stream':
- cairo_stubs.c:1895:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1895 | SURFACE_CREATE_FROM_STREAM(cairo_svg_surface_create_for_stream)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- cairo_stubs.c: In function 'caml_cairo_recording_surface_create':
- cairo_stubs.c:1954:13: warning: "alloc_custom" is deprecated: use "caml_alloc_custom" instead
- 1954 | SURFACE_ASSIGN(vsurf, surf);
- | ^~~~~~~~~~~~~~~~~~~~
-> compiled cairo2.0.6
-> removed cairo2.0.6
-> installed cairo2.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-04 11:52.57 ---> saved as "e4cf7d430f7e522d7c69d57f20baa2c320d127d642415a40c6e84854289ea9b9"
Job succeeded
2025-09-04 11:53.02: Job succeeded