- github
- ocaml
- opam-repository
- e26ca3
- compilers,4.14,conf-m4.1,revdeps,camlbz2.0.7.0
(not at the head of any monitored branch or PR)
2026-03-21 18:50.32: New job: test camlbz2.0.7.0 with conf-m4.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29579/head (e26ca330660bcb49f8bb8e3d37703d278be8c4bd)
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/29579/head" && git reset --hard e26ca330
git fetch origin master
git merge --no-edit 76bf2ed9443fdee37e6f046c6295d358be3f8598
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
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 conf-m4.1 1
RUN opam reinstall conf-m4.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'conf-m4.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall camlbz2.0.7.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'camlbz2.0.7.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test camlbz2.0.7.0) || true
RUN opam reinstall --with-test --verbose camlbz2.0.7.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'camlbz2.0.7.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-21 18:50.32: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-conf-m4.1-camlbz2.0.7.0-e26ca330660bcb49f8bb8e3d37703d278be8c4bd"
2026-03-21 18:50.32: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
(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 conf-m4.1 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-m4.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'conf-m4.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall camlbz2.0.7.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'camlbz2.0.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test camlbz2.0.7.0) || true"))
(run (shell "opam reinstall --with-test --verbose camlbz2.0.7.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'camlbz2.0.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-21 18:50.32: Waiting for resource in pool OCluster
2026-03-21 22:35.26: Waiting for worker…
2026-03-21 22:37.56: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 76bf2ed944 Merge pull request #29572 from hannesm/release-letsencrypt-v2.0.0
Updating 76bf2ed944..e26ca33066
Fast-forward
packages/conf-findutils/conf-findutils.1/opam | 2 ++
packages/conf-m4/conf-m4.1/opam | 1 +
.../conf-mingw-w64-bzip2-x86_64/conf-mingw-w64-bzip2-x86_64.1/opam | 4 ++--
packages/conf-mingw-w64-gcc-x86_64/conf-mingw-w64-gcc-x86_64.1/opam | 4 ++--
packages/conf-mingw-w64-gmp-x86_64/conf-mingw-w64-gmp-x86_64.1/opam | 4 ++--
.../conf-mingw-w64-pkgconf-x86_64.1/opam | 6 +++---
.../conf-mingw-w64-zlib-x86_64/conf-mingw-w64-zlib-x86_64.1/opam | 4 ++--
.../conf-mingw-w64-zstd-x86_64/conf-mingw-w64-zstd-x86_64.1/opam | 4 ++--
packages/conf-perl/conf-perl.2/opam | 1 +
9 files changed, 17 insertions(+), 13 deletions(-)
(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-21 23:04.02 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" 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-03-21 23:04.02 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" 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-03-21 23:04.02 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" 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.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
2026-03-21 23:04.02 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" 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-03-21 23:04.02 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-21 23:04.03 ---> using "64b0b1c5956282be62155632b73d49a512770a013b8177e3bd97cfd5e30573f3" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-21 23:04.03 ---> using "5bbc18b187922ee43ab28303966f314ef55d58cc243daaa1a62d891c4651643d" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 10.0 MB in 1s (9665 kB/s)
- Reading package lists...
2026-03-21 23:04.03 ---> using "26c4cf2d2932a5613ac2db8ae671186642ac802d5db4f44c87661f5676362dec" from cache
/home/opam: (run (shell "opam pin add -k version -yn conf-m4.1 1"))
conf-m4 is now pinned to version 1
2026-03-21 23:04.03 ---> using "1f550c38f5bac1e80ecbaf30222372f1ba650bb720c00e72e38ddd72856eafa1" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-m4.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'conf-m4.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
conf-m4.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install conf-m4 1 (pinned)
The following system packages will first need to be installed:
m4
<><> 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" "m4"
- Selecting previously unselected package m4.
- (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 .../archives/m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Setting up m4 (1.4.19-8) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-m4.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 23:04.03 ---> using "e0baf65572c68338ca7ad6c8769e7aeb1e3d03e85ea3541782477400153674e3" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall camlbz2.0.7.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'camlbz2.0.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
camlbz2.0.7.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
- install camlbz2 0.7.0
- install conf-aclocal 2 [required by camlbz2]
- install conf-autoconf 0.2 [required by camlbz2]
- install conf-automake 1 [required by conf-aclocal]
- install conf-libbz2 1 [required by camlbz2]
- install ocamlfind 1.9.8 [required by camlbz2]
The following system packages will first need to be installed:
autoconf automake libbz2-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" "autoconf" "automake" "libbz2-dev"
- Selecting previously unselected package autoconf.
- (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 ... 20710 files and directories currently installed.)
- Preparing to unpack .../autoconf_2.72-3.1_all.deb ...
- Unpacking autoconf (2.72-3.1) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../autotools-dev_20240727.1_all.deb ...
- Unpacking autotools-dev (20240727.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../automake_1%3a1.17-4_all.deb ...
- Unpacking automake (1:1.17-4) ...
- Selecting previously unselected package bzip2-doc.
- Preparing to unpack .../bzip2-doc_1.0.8-6_all.deb ...
- Unpacking bzip2-doc (1.0.8-6) ...
- Selecting previously unselected package libbz2-dev:amd64.
- Preparing to unpack .../libbz2-dev_1.0.8-6_amd64.deb ...
- Unpacking libbz2-dev:amd64 (1.0.8-6) ...
- Setting up bzip2-doc (1.0.8-6) ...
- Setting up autotools-dev (20240727.1) ...
- Setting up autoconf (2.72-3.1) ...
- Setting up libbz2-dev:amd64 (1.0.8-6) ...
- Setting up automake (1:1.17-4) ...
- update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved camlbz2.0.7.0 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (cached)
-> installed conf-autoconf.0.2
-> installed conf-automake.1
-> installed conf-libbz2.1
-> installed conf-aclocal.2
-> installed ocamlfind.1.9.8
-> installed camlbz2.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 23:04.15 ---> saved as "7cfd7d935f00d8c404f5ba9f2b1dc9fb9ce2eb9ae20e29f8773cb885f6ab476f"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test camlbz2.0.7.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile camlbz2 0.7.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved camlbz2.0.7.0 (https://opam.ocaml.org/cache)
-> removed camlbz2.0.7.0
-> installed camlbz2.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 23:04.22 ---> saved as "d8866ddf348b74cc4c6f99d92c82e0111445cede03cd406a81b831cbc9214857"
/home/opam: (run (shell "opam reinstall --with-test --verbose camlbz2.0.7.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'camlbz2.0.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile camlbz2 0.7.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [camlbz2.0.7.0: extract]
-> retrieved camlbz2.0.7.0 (cached)
Processing 2/4: [camlbz2: aclocal .]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "aclocal" "-I" "." (CWD=/home/opam/.opam/4.14/.opam-switch/build/camlbz2.0.7.0)
- aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
- ocaml.m4:20: warning: underquoted definition of AC_PROG_OCAML
- ocaml.m4:20: run info Automake 'Extending aclocal'
- ocaml.m4:20: or see https://www.gnu.org/software/automake/manual/automake.html#Extending-aclocal
Processing 2/4: [camlbz2: autoconf]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "autoconf" (CWD=/home/opam/.opam/4.14/.opam-switch/build/camlbz2.0.7.0)
- configure.in:42: warning: AC_OUTPUT should be used without arguments.
- configure.in:42: You should run autoupdate.
Processing 2/4: [camlbz2: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "--prefix" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/build/camlbz2.0.7.0)
- checking for ocamlc... ocamlc
- OCaml version is 4.14.2
- OCaml library path is /home/opam/.opam/4.14/lib/ocaml
- checking for ocamlopt... ocamlopt
- checking for ocamlc.opt... ocamlc.opt
- checking for ocamlopt.opt... ocamlopt.opt
- checking for ocamldep... ocamldep
- checking for ocamlmktop... ocamlmktop
- checking for ocamlmklib... ocamlmklib
- checking for ocamldoc... ocamldoc
- awk: line 1: regular expression compile failed (syntax error ^* or ^+)
- ^+
- OCaml uses to compile C files
- checking for ocamlfind... ocamlfind
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether the compiler supports GNU C... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to enable C11 features... none needed
- checking for a BSD-compatible install... /usr/bin/install -c
- checking for stdio.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for strings.h... yes
- checking for sys/stat.h... yes
- checking for sys/types.h... yes
- checking for unistd.h... yes
- checking for bzlib.h... yes
- checking for BZ2_bzReadOpen in -lbz2... yes
- configure: creating ./config.status
- config.status: creating Makefile
Processing 2/4: [camlbz2: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" (CWD=/home/opam/.opam/4.14/.opam-switch/build/camlbz2.0.7.0)
- ocamlc.opt -ccopt "-D BZ_PREFIX " -c c_bz.c
- c_bz.c: In function 'mlbz_error':
- c_bz.c:49:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 49 | invalid_argument(msg) ; break ;
- | ^~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:51:13: warning: "raise_out_of_memory" is deprecated: use "caml_raise_out_of_memory" instead
- 51 | raise_out_of_memory() ; break ;
- | ^~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:54:13: warning: "raise_constant" is deprecated: use "caml_raise_constant" instead
- 54 | raise_constant(*caml_named_value("mlbz_data_exn")) ; break ;
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:56:13: warning: "raise_with_string" is deprecated: use "caml_raise_with_string" instead
- 56 | raise_with_string(*caml_named_value("mlbz_io_exn"),
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:59:13: warning: "raise_constant" is deprecated: use "caml_raise_constant" instead
- 59 | raise_constant(*caml_named_value("mlbz_eof_exn")) ; break ;
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:61:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 61 | failwith(msg) ;
- | ^~~~~~~~~
- c_bz.c: In function 'Val_twoptr':
- c_bz.c:74:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 74 | result= alloc_small(3, Abstract_tag);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c: In function 'mlbz_version':
- c_bz.c:105:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 105 | return copy_string(BZ_P(bzlibVersion())) ;
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c: In function 'mlbz_readopen':
- c_bz.c:121:15: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 121 | c_unused = String_val(Field(unused, 0)) ;
- | ^
- c_bz.c:122:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 122 | c_nunused = string_length(Field(unused, 0));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c: In function 'mlbz_read':
- c_bz.c:139:13: warning: "raise_end_of_file" is deprecated: use "caml_raise_end_of_file" instead
- 139 | raise_end_of_file() ;
- | ^~~~~~~~~~~~~
- c_bz.c:140:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 140 | if((c_len + c_pos > string_length(buf))
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:142:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 142 | invalid_argument("Bz.read") ;
- | ^~~~~~~~~~~~~~~~~~~~~
- c_bz.c:143:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 143 | c_buf = String_val(buf) + c_pos ;
- | ^
- c_bz.c: In function 'mlbz_readgetunused':
- c_bz.c:173:13: warning: "alloc_string" is deprecated: use "caml_alloc_string" instead
- 173 | result = alloc_string(nunused) ;
- | ^~~~~~~~~~~~~~~~~~~~~~
- In file included from c_bz.c:19:
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:174:10: note: in expansion of macro 'String_val'
- 174 | memcpy(String_val(result), unused, nunused) ;
- | ^~~~~~~~~~
- In file included from c_bz.c:14:
- /usr/include/string.h:43:39: note: expected 'void * restrict' but argument is of type 'const char *'
- 43 | extern void *memcpy (void *__restrict __dest, const void *__restrict __src,
- | ~~~~~~~~~~~~~~~~~^~~~~~
- c_bz.c: In function 'mlbz_write':
- c_bz.c:201:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 201 | if((c_len + c_pos > string_length(buf))
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:203:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 203 | invalid_argument("Bz.write") ;
- | ^~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:204:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 204 | c_buf = String_val(buf) + c_pos ;
- | ^
- c_bz.c: In function 'mlbz_compress':
- c_bz.c:240:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 240 | || c_pos + c_len > string_length(src))
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:241:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 241 | invalid_argument("Bz.compress") ;
- | ^~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:242:11: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 242 | src_buf = String_val(src) + c_pos;
- | ^
- c_bz.c:246:13: warning: "raise_out_of_memory" is deprecated: use "caml_raise_out_of_memory" instead
- 246 | raise_out_of_memory();
- | ^~~~~~~~~~~~~~
- c_bz.c:258:20: warning: "raise_out_of_memory" is deprecated: use "caml_raise_out_of_memory" instead
- 258 | raise_out_of_memory();
- | ^~~~~~~~~~~
- c_bz.c:263:13: warning: "raise_out_of_memory" is deprecated: use "caml_raise_out_of_memory" instead
- 263 | raise_out_of_memory();
- | ^~~~~~~~~~~~~~~~
- c_bz.c:266:13: warning: "alloc_string" is deprecated: use "caml_alloc_string" instead
- 266 | result = alloc_string(dst_len);
- | ^~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:267:10: note: in expansion of macro 'String_val'
- 267 | memcpy(String_val(result), dst_buf, dst_len);
- | ^~~~~~~~~~
- /usr/include/string.h:43:39: note: expected 'void * restrict' but argument is of type 'const char *'
- 43 | extern void *memcpy (void *__restrict __dest, const void *__restrict __src,
- | ~~~~~~~~~~~~~~~~~^~~~~~
- c_bz.c: In function 'mlbz_uncompress':
- c_bz.c:285:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 285 | || c_pos + c_len > string_length(src))
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:286:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 286 | invalid_argument("Bz.uncompress") ;
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:287:11: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 287 | src_buf = String_val(src) + c_pos;
- | ^
- c_bz.c:291:13: warning: "raise_out_of_memory" is deprecated: use "caml_raise_out_of_memory" instead
- 291 | raise_out_of_memory();
- | ^~~~~~~~~~~~~~
- c_bz.c:305:20: warning: "raise_out_of_memory" is deprecated: use "caml_raise_out_of_memory" instead
- 305 | raise_out_of_memory();
- | ^~~~~~~~~~~~~
- c_bz.c:311:20: warning: "raise_out_of_memory" is deprecated: use "caml_raise_out_of_memory" instead
- 311 | raise_out_of_memory() ;
- | ^~~~~~~~~~~~
- c_bz.c:314:20: warning: "raise_constant" is deprecated: use "caml_raise_constant" instead
- 314 | raise_constant(*caml_named_value("mlbz_data_exn")) ;
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:316:20: warning: "raise_constant" is deprecated: use "caml_raise_constant" instead
- 316 | raise_constant(*caml_named_value("mlbz_eof_exn")) ;
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:319:13: warning: "alloc_string" is deprecated: use "caml_alloc_string" instead
- 319 | result = alloc_string(dst_len);
- | ^~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- c_bz.c:320:10: note: in expansion of macro 'String_val'
- 320 | memcpy(String_val(result), dst_buf, dst_len);
- | ^~~~~~~~~~
- /usr/include/string.h:43:39: note: expected 'void * restrict' but argument is of type 'const char *'
- 43 | extern void *memcpy (void *__restrict __dest, const void *__restrict __src,
- | ~~~~~~~~~~~~~~~~~^~~~~~
- ocamlmklib -oc camlbz2 c_bz.o -lbz2
- ocamlc.opt -c bz2.mli
- File "bz2.mli", line 54, characters 46-67:
- 54 | val open_in : ?small:bool -> ?unused:bytes -> Pervasives.in_channel ->
- ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "bz2.mli", line 84, characters 29-51:
- 84 | val open_out : ?block:int -> Pervasives.out_channel -> out_channel
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c bz2.ml
- File "bz2.ml", line 31, characters 51-72:
- 31 | external open_in : ?small:bool -> ?unused:bytes -> Pervasives.in_channel ->
- ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "bz2.ml", line 44, characters 34-56:
- 44 | external open_out : ?block:int -> Pervasives.out_channel -> out_channel
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlmklib -oc camlbz2 -o bz2 bz2.cmo -lbz2
- ocamlopt.opt -c bz2.ml
- File "bz2.ml", line 31, characters 51-72:
- 31 | external open_in : ?small:bool -> ?unused:bytes -> Pervasives.in_channel ->
- ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "bz2.ml", line 44, characters 34-56:
- 44 | external open_out : ?block:int -> Pervasives.out_channel -> out_channel
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlmklib -oc camlbz2 -o bz2 bz2.cmx -lbz2
-> compiled camlbz2.0.7.0
-> removed camlbz2.0.7.0
Processing 4/4: [camlbz2: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/camlbz2.0.7.0)
- ocamlfind remove bz2
- ocamlfind: [WARNING] No such file: /home/opam/.opam/4.14/lib/bz2/META
- ocamlfind install \
- -patch-version 0.6.0 -ldconf ignore \
- bz2 META bz2.cmi bz2.mli bz2.cma dllcamlbz2.so libcamlbz2.a bz2.cmx bz2.cmxa bz2.a
- Installed /home/opam/.opam/4.14/lib/bz2/bz2.a
- Installed /home/opam/.opam/4.14/lib/bz2/bz2.cmxa
- Installed /home/opam/.opam/4.14/lib/bz2/bz2.cmx
- Installed /home/opam/.opam/4.14/lib/bz2/libcamlbz2.a
- Installed /home/opam/.opam/4.14/lib/bz2/bz2.cma
- Installed /home/opam/.opam/4.14/lib/bz2/bz2.mli
- Installed /home/opam/.opam/4.14/lib/bz2/bz2.cmi
- Installed /home/opam/.opam/4.14/lib/stublibs/dllcamlbz2.so
- Installed /home/opam/.opam/4.14/lib/stublibs/dllcamlbz2.so.owner
- Installed /home/opam/.opam/4.14/lib/bz2/META
-> installed camlbz2.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 23:04.28 ---> saved as "8aa9aea4bc5e8b0f42479fd7f2b9808e4c508fac3c87069b8559c9489e724d88"
Job succeeded
2026-03-21 23:04.38: Job succeeded