- github
- ocaml
- opam-repository
- dd5533
- compilers,4.14,dune-configurator.3.20.0~alpha2,revdeps,ojs-base.0.6.0
(not at the head of any monitored branch or PR)
2025-08-05 14:00.21: New job: test ojs-base.0.6.0 with dune-configurator.3.20.0~alpha2, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/28298/head (dd5533520fdcb5364efecb41d297e786ddcc1f76)
on debian-12-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/28298/head" && git reset --hard dd553352
git fetch origin master
git merge --no-edit 39155538b0d7654773a68bd42b0b7dbb8eb14ad7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune-configurator.3.20.0~alpha2 3.20.0~alpha2
RUN opam reinstall dune-configurator.3.20.0~alpha2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune-configurator.3.20.0~alpha2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall ojs-base.0.6.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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ojs-base.0.6.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 ojs-base.0.6.0) || true
RUN opam reinstall --with-test --verbose ojs-base.0.6.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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ojs-base.0.6.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 .
2025-08-05 14:00.21: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63-dune-configurator.3.20.0~alpha2-ojs-base.0.6.0-dd5533520fdcb5364efecb41d297e786ddcc1f76"
2025-08-05 14:00.21: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune-configurator.3.20.0~alpha2 3.20.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.20.0~alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune-configurator.3.20.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ojs-base.0.6.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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ojs-base.0.6.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 ojs-base.0.6.0) || true"))
(run (shell "opam reinstall --with-test --verbose ojs-base.0.6.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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ojs-base.0.6.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-08-05 14:00.21: Waiting for resource in pool OCluster
2025-08-05 19:19.36: Waiting for worker…
2025-08-05 19:22.20: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 88% (15846/17995)
Updating files: 89% (16016/17995)
Updating files: 90% (16196/17995)
Updating files: 91% (16376/17995)
Updating files: 92% (16556/17995)
Updating files: 93% (16736/17995)
Updating files: 94% (16916/17995)
Updating files: 95% (17096/17995)
Updating files: 96% (17276/17995)
Updating files: 97% (17456/17995)
Updating files: 98% (17636/17995)
Updating files: 99% (17816/17995)
Updating files: 100% (17995/17995)
Updating files: 100% (17995/17995), done.
HEAD is now at 39155538b0 Merge pull request #28292 from gildor478/release-ocamlmod-v0.1.1
Updating 39155538b0..dd5533520f
Fast-forward
.../chrome-trace/chrome-trace.3.20.0~alpha2/opam | 41 ++++++++++++
.../dune-action-plugin.3.20.0~alpha2/opam | 54 ++++++++++++++++
.../dune-build-info.3.20.0~alpha2/opam | 47 ++++++++++++++
.../dune-configurator.3.20.0~alpha2/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.20.0~alpha2/opam | 44 +++++++++++++
.../dune-private-libs.3.20.0~alpha2/opam | 52 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha2/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.20.0~alpha2/opam | 45 +++++++++++++
packages/dune-site/dune-site.3.20.0~alpha2/opam | 39 ++++++++++++
packages/dune/dune.3.20.0~alpha2/opam | 74 ++++++++++++++++++++++
packages/dyn/dyn.3.20.0~alpha2/opam | 42 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha2/opam | 45 +++++++++++++
packages/ordering/ordering.3.20.0~alpha2/opam | 40 ++++++++++++
packages/stdune/stdune.3.20.0~alpha2/opam | 46 ++++++++++++++
packages/xdg/xdg.3.20.0~alpha2/opam | 41 ++++++++++++
15 files changed, 704 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.20.0~alpha2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.20.0~alpha2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.20.0~alpha2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.20.0~alpha2/opam
create mode 100644 packages/dune-glob/dune-glob.3.20.0~alpha2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.20.0~alpha2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.20.0~alpha2/opam
create mode 100644 packages/dune-site/dune-site.3.20.0~alpha2/opam
create mode 100644 packages/dune/dune.3.20.0~alpha2/opam
create mode 100644 packages/dyn/dyn.3.20.0~alpha2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha2/opam
create mode 100644 packages/ordering/ordering.3.20.0~alpha2/opam
create mode 100644 packages/stdune/stdune.3.20.0~alpha2/opam
create mode 100644 packages/xdg/xdg.3.20.0~alpha2/opam
(from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63' locally
docker.io/ocaml/opam@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63: Pulling from ocaml/opam
a77c4f4a24ac: Already exists
9d1a03aa3c71: Pulling fs layer
baba434270f2: Pulling fs layer
2a8a0f93626e: Pulling fs layer
f6ba2ed01176: Pulling fs layer
f6ba2ed01176: Waiting
baba434270f2: Verifying Checksum
baba434270f2: Download complete
2a8a0f93626e: Download complete
f6ba2ed01176: Verifying Checksum
f6ba2ed01176: Download complete
9d1a03aa3c71: Verifying Checksum
9d1a03aa3c71: Download complete
9d1a03aa3c71: Pull complete
baba434270f2: Pull complete
2a8a0f93626e: Pull complete
f6ba2ed01176: Pull complete
Digest: sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
Status: Downloaded newer image for ocaml/opam@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
2025-08-05 19:22.26 ---> using "7f53aba96fd697ea92c7c7d3f6be48133fa7f3f6538a693606c4cbcecd7917b8" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-08-05 19:22.26 ---> using "e4ec4ab2139d3c4a94c2b5470fe84288e4986c518ff4f4ae2d7c7e30aeac0731" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-08-05 19:22.26 ---> using "707659fd6393183061072104f3ce800d69d94ba93e0f39ab380130268d0ee81e" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=12
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 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-08-05 19:22.26 ---> using "3ec3067d40f73cc0ec4554b242939c55b0261973e091b54a647662451dc49933" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2025-08-05 19:22.26 ---> using "376e3b49c8c08cb1ff0d45feb403c06e037d8df5800c560fdd8dd472f1e36b9a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-08-05 19:22.27 ---> using "d7c14fc292f88db48f1d08b5e5bee64699faa33d6c6497ea4d0ded851936243b" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-08-05 19:22.27 ---> using "4d064c1160c8dcca737cd7528eeaed565bdc230fcc7555f114d63e3df515c34a" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [19.6 kB]
- Ign:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6916 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [272 kB]
- Fetched 402 kB in 1s (728 kB/s)
- Reading package lists...
-
2025-08-05 19:22.27 ---> using "f43accf761343248e80f7b61b22936d9bfc3109749567c716c34e25a997df933" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune-configurator.3.20.0~alpha2 3.20.0~alpha2"))
dune-configurator is now pinned to version 3.20.0~alpha2
2025-08-05 19:22.27 ---> using "498f610c53b8e71303caac3cc5fc8285da935f9b9ddc7e38d587c4c9eebb2041" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.20.0~alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune-configurator.3.20.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune-configurator.3.20.0~alpha2 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 3 packages
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.20.0~alpha2 [required by dune-configurator]
- install dune-configurator 3.20.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.20.0~alpha2, dune-configurator.3.20.0~alpha2 (cached)
-> installed dune.3.20.0~alpha2
-> installed csexp.1.5.2
-> installed dune-configurator.3.20.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 19:22.27 ---> using "3e71451dcd4420bb892311c68f87187f8d40fb27d797094012ca2caa9183ec4e" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ojs-base.0.6.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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ojs-base.0.6.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ojs-base.0.6.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 86 packages
- install angstrom 0.16.1 [required by uri]
- install asn1-combinators 0.3.2 [required by x509]
- install astring 0.8.5 [required by websocket]
- install base v0.16.4 [required by ppx_sexp_conv]
- install base-bytes base [required by cohttp]
- install base64 3.5.1 [required by ojs-base]
- install bigstringaf 0.10.0 [required by angstrom]
- install bos 0.2.1 [required by ca-certs]
- install ca-certs 1.0.1 [required by conduit-lwt-unix]
- install cmdliner 1.3.0 [required by js_of_ocaml-compiler, cohttp-lwt-unix]
- install cohttp 5.3.1 [required by ojs-base]
- install cohttp-lwt 5.3.0 [required by cohttp-lwt-unix]
- install cohttp-lwt-unix 5.3.0 [required by websocket-lwt-unix]
- install conduit 7.0.0 [required by websocket]
- install conduit-lwt 7.0.0 [required by cohttp-lwt-unix]
- install conduit-lwt-unix 7.0.0 [required by websocket-lwt-unix]
- install conf-autoconf 0.2 [required by ojs-base]
- install conf-gmp 5 [required by conf-gmp-powm-sec, zarith]
- install conf-gmp-powm-sec 4 [required by mirage-crypto-pk]
- install conf-pkg-config 4 [required by zarith]
- install cppo 1.8.0 [required by lwt]
- install digestif 1.3.0 [required by mirage-crypto-rng]
- install domain-name 0.4.1 [required by ipaddr]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install eqaf 0.10 [required by digestif, mirage-crypto]
- install fmt 0.11.0 [required by cohttp-lwt-unix]
- install fpath 0.7.3 [required by ca-certs]
- install gen 1.1 [required by sedlex]
- install gmap 0.3.0 [required by x509]
- install ipaddr 5.6.1 [required by conduit]
- install ipaddr-sexp 5.6.1 [required by conduit]
- install iri 1.1.0 [required by xtmpl]
- install js_of_ocaml 5.9.1 [required by ojs-base]
- install js_of_ocaml-compiler 5.9.1 [required by js_of_ocaml]
- install js_of_ocaml-ppx 5.9.1 [required by xtmpl]
- install jsonm 1.0.2 [required by cohttp]
- install kdf 1.0.0 [required by x509]
- install logs 0.9.0 [required by mirage-crypto-rng, conduit, cohttp-lwt-unix]
- install lwt 5.7.0 [required by ojs-base]
- install lwt_log 1.1.2 [required by websocket-lwt-unix]
- install lwt_ppx 5.9.1 [required by ojs-base]
- install macaddr 5.6.1 [required by ipaddr]
- install magic-mime 1.3.1 [required by ojs-base]
- install menhir 20240715 [required by js_of_ocaml-compiler]
- install menhirCST 20240715 [required by menhir]
- install menhirLib 20240715 [required by js_of_ocaml-compiler]
- install menhirSdk 20240715 [required by js_of_ocaml-compiler]
- install mirage-crypto 2.0.1 [required by mirage-crypto-rng]
- install mirage-crypto-ec 2.0.1 [required by x509]
- install mirage-crypto-pk 2.0.1 [required by x509]
- install mirage-crypto-rng 2.0.1 [required by websocket]
- install num 1.6 [required by sexplib]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlbuild 0.16.1 [required by jsonm, astring]
- install ocamlfind 1.9.8 [required by ojs-base]
- install ocplib-endian 1.2 [required by lwt, websocket]
- install ohex 0.2.0 [required by ca-certs]
- install ojs-base 0.6.0
- install parsexp v0.16.0 [required by sexplib]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.0.3 [required by ppx_deriving_yojson]
- install ppx_deriving_yojson 3.9.1 [required by ojs-base]
- install ppx_sexp_conv v0.16.0 [required by cohttp]
- install ppx_tools 6.6 [required by xtmpl]
- install ppxlib 0.35.0 [required by lwt_ppx, js_of_ocaml, ppx_deriving_yojson]
- install ptime 1.2.0 [required by ca-certs]
- install re 1.13.2 [required by cohttp, xtmpl]
- install rresult 0.7.0 [required by bos]
- install sedlex 3.6 [required by xtmpl]
- install seq base [required by re]
- install sexplib v0.16.0 [required by websocket-lwt-unix]
- install sexplib0 v0.16.0 [required by cohttp]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install stringext 1.6.0 [required by cohttp]
- install topkg 1.1.0 [required by jsonm, astring]
- install uri 4.4.0 [required by cohttp]
- install uri-sexp 4.4.0 [required by cohttp]
- install uunf 16.0.0 [required by iri]
- install uutf 1.0.4 [required by xtmpl]
- install websocket 2.17 [required by ojs-base]
- install websocket-lwt-unix 2.17 [required by ojs-base]
- install x509 1.0.6 [required by ca-certs]
- install xtmpl 0.18.0 [required by ojs-base]
- install yojson 3.0.0 [required by ojs-base]
- install zarith 1.14 [required by mirage-crypto-pk]
The following system packages will first need to be installed:
autoconf libgmp-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "autoconf" "libgmp-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- 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 ... 18747 files and directories currently installed.)
- Preparing to unpack .../0-m4_1.4.19-3_amd64.deb ...
- Unpacking m4 (1.4.19-3) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../1-autoconf_2.71-3_all.deb ...
- Unpacking autoconf (2.71-3) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../2-autotools-dev_20220109.1_all.deb ...
- Unpacking autotools-dev (20220109.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../3-automake_1%3a1.16.5-1.3_all.deb ...
- Unpacking automake (1:1.16.5-1.3) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../4-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../5-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../6-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../7-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../8-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../9-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up m4 (1.4.19-3) ...
- Setting up autotools-dev (20220109.1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up autoconf (2.71-3) ...
- Setting up automake (1:1.16.5-1.3) ...
- update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved asn1-combinators.0.3.2 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.16.4 (cached)
-> retrieved base64.3.5.1 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved ca-certs.1.0.1 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved cohttp.5.3.1 (cached)
-> retrieved cohttp-lwt.5.3.0, cohttp-lwt-unix.5.3.0 (cached)
-> retrieved conduit.7.0.0, conduit-lwt.7.0.0, conduit-lwt-unix.7.0.0 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (cached)
-> retrieved cppo.1.8.0 (cached)
-> installed conf-autoconf.0.2
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed base64.3.5.1
-> installed conf-gmp-powm-sec.4
-> installed bigstringaf.0.10.0
-> retrieved digestif.1.3.0 (cached)
-> retrieved domain-name.0.4.1 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved gen.1.1 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved ipaddr.5.6.1, ipaddr-sexp.5.6.1, macaddr.5.6.1 (cached)
-> retrieved iri.1.1.0 (cached)
-> installed duration.0.2.1
-> installed domain-name.0.4.1
-> installed gmap.0.3.0
-> installed macaddr.5.6.1
-> installed cppo.1.8.0
-> installed eqaf.0.10
-> retrieved js_of_ocaml.5.9.1, js_of_ocaml-compiler.5.9.1, js_of_ocaml-ppx.5.9.1 (cached)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved kdf.1.0.0 (cached)
-> retrieved logs.0.9.0 (cached)
-> retrieved lwt.5.7.0 (cached)
-> retrieved lwt_log.1.1.2 (cached)
-> retrieved lwt_ppx.5.9.1 (cached)
-> installed cmdliner.1.3.0
-> installed digestif.1.3.0
-> installed ipaddr.5.6.1
-> retrieved magic-mime.1.3.1 (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached)
-> installed menhirCST.20240715
-> installed magic-mime.1.3.1
-> installed menhirSdk.20240715
-> installed menhirLib.20240715
-> retrieved mirage-crypto.2.0.1, mirage-crypto-ec.2.0.1, mirage-crypto-pk.2.0.1, mirage-crypto-rng.2.0.1 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ohex.0.2.0 (cached)
-> retrieved ojs-base.0.6.0 (cached)
-> retrieved parsexp.v0.16.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_deriving_yojson.3.9.1 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> retrieved ppx_tools.6.6 (cached)
-> installed ohex.0.2.0
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.13.2 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sedlex.3.6 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib.v0.16.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved topkg.1.1.0 (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached)
-> retrieved uunf.16.0.0 (cached)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved uutf.1.0.4 (cached)
-> installed stringext.1.6.0
-> installed stdlib-shims.0.3.0
-> retrieved websocket.2.17, websocket-lwt-unix.2.17 (cached)
-> retrieved x509.1.0.6 (cached)
-> retrieved xtmpl.0.18.0 (cached)
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved yojson.3.0.0 (cached)
-> retrieved zarith.1.14 (cached)
-> installed sexplib0.v0.16.0
-> installed angstrom.0.16.1
-> installed gen.1.1
-> installed num.1.6
-> installed re.1.13.2
-> installed mirage-crypto.2.0.1
-> installed kdf.1.0.0
-> installed yojson.3.0.0
-> installed parsexp.v0.16.0
-> installed ppx_tools.6.6
-> installed uri.4.4.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed sexplib.v0.16.0
-> installed ocplib-endian.1.2
-> installed ocamlbuild.0.16.1
-> installed base.v0.16.4
-> installed zarith.1.14
-> installed lwt.5.7.0
-> installed lwt_log.1.1.2
-> installed topkg.1.1.0
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed asn1-combinators.0.3.2
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed menhir.20240715
-> installed ppxlib.0.35.0
-> installed lwt_ppx.5.9.1
-> installed ppx_deriving.6.0.3
-> installed ppx_sexp_conv.v0.16.0
-> installed sedlex.3.6
-> installed uunf.16.0.0
-> installed ipaddr-sexp.5.6.1
-> installed uri-sexp.4.4.0
-> installed ppx_deriving_yojson.3.9.1
-> installed iri.1.1.0
-> installed cohttp.5.3.1
-> installed js_of_ocaml-compiler.5.9.1
-> installed logs.0.9.0
-> installed mirage-crypto-rng.2.0.1
-> installed mirage-crypto-pk.2.0.1
-> installed conduit.7.0.0
-> installed cohttp-lwt.5.3.0
-> installed websocket.2.17
-> installed conduit-lwt.7.0.0
-> installed bos.0.2.1
-> installed mirage-crypto-ec.2.0.1
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed conduit-lwt-unix.7.0.0
-> installed cohttp-lwt-unix.5.3.0
-> installed websocket-lwt-unix.2.17
-> installed js_of_ocaml.5.9.1
-> installed js_of_ocaml-ppx.5.9.1
-> installed xtmpl.0.18.0
-> installed ojs-base.0.6.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 19:24.33 ---> saved as "c941cfe0711391ad7b296715a1cf44145d93d67a0fe27a89333fe5682da9b84a"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ojs-base.0.6.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile ojs-base 0.6.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ojs-base.0.6.0 (https://opam.ocaml.org/cache)
-> removed ojs-base.0.6.0
-> installed ojs-base.0.6.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 19:25.01 ---> saved as "ed42dc1d1de66bbd1d156acc8e6e83ce432d9dcb852ad688cbd628df5b23d60d"
/home/opam: (run (shell "opam reinstall --with-test --verbose ojs-base.0.6.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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ojs-base.0.6.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 ojs-base 0.6.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [ojs-base.0.6.0: extract]
-> retrieved ojs-base.0.6.0 (cached)
Processing 2/4: [ojs-base: ./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/ojs-base.0.6.0)
- checking for ocamlc... /home/opam/.opam/4.14/bin/ocamlc
- found OCaml version 4.14.2 (4.14.2)
- checking for ocamlfind... /home/opam/.opam/4.14/bin/ocamlfind
- checking for camlp4... no
- checking for ocamlprof... /home/opam/.opam/4.14/bin/ocamlprof
- checking for ocamlmktop... /home/opam/.opam/4.14/bin/ocamlmktop
- checking for ocamlmklib... /home/opam/.opam/4.14/bin/ocamlmklib
- checking for ocamlyacc... /home/opam/.opam/4.14/bin/ocamlyacc
- checking for ocamllex... /home/opam/.opam/4.14/bin/ocamllex
- checking for ocamldoc... /home/opam/.opam/4.14/bin/ocamldoc
- checking for ocamldep... /home/opam/.opam/4.14/bin/ocamldep
- checking for ocamlopt... /home/opam/.opam/4.14/bin/ocamlopt
- checking for ocaml... /home/opam/.opam/4.14/bin/ocaml
- checking for ocamllex.opt... /home/opam/.opam/4.14/bin/ocamllex.opt
- we can use /home/opam/.opam/4.14/bin/ocamllex.opt
- checking for ocamldoc.opt... /home/opam/.opam/4.14/bin/ocamldoc.opt
- we can use /home/opam/.opam/4.14/bin/ocamldoc.opt
- checking for ocamldep.opt... /home/opam/.opam/4.14/bin/ocamldep.opt
- we can use /home/opam/.opam/4.14/bin/ocamldep.opt
- checking for ocamlopt.opt... /home/opam/.opam/4.14/bin/ocamlopt.opt
- we can use /home/opam/.opam/4.14/bin/ocamlopt.opt
- checking for ocamlc.opt... /home/opam/.opam/4.14/bin/ocamlc.opt
- we can use /home/opam/.opam/4.14/bin/ocamlc.opt
- Objective-Caml version 4.14.2 (4.14.2)
- interpreter: /home/opam/.opam/4.14/bin/ocaml
- bytecode compiler: /home/opam/.opam/4.14/bin/ocamlc.opt
- native code compiler: /home/opam/.opam/4.14/bin/ocamlopt.opt
- documentation generator(s): /home/opam/.opam/4.14/bin/ocamldoc, /home/opam/.opam/4.14/bin/ocamldoc.opt
- lexer generator: /home/opam/.opam/4.14/bin/ocamllex.opt
- parser generator: /home/opam/.opam/4.14/bin/ocamlyacc
- dependencies generator: /home/opam/.opam/4.14/bin/ocamldep.opt
- library builder: /home/opam/.opam/4.14/bin/ocamlmklib
- toplevel builder: /home/opam/.opam/4.14/bin/ocamlmktop
- profiler: /home/opam/.opam/4.14/bin/ocamlprof
- ocamlfind: /home/opam/.opam/4.14/bin/ocamlfind
-
- ### checking required tools and libraries ###
- checking for js_of_ocaml... ok
- checking for cohttp... ok
- checking for websocket... ok
- checking for websocket-lwt-unix... ok
- checking for lwt.unix... ok
- checking for yojson... ok
- checking for ppx_deriving_yojson... ok
- checking for base64... ok
- checking for xtmpl... ok
- checking for magic-mime... ok
- checking for js_of_ocaml... /home/opam/.opam/4.14/bin/js_of_ocaml
-
- ###
- configure: creating ./config.status
- config.status: creating master.Makefile
- config.status: creating src/META
-
- ### Results of configuration ###
-
- Version is 0.6.0
- Package to be installed: ojs-base ojs-base.js
-
Processing 2/4: [ojs-base: make all]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "all" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ojs-base.0.6.0)
- cd src && make all
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ojs-base.0.6.0/src'
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_misc.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_types.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_rpc.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_path.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_misc.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_rpc.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_path.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-base.cmxa ojs_misc.cmx ojs_types.cmx ojs_rpc.cmx ojs_path.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_tmpl.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_server.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_tmpl.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-base-server.cmxa ojs_tmpl.cmx ojs_server.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -shared -o ojs-base.cmxs ojs_misc.cmx ojs_types.cmx ojs_rpc.cmx ojs_path.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -rectypes -package ppx_tools.metaquot,xtmpl ppx_ojs.ml
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /home/opam/.opam/4.14/lib/ocaml, /home/opam/.opam/4.14/lib/ocaml/compiler-libs
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -o ppx_ojs -package ppx_tools.metaquot,str,xtmpl \
- -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -linkpkg ppx_ojs.cmx
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /home/opam/.opam/4.14/lib/ocaml/compiler-libs, /home/opam/.opam/4.14/lib/ocaml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_types.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-editor.cmxa ojsed_types.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_files.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_server.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_files.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-editor-server.cmxa ojsed_files.cmx ojsed_server.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_types.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-filetree.cmxa ojsft_types.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_find.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_files.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_server.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_find.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_files.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-filetree-server.cmxa ojsft_find.cmx ojsft_files.cmx ojsft_server.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsl_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsl_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-list.cmxa ojsl_types.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsl_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsl_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -o ojs-list-server.cmxa ojsl_server.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_misc.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_rpc.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_path.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-base.cma ojs_misc.cmo ojs_types.cmo ojs_rpc.cmo ojs_path.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_tmpl.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-base-server.cma ojs_tmpl.cmo ojs_server.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojs_js.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojsmsg_js.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojs_js.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-base-js.cma ojs_js.cmo ojsmsg_js.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -rectypes -package ppx_tools.metaquot,xtmpl ppx_ojs.ml
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /home/opam/.opam/4.14/lib/ocaml, /home/opam/.opam/4.14/lib/ocaml/compiler-libs
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -o ppx_ojs.byte -package ppx_tools.metaquot,str,xtmpl \
- -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -linkpkg ppx_ojs.cmo
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /home/opam/.opam/4.14/lib/ocaml/compiler-libs, /home/opam/.opam/4.14/lib/ocaml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-editor.cma ojsed_types.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_files.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsed_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-editor-server.cma ojsed_files.cmo ojsed_server.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojs_ace.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- File "ojs_ace.ml", line 38, characters 18-33:
- 38 | Unsafe.new_obj (Unsafe.variable "ace.UndoManager") [| |]
- ^^^^^^^^^^^^^^^
- Alert deprecated: Js_of_ocaml.Js.Unsafe.variable
- [since 2.6] use Js.Unsafe.pure_js_expr instead
- File "ojs_ace.ml", line 58, characters 19-34:
- 58 | (Unsafe.new_obj (Unsafe.variable "ace.EditSession")
- ^^^^^^^^^^^^^^^
- Alert deprecated: Js_of_ocaml.Js.Unsafe.variable
- [since 2.6] use Js.Unsafe.pure_js_expr instead
- File "ojs_ace.ml", line 62, characters 19-34:
- 62 | (Unsafe.new_obj (Unsafe.variable "ace.EditSession")
- ^^^^^^^^^^^^^^^
- Alert deprecated: Js_of_ocaml.Js.Unsafe.variable
- [since 2.6] use Js.Unsafe.pure_js_expr instead
- File "ojs_ace.ml", line 98, characters 12-27:
- 98 | let ace = ((Unsafe.variable "ace") : ace Js.t)
- ^^^^^^^^^^^^^^^
- Alert deprecated: Js_of_ocaml.Js.Unsafe.variable
- [since 2.6] use Js.Unsafe.pure_js_expr instead
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojsed_js.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojsed_js.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-editor-js.cma ojs_ace.cmo ojsed_js.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_types.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-filetree.cma ojsft_types.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_find.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_files.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c ojsft_server.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-filetree-server.cma ojsft_find.cmo ojsft_files.cmo ojsft_server.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojsft_js.mli
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojsft_js.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-filetree-js.cma ojsft_js.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-list.cma ojsl_types.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-list-server.cma ojsl_server.cmo
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package str,yojson,websocket-lwt-unix,lwt.unix,lwt_ppx,ppx_deriving_yojson,base64,magic-mime,xtmpl,js_of_ocaml,xtmpl.ppx -I +ocamldoc -I example -annot -g -thread -rectypes -warn-error F -annot -c -package js_of_ocaml-ppx ojsl_js.ml
- ocamlfind: [WARNING] Package `uunf.string': Deprecated, use the uunf library.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -o ojs-list-js.cma ojsl_js.cmo
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ojs-base.0.6.0/src'
-> compiled ojs-base.0.6.0
-> removed ojs-base.0.6.0
Processing 4/4: [ojs-base: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ojs-base.0.6.0)
- cd src && make install
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ojs-base.0.6.0/src'
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsl_js.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-list-js.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-list-server.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-list-server.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-list-server.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsl_server.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsl_server.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsl_server.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-list.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-list.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-list.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsl_types.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsl_types.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsl_types.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_js.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_ace.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-editor-js.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-editor-server.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-editor-server.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-editor-server.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_server.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_files.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_server.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_files.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_server.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_files.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-editor.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-editor.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-editor.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_types.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_types.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsed_types.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_js.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-filetree-js.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-filetree-server.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-filetree-server.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-filetree-server.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_server.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_files.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_find.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_server.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_files.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_find.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_server.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_files.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_find.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-filetree.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-filetree.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-filetree.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_types.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_types.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsft_types.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojsmsg_js.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_js.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base-js.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ppx_ojs.byte
- Installed /home/opam/.opam/4.14/lib/ojs-base/ppx_ojs
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base-server.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base-server.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base-server.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_server.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_tmpl.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_server.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_tmpl.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_server.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_tmpl.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base.cmxs
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base.a
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base.cmxa
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs-base.cma
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_path.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_rpc.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_types.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_misc.o
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_path.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_rpc.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_types.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_misc.cmx
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_path.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_rpc.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_types.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/ojs_misc.cmi
- Installed /home/opam/.opam/4.14/lib/ojs-base/META
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ojs-base.0.6.0/src'
-> installed ojs-base.0.6.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 19:25.31 ---> saved as "ace74cff3b761ddf3efb83858ef166d139a3627acdfffa7df4e69c8ea9dfbc1e"
Job succeeded
2025-08-05 19:25.48: Job succeeded