- github
- ocaml
- opam-repository
- 6f0fc6
- compilers,4.14,mirage-runtime.4.10.4,revdeps,aws-sdb.0.1.0
(not at the head of any monitored branch or PR)
2025-11-21 11:38.58: New job: test aws-sdb.0.1.0 with mirage-runtime.4.10.4, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28942/head (6f0fc6a951253ffe47c1572d3ded0aa67df3d990)
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/28942/head" && git reset --hard 6f0fc6a9
git fetch origin master
git merge --no-edit ee3428377a13c3c9716b6f791c33441cfb542498
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c
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 mirage-runtime.4.10.4 4.10.4
RUN opam reinstall mirage-runtime.4.10.4; \
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-runtime.4.10.4' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall aws-sdb.0.1.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'aws-sdb.0.1.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 aws-sdb.0.1.0) || true
RUN opam reinstall --with-test --verbose aws-sdb.0.1.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'aws-sdb.0.1.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-11-21 11:38.58: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c-mirage-runtime.4.10.4-aws-sdb.0.1.0-6f0fc6a951253ffe47c1572d3ded0aa67df3d990"
2025-11-21 11:38.58: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c)
(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 mirage-runtime.4.10.4 4.10.4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mirage-runtime.4.10.4;\
\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-runtime.4.10.4' && 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 aws-sdb.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'aws-sdb.0.1.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 aws-sdb.0.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose aws-sdb.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'aws-sdb.0.1.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-11-21 11:38.58: Waiting for resource in pool OCluster
2025-11-21 13:41.46: Waiting for worker…
2025-11-21 13:45.10: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 79% (14871/18785)
Updating files: 80% (15028/18785)
Updating files: 81% (15216/18785)
Updating files: 82% (15404/18785)
Updating files: 83% (15592/18785)
Updating files: 84% (15780/18785)
Updating files: 85% (15968/18785)
Updating files: 86% (16156/18785)
Updating files: 87% (16343/18785)
Updating files: 88% (16531/18785)
Updating files: 89% (16719/18785)
Updating files: 90% (16907/18785)
Updating files: 91% (17095/18785)
Updating files: 92% (17283/18785)
Updating files: 93% (17471/18785)
Updating files: 94% (17658/18785)
Updating files: 95% (17846/18785)
Updating files: 96% (18034/18785)
Updating files: 97% (18222/18785)
Updating files: 98% (18410/18785)
Updating files: 99% (18598/18785)
Updating files: 100% (18785/18785)
Updating files: 100% (18785/18785), done.
HEAD is now at ee3428377a Merge pull request #28925 from edwintorok/rocky
Updating ee3428377a..6f0fc6a951
Fast-forward
packages/mirage-runtime/mirage-runtime.4.10.4/opam | 45 +++++++++++++++
packages/mirage/mirage.4.10.4/opam | 64 ++++++++++++++++++++++
2 files changed, 109 insertions(+)
create mode 100644 packages/mirage-runtime/mirage-runtime.4.10.4/opam
create mode 100644 packages/mirage/mirage.4.10.4/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c' locally
docker.io/ocaml/opam@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c: Pulling from ocaml/opam
13cc39f8244a: Already exists
9d7c1cac6af4: Already exists
979e6521bf84: Already exists
b129e961d700: Already exists
9288fc69cd29: Already exists
b232c90b1855: Already exists
658a78f60f44: Already exists
b3e6010fbc4c: Already exists
e75ac7b73fdb: Already exists
f1dbfc01d8b6: Already exists
42e8958c94a5: Already exists
1c77fd15fa4b: Already exists
f8ae0ec2765e: Already exists
87b5808a8709: Already exists
6551add7b2f4: Already exists
a050a941214a: Already exists
da6cadefa7ea: Already exists
0a3e89137cf8: Already exists
cc34154fc322: Already exists
eb7661180f3a: Already exists
faad806bf7c5: Already exists
4f4fb700ef54: Already exists
fe5692607199: Already exists
caa548e7f855: Already exists
8ad66e641b14: Already exists
b9d5d27dc0b6: Already exists
788961b65661: Already exists
9ed95272e11f: Already exists
82c1497059a3: Already exists
8abbeded2fb9: Already exists
1276181ef5dc: Already exists
0bd63c9342a5: Already exists
0294cf425d8c: Already exists
def43d8fc04c: Already exists
c87ed18f9ca6: Already exists
056f995b50a2: Already exists
c9f03af6c585: Already exists
4e0df0b17574: Already exists
1fcd55c53252: Already exists
9fe15f147c9c: Already exists
ada2682c449c: Pulling fs layer
295973a65af5: Pulling fs layer
e7a455463b73: Pulling fs layer
98af01a2e2e5: Pulling fs layer
98af01a2e2e5: Waiting
295973a65af5: Verifying Checksum
295973a65af5: Download complete
e7a455463b73: Verifying Checksum
e7a455463b73: Download complete
98af01a2e2e5: Download complete
ada2682c449c: Download complete
ada2682c449c: Pull complete
295973a65af5: Pull complete
e7a455463b73: Pull complete
98af01a2e2e5: Pull complete
Digest: sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c
Status: Downloaded newer image for ocaml/opam@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c
2025-11-21 13:45.17 ---> using "e1d8c7e6beb03face60eaf04e7070eb8fe39365c831388bb928a8a0dc291c14b" 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-11-21 13:45.17 ---> using "2307f4f0390ea55b0743cced2b0ef2c439085d38b1bcfe5527a1eea2d8f28a7b" 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-11-21 13:45.17 ---> using "476926e1c541f3b8e2a490bca49177a7fda19b1c01d3393e3e0155a9c8e57d37" 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~beta1
# 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-11-21 13:45.17 ---> using "f29c5689f62c7ea3a8637db8ec34207e109fb97b0cdeb9e76d16c5be29766fea" 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-11-21 13:45.17 ---> using "95b7b1f66abb06f8d3a8f197d1e8d2b38f8b35c8e65e7fbee6a5b1e76aa55116" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-21 13:45.18 ---> using "3ea6125d37318f691fa104d52c30e245a378ea5c21b7f441202ad8f73078ef28" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-21 13:45.18 ---> using "8a4f01dd5788974401caaea12f7798f7828afdc7bf5d8ea6f8ff15833dea2f77" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [71.8 kB]
- Fetched 9973 kB in 3s (3072 kB/s)
- Reading package lists...
-
2025-11-21 13:45.18 ---> using "743ffdfadbe6001a674c844290e4b7561005ae96a405d0b7abacad246edc635a" from cache
/home/opam: (run (shell "opam pin add -k version -yn mirage-runtime.4.10.4 4.10.4"))
mirage-runtime is now pinned to version 4.10.4
2025-11-21 13:45.18 ---> using "51f802b4f0f351ea48c79bfd32bd54f6e18b256a6da536dbf6e398266c3cb6b6" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mirage-runtime.4.10.4;\
\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-runtime.4.10.4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
mirage-runtime.4.10.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 16 packages
- install base-bytes base [required by ocplib-endian]
- install cmdliner 2.0.0 [required by mirage-runtime]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install domain-name 0.5.0 [required by ipaddr]
- install dune 3.20.2 [required by mirage-runtime]
- install dune-configurator 3.20.2 [required by lwt]
- install ipaddr 5.6.1 [required by mirage-runtime]
- install logs 0.10.0 [required by mirage-runtime]
- install lwt 5.9.2 [required by mirage-runtime]
- install macaddr 5.6.1 [required by ipaddr]
- install mirage-runtime 4.10.4 (pinned)
- install ocamlbuild 0.16.1 [required by logs]
- install ocamlfind 1.9.8 [required by logs]
- install ocplib-endian 1.2 [required by lwt]
- install topkg 1.1.1 [required by logs]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.0.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved ipaddr.5.6.1, macaddr.5.6.1 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.5.9.2 (cached)
-> retrieved mirage-runtime.4.10.4 (cached)
-> installed cmdliner.2.0.0
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed dune.3.20.2
-> installed domain-name.0.5.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed macaddr.5.6.1
-> installed ocplib-endian.1.2
-> installed ipaddr.5.6.1
-> installed dune-configurator.3.20.2
-> installed lwt.5.9.2
-> installed logs.0.10.0
-> installed mirage-runtime.4.10.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-21 13:45.18 ---> using "4ed5754f912a8b3c075a91246dba1e1c7c41b8221862593044caed6423a64a59" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall aws-sdb.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'aws-sdb.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
aws-sdb.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 34 packages
- install angstrom 0.16.1 [required by uri]
- install astring 0.8.5 [required by ocb-stubblr]
- install aws 1.0.2 [required by aws-sdb]
- install aws-sdb 0.1.0
- install base v0.16.4 [required by ppx_sexp_conv]
- install bigarray-compat 1.1.0 [required by cstruct]
- install bigstringaf 0.10.0 [required by angstrom]
- install calendar 3.0.0 [required by aws]
- install conf-gmp 5 [required by zarith]
- install conf-pkg-config 4 [required by zarith]
- install cpuid 0.1.2 [required by nocrypto]
- install cstruct 6.0.1 [required by nocrypto]
- install cstruct-lwt 6.0.1 [required by nocrypto]
- install ezxmlm 1.1.0 [required by aws]
- install mirage-no-solo5 1 (deprecated) [required by nocrypto]
- install mirage-no-xen 1 (deprecated) [required by nocrypto]
- install nocrypto 0.5.4-2 [required by aws]
- 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 ocb-stubblr 0.1.1-1 [required by nocrypto]
- 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 nocrypto]
- install ppx_sexp_conv v0.16.0 [required by nocrypto]
- install ppxlib 0.35.0 [required by ppx_deriving, ppx_sexp_conv]
- install re 1.14.0 [required by calendar]
- install sexplib v0.16.0 [required by nocrypto]
- install sexplib0 v0.16.0 [required by ppx_sexp_conv, sexplib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install stringext 1.6.0 [required by uri]
- install uri 4.4.0 [required by aws]
- install xmlm 1.4.0 [required by ezxmlm]
- install zarith 1.14 [required by nocrypto]
The following system packages will first need to be installed:
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" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl: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 .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-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 libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- 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 angstrom.0.16.1 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved aws.1.0.2 (cached)
-> retrieved aws-sdb.0.1.0 (cached)
-> retrieved base.v0.16.4 (cached)
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved calendar.3.0.0 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved cpuid.0.1.2 (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> retrieved cstruct.6.0.1, cstruct-lwt.6.0.1 (cached)
-> retrieved ezxmlm.1.1.0 (cached)
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> installed cpuid.0.1.2
-> installed bigarray-compat.1.1.0
-> installed bigstringaf.0.10.0
-> retrieved nocrypto.0.5.4-2 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocb-stubblr.0.1.1-1 (cached)
-> retrieved parsexp.v0.16.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> installed cstruct.6.0.1
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.35.0 (cached)
-> installed cstruct-lwt.6.0.1
-> retrieved re.1.14.0 (cached)
-> 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 uri.4.4.0 (cached)
-> retrieved xmlm.1.4.0 (cached)
-> retrieved zarith.1.14 (cached)
-> installed astring.0.8.5
-> installed stringext.1.6.0
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed sexplib0.v0.16.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed angstrom.0.16.1
-> installed ocb-stubblr.0.1.1-1
-> installed num.1.6
-> installed re.1.14.0
-> installed xmlm.1.4.0
-> installed ezxmlm.1.1.0
-> installed parsexp.v0.16.0
-> installed calendar.3.0.0
-> installed uri.4.4.0
-> installed sexplib.v0.16.0
-> installed zarith.1.14
-> installed base.v0.16.4
-> installed ppxlib.0.35.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed nocrypto.0.5.4-2
-> installed aws.1.0.2
-> installed aws-sdb.0.1.0
Done.
<><> mirage-no-xen.1 installed successfully <><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
<><> mirage-no-solo5.1 installed successfully <><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-11-21 13:46.34 ---> saved as "f1def761e2b7822a55eb4db7acccc1d64ec45eea7c8d362d0ca325e319bebedd"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test aws-sdb.0.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile aws-sdb 0.1.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved aws-sdb.0.1.0 (https://opam.ocaml.org/cache)
-> removed aws-sdb.0.1.0
-> installed aws-sdb.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-21 13:47.04 ---> saved as "47a814915ccc0f10d8baa399ae3000492efd19628e7b87a6ee7076d3f5cf92fe"
/home/opam: (run (shell "opam reinstall --with-test --verbose aws-sdb.0.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'aws-sdb.0.1.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 aws-sdb 0.1.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [aws-sdb.0.1.0: extract]
-> retrieved aws-sdb.0.1.0 (cached)
Processing 2/4: [aws-sdb: ocaml setup.ml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "setup.ml" "-configure" "--prefix" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/build/aws-sdb.0.1.0)
- 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: ........................................ aws-sdb
- Package version: ..................................... 0.1.0
- 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: .......... /home/opam/.opam/4.14
- Install architecture-dependent files in dir: ......... $prefix
- User executables: .................................... $exec_prefix/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_aws: ............................................. /home/opam/.opam/4.14/lib/aws
- ocamldoc: ............................................ /home/opam/.opam/4.14/bin/ocamldoc
-
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "setup.ml" "-build" (CWD=/home/opam/.opam/4.14/.opam-switch/build/aws-sdb.0.1.0)
- 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.
- W: Cannot find source file matching module 'aws-sdb' in library aws-sdb
- + /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 aws -modules lib/types.ml > lib/types.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/errors.ml > lib/errors.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/batchDeleteAttributes.mli > lib/batchDeleteAttributes.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/errors.cmo lib/errors.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/types.cmo lib/types.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/batchDeleteAttributes.cmi lib/batchDeleteAttributes.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/batchDeleteAttributes.ml > lib/batchDeleteAttributes.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/batchPutAttributes.mli > lib/batchPutAttributes.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/batchPutAttributes.cmi lib/batchPutAttributes.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/batchPutAttributes.ml > lib/batchPutAttributes.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/createDomain.mli > lib/createDomain.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/createDomain.cmi lib/createDomain.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/createDomain.ml > lib/createDomain.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/deleteAttributes.mli > lib/deleteAttributes.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/deleteAttributes.cmi lib/deleteAttributes.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/deleteAttributes.ml > lib/deleteAttributes.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/deleteDomain.mli > lib/deleteDomain.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/deleteDomain.cmi lib/deleteDomain.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/deleteDomain.ml > lib/deleteDomain.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/domainMetadata.mli > lib/domainMetadata.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/domainMetadata.cmi lib/domainMetadata.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/domainMetadata.ml > lib/domainMetadata.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/getAttributes.mli > lib/getAttributes.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/getAttributes.cmi lib/getAttributes.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/getAttributes.ml > lib/getAttributes.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/listDomains.mli > lib/listDomains.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/listDomains.cmi lib/listDomains.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/listDomains.ml > lib/listDomains.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/putAttributes.mli > lib/putAttributes.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/putAttributes.cmi lib/putAttributes.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/putAttributes.ml > lib/putAttributes.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/select.mli > lib/select.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/select.cmi lib/select.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package aws -modules lib/select.ml > lib/select.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/batchDeleteAttributes.cmo lib/batchDeleteAttributes.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/batchPutAttributes.cmo lib/batchPutAttributes.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/createDomain.cmo lib/createDomain.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/deleteAttributes.cmo lib/deleteAttributes.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/deleteDomain.cmo lib/deleteDomain.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/domainMetadata.cmo lib/domainMetadata.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/getAttributes.cmo lib/getAttributes.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/listDomains.cmo lib/listDomains.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/putAttributes.cmo lib/putAttributes.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package aws -I lib -o lib/select.cmo lib/select.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -pack -g -annot -bin-annot lib/types.cmo lib/errors.cmo lib/batchDeleteAttributes.cmo lib/batchPutAttributes.cmo lib/createDomain.cmo lib/deleteAttributes.cmo lib/deleteDomain.cmo lib/domainMetadata.cmo lib/getAttributes.cmo lib/listDomains.cmo lib/putAttributes.cmo lib/select.cmo -o lib/aws-sdb.cmo
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -I lib lib/aws-sdb.cmo -o lib/aws-sdb.cma
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-sdb -I lib -o lib/errors.cmx lib/errors.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-sdb -I lib -o lib/types.cmx lib/types.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-sdb -I lib -o lib/batchDeleteAttributes.cmx lib/batchDeleteAttributes.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-sdb -I lib -o lib/batchPutAttributes.cmx lib/batchPutAttributes.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-sdb -I lib -o lib/createDomain.cmx lib/createDomain.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-sdb -I lib -o lib/deleteAttributes.cmx lib/deleteAttributes.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-sdb -I lib -o lib/deleteDomain.cmx lib/deleteDomain.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-sdb -I lib -o lib/domainMetadata.cmx lib/domainMetadata.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-sdb -I lib -o lib/getAttributes.cmx lib/getAttributes.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-sdb -I lib -o lib/listDomains.cmx lib/listDomains.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-sdb -I lib -o lib/putAttributes.cmx lib/putAttributes.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package aws -for-pack Aws-sdb -I lib -o lib/select.cmx lib/select.ml
- + touch lib/aws-sdb.mli ; if /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -pack -g -annot -bin-annot -I lib lib/types.cmx lib/errors.cmx lib/batchDeleteAttributes.cmx lib/batchPutAttributes.cmx lib/createDomain.cmx lib/deleteAttributes.cmx lib/deleteDomain.cmx lib/domainMetadata.cmx lib/getAttributes.cmx lib/listDomains.cmx lib/putAttributes.cmx lib/select.cmx -o lib/aws-sdb.cmx ; then rm -f lib/aws-sdb.mli ; else rm -f lib/aws-sdb.mli ; exit 1; fi
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -I lib lib/aws-sdb.cmx -o lib/aws-sdb.cmxa
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -shared -I lib lib/aws-sdb.cmxa lib/aws-sdb.cmx -o lib/aws-sdb.cmxs
- + /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 aws-sdb.0.1.0
Processing 3/4: [aws-sdb: ocamlfind remove]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "ocamlfind" "remove" "aws-autoscaling" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/aws-sdb.0.1.0)
- ocamlfind: [WARNING] No such file: /home/opam/.opam/4.14/lib/aws-autoscaling/META
-> removed aws-sdb.0.1.0
Processing 4/4: [aws-sdb: ocaml setup.ml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "ocaml" "setup.ml" "-install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/aws-sdb.0.1.0)
- 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.
- Installed /home/opam/.opam/4.14/lib/aws-sdb/types.ml
- Installed /home/opam/.opam/4.14/lib/aws-sdb/errors.ml
- Installed /home/opam/.opam/4.14/lib/aws-sdb/batchDeleteAttributes.mli
- Installed /home/opam/.opam/4.14/lib/aws-sdb/batchPutAttributes.mli
- Installed /home/opam/.opam/4.14/lib/aws-sdb/createDomain.mli
- Installed /home/opam/.opam/4.14/lib/aws-sdb/deleteAttributes.mli
- Installed /home/opam/.opam/4.14/lib/aws-sdb/deleteDomain.mli
- Installed /home/opam/.opam/4.14/lib/aws-sdb/domainMetadata.mli
- Installed /home/opam/.opam/4.14/lib/aws-sdb/getAttributes.mli
- Installed /home/opam/.opam/4.14/lib/aws-sdb/listDomains.mli
- Installed /home/opam/.opam/4.14/lib/aws-sdb/putAttributes.mli
- Installed /home/opam/.opam/4.14/lib/aws-sdb/select.mli
- Installed /home/opam/.opam/4.14/lib/aws-sdb/aws-sdb.cmt
- Installed /home/opam/.opam/4.14/lib/aws-sdb/aws-sdb.cmi
- Installed /home/opam/.opam/4.14/lib/aws-sdb/aws-sdb.cma
- Installed /home/opam/.opam/4.14/lib/aws-sdb/aws-sdb.cmxa
- Installed /home/opam/.opam/4.14/lib/aws-sdb/aws-sdb.a
- Installed /home/opam/.opam/4.14/lib/aws-sdb/aws-sdb.cmxs
- Installed /home/opam/.opam/4.14/lib/aws-sdb/select.cmti
- Installed /home/opam/.opam/4.14/lib/aws-sdb/select.cmt
- Installed /home/opam/.opam/4.14/lib/aws-sdb/select.annot
- Installed /home/opam/.opam/4.14/lib/aws-sdb/putAttributes.cmti
- Installed /home/opam/.opam/4.14/lib/aws-sdb/putAttributes.cmt
- Installed /home/opam/.opam/4.14/lib/aws-sdb/putAttributes.annot
- Installed /home/opam/.opam/4.14/lib/aws-sdb/listDomains.cmti
- Installed /home/opam/.opam/4.14/lib/aws-sdb/listDomains.cmt
- Installed /home/opam/.opam/4.14/lib/aws-sdb/listDomains.annot
- Installed /home/opam/.opam/4.14/lib/aws-sdb/getAttributes.cmti
- Installed /home/opam/.opam/4.14/lib/aws-sdb/getAttributes.cmt
- Installed /home/opam/.opam/4.14/lib/aws-sdb/getAttributes.annot
- Installed /home/opam/.opam/4.14/lib/aws-sdb/domainMetadata.cmti
- Installed /home/opam/.opam/4.14/lib/aws-sdb/domainMetadata.cmt
- Installed /home/opam/.opam/4.14/lib/aws-sdb/domainMetadata.annot
- Installed /home/opam/.opam/4.14/lib/aws-sdb/deleteDomain.cmti
- Installed /home/opam/.opam/4.14/lib/aws-sdb/deleteDomain.cmt
- Installed /home/opam/.opam/4.14/lib/aws-sdb/deleteDomain.annot
- Installed /home/opam/.opam/4.14/lib/aws-sdb/deleteAttributes.cmti
- Installed /home/opam/.opam/4.14/lib/aws-sdb/deleteAttributes.cmt
- Installed /home/opam/.opam/4.14/lib/aws-sdb/deleteAttributes.annot
- Installed /home/opam/.opam/4.14/lib/aws-sdb/createDomain.cmti
- Installed /home/opam/.opam/4.14/lib/aws-sdb/createDomain.cmt
- Installed /home/opam/.opam/4.14/lib/aws-sdb/createDomain.annot
- Installed /home/opam/.opam/4.14/lib/aws-sdb/batchPutAttributes.cmti
- Installed /home/opam/.opam/4.14/lib/aws-sdb/batchPutAttributes.cmt
- Installed /home/opam/.opam/4.14/lib/aws-sdb/batchPutAttributes.annot
- Installed /home/opam/.opam/4.14/lib/aws-sdb/batchDeleteAttributes.cmti
- Installed /home/opam/.opam/4.14/lib/aws-sdb/batchDeleteAttributes.cmt
- Installed /home/opam/.opam/4.14/lib/aws-sdb/batchDeleteAttributes.annot
- Installed /home/opam/.opam/4.14/lib/aws-sdb/errors.cmt
- Installed /home/opam/.opam/4.14/lib/aws-sdb/errors.annot
- Installed /home/opam/.opam/4.14/lib/aws-sdb/types.cmt
- Installed /home/opam/.opam/4.14/lib/aws-sdb/types.annot
- Installed /home/opam/.opam/4.14/lib/aws-sdb/aws-sdb.cmx
- Installed /home/opam/.opam/4.14/lib/aws-sdb/META
-> installed aws-sdb.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-21 13:47.20 ---> saved as "c6d28daf6f05ccccabc7ad54e0ad84a08a25e5043bef5d18b3cc754e76a32a5b"
Job succeeded
2025-11-21 13:47.27: Job succeeded