- github
- ocaml
- opam-repository
- 547bbc
- compilers,4.14,lwt.6.0.0-beta01,revdeps,mirage.2.6.1
(not at the head of any monitored branch or PR)
2025-12-04 14:19.28: New job: test mirage.2.6.1 with lwt.6.0.0-beta01, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28894/head (547bbce588bc6d9231ad2bd9c8b2b3930b2d061a)
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/28894/head" && git reset --hard 547bbce5
git fetch origin master
git merge --no-edit 3e41859015888fe8240e84dfc5f31bfa12a557e8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42
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 lwt.6.0.0-beta01 6.0.0-beta01
RUN opam reinstall lwt.6.0.0-beta01; \
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" != 'lwt.6.0.0-beta01' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall mirage.2.6.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" != 'mirage.2.6.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test mirage.2.6.1) || true
RUN opam reinstall --with-test --verbose mirage.2.6.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" != 'mirage.2.6.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-12-04 14:19.28: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42-lwt.6.0.0-beta01-mirage.2.6.1-547bbce588bc6d9231ad2bd9c8b2b3930b2d061a"
2025-12-04 14:19.28: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42)
(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 lwt.6.0.0-beta01 6.0.0-beta01"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.6.0.0-beta01;\
\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\" != 'lwt.6.0.0-beta01' && 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 mirage.2.6.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\" != 'mirage.2.6.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test mirage.2.6.1) || true"))
(run (shell "opam reinstall --with-test --verbose mirage.2.6.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\" != 'mirage.2.6.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-12-04 14:19.28: Waiting for resource in pool OCluster
2025-12-04 14:49.22: Waiting for worker…
2025-12-04 14:51.51: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
HEAD is now at 3e41859015 Merge pull request #28903 from jim-portegies/opam-publish-coq-waterproof.3.1.0-9.1
Merge made by the 'ort' strategy.
packages/lwt/lwt.6.0.0-beta01/opam | 66 ++++++++++++++++++++++
packages/lwt_direct/lwt_direct.6.0.0-beta01/opam | 42 ++++++++++++++
packages/lwt_ppx/lwt_ppx.1.0.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.0.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.1.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.2/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.3/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.4/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.2/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.3/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.1.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.5.8.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.5.9.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.5.9.2/opam | 2 +-
packages/lwt_ppx/lwt_ppx.6.0.0-beta01/opam | 43 ++++++++++++++
.../lwt_runtime_events.6.0.0-beta01/opam | 40 +++++++++++++
packages/moonpool-lwt/moonpool-lwt.0.10/opam | 2 +-
packages/moonpool-lwt/moonpool-lwt.0.9/opam | 2 +-
packages/tezt/tezt.2.0.0/opam | 2 +-
packages/tezt/tezt.3.0.0/opam | 2 +-
packages/tezt/tezt.4.3.0/opam | 2 +-
25 files changed, 212 insertions(+), 21 deletions(-)
create mode 100644 packages/lwt/lwt.6.0.0-beta01/opam
create mode 100644 packages/lwt_direct/lwt_direct.6.0.0-beta01/opam
create mode 100644 packages/lwt_ppx/lwt_ppx.6.0.0-beta01/opam
create mode 100644 packages/lwt_runtime_events/lwt_runtime_events.6.0.0-beta01/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42' locally
docker.io/ocaml/opam@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42: Pulling from ocaml/opam
53c88f1dfeb7: Already exists
f40653bbd569: Already exists
7810c66e401b: Already exists
d941667067ac: Already exists
6e099de50dbd: Already exists
45940f4cdce1: Pulling fs layer
cbbdea3b6efd: Pulling fs layer
4c34326b882a: Pulling fs layer
d8a1b7be7128: Pulling fs layer
b30719ba72c1: Pulling fs layer
eb031d51ba4a: Pulling fs layer
a59529ec7b26: Pulling fs layer
1049e4f3b9e4: Pulling fs layer
e2ab32c77566: Pulling fs layer
cbbdea3b6efd: Download complete
f6ef7bc31988: Pulling fs layer
4c34326b882a: Download complete
eb031d51ba4a: Waiting
28c3b5beaa3f: Pulling fs layer
b30719ba72c1: Waiting
1049e4f3b9e4: Waiting
83ebb7ec29e3: Pulling fs layer
a59529ec7b26: Waiting
e2ab32c77566: Waiting
186714418599: Pulling fs layer
28c3b5beaa3f: Waiting
f6ef7bc31988: Waiting
83ebb7ec29e3: Waiting
5045c0de4fc9: Pulling fs layer
3312ff3bfd69: Pulling fs layer
335847f13b00: Pulling fs layer
4f4fb700ef54: Pulling fs layer
5045c0de4fc9: Waiting
3312ff3bfd69: Waiting
186714418599: Waiting
b7958021acdb: Pulling fs layer
335847f13b00: Waiting
d92ce1afae3a: Pulling fs layer
4f4fb700ef54: Waiting
b7958021acdb: Waiting
7842835bd039: Pulling fs layer
3a60e5befc90: Pulling fs layer
7efeca794a8f: Pulling fs layer
7842835bd039: Waiting
efc7f994cef1: Pulling fs layer
d92ce1afae3a: Waiting
3a60e5befc90: Waiting
7efeca794a8f: Waiting
ba91afca1a0a: Pulling fs layer
efc7f994cef1: Waiting
8216b6db35fa: Pulling fs layer
229184d6690a: Pulling fs layer
40e4db8e45e7: Pulling fs layer
12fb3f269d42: Pulling fs layer
c0196b69a0ef: Pulling fs layer
8216b6db35fa: Waiting
ba91afca1a0a: Waiting
40e4db8e45e7: Waiting
229184d6690a: Waiting
12fb3f269d42: Waiting
b731bd241e4b: Pulling fs layer
53512a47261a: Pulling fs layer
b1be3290ddde: Pulling fs layer
fe5803a9f63d: Pulling fs layer
5cf61ec03f01: Pulling fs layer
53512a47261a: Waiting
c0196b69a0ef: Waiting
d44c5e23965f: Pulling fs layer
b731bd241e4b: Waiting
b1be3290ddde: Waiting
fe5803a9f63d: Waiting
90ef457de5f6: Pulling fs layer
5cf61ec03f01: Waiting
d44c5e23965f: Waiting
a083513427ff: Pulling fs layer
44824355a76a: Pulling fs layer
90ef457de5f6: Waiting
a083513427ff: Waiting
e614a8301c85: Pulling fs layer
44824355a76a: Waiting
e614a8301c85: Waiting
b30719ba72c1: Verifying Checksum
b30719ba72c1: Download complete
eb031d51ba4a: Verifying Checksum
eb031d51ba4a: Download complete
a59529ec7b26: Verifying Checksum
a59529ec7b26: Download complete
1049e4f3b9e4: Verifying Checksum
1049e4f3b9e4: Download complete
e2ab32c77566: Verifying Checksum
e2ab32c77566: Download complete
f6ef7bc31988: Download complete
28c3b5beaa3f: Download complete
83ebb7ec29e3: Verifying Checksum
83ebb7ec29e3: Download complete
186714418599: Download complete
d8a1b7be7128: Verifying Checksum
d8a1b7be7128: Download complete
5045c0de4fc9: Download complete
3312ff3bfd69: Verifying Checksum
3312ff3bfd69: Download complete
335847f13b00: Verifying Checksum
335847f13b00: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
b7958021acdb: Verifying Checksum
b7958021acdb: Download complete
d92ce1afae3a: Verifying Checksum
d92ce1afae3a: Download complete
3a60e5befc90: Download complete
7842835bd039: Verifying Checksum
7842835bd039: Download complete
7efeca794a8f: Verifying Checksum
7efeca794a8f: Download complete
efc7f994cef1: Verifying Checksum
efc7f994cef1: Download complete
8216b6db35fa: Verifying Checksum
8216b6db35fa: Download complete
ba91afca1a0a: Verifying Checksum
ba91afca1a0a: Download complete
229184d6690a: Verifying Checksum
229184d6690a: Download complete
12fb3f269d42: Download complete
40e4db8e45e7: Verifying Checksum
40e4db8e45e7: Download complete
c0196b69a0ef: Download complete
53512a47261a: Verifying Checksum
53512a47261a: Download complete
b1be3290ddde: Verifying Checksum
b1be3290ddde: Download complete
fe5803a9f63d: Download complete
5cf61ec03f01: Download complete
d44c5e23965f: Download complete
90ef457de5f6: Verifying Checksum
90ef457de5f6: Download complete
a083513427ff: Download complete
44824355a76a: Verifying Checksum
44824355a76a: Download complete
e614a8301c85: Verifying Checksum
e614a8301c85: Download complete
b731bd241e4b: Verifying Checksum
b731bd241e4b: Download complete
45940f4cdce1: Verifying Checksum
45940f4cdce1: Download complete
45940f4cdce1: Pull complete
cbbdea3b6efd: Pull complete
4c34326b882a: Pull complete
d8a1b7be7128: Pull complete
b30719ba72c1: Pull complete
eb031d51ba4a: Pull complete
a59529ec7b26: Pull complete
1049e4f3b9e4: Pull complete
e2ab32c77566: Pull complete
f6ef7bc31988: Pull complete
28c3b5beaa3f: Pull complete
83ebb7ec29e3: Pull complete
186714418599: Pull complete
5045c0de4fc9: Pull complete
3312ff3bfd69: Pull complete
335847f13b00: Pull complete
4f4fb700ef54: Pull complete
b7958021acdb: Pull complete
d92ce1afae3a: Pull complete
7842835bd039: Pull complete
3a60e5befc90: Pull complete
7efeca794a8f: Pull complete
efc7f994cef1: Pull complete
ba91afca1a0a: Pull complete
8216b6db35fa: Pull complete
229184d6690a: Pull complete
40e4db8e45e7: Pull complete
12fb3f269d42: Pull complete
c0196b69a0ef: Pull complete
b731bd241e4b: Pull complete
53512a47261a: Pull complete
b1be3290ddde: Pull complete
fe5803a9f63d: Pull complete
5cf61ec03f01: Pull complete
d44c5e23965f: Pull complete
90ef457de5f6: Pull complete
a083513427ff: Pull complete
44824355a76a: Pull complete
e614a8301c85: Pull complete
Digest: sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42
Status: Downloaded newer image for ocaml/opam@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42
2025-12-04 14:52.12 ---> using "fac428a8c7735f97c9831d58777f84ed5f5edf7a45e1d8d6ff738a3eabdf91c6" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-04 14:52.12 ---> using "85ac98518990e623e980b52e6d364d505900046b9e06d5177ffb65354baea48f" 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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-04 14:52.12 ---> using "4e22f79446a21acf351389e7133335d6829323fa53bfee34e73c9becfcc2d9c0" 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 71
# 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-12-04 14:52.12 ---> using "557d0a2d25e17a38d2f3886324232bad90b96cebcdff184adca155bb718d6512" 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-12-04 14:52.12 ---> using "05f572f086bac5ec9bebf2869eea650c0c1b272ac5cb53bca04747a274a4038d" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-04 14:52.13 ---> using "7e4a8c6a0ce94265879b7835a3569c4df0df42f6def1009ec122346cb14eb8d0" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-04 14:52.13 ---> using "8f67e47575e0317f371607a8c5ea96f72d95dcab02d3c0a25980149df0a05a40" 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 [80.9 kB]
- Fetched 172 kB in 0s (1504 kB/s)
- Reading package lists...
2025-12-04 14:52.13 ---> using "999ffac10cf24d00da3ea7b99ef58d6e44fefe2e631df0fd59ae843434502ba0" from cache
/home/opam: (run (shell "opam pin add -k version -yn lwt.6.0.0-beta01 6.0.0-beta01"))
lwt is now pinned to version 6.0.0-beta01
2025-12-04 14:52.13 ---> using "9eedc5f997cb3bc7c55b19bef174a1850f8436e3f51ae5458c1d76f51f326e77" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.6.0.0-beta01;\
\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\" != 'lwt.6.0.0-beta01' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lwt.6.0.0-beta01 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
- install base-bytes base [required by ocplib-endian]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.20.2 [required by lwt]
- install dune-configurator 3.20.2 [required by lwt]
- install lwt 6.0.0-beta01 (pinned)
- install ocamlfind 1.9.8 [required by base-bytes]
- install ocplib-endian 1.2 [required by lwt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved lwt.6.0.0-beta01 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.20.2
-> installed lwt.6.0.0-beta01
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-04 14:52.13 ---> using "3f2dfd7d44802b554c58b9bdb5b7847dfdab2888d1f930daafe7add8c62e1f15" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mirage.2.6.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\" != 'mirage.2.6.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
mirage.2.6.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 12 packages
- install bigarray-compat 1.1.0 [required by cstruct]
- install cmdliner 0.9.4 [required by mirage]
- install conf-pkg-config 4 [required by io-page]
- install cstruct 6.0.1 [required by mirage-types, mirage-types-lwt]
- install domain-name 0.5.0 [required by ipaddr]
- install io-page 3.0.0 [required by mirage-types, mirage-types-lwt]
- install ipaddr 5.6.1 [required by mirage]
- install macaddr 5.6.1 [required by ipaddr]
- install mirage 2.6.1
- install mirage-types 2.8.0 (deprecated) [required by mirage]
- install mirage-types-lwt 2.8.0 (deprecated) [required by mirage]
- install ocamlbuild 0.16.1 [required by mirage]
The following system packages will first need to be installed:
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" "pkg-config"
- Selecting previously unselected package libpkgconf3: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 ... 20622 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved cmdliner.0.9.4 (cached)
-> installed conf-pkg-config.4
-> retrieved cstruct.6.0.1 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> retrieved io-page.3.0.0 (cached)
-> retrieved ipaddr.5.6.1, macaddr.5.6.1 (cached)
-> retrieved mirage.2.6.1 (cached)
-> retrieved mirage-types.2.8.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> installed bigarray-compat.1.1.0
-> installed domain-name.0.5.0
-> installed macaddr.5.6.1
-> installed cstruct.6.0.1
-> installed ipaddr.5.6.1
-> installed io-page.3.0.0
-> installed ocamlbuild.0.16.1
-> installed mirage-types.2.8.0
-> installed cmdliner.0.9.4
-> installed mirage-types-lwt.2.8.0
-> installed mirage.2.6.1
Done.
<><> mirage-types-lwt.2.8.0 installed successfully ><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
=> mirage-types-lwt is deprecated
<><> mirage-types.2.8.0 installed successfully ><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
=> mirage-types is deprecated
# To update the current shell environment, run: eval $(opam env)
2025-12-04 14:52.35 ---> saved as "855a176feca95c3809903052a66f71f72e89df2e16890e15bf58e091f1d74bd3"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test mirage.2.6.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile mirage 2.6.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved mirage.2.6.1 (https://opam.ocaml.org/cache)
-> removed mirage.2.6.1
-> installed mirage.2.6.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-04 14:52.48 ---> saved as "8c0700754f1f8b4ec94a360c22c168e9343edc724d77504ddd232ae2b4b020c6"
/home/opam: (run (shell "opam reinstall --with-test --verbose mirage.2.6.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\" != 'mirage.2.6.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile mirage 2.6.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [mirage.2.6.1: extract]
-> retrieved mirage.2.6.1 (cached)
Processing 2/4: [mirage: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "--bindir" "/home/opam/.opam/4.14/bin" (CWD=/home/opam/.opam/4.14/.opam-switch/build/mirage.2.6.1)
- File "./setup.ml", line 318, characters 20-36:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 318, characters 42-58:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 14-30:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 38-54:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 330, characters 25-41:
- 330 | Hashtbl.hash (String.lowercase s)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 368, characters 10-26:
- 368 | String.lowercase buf
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 474, characters 13-29:
- 474 | String.lowercase
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 1381, characters 23-41:
- 1381 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- 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 "./setup.ml", line 1825, characters 16-33:
- 1825 | concat dir (String.capitalize base)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "./setup.ml", line 1831, characters 16-35:
- 1831 | concat dir (String.uncapitalize base)
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 2916, characters 10-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2922, characters 10-21:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2925, characters 23-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2928, characters 20-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2931, characters 10-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2934, characters 16-28:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 15-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 32-42:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 48-61:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2936, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2937, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2938, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3088, characters 4-21:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3107, characters 24-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3109, characters 21-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 41-53:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 41-54:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 50-62:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 50-63:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3118, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3131, characters 15-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3229, characters 16-34:
- 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 "setup.ml", line 5847, characters 11-28:
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "setup.ml", line 5848, characters 11-30:
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 6484, characters 33-42:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 6485, characters 36-45:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
-
- Configuration:
- ocamlfind: ........................................... /home/opam/.opam/4.14/bin/ocamlfind
- ocamlc: .............................................. /home/opam/.opam/4.14/bin/ocamlc.opt
- ocamlopt: ............................................ /home/opam/.opam/4.14/bin/ocamlopt.opt
- ocamlbuild: .......................................... /home/opam/.opam/4.14/bin/ocamlbuild
- Package name: ........................................ mirage
- Package version: ..................................... 2.6.1
- os_type: ............................................. Unix
- system: .............................................. linux
- architecture: ........................................ amd64
- ccomp_type: .......................................... cc
- ocaml_version: ....................................... 4.14.2
- standard_library_default: ............................ /home/opam/.opam/4.14/lib/ocaml
- standard_library: .................................... /home/opam/.opam/4.14/lib/ocaml
- bytecomp_c_compiler: ................................. gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64
- native_c_compiler: ................................... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64
- model: ............................................... default
- ext_obj: ............................................. .o
- ext_asm: ............................................. .s
- ext_lib: ............................................. .a
- ext_dll: ............................................. .so
- default_executable_name: ............................. a.out
- systhread_supported: ................................. true
- Install architecture-independent files dir: .......... /usr/local
- Install architecture-dependent files in dir: ......... $prefix
- User executables: .................................... /home/opam/.opam/4.14/bin
- System admin executables: ............................ $exec_prefix/sbin
- Program executables: ................................. $exec_prefix/libexec
- Read-only single-machine data: ....................... $prefix/etc
- Modifiable architecture-independent data: ............ $prefix/com
- Modifiable single-machine data: ...................... $prefix/var
- Object code libraries: ............................... $exec_prefix/lib
- Read-only arch-independent data root: ................ $prefix/share
- Read-only architecture-independent data: ............. $datarootdir
- Info documentation: .................................. $datarootdir/info
- Locale-dependent data: ............................... $datarootdir/locale
- Man documentation: ................................... $datarootdir/man
- Documentation root: .................................. $datarootdir/doc/$pkg_name
- HTML documentation: .................................. $docdir
- DVI documentation: ................................... $docdir
- PDF documentation: ................................... $docdir
- PS documentation: .................................... $docdir
- findlib_version: ..................................... 1.9.8
- is_native: ........................................... true
- suffix_program: ......................................
- Remove a file.: ...................................... rm -f
- Remove a directory.: ................................. rm -rf
- Turn ocaml debug flag on: ............................ true
- Turn ocaml profile flag on: .......................... false
- Compiler support generation of .cmxs.: ............... true
- OCamlbuild additional flags: .........................
- Create documentations: ............................... true
- Compile tests executable and library and run them: ... false
- pkg_ipaddr: .......................................... /home/opam/.opam/4.14/lib/ipaddr
- pkg_unix: ............................................ /home/opam/.opam/4.14/lib/ocaml
- pkg_dynlink: ......................................... /home/opam/.opam/4.14/lib/ocaml
- pkg_lwt: ............................................. /home/opam/.opam/4.14/lib/lwt
- pkg_mirage_types: .................................... /home/opam/.opam/4.14/lib/mirage-types
- pkg_mirage_types_lwt: ................................ /home/opam/.opam/4.14/lib/mirage-types
- pkg_cmdliner: ........................................ /home/opam/.opam/4.14/lib/cmdliner
- ocamldoc: ............................................ /home/opam/.opam/4.14/bin/ocamldoc
-
Processing 2/4: [mirage: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" (CWD=/home/opam/.opam/4.14/.opam-switch/build/mirage.2.6.1)
- ocamlopt.opt -o setup.bin setup.ml || ocamlopt -o setup.bin setup.ml || ocamlc -o setup.bin setup.ml
- File "setup.ml", line 318, characters 20-36:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "setup.ml", line 318, characters 42-58:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "setup.ml", line 327, characters 14-30:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "setup.ml", line 327, characters 38-54:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "setup.ml", line 330, characters 25-41:
- 330 | Hashtbl.hash (String.lowercase s)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "setup.ml", line 368, characters 10-26:
- 368 | String.lowercase buf
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "setup.ml", line 474, characters 13-29:
- 474 | String.lowercase
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "setup.ml", line 1381, characters 23-41:
- 1381 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- 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 "setup.ml", line 1825, characters 16-33:
- 1825 | concat dir (String.capitalize base)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "setup.ml", line 1831, characters 16-35:
- 1831 | concat dir (String.uncapitalize base)
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 2916, characters 10-27:
- 2916 | Stream.of_channel chn
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2922, characters 10-21:
- 2922 | Stream.from
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2925, characters 23-34:
- 2925 | match Stream.next st with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2928, characters 20-34:
- 2928 | with Stream.Failure -> None)
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2931, characters 10-27:
- 2931 | Genlex.make_lexer ["="] st_line
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2934, characters 16-28:
- 2934 | match Stream.npeek 3 lexer with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 15-27:
- 2935 | | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 32-42:
- 2935 | | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
- ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 48-61:
- 2935 | | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
- ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2936, characters 16-27:
- 2936 | Stream.junk lexer;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2937, characters 16-27:
- 2937 | Stream.junk lexer;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2938, characters 16-27:
- 2938 | Stream.junk lexer;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3088, characters 4-21:
- 3088 | Genlex.make_lexer []
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3107, characters 24-40:
- 3107 | var_lxr (Stream.of_string var)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3109, characters 21-33:
- 3109 | match Stream.npeek 3 st with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 20-32:
- 3110 | | [Genlex.Ident "utoh"; Genlex.Ident nm] ->
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 41-53:
- 3110 | | [Genlex.Ident "utoh"; Genlex.Ident nm] ->
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 20-32:
- 3112 | | [Genlex.Ident "utoh"; Genlex.String s] ->
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 41-54:
- 3112 | | [Genlex.Ident "utoh"; Genlex.String s] ->
- ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 20-32:
- 3114 | | [Genlex.Ident "ocaml_escaped"; Genlex.Ident nm] ->
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 50-62:
- 3114 | | [Genlex.Ident "ocaml_escaped"; Genlex.Ident nm] ->
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 20-32:
- 3116 | | [Genlex.Ident "ocaml_escaped"; Genlex.String s] ->
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 50-63:
- 3116 | | [Genlex.Ident "ocaml_escaped"; Genlex.String s] ->
- ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3118, characters 20-32:
- 3118 | | [Genlex.Ident nm] ->
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3131, characters 15-27:
- 3131 | | Stream.Error e ->
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3229, characters 16-34:
- 3229 | Pervasives.compare o2 o1)
- ^^^^^^^^^^^^^^^^^^
- 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 "setup.ml", line 5847, characters 11-28:
- 5847 | (String.capitalize modul ^ sufx) ::
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "setup.ml", line 5848, characters 11-30:
- 5848 | (String.uncapitalize modul ^ sufx) ::
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 6484, characters 33-42:
- 6484 | ends_with ".cmo" fn
- ^^^^^^^^^
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 6485, characters 36-45:
- 6485 | || ends_with ".cmx" fn))
- ^^^^^^^^^
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- rm -f setup.cmx setup.cmi setup.o setup.cmo
- ./setup.bin -configure --prefix /usr/local
-
- Configuration:
- ocamlfind: ........................................... /home/opam/.opam/4.14/bin/ocamlfind
- ocamlc: .............................................. /home/opam/.opam/4.14/bin/ocamlc.opt
- ocamlopt: ............................................ /home/opam/.opam/4.14/bin/ocamlopt.opt
- ocamlbuild: .......................................... /home/opam/.opam/4.14/bin/ocamlbuild
- Package name: ........................................ mirage
- Package version: ..................................... 2.6.1
- os_type: ............................................. Unix
- system: .............................................. linux
- architecture: ........................................ amd64
- ccomp_type: .......................................... cc
- ocaml_version: ....................................... 4.14.2
- standard_library_default: ............................ /home/opam/.opam/4.14/lib/ocaml
- standard_library: .................................... /home/opam/.opam/4.14/lib/ocaml
- bytecomp_c_compiler: ................................. gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64
- native_c_compiler: ................................... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64
- model: ............................................... default
- ext_obj: ............................................. .o
- ext_asm: ............................................. .s
- ext_lib: ............................................. .a
- ext_dll: ............................................. .so
- default_executable_name: ............................. a.out
- systhread_supported: ................................. true
- Install architecture-independent files dir: .......... /usr/local
- Install architecture-dependent files in dir: ......... $prefix
- User executables: .................................... /home/opam/.opam/4.14/bin
- System admin executables: ............................ $exec_prefix/sbin
- Program executables: ................................. $exec_prefix/libexec
- Read-only single-machine data: ....................... $prefix/etc
- Modifiable architecture-independent data: ............ $prefix/com
- Modifiable single-machine data: ...................... $prefix/var
- Object code libraries: ............................... $exec_prefix/lib
- Read-only arch-independent data root: ................ $prefix/share
- Read-only architecture-independent data: ............. $datarootdir
- Info documentation: .................................. $datarootdir/info
- Locale-dependent data: ............................... $datarootdir/locale
- Man documentation: ................................... $datarootdir/man
- Documentation root: .................................. $datarootdir/doc/$pkg_name
- HTML documentation: .................................. $docdir
- DVI documentation: ................................... $docdir
- PDF documentation: ................................... $docdir
- PS documentation: .................................... $docdir
- findlib_version: ..................................... 1.9.8
- is_native: ........................................... true
- suffix_program: ......................................
- Remove a file.: ...................................... rm -f
- Remove a directory.: ................................. rm -rf
- Turn ocaml debug flag on: ............................ true
- Turn ocaml profile flag on: .......................... false
- Compiler support generation of .cmxs.: ............... true
- OCamlbuild additional flags: .........................
- Create documentations: ............................... true
- Compile tests executable and library and run them: ... false
- pkg_ipaddr: .......................................... /home/opam/.opam/4.14/lib/ipaddr
- pkg_unix: ............................................ /home/opam/.opam/4.14/lib/ocaml
- pkg_dynlink: ......................................... /home/opam/.opam/4.14/lib/ocaml
- pkg_lwt: ............................................. /home/opam/.opam/4.14/lib/lwt
- pkg_mirage_types: .................................... /home/opam/.opam/4.14/lib/mirage-types
- pkg_mirage_types_lwt: ................................ /home/opam/.opam/4.14/lib/mirage-types
- pkg_cmdliner: ........................................ /home/opam/.opam/4.14/lib/cmdliner
- ocamldoc: ............................................ /home/opam/.opam/4.14/bin/ocamldoc
-
- echo "let current = \"2.6.1\"" > lib/mirage_version.ml
- ./setup.bin -build -classic-display
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + /home/opam/.opam/4.14/bin/ocamlopt.opt unix.cmxa -I /home/opam/.opam/4.14/lib/ocamlbuild /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuildlib.cmxa myocamlbuild.ml /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -modules lib/mirage.mli > lib/mirage.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -principal -I lib -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib -o lib/mirage.cmi lib/mirage.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -modules lib/mirage.ml > lib/mirage.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -modules lib/mirage_misc.mli > lib/mirage_misc.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -principal -I lib -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib -o lib/mirage_misc.cmi lib/mirage_misc.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -modules lib/mirage_misc.ml > lib/mirage_misc.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -principal -I lib -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib -o lib/mirage.cmo lib/mirage.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -principal -I lib -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib -o lib/mirage.cmo lib/mirage.ml
- File "lib/mirage.ml", line 504, characters 4-21:
- 504 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 672, characters 4-21:
- 672 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 720, characters 4-21:
- 720 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 771, characters 4-21:
- 771 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 838, characters 4-21:
- 838 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 962, characters 4-21:
- 962 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1010, characters 4-21:
- 1010 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1090, characters 4-21:
- 1090 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1165, characters 4-21:
- 1165 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1271, characters 4-21:
- 1271 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1363, characters 4-21:
- 1363 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1488, characters 4-21:
- 1488 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1608, characters 4-21:
- 1608 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1703, characters 22-39:
- 1703 | let module_name t = String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1785, characters 4-21:
- 1785 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1817, characters 4-21:
- 1817 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1890, characters 4-21:
- 1890 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 2313, characters 18-32:
- 2313 | let (/) = Pervasives.(/) in
- ^^^^^^^^^^^^^^
- 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
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -principal -I lib -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib -o lib/mirage_misc.cmo lib/mirage_misc.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -I lib lib/mirage_misc.cmo lib/mirage.cmo -o lib/mirage.cma
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -principal -I lib -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib -o lib/mirage_misc.cmx lib/mirage_misc.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -principal -I lib -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib -o lib/mirage.cmx lib/mirage.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -principal -I lib -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib -o lib/mirage.cmx lib/mirage.ml
- File "lib/mirage.ml", line 504, characters 4-21:
- 504 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 672, characters 4-21:
- 672 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 720, characters 4-21:
- 720 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 771, characters 4-21:
- 771 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 838, characters 4-21:
- 838 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 962, characters 4-21:
- 962 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1010, characters 4-21:
- 1010 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1090, characters 4-21:
- 1090 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1165, characters 4-21:
- 1165 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1271, characters 4-21:
- 1271 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1363, characters 4-21:
- 1363 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1488, characters 4-21:
- 1488 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1608, characters 4-21:
- 1608 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1703, characters 22-39:
- 1703 | let module_name t = String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1785, characters 4-21:
- 1785 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1817, characters 4-21:
- 1817 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 1890, characters 4-21:
- 1890 | String.capitalize (name t)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "lib/mirage.ml", line 2313, characters 18-32:
- 2313 | let (/) = Pervasives.(/) in
- ^^^^^^^^^^^^^^
- 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
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -I lib lib/mirage_misc.cmx lib/mirage.cmx -o lib/mirage.cmxa
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -shared -I lib lib/mirage.cmxa lib/mirage_misc.cmx lib/mirage.cmx -o lib/mirage.cmxs
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -modules lib/mirage_runtime.mli > lib/mirage_runtime.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -principal -I lib -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib -o lib/mirage_runtime.cmi lib/mirage_runtime.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -modules lib/mirage_runtime.ml > lib/mirage_runtime.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -principal -I lib -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib -o lib/mirage_runtime.cmo lib/mirage_runtime.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -I lib lib/mirage_runtime.cmo -o lib/mirage-runtime.cma
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -principal -I lib -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib -o lib/mirage_runtime.cmx lib/mirage_runtime.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -I lib lib/mirage_runtime.cmx -o lib/mirage-runtime.cmxa
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -shared -I lib lib/mirage-runtime.cmxa lib/mirage_runtime.cmx -o lib/mirage-runtime.cmxs
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -modules lib/main.ml > lib/main.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -modules lib/mirage_version.ml > lib/mirage_version.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -principal -I lib -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib -o lib/mirage_version.cmo lib/mirage_version.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -principal -I lib -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib -o lib/main.cmo lib/main.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -principal -I lib -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib -o lib/mirage_version.cmx lib/mirage_version.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -principal -I lib -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib -o lib/main.cmx lib/main.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -linkpkg -package cmdliner -package dynlink -package ipaddr -package lwt -package mirage-types -package mirage-types.lwt -package unix -I lib lib/mirage.cmxa lib/mirage_version.cmx lib/main.cmx -o lib/main.native
- + /home/opam/.opam/4.14/bin/ocamlopt.opt unix.cmxa -I /home/opam/.opam/4.14/lib/ocamlbuild /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuildlib.cmxa myocamlbuild.ml /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- File "myocamlbuild.ml", line 155, characters 10-27:
- 155 | Stream.of_channel chn
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 161, characters 10-21:
- 161 | Stream.from
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 164, characters 23-34:
- 164 | match Stream.next st with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 167, characters 20-34:
- 167 | with Stream.Failure -> None)
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 170, characters 10-27:
- 170 | Genlex.make_lexer ["="] st_line
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 173, characters 16-28:
- 173 | match Stream.npeek 3 lexer with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 174, characters 15-27:
- 174 | | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 174, characters 32-42:
- 174 | | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
- ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 174, characters 48-61:
- 174 | | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
- ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 175, characters 16-27:
- 175 | Stream.junk lexer;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 176, characters 16-27:
- 176 | Stream.junk lexer;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 177, characters 16-27:
- 177 | Stream.junk lexer;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 518, characters 43-62:
- 518 | List.map (fun m -> (String.uncapitalize m) ^ ".cmi")
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Ocamlbuild_plugin.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "myocamlbuild.ml", line 531, characters 51-70:
- 531 | List.map (fun m -> dir^"/"^(String.uncapitalize m)^".cmi")
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Ocamlbuild_plugin.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
-> compiled mirage.2.6.1
Processing 3/4: [mirage: rm]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "rm" "-f" "/home/opam/.opam/4.14/bin/mirage" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/mirage.2.6.1)
Processing 3/4: [mirage: ocamlfind remove]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "ocamlfind" "remove" "mirage" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/mirage.2.6.1)
- Removed /home/opam/.opam/4.14/lib/mirage/META
- Removed /home/opam/.opam/4.14/lib/mirage
-> removed mirage.2.6.1
Processing 4/4: [mirage: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/mirage.2.6.1)
- ./setup.bin -install
- Installed /home/opam/.opam/4.14/lib/mirage/mirage.mli
- Installed /home/opam/.opam/4.14/lib/mirage/mirage_misc.mli
- Installed /home/opam/.opam/4.14/lib/mirage/mirage.cma
- Installed /home/opam/.opam/4.14/lib/mirage/mirage.cmxa
- Installed /home/opam/.opam/4.14/lib/mirage/mirage.a
- Installed /home/opam/.opam/4.14/lib/mirage/mirage.cmxs
- Installed /home/opam/.opam/4.14/lib/mirage/mirage_misc.cmi
- Installed /home/opam/.opam/4.14/lib/mirage/mirage_misc.cmti
- Installed /home/opam/.opam/4.14/lib/mirage/mirage_misc.cmt
- Installed /home/opam/.opam/4.14/lib/mirage/mirage_misc.annot
- Installed /home/opam/.opam/4.14/lib/mirage/mirage.cmi
- Installed /home/opam/.opam/4.14/lib/mirage/mirage.cmti
- Installed /home/opam/.opam/4.14/lib/mirage/mirage.cmt
- Installed /home/opam/.opam/4.14/lib/mirage/mirage.annot
- Installed /home/opam/.opam/4.14/lib/mirage/mirage_misc.cmx
- Installed /home/opam/.opam/4.14/lib/mirage/mirage.cmx
- Installed /home/opam/.opam/4.14/lib/mirage/mirage_runtime.mli
- Installed /home/opam/.opam/4.14/lib/mirage/mirage-runtime.cma
- Installed /home/opam/.opam/4.14/lib/mirage/mirage-runtime.cmxa
- Installed /home/opam/.opam/4.14/lib/mirage/mirage-runtime.a
- Installed /home/opam/.opam/4.14/lib/mirage/mirage-runtime.cmxs
- Installed /home/opam/.opam/4.14/lib/mirage/mirage_runtime.cmi
- Installed /home/opam/.opam/4.14/lib/mirage/mirage_runtime.cmti
- Installed /home/opam/.opam/4.14/lib/mirage/mirage_runtime.cmt
- Installed /home/opam/.opam/4.14/lib/mirage/mirage_runtime.annot
- Installed /home/opam/.opam/4.14/lib/mirage/mirage_runtime.cmx
- Installed /home/opam/.opam/4.14/lib/mirage/META
-> installed mirage.2.6.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-04 14:53.00 ---> saved as "9cdbf0c092eb69d2113bf5a42505ec54a02e78a196ed41448a85195fb16ae2ca"
Job succeeded
2025-12-04 14:53.14: Job succeeded