(for PR #28928)
2025-11-19 22:42.16: New job: test dream.1.0.0~alpha1 with opam-format.2.5.0~rc1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28928/head (8320df5ef052bc20dca41e97f1833c3d3ab518ce)
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/28928/head" && git reset --hard 8320df5e
git fetch origin master
git merge --no-edit 87196fafe7f6488827fc23a7037de5c7e34867da
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 opam-format.2.5.0~rc1 2.5.0~rc1
RUN opam reinstall opam-format.2.5.0~rc1; \
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" != 'opam-format.2.5.0~rc1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall dream.1.0.0~alpha1; \
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" != 'dream.1.0.0~alpha1' && 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 dream.1.0.0~alpha1) || true
RUN opam reinstall --with-test --verbose dream.1.0.0~alpha1; \
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" != 'dream.1.0.0~alpha1' && 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-19 22:42.16: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c-opam-format.2.5.0~rc1-dream.1.0.0~alpha1-8320df5ef052bc20dca41e97f1833c3d3ab518ce"
2025-11-19 22:42.16: 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 opam-format.2.5.0~rc1 2.5.0~rc1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall opam-format.2.5.0~rc1;\
\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\" != 'opam-format.2.5.0~rc1' && 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 dream.1.0.0~alpha1;\
\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\" != 'dream.1.0.0~alpha1' && 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 dream.1.0.0~alpha1) || true"))
(run (shell "opam reinstall --with-test --verbose dream.1.0.0~alpha1;\
\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\" != 'dream.1.0.0~alpha1' && 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-19 22:42.16: Waiting for resource in pool OCluster
2025-11-19 22:42.16: Waiting for worker…
2025-11-19 22:43.34: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 87196fafe7 Merge pull request #28927 from dinosaure/release-lun-v0.0.2
Updating 87196fafe7..8320df5ef0
Fast-forward
packages/opam-client/opam-client.2.5.0~rc1/opam | 49 +++++++++++++++++++
packages/opam-core/opam-core.2.5.0~rc1/opam | 57 ++++++++++++++++++++++
packages/opam-devel/opam-devel.2.5.0~rc1/opam | 51 +++++++++++++++++++
packages/opam-format/opam-format.2.5.0~rc1/opam | 42 ++++++++++++++++
.../opam-installer/opam-installer.2.5.0~rc1/opam | 43 ++++++++++++++++
.../opam-repository/opam-repository.2.5.0~rc1/opam | 42 ++++++++++++++++
packages/opam-solver/opam-solver.2.5.0~rc1/opam | 50 +++++++++++++++++++
packages/opam-state/opam-state.2.5.0~rc1/opam | 44 +++++++++++++++++
8 files changed, 378 insertions(+)
create mode 100644 packages/opam-client/opam-client.2.5.0~rc1/opam
create mode 100644 packages/opam-core/opam-core.2.5.0~rc1/opam
create mode 100644 packages/opam-devel/opam-devel.2.5.0~rc1/opam
create mode 100644 packages/opam-format/opam-format.2.5.0~rc1/opam
create mode 100644 packages/opam-installer/opam-installer.2.5.0~rc1/opam
create mode 100644 packages/opam-repository/opam-repository.2.5.0~rc1/opam
create mode 100644 packages/opam-solver/opam-solver.2.5.0~rc1/opam
create mode 100644 packages/opam-state/opam-state.2.5.0~rc1/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c)
2025-11-19 22:53.47 ---> 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-19 22:53.47 ---> 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-19 22:53.47 ---> 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 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2025-11-19 22:53.47 ---> 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-19 22:53.47 ---> using "95b7b1f66abb06f8d3a8f197d1e8d2b38f8b35c8e65e7fbee6a5b1e76aa55116" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-19 22:53.48 ---> using "264a5212ab2e699e2c2d8271cd2db0422824622009b6ba57c6b9fcf4acf3c09b" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-19 22:53.48 ---> using "6357e75a8e02f44c4660f50958b8cec178875e89cd32fdb580dccec6cb14e352" 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 1s (10.9 MB/s)
- Reading package lists...
-
2025-11-19 22:53.48 ---> using "8d6b96e87ae2f209bbd5aea66f02ac92341bba10a96b6657794d7e13043dba36" from cache
/home/opam: (run (shell "opam pin add -k version -yn opam-format.2.5.0~rc1 2.5.0~rc1"))
opam-format is now pinned to version 2.5.0~rc1
2025-11-19 22:53.48 ---> using "4c562ef263b80412554caaaefcd0ca36fc8dc95da8c3b454446764107db2b66c" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall opam-format.2.5.0~rc1;\
\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\" != 'opam-format.2.5.0~rc1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
opam-format.2.5.0~rc1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 19 packages
- install dune 3.20.2 [required by opam-format]
- install jsonm 1.0.2 [required by opam-core]
- install menhir 20250912 [required by opam-file-format]
- install menhirCST 20250912 [required by menhir]
- install menhirLib 20250912 [required by menhir]
- install menhirSdk 20250912 [required by menhir]
- install ocamlbuild 0.16.1 [required by jsonm]
- install ocamlfind 1.9.8 [required by jsonm]
- install ocamlgraph 2.2.0 [required by opam-core]
- install opam-core 2.5.0~rc1 [required by opam-format]
- install opam-file-format 2.2.0 [required by opam-format]
- install opam-format 2.5.0~rc1 (pinned)
- install patch 3.1.0 [required by opam-core]
- install re 1.14.0 [required by opam-format]
- install sha 1.15.4 [required by opam-core]
- install stdlib-shims 0.3.0 [required by sha]
- install swhid_core 0.1 [required by opam-core]
- install topkg 1.1.1 [required by jsonm]
- install uutf 1.0.4 [required by opam-core]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.2 (cached)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocamlgraph.2.2.0 (cached)
-> retrieved opam-core.2.5.0~rc1, opam-format.2.5.0~rc1 (cached)
-> retrieved opam-file-format.2.2.0 (cached)
-> retrieved patch.3.1.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved sha.1.15.4 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved swhid_core.0.1 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uutf.1.0.4 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed jsonm.1.0.2
-> installed dune.3.20.2
-> installed menhirCST.20250912
-> installed stdlib-shims.0.3.0
-> installed swhid_core.0.1
-> installed patch.3.1.0
-> installed menhirSdk.20250912
-> installed menhirLib.20250912
-> installed re.1.14.0
-> installed sha.1.15.4
-> installed ocamlgraph.2.2.0
-> installed opam-core.2.5.0~rc1
-> installed menhir.20250912
-> installed opam-file-format.2.2.0
-> installed opam-format.2.5.0~rc1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-19 22:53.48 ---> using "82dbda9c7fab11b9ea43f2f95afa5bc8dc1ff93248d8f14117e0c196f94979d5" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dream.1.0.0~alpha1;\
\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\" != 'dream.1.0.0~alpha1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dream.1.0.0~alpha1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 51 packages
- install angstrom 0.16.1 [required by dream]
- install base-bytes base [required by ocplib-endian]
- install base64 3.5.2 [required by dream]
- install bigarray-compat 1.1.0 [required by dream]
- install bigstringaf 0.10.0 [required by dream]
- install caqti 1.9.0 [required by dream]
- install caqti-lwt 1.9.0 [required by dream]
- install conf-libev 4-13 [required by dream]
- install conf-libssl 4 [required by ssl]
- install conf-pkg-config 4 [required by mirage-crypto]
- install cppo 1.8.0 [required by caqti]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by dream]
- install digestif 1.3.0 [required by dream]
- install dream 1.0.0~alpha1
- install dune-configurator 3.20.2 [required by mirage-crypto, mirage-crypto-rng]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install eqaf 0.9 [required by digestif, mirage-crypto]
- install faraday 0.8.2 [required by dream]
- install faraday-lwt 0.8.2 [required by faraday-lwt-unix]
- install faraday-lwt-unix 0.8.2 [required by dream]
- install fmt 0.11.0 [required by dream]
- install graphql 0.14.0 [required by graphql-lwt]
- install graphql-lwt 0.14.0 [required by dream]
- install graphql_parser 0.14.0 [required by dream]
- install hmap 0.8.1 [required by dream]
- install logs 0.10.0 [required by dream]
- install lwt 5.9.2 [required by dream]
- install lwt_ppx 5.9.1 [required by dream]
- install lwt_ssl 1.2.0 [required by dream]
- install magic-mime 1.3.1 [required by dream]
- install mirage-crypto 0.10.7 [required by dream]
- install mirage-crypto-rng 0.10.7 [required by dream]
- install mtime 2.1.0 [required by mirage-crypto-rng]
- install multipart-form-data 0.3.0 [required by dream]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocplib-endian 1.2 [required by lwt]
- install opam-installer 2.5.0~rc1 [required by dream]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.35.0 [required by lwt_ppx]
- install psq 0.2.1 [required by dream]
- install ptime 1.2.0 [required by caqti]
- install result 1.5 [required by dream]
- install rresult 0.7.0 [required by graphql]
- install seq base [required by psq]
- install sexplib0 v0.17.0 [required by ppxlib]
- install ssl 0.7.0 [required by dream]
- install stringext 1.6.0 [required by multipart-form-data]
- install uri 4.4.0 [required by dream]
- install yojson 3.0.0 [required by dream]
The following system packages will first need to be installed:
libev-dev libssl-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" "libev-dev" "libssl-dev" "pkg-config"
- (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 .../openssl-provider-legacy_3.5.4-1~deb13u1_amd64.deb ...
- Unpacking openssl-provider-legacy (3.5.4-1~deb13u1) over (3.5.1-1+deb13u1) ...
- Setting up openssl-provider-legacy (3.5.4-1~deb13u1) ...
- (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 .../libssl3t64_3.5.4-1~deb13u1_amd64.deb ...
- Unpacking libssl3t64:amd64 (3.5.4-1~deb13u1) over (3.5.1-1+deb13u1) ...
- Setting up libssl3t64:amd64 (3.5.4-1~deb13u1) ...
- Selecting previously unselected package libev4t64: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-libev4t64_1%3a4.33-2.1+b1_amd64.deb ...
- Unpacking libev4t64:amd64 (1:4.33-2.1+b1) ...
- Selecting previously unselected package libev-dev:amd64.
- Preparing to unpack .../1-libev-dev_1%3a4.33-2.1+b1_amd64.deb ...
- Unpacking libev-dev:amd64 (1:4.33-2.1+b1) ...
- 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 libssl-dev:amd64.
- Preparing to unpack .../3-libssl-dev_3.5.4-1~deb13u1_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.5.4-1~deb13u1) ...
- Preparing to unpack .../4-openssl_3.5.4-1~deb13u1_amd64.deb ...
- Unpacking openssl (3.5.4-1~deb13u1) over (3.5.1-1+deb13u1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../5-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../6-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../7-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libev4t64:amd64 (1:4.33-2.1+b1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libssl-dev:amd64 (3.5.4-1~deb13u1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libev-dev:amd64 (1:4.33-2.1+b1) ...
- Setting up openssl (3.5.4-1~deb13u1) ...
- 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)
-> installed base-bytes.base
-> retrieved base64.3.5.2 (cached)
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved caqti.1.9.0, caqti-lwt.1.9.0 (cached)
-> retrieved conf-libev.4-13 (cached)
-> retrieved conf-libssl.4 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> retrieved cstruct.6.2.0 (cached)
-> installed conf-libssl.4
-> installed base64.3.5.2
-> installed bigarray-compat.1.1.0
-> installed csexp.1.5.2
-> installed conf-libev.4-13
-> retrieved digestif.1.3.0 (cached)
-> retrieved dream.1.0.0~alpha1 (cached)
-> installed cppo.1.8.0
-> retrieved dune-configurator.3.20.2 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.9 (cached)
-> retrieved faraday.0.8.2, faraday-lwt.0.8.2, faraday-lwt-unix.0.8.2 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved graphql.0.14.0, graphql-lwt.0.14.0, graphql_parser.0.14.0 (cached)
-> retrieved hmap.0.8.1 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.5.9.2 (cached)
-> installed duration.0.2.1
-> retrieved lwt_ppx.5.9.1 (cached)
-> retrieved lwt_ssl.1.2.0 (cached)
-> retrieved magic-mime.1.3.1 (cached)
-> installed hmap.0.8.1
-> retrieved mirage-crypto.0.10.7, mirage-crypto-rng.0.10.7 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved multipart-form-data.0.3.0 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved opam-installer.2.5.0~rc1 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> installed fmt.0.11.0
-> retrieved ppxlib.0.35.0 (cached)
-> installed ocplib-endian.1.2
-> installed magic-mime.1.3.1
-> installed ppx_derivers.1.2.1
-> retrieved psq.0.2.1 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved ssl.0.7.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved uri.4.4.0 (cached)
-> retrieved yojson.3.0.0 (cached)
-> installed dune-configurator.3.20.2
-> installed ocaml-syntax-shims.1.0.0
-> installed mtime.2.1.0
-> installed cstruct.6.2.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed graphql_parser.0.14.0
-> installed result.1.5
-> installed rresult.0.7.0
-> installed psq.0.2.1
-> installed sexplib0.v0.17.0
-> installed stringext.1.6.0
-> installed bigstringaf.0.10.0
-> installed eqaf.0.9
-> installed faraday.0.8.2
-> installed ptime.1.2.0
-> installed angstrom.0.16.1
-> installed yojson.3.0.0
-> installed ssl.0.7.0
-> installed digestif.1.3.0
-> installed graphql.0.14.0
-> installed mirage-crypto.0.10.7
-> installed uri.4.4.0
-> installed lwt.5.9.2
-> installed opam-installer.2.5.0~rc1
-> installed faraday-lwt.0.8.2
-> installed graphql-lwt.0.14.0
-> installed lwt_ssl.1.2.0
-> installed faraday-lwt-unix.0.8.2
-> installed logs.0.10.0
-> installed mirage-crypto-rng.0.10.7
-> installed caqti.1.9.0
-> installed caqti-lwt.1.9.0
-> installed ppxlib.0.35.0
-> installed lwt_ppx.5.9.1
-> installed multipart-form-data.0.3.0
-> installed dream.1.0.0~alpha1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-19 22:54.16 ---> saved as "dd2e2c57621eac1e25c526380be034f09512b5ec07983f03ea3a31d6e8fa2431"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test dream.1.0.0~alpha1) || true"))
The following actions will be performed:
=== downgrade 1 package
- downgrade sexplib0 v0.17.0 to v0.16.0 [required by base]
=== recompile 21 packages
- recompile caqti 1.9.0 [uses logs]
- recompile caqti-lwt 1.9.0 [uses logs]
- recompile cstruct 6.2.0 [uses fmt]
- recompile digestif 1.3.0 [uses eqaf]
- recompile dream 1.0.0~alpha1
- recompile eqaf 0.9 [uses cstruct]
- recompile fmt 0.11.0 [uses cmdliner]
- recompile graphql 0.14.0 [uses graphql_parser]
- recompile graphql-lwt 0.14.0 [uses graphql]
- recompile graphql_parser 0.14.0 [uses fmt]
- recompile jsonm 1.0.2 [uses uutf]
- recompile logs 0.10.0 [uses cmdliner]
- recompile lwt_ppx 5.9.1 [uses ppxlib]
- recompile mirage-crypto 0.10.7 [uses cstruct]
- recompile mirage-crypto-rng 0.10.7 [uses cstruct, logs]
- recompile multipart-form-data 0.3.0 [uses lwt_ppx]
- recompile opam-core 2.5.0~rc1 [uses uutf]
- recompile opam-format 2.5.0~rc1 (pinned) [uses opam-core]
- recompile opam-installer 2.5.0~rc1 [uses opam-format]
- recompile ppxlib 0.35.0 [uses sexplib0]
- recompile uutf 1.0.4 [uses cmdliner]
=== install 20 packages
- install alcotest 1.9.1 [required by dream]
- install astring 0.8.5 [required by alcotest]
- install base v0.16.4 [required by ppx_expect]
- install cmdliner 2.0.0 [required by alcotest]
- install jane-street-headers v0.16.0 [required by time_now]
- install jst-config v0.16.0 [required by time_now]
- install ppx_assert v0.16.0 [required by jst-config]
- install ppx_base v0.16.0 [required by time_now]
- install ppx_cold v0.16.0 [required by ppx_base]
- install ppx_compare v0.16.0 [required by ppx_base]
- install ppx_enumerate v0.16.0 [required by ppx_base]
- install ppx_expect v0.16.2 [required by dream]
- install ppx_globalize v0.16.0 [required by ppx_base]
- install ppx_hash v0.16.0 [required by ppx_base]
- install ppx_here v0.16.0 [required by ppx_expect]
- install ppx_inline_test v0.16.1 [required by ppx_expect]
- install ppx_optcomp v0.16.0 [required by time_now]
- install ppx_sexp_conv v0.16.0 [required by ppx_base]
- install stdio v0.16.0 [required by ppx_expect]
- install time_now v0.16.0 [required by ppx_inline_test]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved base.v0.16.4 (https://opam.ocaml.org/cache)
-> retrieved caqti.1.9.0, caqti-lwt.1.9.0 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.0.0 (https://opam.ocaml.org/cache)
-> retrieved cstruct.6.2.0 (https://opam.ocaml.org/cache)
-> retrieved digestif.1.3.0 (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> retrieved dream.1.0.0~alpha1 (https://opam.ocaml.org/cache)
-> retrieved eqaf.0.9 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved graphql.0.14.0, graphql-lwt.0.14.0, graphql_parser.0.14.0 (https://opam.ocaml.org/cache)
-> retrieved jane-street-headers.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved jsonm.1.0.2 (https://opam.ocaml.org/cache)
-> retrieved jst-config.v0.16.0 (https://opam.ocaml.org/cache)
-> installed jane-street-headers.v0.16.0
-> retrieved logs.0.10.0 (https://opam.ocaml.org/cache)
-> retrieved lwt_ppx.5.9.1 (https://opam.ocaml.org/cache)
-> retrieved mirage-crypto.0.10.7, mirage-crypto-rng.0.10.7 (https://opam.ocaml.org/cache)
-> retrieved multipart-form-data.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved opam-core.2.5.0~rc1, opam-format.2.5.0~rc1, opam-installer.2.5.0~rc1 (https://github.com/ocaml/opam/archive/refs/tags/2.5.0-rc1.tar.gz)
-> retrieved ppx_assert.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_base.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_cold.v0.16.0 (https://opam.ocaml.org/cache)
-> installed cmdliner.2.0.0
-> retrieved ppx_compare.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_enumerate.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_expect.v0.16.2 (https://opam.ocaml.org/cache)
-> retrieved ppx_globalize.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_hash.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_here.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_inline_test.v0.16.1 (https://opam.ocaml.org/cache)
-> retrieved ppx_optcomp.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_sexp_conv.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppxlib.0.35.0 (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved stdio.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved time_now.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> removed dream.1.0.0~alpha1
-> removed caqti-lwt.1.9.0
-> removed caqti.1.9.0
-> removed digestif.1.3.0
-> removed graphql-lwt.0.14.0
-> removed graphql.0.14.0
-> removed graphql_parser.0.14.0
-> removed mirage-crypto-rng.0.10.7
-> removed logs.0.10.0
-> removed mirage-crypto.0.10.7
-> removed eqaf.0.9
-> removed cstruct.6.2.0
-> removed fmt.0.11.0
-> removed multipart-form-data.0.3.0
-> removed lwt_ppx.5.9.1
-> removed opam-installer.2.5.0~rc1
-> removed opam-format.2.5.0~rc1
-> removed opam-core.2.5.0~rc1
-> removed jsonm.1.0.2
-> removed ppxlib.0.35.0
-> removed sexplib0.v0.17.0
-> removed uutf.1.0.4
-> installed fmt.0.11.0
-> installed sexplib0.v0.16.0
-> installed cstruct.6.2.0
-> installed uutf.1.0.4
-> installed graphql_parser.0.14.0
-> installed eqaf.0.9
-> installed logs.0.10.0
-> installed graphql.0.14.0
-> installed alcotest.1.9.1
-> installed graphql-lwt.0.14.0
-> installed jsonm.1.0.2
-> installed digestif.1.3.0
-> installed caqti.1.9.0
-> installed caqti-lwt.1.9.0
-> installed mirage-crypto.0.10.7
-> installed mirage-crypto-rng.0.10.7
-> installed base.v0.16.4
-> installed stdio.v0.16.0
-> installed opam-core.2.5.0~rc1
-> installed opam-format.2.5.0~rc1
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed opam-installer.2.5.0~rc1
-> installed lwt_ppx.5.9.1
-> installed ppx_sexp_conv.v0.16.0
-> installed multipart-form-data.0.3.0
-> installed ppx_hash.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_base.v0.16.0
-> installed jst-config.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed ppx_expect.v0.16.2
-> installed dream.1.0.0~alpha1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-19 22:54.51 ---> saved as "7c83ae77c4d9868253cd34286480a3789879400d2c12473dd178ba6d1f33c5a6"
/home/opam: (run (shell "opam reinstall --with-test --verbose dream.1.0.0~alpha1;\
\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\" != 'dream.1.0.0~alpha1' && 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 dream 1.0.0~alpha1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [dream.1.0.0~alpha1: extract]
-> retrieved dream.1.0.0~alpha1 (cached)
Processing 2/4: [dream: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dream,gluten,gluten-lwt,gluten-lwt-unix,websocketaf,httpaf,httpaf-lwt,httpaf-lwt-unix,hpack,h2,h2-lwt,h2-lwt-unix" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dream.1.0.0~alpha1)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/eml/.eml.objs/byte -no-alias-deps -o src/eml/.eml.objs/byte/eml.cmo -c -impl src/eml/eml.ml)
- File "src/eml/eml.ml", line 39, characters 4-15:
- 39 | Stream.from begin fun _index ->
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 17, characters 45-53:
- 17 | val stream : (unit -> char option) -> char Stream.t
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 148, characters 10-21:
- 148 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 151, characters 6-17:
- 151 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 162, characters 39-47:
- 162 | let scan_code_block : string -> char Stream.t -> token * string =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 162, characters 39-47:
- 162 | let scan_code_block : string -> char Stream.t -> token * string =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 165, characters 32-43:
- 165 | match leading_whitespace, Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 170, characters 14-26:
- 170 | match Stream.npeek 2 stream with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 187, characters 16-27:
- 187 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 190, characters 12-23:
- 190 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 194, characters 12-23:
- 194 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 216, characters 33-41:
- 216 | let scan_text : string -> char Stream.t -> token =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 216, characters 33-41:
- 216 | let scan_text : string -> char Stream.t -> token =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 219, characters 12-23:
- 219 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 223, characters 20-32:
- 223 | begin match Stream.npeek 2 stream with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 228, characters 10-21:
- 228 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 233, characters 8-19:
- 233 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 243, characters 27-35:
- 243 | let scan_embedded : char Stream.t -> token =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 243, characters 27-35:
- 243 | let scan_embedded : char Stream.t -> token =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 246, characters 12-23:
- 246 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 250, characters 8-19:
- 250 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 254, characters 8-19:
- 254 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 259, characters 12-23:
- 259 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 263, characters 20-32:
- 263 | begin match Stream.npeek 2 stream with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 265, characters 10-21:
- 265 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 266, characters 10-21:
- 266 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 270, characters 10-21:
- 270 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 275, characters 8-19:
- 275 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 281, characters 6-17:
- 281 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 282, characters 6-17:
- 282 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 294, characters 32-40:
- 294 | let scan_embedded_line : char Stream.t -> token =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 294, characters 32-40:
- 294 | let scan_embedded_line : char Stream.t -> token =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 297, characters 12-23:
- 297 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 302, characters 8-19:
- 302 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 306, characters 8-19:
- 306 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 311, characters 6-17:
- 311 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 320, characters 37-45:
- 320 | let scan_terminator_options : char Stream.t -> string =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 320, characters 37-45:
- 320 | let scan_terminator_options : char Stream.t -> string =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 323, characters 12-23:
- 323 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 327, characters 8-19:
- 327 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 331, characters 8-19:
- 331 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 336, characters 6-17:
- 336 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 337, characters 6-17:
- 337 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 349, characters 10-21:
- 349 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 358, characters 10-21:
- 358 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 366, characters 12-24:
- 366 | match Stream.npeek 2 stream with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 380, characters 19-30:
- 380 | let next = Stream.peek stream in
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 399, characters 10-21:
- 399 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 402, characters 6-17:
- 402 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 130, characters 18-26:
- 130 | val scan : char Stream.t -> token list
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/eml/.eml.objs/byte -I src/eml/.eml.objs/native -intf-suffix .ml -no-alias-deps -o src/eml/.eml.objs/native/eml.cmx -c -impl src/eml/eml.ml)
- File "src/eml/eml.ml", line 39, characters 4-15:
- 39 | Stream.from begin fun _index ->
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 17, characters 45-53:
- 17 | val stream : (unit -> char option) -> char Stream.t
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 148, characters 10-21:
- 148 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 151, characters 6-17:
- 151 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 162, characters 39-47:
- 162 | let scan_code_block : string -> char Stream.t -> token * string =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 162, characters 39-47:
- 162 | let scan_code_block : string -> char Stream.t -> token * string =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 165, characters 32-43:
- 165 | match leading_whitespace, Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 170, characters 14-26:
- 170 | match Stream.npeek 2 stream with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 187, characters 16-27:
- 187 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 190, characters 12-23:
- 190 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 194, characters 12-23:
- 194 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 216, characters 33-41:
- 216 | let scan_text : string -> char Stream.t -> token =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 216, characters 33-41:
- 216 | let scan_text : string -> char Stream.t -> token =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 219, characters 12-23:
- 219 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 223, characters 20-32:
- 223 | begin match Stream.npeek 2 stream with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 228, characters 10-21:
- 228 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 233, characters 8-19:
- 233 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 243, characters 27-35:
- 243 | let scan_embedded : char Stream.t -> token =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 243, characters 27-35:
- 243 | let scan_embedded : char Stream.t -> token =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 246, characters 12-23:
- 246 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 250, characters 8-19:
- 250 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 254, characters 8-19:
- 254 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 259, characters 12-23:
- 259 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 263, characters 20-32:
- 263 | begin match Stream.npeek 2 stream with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 265, characters 10-21:
- 265 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 266, characters 10-21:
- 266 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 270, characters 10-21:
- 270 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 275, characters 8-19:
- 275 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 281, characters 6-17:
- 281 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 282, characters 6-17:
- 282 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 294, characters 32-40:
- 294 | let scan_embedded_line : char Stream.t -> token =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 294, characters 32-40:
- 294 | let scan_embedded_line : char Stream.t -> token =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 297, characters 12-23:
- 297 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 302, characters 8-19:
- 302 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 306, characters 8-19:
- 306 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 311, characters 6-17:
- 311 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 320, characters 37-45:
- 320 | let scan_terminator_options : char Stream.t -> string =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 320, characters 37-45:
- 320 | let scan_terminator_options : char Stream.t -> string =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 323, characters 12-23:
- 323 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 327, characters 8-19:
- 327 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 331, characters 8-19:
- 331 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 336, characters 6-17:
- 336 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 337, characters 6-17:
- 337 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 349, characters 10-21:
- 349 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 358, characters 10-21:
- 358 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 366, characters 12-24:
- 366 | match Stream.npeek 2 stream with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 380, characters 19-30:
- 380 | let next = Stream.peek stream in
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 399, characters 10-21:
- 399 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 402, characters 6-17:
- 402 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/eml/eml.ml", line 130, characters 18-26:
- 130 | val scan : char Stream.t -> token list
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/vendor/gluten/lwt-unix/.gluten_lwt_unix.objs/byte -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/ssl -I src/vendor/gluten/lib/.gluten.objs/byte -I src/vendor/gluten/lwt/.gluten_lwt.objs/byte -no-alias-deps -open Gluten_lwt_unix__ -o src/vendor/gluten/lwt-unix/.gluten_lwt_unix.objs/byte/gluten_lwt_unix__Ssl_io.cmo -c -impl src/vendor/gluten/lwt-unix/ssl_io.ml)
- File "src/vendor/gluten/lwt-unix/ssl_io_real.ml", line 107, characters 38-48:
- Alert deprecated: SSLv23
- SSL 2.0 was deprecated in 2011 by RFC 6176.
- File "src/vendor/gluten/lwt-unix/ssl_io_real.ml", line 108, characters 37-47:
- Alert deprecated: SSLv23
- SSL 2.0 was deprecated in 2011 by RFC 6176.
- File "src/vendor/gluten/lwt-unix/ssl_io_real.ml", line 126, characters 38-48:
- Alert deprecated: SSLv23
- SSL 2.0 was deprecated in 2011 by RFC 6176.
- File "src/vendor/gluten/lwt-unix/ssl_io_real.ml", line 127, characters 37-47:
- Alert deprecated: SSLv23
- SSL 2.0 was deprecated in 2011 by RFC 6176.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/vendor/gluten/lwt-unix/.gluten_lwt_unix.objs/byte -I src/vendor/gluten/lwt-unix/.gluten_lwt_unix.objs/native -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/ssl -I src/vendor/gluten/lib/.gluten.objs/byte -I src/vendor/gluten/lib/.gluten.objs/native -I src/vendor/gluten/lwt/.gluten_lwt.objs/byte -I src/vendor/gluten/lwt/.gluten_lwt.objs/native -intf-suffix .ml -no-alias-deps -open Gluten_lwt_unix__ -o src/vendor/gluten/lwt-unix/.gluten_lwt_unix.objs/native/gluten_lwt_unix__Ssl_io.cmx -c -impl src/vendor/gluten/lwt-unix/ssl_io.ml)
- File "src/vendor/gluten/lwt-unix/ssl_io_real.ml", line 107, characters 38-48:
- Alert deprecated: SSLv23
- SSL 2.0 was deprecated in 2011 by RFC 6176.
- File "src/vendor/gluten/lwt-unix/ssl_io_real.ml", line 108, characters 37-47:
- Alert deprecated: SSLv23
- SSL 2.0 was deprecated in 2011 by RFC 6176.
- File "src/vendor/gluten/lwt-unix/ssl_io_real.ml", line 126, characters 38-48:
- Alert deprecated: SSLv23
- SSL 2.0 was deprecated in 2011 by RFC 6176.
- File "src/vendor/gluten/lwt-unix/ssl_io_real.ml", line 127, characters 37-47:
- Alert deprecated: SSLv23
- SSL 2.0 was deprecated in 2011 by RFC 6176.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/sql/.dream__sql.objs/byte -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/yojson -I src/cipher/.dream__cipher.objs/byte -I src/middleware/.dream__middleware.objs/byte -I src/pure/.dream__pure.objs/byte -no-alias-deps -open Dream__sql -o src/sql/.dream__sql.objs/byte/dream__sql__Sql.cmo -c -impl src/sql/sql.pp.ml)
- File "src/sql/sql.ml", line 19, characters 2-20:
- 19 | Caqti_request.exec Caqti_type.unit "PRAGMA foreign_keys = ON"
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.exec
- Replaced by the Infix module.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/sql/.dream__sql.objs/byte -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/yojson -I src/cipher/.dream__cipher.objs/byte -I src/middleware/.dream__middleware.objs/byte -I src/pure/.dream__pure.objs/byte -no-alias-deps -open Dream__sql -o src/sql/.dream__sql.objs/byte/dream__sql__Session.cmo -c -impl src/sql/session.pp.ml)
- File "src/sql/session.ml", line 29, characters 4-10:
- 29 | R.exec T.(tup4 string string float string) {|
- ^^^^^^
- Alert deprecated: R.exec
- Replaced by the Infix module.
- File "src/sql/session.ml", line 42, characters 4-14:
- 42 | R.find_opt T.string T.(tup3 string float string)
- ^^^^^^^^^^
- Alert deprecated: R.find_opt
- Replaced by the Infix module.
- File "src/sql/session.ml", line 69, characters 4-10:
- 69 | R.exec T.(tup2 float string)
- ^^^^^^
- Alert deprecated: R.exec
- Replaced by the Infix module.
- File "src/sql/session.ml", line 78, characters 4-10:
- 78 | R.exec T.(tup2 string string)
- ^^^^^^
- Alert deprecated: R.exec
- Replaced by the Infix module.
- File "src/sql/session.ml", line 87, characters 14-20:
- 87 | let query = R.exec T.string "DELETE FROM dream_session WHERE id = $1" in
- ^^^^^^
- Alert deprecated: R.exec
- Replaced by the Infix module.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/sql/.dream__sql.objs/byte -I src/sql/.dream__sql.objs/native -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/yojson -I src/cipher/.dream__cipher.objs/byte -I src/cipher/.dream__cipher.objs/native -I src/middleware/.dream__middleware.objs/byte -I src/middleware/.dream__middleware.objs/native -I src/pure/.dream__pure.objs/byte -I src/pure/.dream__pure.objs/native -intf-suffix .ml -no-alias-deps -open Dream__sql -o src/sql/.dream__sql.objs/native/dream__sql__Sql.cmx -c -impl src/sql/sql.pp.ml)
- File "src/sql/sql.ml", line 19, characters 2-20:
- 19 | Caqti_request.exec Caqti_type.unit "PRAGMA foreign_keys = ON"
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.exec
- Replaced by the Infix module.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/sql/.dream__sql.objs/byte -I src/sql/.dream__sql.objs/native -I /home/opam/.opam/4.14/lib/caqti -I /home/opam/.opam/4.14/lib/caqti-lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/yojson -I src/cipher/.dream__cipher.objs/byte -I src/cipher/.dream__cipher.objs/native -I src/middleware/.dream__middleware.objs/byte -I src/middleware/.dream__middleware.objs/native -I src/pure/.dream__pure.objs/byte -I src/pure/.dream__pure.objs/native -intf-suffix .ml -no-alias-deps -open Dream__sql -o src/sql/.dream__sql.objs/native/dream__sql__Session.cmx -c -impl src/sql/session.pp.ml)
- File "src/sql/session.ml", line 29, characters 4-10:
- 29 | R.exec T.(tup4 string string float string) {|
- ^^^^^^
- Alert deprecated: R.exec
- Replaced by the Infix module.
- File "src/sql/session.ml", line 42, characters 4-14:
- 42 | R.find_opt T.string T.(tup3 string float string)
- ^^^^^^^^^^
- Alert deprecated: R.find_opt
- Replaced by the Infix module.
- File "src/sql/session.ml", line 69, characters 4-10:
- 69 | R.exec T.(tup2 float string)
- ^^^^^^
- Alert deprecated: R.exec
- Replaced by the Infix module.
- File "src/sql/session.ml", line 78, characters 4-10:
- 78 | R.exec T.(tup2 string string)
- ^^^^^^
- Alert deprecated: R.exec
- Replaced by the Infix module.
- File "src/sql/session.ml", line 87, characters 14-20:
- 87 | let query = R.exec T.string "DELETE FROM dream_session WHERE id = $1" in
- ^^^^^^
- Alert deprecated: R.exec
- Replaced by the Infix module.
-> compiled dream.1.0.0~alpha1
-> removed dream.1.0.0~alpha1
Processing 4/4: [dream: opam-installer dream.install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "opam-installer" "--prefix" "/home/opam/.opam/4.14" "dream.install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dream.1.0.0~alpha1)
- _build/install/default/bin/dream_eml => /home/opam/.opam/4.14/bin/dream_eml
- Creating directory /home/opam/.opam/4.14/lib/dream
- _build/install/default/lib/dream/META => /home/opam/.opam/4.14/lib/dream/META
- Creating directory /home/opam/.opam/4.14/lib/dream/cipher
- _build/install/default/lib/dream/cipher/cipher.ml => /home/opam/.opam/4.14/lib/dream/cipher/cipher.ml
- _build/install/default/lib/dream/cipher/dream__cipher.a => /home/opam/.opam/4.14/lib/dream/cipher/dream__cipher.a
- _build/install/default/lib/dream/cipher/dream__cipher.cma => /home/opam/.opam/4.14/lib/dream/cipher/dream__cipher.cma
- _build/install/default/lib/dream/cipher/dream__cipher.cmi => /home/opam/.opam/4.14/lib/dream/cipher/dream__cipher.cmi
- _build/install/default/lib/dream/cipher/dream__cipher.cmt => /home/opam/.opam/4.14/lib/dream/cipher/dream__cipher.cmt
- _build/install/default/lib/dream/cipher/dream__cipher.cmx => /home/opam/.opam/4.14/lib/dream/cipher/dream__cipher.cmx
- _build/install/default/lib/dream/cipher/dream__cipher.cmxa => /home/opam/.opam/4.14/lib/dream/cipher/dream__cipher.cmxa
- _build/install/default/lib/dream/cipher/dream__cipher.ml => /home/opam/.opam/4.14/lib/dream/cipher/dream__cipher.ml
- _build/install/default/lib/dream/cipher/dream__cipher__Cipher.cmi => /home/opam/.opam/4.14/lib/dream/cipher/dream__cipher__Cipher.cmi
- _build/install/default/lib/dream/cipher/dream__cipher__Cipher.cmt => /home/opam/.opam/4.14/lib/dream/cipher/dream__cipher__Cipher.cmt
- _build/install/default/lib/dream/cipher/dream__cipher__Cipher.cmx => /home/opam/.opam/4.14/lib/dream/cipher/dream__cipher__Cipher.cmx
- _build/install/default/lib/dream/cipher/dream__cipher__Random.cmi => /home/opam/.opam/4.14/lib/dream/cipher/dream__cipher__Random.cmi
- _build/install/default/lib/dream/cipher/dream__cipher__Random.cmt => /home/opam/.opam/4.14/lib/dream/cipher/dream__cipher__Random.cmt
- _build/install/default/lib/dream/cipher/dream__cipher__Random.cmx => /home/opam/.opam/4.14/lib/dream/cipher/dream__cipher__Random.cmx
- _build/install/default/lib/dream/cipher/random.ml => /home/opam/.opam/4.14/lib/dream/cipher/random.ml
- _build/install/default/lib/dream/dream.a => /home/opam/.opam/4.14/lib/dream/dream.a
- _build/install/default/lib/dream/dream.cma => /home/opam/.opam/4.14/lib/dream/dream.cma
- _build/install/default/lib/dream/dream.cmi => /home/opam/.opam/4.14/lib/dream/dream.cmi
- _build/install/default/lib/dream/dream.cmt => /home/opam/.opam/4.14/lib/dream/dream.cmt
- _build/install/default/lib/dream/dream.cmti => /home/opam/.opam/4.14/lib/dream/dream.cmti
- _build/install/default/lib/dream/dream.cmx => /home/opam/.opam/4.14/lib/dream/dream.cmx
- _build/install/default/lib/dream/dream.cmxa => /home/opam/.opam/4.14/lib/dream/dream.cmxa
- _build/install/default/lib/dream/dream.ml => /home/opam/.opam/4.14/lib/dream/dream.ml
- _build/install/default/lib/dream/dream.mli => /home/opam/.opam/4.14/lib/dream/dream.mli
- _build/install/default/lib/dream/dune-package => /home/opam/.opam/4.14/lib/dream/dune-package
- Creating directory /home/opam/.opam/4.14/lib/dream/graphiql
- _build/install/default/lib/dream/graphiql/dream__graphiql.a => /home/opam/.opam/4.14/lib/dream/graphiql/dream__graphiql.a
- _build/install/default/lib/dream/graphiql/dream__graphiql.cma => /home/opam/.opam/4.14/lib/dream/graphiql/dream__graphiql.cma
- _build/install/default/lib/dream/graphiql/dream__graphiql.cmi => /home/opam/.opam/4.14/lib/dream/graphiql/dream__graphiql.cmi
- _build/install/default/lib/dream/graphiql/dream__graphiql.cmt => /home/opam/.opam/4.14/lib/dream/graphiql/dream__graphiql.cmt
- _build/install/default/lib/dream/graphiql/dream__graphiql.cmx => /home/opam/.opam/4.14/lib/dream/graphiql/dream__graphiql.cmx
- _build/install/default/lib/dream/graphiql/dream__graphiql.cmxa => /home/opam/.opam/4.14/lib/dream/graphiql/dream__graphiql.cmxa
- _build/install/default/lib/dream/graphiql/dream__graphiql.ml => /home/opam/.opam/4.14/lib/dream/graphiql/dream__graphiql.ml
- Creating directory /home/opam/.opam/4.14/lib/dream/graphql
- _build/install/default/lib/dream/graphql/dream__graphql.a => /home/opam/.opam/4.14/lib/dream/graphql/dream__graphql.a
- _build/install/default/lib/dream/graphql/dream__graphql.cma => /home/opam/.opam/4.14/lib/dream/graphql/dream__graphql.cma
- _build/install/default/lib/dream/graphql/dream__graphql.cmi => /home/opam/.opam/4.14/lib/dream/graphql/dream__graphql.cmi
- _build/install/default/lib/dream/graphql/dream__graphql.cmt => /home/opam/.opam/4.14/lib/dream/graphql/dream__graphql.cmt
- _build/install/default/lib/dream/graphql/dream__graphql.cmx => /home/opam/.opam/4.14/lib/dream/graphql/dream__graphql.cmx
- _build/install/default/lib/dream/graphql/dream__graphql.cmxa => /home/opam/.opam/4.14/lib/dream/graphql/dream__graphql.cmxa
- _build/install/default/lib/dream/graphql/dream__graphql.ml => /home/opam/.opam/4.14/lib/dream/graphql/dream__graphql.ml
- _build/install/default/lib/dream/graphql/dream__graphql__Graphql.cmi => /home/opam/.opam/4.14/lib/dream/graphql/dream__graphql__Graphql.cmi
- _build/install/default/lib/dream/graphql/dream__graphql__Graphql.cmt => /home/opam/.opam/4.14/lib/dream/graphql/dream__graphql__Graphql.cmt
- _build/install/default/lib/dream/graphql/dream__graphql__Graphql.cmx => /home/opam/.opam/4.14/lib/dream/graphql/dream__graphql__Graphql.cmx
- _build/install/default/lib/dream/graphql/graphql.ml => /home/opam/.opam/4.14/lib/dream/graphql/graphql.ml
- Creating directory /home/opam/.opam/4.14/lib/dream/http
- _build/install/default/lib/dream/http/adapt.ml => /home/opam/.opam/4.14/lib/dream/http/adapt.ml
- _build/install/default/lib/dream/http/dream__http.a => /home/opam/.opam/4.14/lib/dream/http/dream__http.a
- _build/install/default/lib/dream/http/dream__http.cma => /home/opam/.opam/4.14/lib/dream/http/dream__http.cma
- _build/install/default/lib/dream/http/dream__http.cmi => /home/opam/.opam/4.14/lib/dream/http/dream__http.cmi
- _build/install/default/lib/dream/http/dream__http.cmt => /home/opam/.opam/4.14/lib/dream/http/dream__http.cmt
- _build/install/default/lib/dream/http/dream__http.cmx => /home/opam/.opam/4.14/lib/dream/http/dream__http.cmx
- _build/install/default/lib/dream/http/dream__http.cmxa => /home/opam/.opam/4.14/lib/dream/http/dream__http.cmxa
- _build/install/default/lib/dream/http/dream__http.ml => /home/opam/.opam/4.14/lib/dream/http/dream__http.ml
- _build/install/default/lib/dream/http/dream__http__Adapt.cmi => /home/opam/.opam/4.14/lib/dream/http/dream__http__Adapt.cmi
- _build/install/default/lib/dream/http/dream__http__Adapt.cmt => /home/opam/.opam/4.14/lib/dream/http/dream__http__Adapt.cmt
- _build/install/default/lib/dream/http/dream__http__Adapt.cmx => /home/opam/.opam/4.14/lib/dream/http/dream__http__Adapt.cmx
- _build/install/default/lib/dream/http/dream__http__Error_handler.cmi => /home/opam/.opam/4.14/lib/dream/http/dream__http__Error_handler.cmi
- _build/install/default/lib/dream/http/dream__http__Error_handler.cmt => /home/opam/.opam/4.14/lib/dream/http/dream__http__Error_handler.cmt
- _build/install/default/lib/dream/http/dream__http__Error_handler.cmti => /home/opam/.opam/4.14/lib/dream/http/dream__http__Error_handler.cmti
- _build/install/default/lib/dream/http/dream__http__Error_handler.cmx => /home/opam/.opam/4.14/lib/dream/http/dream__http__Error_handler.cmx
- _build/install/default/lib/dream/http/dream__http__Http.cmi => /home/opam/.opam/4.14/lib/dream/http/dream__http__Http.cmi
- _build/install/default/lib/dream/http/dream__http__Http.cmt => /home/opam/.opam/4.14/lib/dream/http/dream__http__Http.cmt
- _build/install/default/lib/dream/http/dream__http__Http.cmx => /home/opam/.opam/4.14/lib/dream/http/dream__http__Http.cmx
- _build/install/default/lib/dream/http/error_handler.ml => /home/opam/.opam/4.14/lib/dream/http/error_handler.ml
- _build/install/default/lib/dream/http/error_handler.mli => /home/opam/.opam/4.14/lib/dream/http/error_handler.mli
- _build/install/default/lib/dream/http/http.ml => /home/opam/.opam/4.14/lib/dream/http/http.ml
- Creating directory /home/opam/.opam/4.14/lib/dream/localhost
- _build/install/default/lib/dream/localhost/dream__localhost.a => /home/opam/.opam/4.14/lib/dream/localhost/dream__localhost.a
- _build/install/default/lib/dream/localhost/dream__localhost.cma => /home/opam/.opam/4.14/lib/dream/localhost/dream__localhost.cma
- _build/install/default/lib/dream/localhost/dream__localhost.cmi => /home/opam/.opam/4.14/lib/dream/localhost/dream__localhost.cmi
- _build/install/default/lib/dream/localhost/dream__localhost.cmt => /home/opam/.opam/4.14/lib/dream/localhost/dream__localhost.cmt
- _build/install/default/lib/dream/localhost/dream__localhost.cmx => /home/opam/.opam/4.14/lib/dream/localhost/dream__localhost.cmx
- _build/install/default/lib/dream/localhost/dream__localhost.cmxa => /home/opam/.opam/4.14/lib/dream/localhost/dream__localhost.cmxa
- _build/install/default/lib/dream/localhost/dream__localhost.ml => /home/opam/.opam/4.14/lib/dream/localhost/dream__localhost.ml
- Creating directory /home/opam/.opam/4.14/lib/dream/middleware
- _build/install/default/lib/dream/middleware/catch.ml => /home/opam/.opam/4.14/lib/dream/middleware/catch.ml
- _build/install/default/lib/dream/middleware/content_length.ml => /home/opam/.opam/4.14/lib/dream/middleware/content_length.ml
- _build/install/default/lib/dream/middleware/csrf.ml => /home/opam/.opam/4.14/lib/dream/middleware/csrf.ml
- _build/install/default/lib/dream/middleware/dream__middleware.a => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware.a
- _build/install/default/lib/dream/middleware/dream__middleware.cma => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware.cma
- _build/install/default/lib/dream/middleware/dream__middleware.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware.cmi
- _build/install/default/lib/dream/middleware/dream__middleware.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware.cmt
- _build/install/default/lib/dream/middleware/dream__middleware.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware.cmx
- _build/install/default/lib/dream/middleware/dream__middleware.cmxa => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware.cmxa
- _build/install/default/lib/dream/middleware/dream__middleware.ml => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware.ml
- _build/install/default/lib/dream/middleware/dream__middleware__Catch.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Catch.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Catch.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Catch.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Catch.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Catch.cmx
- _build/install/default/lib/dream/middleware/dream__middleware__Content_length.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Content_length.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Content_length.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Content_length.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Content_length.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Content_length.cmx
- _build/install/default/lib/dream/middleware/dream__middleware__Csrf.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Csrf.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Csrf.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Csrf.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Csrf.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Csrf.cmx
- _build/install/default/lib/dream/middleware/dream__middleware__Echo.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Echo.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Echo.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Echo.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Echo.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Echo.cmx
- _build/install/default/lib/dream/middleware/dream__middleware__Error.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Error.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Error.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Error.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Error.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Error.cmx
- _build/install/default/lib/dream/middleware/dream__middleware__Form.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Form.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Form.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Form.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Form.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Form.cmx
- _build/install/default/lib/dream/middleware/dream__middleware__Log.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Log.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Log.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Log.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Log.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Log.cmx
- _build/install/default/lib/dream/middleware/dream__middleware__Lowercase_headers.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Lowercase_headers.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Lowercase_headers.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Lowercase_headers.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Lowercase_headers.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Lowercase_headers.cmx
- _build/install/default/lib/dream/middleware/dream__middleware__Origin_referer_check.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Origin_referer_check.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Origin_referer_check.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Origin_referer_check.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Origin_referer_check.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Origin_referer_check.cmx
- _build/install/default/lib/dream/middleware/dream__middleware__Request_id.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Request_id.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Request_id.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Request_id.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Request_id.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Request_id.cmx
- _build/install/default/lib/dream/middleware/dream__middleware__Router.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Router.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Router.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Router.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Router.cmti => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Router.cmti
- _build/install/default/lib/dream/middleware/dream__middleware__Router.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Router.cmx
- _build/install/default/lib/dream/middleware/dream__middleware__Session.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Session.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Session.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Session.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Session.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Session.cmx
- _build/install/default/lib/dream/middleware/dream__middleware__Site_prefix.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Site_prefix.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Site_prefix.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Site_prefix.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Site_prefix.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Site_prefix.cmx
- _build/install/default/lib/dream/middleware/dream__middleware__Static.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Static.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Static.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Static.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Static.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Static.cmx
- _build/install/default/lib/dream/middleware/dream__middleware__Tag.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Tag.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Tag.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Tag.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Tag.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Tag.cmx
- _build/install/default/lib/dream/middleware/dream__middleware__Upload.cmi => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Upload.cmi
- _build/install/default/lib/dream/middleware/dream__middleware__Upload.cmt => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Upload.cmt
- _build/install/default/lib/dream/middleware/dream__middleware__Upload.cmx => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware__Upload.cmx
- _build/install/default/lib/dream/middleware/echo.ml => /home/opam/.opam/4.14/lib/dream/middleware/echo.ml
- _build/install/default/lib/dream/middleware/error.ml => /home/opam/.opam/4.14/lib/dream/middleware/error.ml
- _build/install/default/lib/dream/middleware/form.ml => /home/opam/.opam/4.14/lib/dream/middleware/form.ml
- _build/install/default/lib/dream/middleware/log.ml => /home/opam/.opam/4.14/lib/dream/middleware/log.ml
- _build/install/default/lib/dream/middleware/lowercase_headers.ml => /home/opam/.opam/4.14/lib/dream/middleware/lowercase_headers.ml
- _build/install/default/lib/dream/middleware/origin_referer_check.ml => /home/opam/.opam/4.14/lib/dream/middleware/origin_referer_check.ml
- _build/install/default/lib/dream/middleware/request_id.ml => /home/opam/.opam/4.14/lib/dream/middleware/request_id.ml
- _build/install/default/lib/dream/middleware/router.ml => /home/opam/.opam/4.14/lib/dream/middleware/router.ml
- _build/install/default/lib/dream/middleware/router.mli => /home/opam/.opam/4.14/lib/dream/middleware/router.mli
- _build/install/default/lib/dream/middleware/session.ml => /home/opam/.opam/4.14/lib/dream/middleware/session.ml
- _build/install/default/lib/dream/middleware/site_prefix.ml => /home/opam/.opam/4.14/lib/dream/middleware/site_prefix.ml
- _build/install/default/lib/dream/middleware/static.ml => /home/opam/.opam/4.14/lib/dream/middleware/static.ml
- _build/install/default/lib/dream/middleware/tag.ml => /home/opam/.opam/4.14/lib/dream/middleware/tag.ml
- _build/install/default/lib/dream/middleware/upload.ml => /home/opam/.opam/4.14/lib/dream/middleware/upload.ml
- _build/install/default/lib/dream/opam => /home/opam/.opam/4.14/lib/dream/opam
- Creating directory /home/opam/.opam/4.14/lib/dream/pure
- _build/install/default/lib/dream/pure/body.ml => /home/opam/.opam/4.14/lib/dream/pure/body.ml
- _build/install/default/lib/dream/pure/dream__pure.a => /home/opam/.opam/4.14/lib/dream/pure/dream__pure.a
- _build/install/default/lib/dream/pure/dream__pure.cma => /home/opam/.opam/4.14/lib/dream/pure/dream__pure.cma
- _build/install/default/lib/dream/pure/dream__pure.cmi => /home/opam/.opam/4.14/lib/dream/pure/dream__pure.cmi
- _build/install/default/lib/dream/pure/dream__pure.cmt => /home/opam/.opam/4.14/lib/dream/pure/dream__pure.cmt
- _build/install/default/lib/dream/pure/dream__pure.cmx => /home/opam/.opam/4.14/lib/dream/pure/dream__pure.cmx
- _build/install/default/lib/dream/pure/dream__pure.cmxa => /home/opam/.opam/4.14/lib/dream/pure/dream__pure.cmxa
- _build/install/default/lib/dream/pure/dream__pure.ml => /home/opam/.opam/4.14/lib/dream/pure/dream__pure.ml
- _build/install/default/lib/dream/pure/dream__pure__Body.cmi => /home/opam/.opam/4.14/lib/dream/pure/dream__pure__Body.cmi
- _build/install/default/lib/dream/pure/dream__pure__Body.cmt => /home/opam/.opam/4.14/lib/dream/pure/dream__pure__Body.cmt
- _build/install/default/lib/dream/pure/dream__pure__Body.cmx => /home/opam/.opam/4.14/lib/dream/pure/dream__pure__Body.cmx
- _build/install/default/lib/dream/pure/dream__pure__Formats.cmi => /home/opam/.opam/4.14/lib/dream/pure/dream__pure__Formats.cmi
- _build/install/default/lib/dream/pure/dream__pure__Formats.cmt => /home/opam/.opam/4.14/lib/dream/pure/dream__pure__Formats.cmt
- _build/install/default/lib/dream/pure/dream__pure__Formats.cmx => /home/opam/.opam/4.14/lib/dream/pure/dream__pure__Formats.cmx
- _build/install/default/lib/dream/pure/dream__pure__Inmost.cmi => /home/opam/.opam/4.14/lib/dream/pure/dream__pure__Inmost.cmi
- _build/install/default/lib/dream/pure/dream__pure__Inmost.cmt => /home/opam/.opam/4.14/lib/dream/pure/dream__pure__Inmost.cmt
- _build/install/default/lib/dream/pure/dream__pure__Inmost.cmx => /home/opam/.opam/4.14/lib/dream/pure/dream__pure__Inmost.cmx
- _build/install/default/lib/dream/pure/dream__pure__Method.cmi => /home/opam/.opam/4.14/lib/dream/pure/dream__pure__Method.cmi
- _build/install/default/lib/dream/pure/dream__pure__Method.cmt => /home/opam/.opam/4.14/lib/dream/pure/dream__pure__Method.cmt
- _build/install/default/lib/dream/pure/dream__pure__Method.cmx => /home/opam/.opam/4.14/lib/dream/pure/dream__pure__Method.cmx
- _build/install/default/lib/dream/pure/dream__pure__Status.cmi => /home/opam/.opam/4.14/lib/dream/pure/dream__pure__Status.cmi
- _build/install/default/lib/dream/pure/dream__pure__Status.cmt => /home/opam/.opam/4.14/lib/dream/pure/dream__pure__Status.cmt
- _build/install/default/lib/dream/pure/dream__pure__Status.cmx => /home/opam/.opam/4.14/lib/dream/pure/dream__pure__Status.cmx
- _build/install/default/lib/dream/pure/formats.ml => /home/opam/.opam/4.14/lib/dream/pure/formats.ml
- _build/install/default/lib/dream/pure/inmost.ml => /home/opam/.opam/4.14/lib/dream/pure/inmost.ml
- _build/install/default/lib/dream/pure/method.ml => /home/opam/.opam/4.14/lib/dream/pure/method.ml
- _build/install/default/lib/dream/pure/status.ml => /home/opam/.opam/4.14/lib/dream/pure/status.ml
- Creating directory /home/opam/.opam/4.14/lib/dream/sql
- _build/install/default/lib/dream/sql/dream__sql.a => /home/opam/.opam/4.14/lib/dream/sql/dream__sql.a
- _build/install/default/lib/dream/sql/dream__sql.cma => /home/opam/.opam/4.14/lib/dream/sql/dream__sql.cma
- _build/install/default/lib/dream/sql/dream__sql.cmi => /home/opam/.opam/4.14/lib/dream/sql/dream__sql.cmi
- _build/install/default/lib/dream/sql/dream__sql.cmt => /home/opam/.opam/4.14/lib/dream/sql/dream__sql.cmt
- _build/install/default/lib/dream/sql/dream__sql.cmx => /home/opam/.opam/4.14/lib/dream/sql/dream__sql.cmx
- _build/install/default/lib/dream/sql/dream__sql.cmxa => /home/opam/.opam/4.14/lib/dream/sql/dream__sql.cmxa
- _build/install/default/lib/dream/sql/dream__sql.ml => /home/opam/.opam/4.14/lib/dream/sql/dream__sql.ml
- _build/install/default/lib/dream/sql/dream__sql__Session.cmi => /home/opam/.opam/4.14/lib/dream/sql/dream__sql__Session.cmi
- _build/install/default/lib/dream/sql/dream__sql__Session.cmt => /home/opam/.opam/4.14/lib/dream/sql/dream__sql__Session.cmt
- _build/install/default/lib/dream/sql/dream__sql__Session.cmx => /home/opam/.opam/4.14/lib/dream/sql/dream__sql__Session.cmx
- _build/install/default/lib/dream/sql/dream__sql__Sql.cmi => /home/opam/.opam/4.14/lib/dream/sql/dream__sql__Sql.cmi
- _build/install/default/lib/dream/sql/dream__sql__Sql.cmt => /home/opam/.opam/4.14/lib/dream/sql/dream__sql__Sql.cmt
- _build/install/default/lib/dream/sql/dream__sql__Sql.cmx => /home/opam/.opam/4.14/lib/dream/sql/dream__sql__Sql.cmx
- _build/install/default/lib/dream/sql/session.ml => /home/opam/.opam/4.14/lib/dream/sql/session.ml
- _build/install/default/lib/dream/sql/sql.ml => /home/opam/.opam/4.14/lib/dream/sql/sql.ml
- _build/install/default/lib/dream/cipher/dream__cipher.cmxs => /home/opam/.opam/4.14/lib/dream/cipher/dream__cipher.cmxs
- _build/install/default/lib/dream/dream.cmxs => /home/opam/.opam/4.14/lib/dream/dream.cmxs
- _build/install/default/lib/dream/graphiql/dream__graphiql.cmxs => /home/opam/.opam/4.14/lib/dream/graphiql/dream__graphiql.cmxs
- _build/install/default/lib/dream/graphql/dream__graphql.cmxs => /home/opam/.opam/4.14/lib/dream/graphql/dream__graphql.cmxs
- _build/install/default/lib/dream/http/dream__http.cmxs => /home/opam/.opam/4.14/lib/dream/http/dream__http.cmxs
- _build/install/default/lib/dream/localhost/dream__localhost.cmxs => /home/opam/.opam/4.14/lib/dream/localhost/dream__localhost.cmxs
- _build/install/default/lib/dream/middleware/dream__middleware.cmxs => /home/opam/.opam/4.14/lib/dream/middleware/dream__middleware.cmxs
- _build/install/default/lib/dream/pure/dream__pure.cmxs => /home/opam/.opam/4.14/lib/dream/pure/dream__pure.cmxs
- _build/install/default/lib/dream/sql/dream__sql.cmxs => /home/opam/.opam/4.14/lib/dream/sql/dream__sql.cmxs
- Creating directory /home/opam/.opam/4.14/doc/dream
- _build/install/default/doc/dream/LICENSE.md => /home/opam/.opam/4.14/doc/dream/LICENSE.md
- _build/install/default/doc/dream/README.md => /home/opam/.opam/4.14/doc/dream/README.md
Processing 4/4: [dream: opam-installer]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "opam-installer" "--prefix" "/home/opam/.opam/4.14" "src/vendor/gluten/gluten.install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dream.1.0.0~alpha1)
- Creating directory /home/opam/.opam/4.14/lib/gluten
- _build/install/default/lib/gluten/META => /home/opam/.opam/4.14/lib/gluten/META
- _build/install/default/lib/gluten/dune-package => /home/opam/.opam/4.14/lib/gluten/dune-package
- _build/install/default/lib/gluten/gluten.a => /home/opam/.opam/4.14/lib/gluten/gluten.a
- _build/install/default/lib/gluten/gluten.cma => /home/opam/.opam/4.14/lib/gluten/gluten.cma
- _build/install/default/lib/gluten/gluten.cmi => /home/opam/.opam/4.14/lib/gluten/gluten.cmi
- _build/install/default/lib/gluten/gluten.cmt => /home/opam/.opam/4.14/lib/gluten/gluten.cmt
- _build/install/default/lib/gluten/gluten.cmti => /home/opam/.opam/4.14/lib/gluten/gluten.cmti
- _build/install/default/lib/gluten/gluten.cmx => /home/opam/.opam/4.14/lib/gluten/gluten.cmx
- _build/install/default/lib/gluten/gluten.cmxa => /home/opam/.opam/4.14/lib/gluten/gluten.cmxa
- _build/install/default/lib/gluten/gluten.ml => /home/opam/.opam/4.14/lib/gluten/gluten.ml
- _build/install/default/lib/gluten/gluten.mli => /home/opam/.opam/4.14/lib/gluten/gluten.mli
- _build/install/default/lib/gluten/opam => /home/opam/.opam/4.14/lib/gluten/opam
- _build/install/default/lib/gluten/gluten.cmxs => /home/opam/.opam/4.14/lib/gluten/gluten.cmxs
- Creating directory /home/opam/.opam/4.14/doc/gluten
- _build/install/default/doc/gluten/CHANGES.md => /home/opam/.opam/4.14/doc/gluten/CHANGES.md
- _build/install/default/doc/gluten/LICENSE => /home/opam/.opam/4.14/doc/gluten/LICENSE
- _build/install/default/doc/gluten/README.md => /home/opam/.opam/4.14/doc/gluten/README.md
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "opam-installer" "--prefix" "/home/opam/.opam/4.14" "src/vendor/gluten/gluten-lwt.install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dream.1.0.0~alpha1)
- Creating directory /home/opam/.opam/4.14/lib/gluten-lwt
- _build/install/default/lib/gluten-lwt/META => /home/opam/.opam/4.14/lib/gluten-lwt/META
- _build/install/default/lib/gluten-lwt/dune-package => /home/opam/.opam/4.14/lib/gluten-lwt/dune-package
- _build/install/default/lib/gluten-lwt/gluten_lwt.a => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt.a
- _build/install/default/lib/gluten-lwt/gluten_lwt.cma => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt.cma
- _build/install/default/lib/gluten-lwt/gluten_lwt.cmi => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt.cmi
- _build/install/default/lib/gluten-lwt/gluten_lwt.cmt => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt.cmt
- _build/install/default/lib/gluten-lwt/gluten_lwt.cmti => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt.cmti
- _build/install/default/lib/gluten-lwt/gluten_lwt.cmx => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt.cmx
- _build/install/default/lib/gluten-lwt/gluten_lwt.cmxa => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt.cmxa
- _build/install/default/lib/gluten-lwt/gluten_lwt.ml => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt.ml
- _build/install/default/lib/gluten-lwt/gluten_lwt.mli => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt.mli
- _build/install/default/lib/gluten-lwt/gluten_lwt__.cmi => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt__.cmi
- _build/install/default/lib/gluten-lwt/gluten_lwt__.cmt => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt__.cmt
- _build/install/default/lib/gluten-lwt/gluten_lwt__.cmx => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt__.cmx
- _build/install/default/lib/gluten-lwt/gluten_lwt__.ml => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt__.ml
- _build/install/default/lib/gluten-lwt/gluten_lwt__Gluten_lwt_intf.cmi => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt__Gluten_lwt_intf.cmi
- _build/install/default/lib/gluten-lwt/gluten_lwt__Gluten_lwt_intf.cmt => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt__Gluten_lwt_intf.cmt
- _build/install/default/lib/gluten-lwt/gluten_lwt__Gluten_lwt_intf.cmx => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt__Gluten_lwt_intf.cmx
- _build/install/default/lib/gluten-lwt/gluten_lwt_intf.ml => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt_intf.ml
- _build/install/default/lib/gluten-lwt/opam => /home/opam/.opam/4.14/lib/gluten-lwt/opam
- _build/install/default/lib/gluten-lwt/gluten_lwt.cmxs => /home/opam/.opam/4.14/lib/gluten-lwt/gluten_lwt.cmxs
- Creating directory /home/opam/.opam/4.14/doc/gluten-lwt
- _build/install/default/doc/gluten-lwt/CHANGES.md => /home/opam/.opam/4.14/doc/gluten-lwt/CHANGES.md
- _build/install/default/doc/gluten-lwt/LICENSE => /home/opam/.opam/4.14/doc/gluten-lwt/LICENSE
- _build/install/default/doc/gluten-lwt/README.md => /home/opam/.opam/4.14/doc/gluten-lwt/README.md
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "opam-installer" "--prefix" "/home/opam/.opam/4.14" "src/vendor/gluten/gluten-lwt-unix.install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dream.1.0.0~alpha1)
- Creating directory /home/opam/.opam/4.14/lib/gluten-lwt-unix
- _build/install/default/lib/gluten-lwt-unix/META => /home/opam/.opam/4.14/lib/gluten-lwt-unix/META
- _build/install/default/lib/gluten-lwt-unix/dune-package => /home/opam/.opam/4.14/lib/gluten-lwt-unix/dune-package
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix.a => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix.a
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix.cma => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix.cma
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix.cmi => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix.cmi
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix.cmt => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix.cmt
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix.cmti => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix.cmti
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix.cmx => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix.cmx
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix.cmxa => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix.cmxa
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix.ml => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix.ml
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix.mli => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix.mli
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix__.cmi => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix__.cmi
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix__.cmt => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix__.cmt
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix__.cmx => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix__.cmx
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix__.ml => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix__.ml
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix__Ssl_io.cmi => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix__Ssl_io.cmi
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix__Ssl_io.cmt => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix__Ssl_io.cmt
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix__Ssl_io.cmx => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix__Ssl_io.cmx
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix__Tls_io.cmi => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix__Tls_io.cmi
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix__Tls_io.cmt => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix__Tls_io.cmt
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix__Tls_io.cmx => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix__Tls_io.cmx
- _build/install/default/lib/gluten-lwt-unix/opam => /home/opam/.opam/4.14/lib/gluten-lwt-unix/opam
- _build/install/default/lib/gluten-lwt-unix/ssl_io.ml => /home/opam/.opam/4.14/lib/gluten-lwt-unix/ssl_io.ml
- _build/install/default/lib/gluten-lwt-unix/tls_io.ml => /home/opam/.opam/4.14/lib/gluten-lwt-unix/tls_io.ml
- _build/install/default/lib/gluten-lwt-unix/gluten_lwt_unix.cmxs => /home/opam/.opam/4.14/lib/gluten-lwt-unix/gluten_lwt_unix.cmxs
- Creating directory /home/opam/.opam/4.14/doc/gluten-lwt-unix
- _build/install/default/doc/gluten-lwt-unix/CHANGES.md => /home/opam/.opam/4.14/doc/gluten-lwt-unix/CHANGES.md
- _build/install/default/doc/gluten-lwt-unix/LICENSE => /home/opam/.opam/4.14/doc/gluten-lwt-unix/LICENSE
- _build/install/default/doc/gluten-lwt-unix/README.md => /home/opam/.opam/4.14/doc/gluten-lwt-unix/README.md
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "opam-installer" "--prefix" "/home/opam/.opam/4.14" "src/vendor/websocketaf/websocketaf.install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dream.1.0.0~alpha1)
- Creating directory /home/opam/.opam/4.14/lib/websocketaf
- _build/install/default/lib/websocketaf/META => /home/opam/.opam/4.14/lib/websocketaf/META
- _build/install/default/lib/websocketaf/client_connection.ml => /home/opam/.opam/4.14/lib/websocketaf/client_connection.ml
- _build/install/default/lib/websocketaf/client_handshake.ml => /home/opam/.opam/4.14/lib/websocketaf/client_handshake.ml
- _build/install/default/lib/websocketaf/dune-package => /home/opam/.opam/4.14/lib/websocketaf/dune-package
- _build/install/default/lib/websocketaf/handshake.ml => /home/opam/.opam/4.14/lib/websocketaf/handshake.ml
- _build/install/default/lib/websocketaf/opam => /home/opam/.opam/4.14/lib/websocketaf/opam
- _build/install/default/lib/websocketaf/optional_thunk.ml => /home/opam/.opam/4.14/lib/websocketaf/optional_thunk.ml
- _build/install/default/lib/websocketaf/optional_thunk.mli => /home/opam/.opam/4.14/lib/websocketaf/optional_thunk.mli
- _build/install/default/lib/websocketaf/reader.ml => /home/opam/.opam/4.14/lib/websocketaf/reader.ml
- _build/install/default/lib/websocketaf/server_connection.ml => /home/opam/.opam/4.14/lib/websocketaf/server_connection.ml
- _build/install/default/lib/websocketaf/websocket.ml => /home/opam/.opam/4.14/lib/websocketaf/websocket.ml
- _build/install/default/lib/websocketaf/websocket_connection.ml => /home/opam/.opam/4.14/lib/websocketaf/websocket_connection.ml
- _build/install/default/lib/websocketaf/websocketaf.a => /home/opam/.opam/4.14/lib/websocketaf/websocketaf.a
- _build/install/default/lib/websocketaf/websocketaf.cma => /home/opam/.opam/4.14/lib/websocketaf/websocketaf.cma
- _build/install/default/lib/websocketaf/websocketaf.cmi => /home/opam/.opam/4.14/lib/websocketaf/websocketaf.cmi
- _build/install/default/lib/websocketaf/websocketaf.cmt => /home/opam/.opam/4.14/lib/websocketaf/websocketaf.cmt
- _build/install/default/lib/websocketaf/websocketaf.cmti => /home/opam/.opam/4.14/lib/websocketaf/websocketaf.cmti
- _build/install/default/lib/websocketaf/websocketaf.cmx => /home/opam/.opam/4.14/lib/websocketaf/websocketaf.cmx
- _build/install/default/lib/websocketaf/websocketaf.cmxa => /home/opam/.opam/4.14/lib/websocketaf/websocketaf.cmxa
- _build/install/default/lib/websocketaf/websocketaf.ml => /home/opam/.opam/4.14/lib/websocketaf/websocketaf.ml
- _build/install/default/lib/websocketaf/websocketaf.mli => /home/opam/.opam/4.14/lib/websocketaf/websocketaf.mli
- _build/install/default/lib/websocketaf/websocketaf__.cmi => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__.cmi
- _build/install/default/lib/websocketaf/websocketaf__.cmt => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__.cmt
- _build/install/default/lib/websocketaf/websocketaf__.cmx => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__.cmx
- _build/install/default/lib/websocketaf/websocketaf__.ml => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__.ml
- _build/install/default/lib/websocketaf/websocketaf__Client_connection.cmi => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Client_connection.cmi
- _build/install/default/lib/websocketaf/websocketaf__Client_connection.cmt => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Client_connection.cmt
- _build/install/default/lib/websocketaf/websocketaf__Client_connection.cmx => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Client_connection.cmx
- _build/install/default/lib/websocketaf/websocketaf__Client_handshake.cmi => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Client_handshake.cmi
- _build/install/default/lib/websocketaf/websocketaf__Client_handshake.cmt => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Client_handshake.cmt
- _build/install/default/lib/websocketaf/websocketaf__Client_handshake.cmx => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Client_handshake.cmx
- _build/install/default/lib/websocketaf/websocketaf__Handshake.cmi => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Handshake.cmi
- _build/install/default/lib/websocketaf/websocketaf__Handshake.cmt => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Handshake.cmt
- _build/install/default/lib/websocketaf/websocketaf__Handshake.cmx => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Handshake.cmx
- _build/install/default/lib/websocketaf/websocketaf__Optional_thunk.cmi => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Optional_thunk.cmi
- _build/install/default/lib/websocketaf/websocketaf__Optional_thunk.cmt => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Optional_thunk.cmt
- _build/install/default/lib/websocketaf/websocketaf__Optional_thunk.cmti => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Optional_thunk.cmti
- _build/install/default/lib/websocketaf/websocketaf__Optional_thunk.cmx => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Optional_thunk.cmx
- _build/install/default/lib/websocketaf/websocketaf__Reader.cmi => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Reader.cmi
- _build/install/default/lib/websocketaf/websocketaf__Reader.cmt => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Reader.cmt
- _build/install/default/lib/websocketaf/websocketaf__Reader.cmx => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Reader.cmx
- _build/install/default/lib/websocketaf/websocketaf__Server_connection.cmi => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Server_connection.cmi
- _build/install/default/lib/websocketaf/websocketaf__Server_connection.cmt => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Server_connection.cmt
- _build/install/default/lib/websocketaf/websocketaf__Server_connection.cmx => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Server_connection.cmx
- _build/install/default/lib/websocketaf/websocketaf__Websocket.cmi => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Websocket.cmi
- _build/install/default/lib/websocketaf/websocketaf__Websocket.cmt => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Websocket.cmt
- _build/install/default/lib/websocketaf/websocketaf__Websocket.cmx => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Websocket.cmx
- _build/install/default/lib/websocketaf/websocketaf__Websocket_connection.cmi => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Websocket_connection.cmi
- _build/install/default/lib/websocketaf/websocketaf__Websocket_connection.cmt => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Websocket_connection.cmt
- _build/install/default/lib/websocketaf/websocketaf__Websocket_connection.cmx => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Websocket_connection.cmx
- _build/install/default/lib/websocketaf/websocketaf__Wsd.cmi => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Wsd.cmi
- _build/install/default/lib/websocketaf/websocketaf__Wsd.cmt => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Wsd.cmt
- _build/install/default/lib/websocketaf/websocketaf__Wsd.cmx => /home/opam/.opam/4.14/lib/websocketaf/websocketaf__Wsd.cmx
- _build/install/default/lib/websocketaf/wsd.ml => /home/opam/.opam/4.14/lib/websocketaf/wsd.ml
- _build/install/default/lib/websocketaf/websocketaf.cmxs => /home/opam/.opam/4.14/lib/websocketaf/websocketaf.cmxs
- Creating directory /home/opam/.opam/4.14/doc/websocketaf
- _build/install/default/doc/websocketaf/README.md => /home/opam/.opam/4.14/doc/websocketaf/README.md
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "opam-installer" "--prefix" "/home/opam/.opam/4.14" "src/vendor/httpaf/httpaf.install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dream.1.0.0~alpha1)
- Creating directory /home/opam/.opam/4.14/lib/httpaf
- _build/install/default/lib/httpaf/META => /home/opam/.opam/4.14/lib/httpaf/META
- _build/install/default/lib/httpaf/body.ml => /home/opam/.opam/4.14/lib/httpaf/body.ml
- _build/install/default/lib/httpaf/client_connection.ml => /home/opam/.opam/4.14/lib/httpaf/client_connection.ml
- _build/install/default/lib/httpaf/config.ml => /home/opam/.opam/4.14/lib/httpaf/config.ml
- _build/install/default/lib/httpaf/dune-package => /home/opam/.opam/4.14/lib/httpaf/dune-package
- _build/install/default/lib/httpaf/headers.ml => /home/opam/.opam/4.14/lib/httpaf/headers.ml
- _build/install/default/lib/httpaf/headers.mli => /home/opam/.opam/4.14/lib/httpaf/headers.mli
- _build/install/default/lib/httpaf/httpaf.a => /home/opam/.opam/4.14/lib/httpaf/httpaf.a
- _build/install/default/lib/httpaf/httpaf.cma => /home/opam/.opam/4.14/lib/httpaf/httpaf.cma
- _build/install/default/lib/httpaf/httpaf.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf.cmi
- _build/install/default/lib/httpaf/httpaf.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf.cmt
- _build/install/default/lib/httpaf/httpaf.cmti => /home/opam/.opam/4.14/lib/httpaf/httpaf.cmti
- _build/install/default/lib/httpaf/httpaf.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf.cmx
- _build/install/default/lib/httpaf/httpaf.cmxa => /home/opam/.opam/4.14/lib/httpaf/httpaf.cmxa
- _build/install/default/lib/httpaf/httpaf.ml => /home/opam/.opam/4.14/lib/httpaf/httpaf.ml
- _build/install/default/lib/httpaf/httpaf.mli => /home/opam/.opam/4.14/lib/httpaf/httpaf.mli
- _build/install/default/lib/httpaf/httpaf__.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__.cmi
- _build/install/default/lib/httpaf/httpaf__.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__.cmt
- _build/install/default/lib/httpaf/httpaf__.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__.cmx
- _build/install/default/lib/httpaf/httpaf__.ml => /home/opam/.opam/4.14/lib/httpaf/httpaf__.ml
- _build/install/default/lib/httpaf/httpaf__Body.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Body.cmi
- _build/install/default/lib/httpaf/httpaf__Body.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Body.cmt
- _build/install/default/lib/httpaf/httpaf__Body.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Body.cmx
- _build/install/default/lib/httpaf/httpaf__Client_connection.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Client_connection.cmi
- _build/install/default/lib/httpaf/httpaf__Client_connection.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Client_connection.cmt
- _build/install/default/lib/httpaf/httpaf__Client_connection.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Client_connection.cmx
- _build/install/default/lib/httpaf/httpaf__Config.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Config.cmi
- _build/install/default/lib/httpaf/httpaf__Config.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Config.cmt
- _build/install/default/lib/httpaf/httpaf__Config.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Config.cmx
- _build/install/default/lib/httpaf/httpaf__Headers.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Headers.cmi
- _build/install/default/lib/httpaf/httpaf__Headers.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Headers.cmt
- _build/install/default/lib/httpaf/httpaf__Headers.cmti => /home/opam/.opam/4.14/lib/httpaf/httpaf__Headers.cmti
- _build/install/default/lib/httpaf/httpaf__Headers.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Headers.cmx
- _build/install/default/lib/httpaf/httpaf__IOVec.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__IOVec.cmi
- _build/install/default/lib/httpaf/httpaf__IOVec.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__IOVec.cmt
- _build/install/default/lib/httpaf/httpaf__IOVec.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__IOVec.cmx
- _build/install/default/lib/httpaf/httpaf__Input_state.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Input_state.cmi
- _build/install/default/lib/httpaf/httpaf__Input_state.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Input_state.cmt
- _build/install/default/lib/httpaf/httpaf__Input_state.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Input_state.cmx
- _build/install/default/lib/httpaf/httpaf__Message.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Message.cmi
- _build/install/default/lib/httpaf/httpaf__Message.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Message.cmt
- _build/install/default/lib/httpaf/httpaf__Message.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Message.cmx
- _build/install/default/lib/httpaf/httpaf__Method.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Method.cmi
- _build/install/default/lib/httpaf/httpaf__Method.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Method.cmt
- _build/install/default/lib/httpaf/httpaf__Method.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Method.cmx
- _build/install/default/lib/httpaf/httpaf__Optional_thunk.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Optional_thunk.cmi
- _build/install/default/lib/httpaf/httpaf__Optional_thunk.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Optional_thunk.cmt
- _build/install/default/lib/httpaf/httpaf__Optional_thunk.cmti => /home/opam/.opam/4.14/lib/httpaf/httpaf__Optional_thunk.cmti
- _build/install/default/lib/httpaf/httpaf__Optional_thunk.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Optional_thunk.cmx
- _build/install/default/lib/httpaf/httpaf__Output_state.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Output_state.cmi
- _build/install/default/lib/httpaf/httpaf__Output_state.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Output_state.cmt
- _build/install/default/lib/httpaf/httpaf__Output_state.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Output_state.cmx
- _build/install/default/lib/httpaf/httpaf__Parse.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Parse.cmi
- _build/install/default/lib/httpaf/httpaf__Parse.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Parse.cmt
- _build/install/default/lib/httpaf/httpaf__Parse.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Parse.cmx
- _build/install/default/lib/httpaf/httpaf__Reqd.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Reqd.cmi
- _build/install/default/lib/httpaf/httpaf__Reqd.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Reqd.cmt
- _build/install/default/lib/httpaf/httpaf__Reqd.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Reqd.cmx
- _build/install/default/lib/httpaf/httpaf__Request.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Request.cmi
- _build/install/default/lib/httpaf/httpaf__Request.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Request.cmt
- _build/install/default/lib/httpaf/httpaf__Request.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Request.cmx
- _build/install/default/lib/httpaf/httpaf__Respd.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Respd.cmi
- _build/install/default/lib/httpaf/httpaf__Respd.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Respd.cmt
- _build/install/default/lib/httpaf/httpaf__Respd.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Respd.cmx
- _build/install/default/lib/httpaf/httpaf__Response.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Response.cmi
- _build/install/default/lib/httpaf/httpaf__Response.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Response.cmt
- _build/install/default/lib/httpaf/httpaf__Response.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Response.cmx
- _build/install/default/lib/httpaf/httpaf__Response_state.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Response_state.cmi
- _build/install/default/lib/httpaf/httpaf__Response_state.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Response_state.cmt
- _build/install/default/lib/httpaf/httpaf__Response_state.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Response_state.cmx
- _build/install/default/lib/httpaf/httpaf__Serialize.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Serialize.cmi
- _build/install/default/lib/httpaf/httpaf__Serialize.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Serialize.cmt
- _build/install/default/lib/httpaf/httpaf__Serialize.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Serialize.cmx
- _build/install/default/lib/httpaf/httpaf__Server_connection.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Server_connection.cmi
- _build/install/default/lib/httpaf/httpaf__Server_connection.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Server_connection.cmt
- _build/install/default/lib/httpaf/httpaf__Server_connection.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Server_connection.cmx
- _build/install/default/lib/httpaf/httpaf__Status.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Status.cmi
- _build/install/default/lib/httpaf/httpaf__Status.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Status.cmt
- _build/install/default/lib/httpaf/httpaf__Status.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Status.cmx
- _build/install/default/lib/httpaf/httpaf__Version.cmi => /home/opam/.opam/4.14/lib/httpaf/httpaf__Version.cmi
- _build/install/default/lib/httpaf/httpaf__Version.cmt => /home/opam/.opam/4.14/lib/httpaf/httpaf__Version.cmt
- _build/install/default/lib/httpaf/httpaf__Version.cmx => /home/opam/.opam/4.14/lib/httpaf/httpaf__Version.cmx
- _build/install/default/lib/httpaf/iOVec.ml => /home/opam/.opam/4.14/lib/httpaf/iOVec.ml
- _build/install/default/lib/httpaf/input_state.ml => /home/opam/.opam/4.14/lib/httpaf/input_state.ml
- _build/install/default/lib/httpaf/message.ml => /home/opam/.opam/4.14/lib/httpaf/message.ml
- _build/install/default/lib/httpaf/method.ml => /home/opam/.opam/4.14/lib/httpaf/method.ml
- _build/install/default/lib/httpaf/opam => /home/opam/.opam/4.14/lib/httpaf/opam
- _build/install/default/lib/httpaf/optional_thunk.ml => /home/opam/.opam/4.14/lib/httpaf/optional_thunk.ml
- _build/install/default/lib/httpaf/optional_thunk.mli => /home/opam/.opam/4.14/lib/httpaf/optional_thunk.mli
- _build/install/default/lib/httpaf/output_state.ml => /home/opam/.opam/4.14/lib/httpaf/output_state.ml
- _build/install/default/lib/httpaf/parse.ml => /home/opam/.opam/4.14/lib/httpaf/parse.ml
- _build/install/default/lib/httpaf/reqd.ml => /home/opam/.opam/4.14/lib/httpaf/reqd.ml
- _build/install/default/lib/httpaf/request.ml => /home/opam/.opam/4.14/lib/httpaf/request.ml
- _build/install/default/lib/httpaf/respd.ml => /home/opam/.opam/4.14/lib/httpaf/respd.ml
- _build/install/default/lib/httpaf/response.ml => /home/opam/.opam/4.14/lib/httpaf/response.ml
- _build/install/default/lib/httpaf/response_state.ml => /home/opam/.opam/4.14/lib/httpaf/response_state.ml
- _build/install/default/lib/httpaf/serialize.ml => /home/opam/.opam/4.14/lib/httpaf/serialize.ml
- _build/install/default/lib/httpaf/server_connection.ml => /home/opam/.opam/4.14/lib/httpaf/server_connection.ml
- _build/install/default/lib/httpaf/status.ml => /home/opam/.opam/4.14/lib/httpaf/status.ml
- _build/install/default/lib/httpaf/version.ml => /home/opam/.opam/4.14/lib/httpaf/version.ml
- _build/install/default/lib/httpaf/httpaf.cmxs => /home/opam/.opam/4.14/lib/httpaf/httpaf.cmxs
- Creating directory /home/opam/.opam/4.14/doc/httpaf
- _build/install/default/doc/httpaf/CHANGES.md => /home/opam/.opam/4.14/doc/httpaf/CHANGES.md
- _build/install/default/doc/httpaf/LICENSE => /home/opam/.opam/4.14/doc/httpaf/LICENSE
- _build/install/default/doc/httpaf/README.md => /home/opam/.opam/4.14/doc/httpaf/README.md
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "opam-installer" "--prefix" "/home/opam/.opam/4.14" "src/vendor/httpaf/httpaf-lwt.install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dream.1.0.0~alpha1)
- Creating directory /home/opam/.opam/4.14/lib/httpaf-lwt
- _build/install/default/lib/httpaf-lwt/META => /home/opam/.opam/4.14/lib/httpaf-lwt/META
- _build/install/default/lib/httpaf-lwt/dune-package => /home/opam/.opam/4.14/lib/httpaf-lwt/dune-package
- _build/install/default/lib/httpaf-lwt/httpaf_lwt.a => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt.a
- _build/install/default/lib/httpaf-lwt/httpaf_lwt.cma => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt.cma
- _build/install/default/lib/httpaf-lwt/httpaf_lwt.cmi => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt.cmi
- _build/install/default/lib/httpaf-lwt/httpaf_lwt.cmt => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt.cmt
- _build/install/default/lib/httpaf-lwt/httpaf_lwt.cmti => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt.cmti
- _build/install/default/lib/httpaf-lwt/httpaf_lwt.cmx => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt.cmx
- _build/install/default/lib/httpaf-lwt/httpaf_lwt.cmxa => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt.cmxa
- _build/install/default/lib/httpaf-lwt/httpaf_lwt.ml => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt.ml
- _build/install/default/lib/httpaf-lwt/httpaf_lwt.mli => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt.mli
- _build/install/default/lib/httpaf-lwt/httpaf_lwt__.cmi => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt__.cmi
- _build/install/default/lib/httpaf-lwt/httpaf_lwt__.cmt => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt__.cmt
- _build/install/default/lib/httpaf-lwt/httpaf_lwt__.cmx => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt__.cmx
- _build/install/default/lib/httpaf-lwt/httpaf_lwt__.ml => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt__.ml
- _build/install/default/lib/httpaf-lwt/httpaf_lwt__Httpaf_lwt_intf.cmi => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt__Httpaf_lwt_intf.cmi
- _build/install/default/lib/httpaf-lwt/httpaf_lwt__Httpaf_lwt_intf.cmt => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt__Httpaf_lwt_intf.cmt
- _build/install/default/lib/httpaf-lwt/httpaf_lwt__Httpaf_lwt_intf.cmx => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt__Httpaf_lwt_intf.cmx
- _build/install/default/lib/httpaf-lwt/httpaf_lwt_intf.ml => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt_intf.ml
- _build/install/default/lib/httpaf-lwt/opam => /home/opam/.opam/4.14/lib/httpaf-lwt/opam
- _build/install/default/lib/httpaf-lwt/httpaf_lwt.cmxs => /home/opam/.opam/4.14/lib/httpaf-lwt/httpaf_lwt.cmxs
- Creating directory /home/opam/.opam/4.14/doc/httpaf-lwt
- _build/install/default/doc/httpaf-lwt/CHANGES.md => /home/opam/.opam/4.14/doc/httpaf-lwt/CHANGES.md
- _build/install/default/doc/httpaf-lwt/LICENSE => /home/opam/.opam/4.14/doc/httpaf-lwt/LICENSE
- _build/install/default/doc/httpaf-lwt/README.md => /home/opam/.opam/4.14/doc/httpaf-lwt/README.md
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "opam-installer" "--prefix" "/home/opam/.opam/4.14" "src/vendor/httpaf/httpaf-lwt-unix.install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dream.1.0.0~alpha1)
- Creating directory /home/opam/.opam/4.14/lib/httpaf-lwt-unix
- _build/install/default/lib/httpaf-lwt-unix/META => /home/opam/.opam/4.14/lib/httpaf-lwt-unix/META
- _build/install/default/lib/httpaf-lwt-unix/dune-package => /home/opam/.opam/4.14/lib/httpaf-lwt-unix/dune-package
- _build/install/default/lib/httpaf-lwt-unix/httpaf_lwt_unix.a => /home/opam/.opam/4.14/lib/httpaf-lwt-unix/httpaf_lwt_unix.a
- _build/install/default/lib/httpaf-lwt-unix/httpaf_lwt_unix.cma => /home/opam/.opam/4.14/lib/httpaf-lwt-unix/httpaf_lwt_unix.cma
- _build/install/default/lib/httpaf-lwt-unix/httpaf_lwt_unix.cmi => /home/opam/.opam/4.14/lib/httpaf-lwt-unix/httpaf_lwt_unix.cmi
- _build/install/default/lib/httpaf-lwt-unix/httpaf_lwt_unix.cmt => /home/opam/.opam/4.14/lib/httpaf-lwt-unix/httpaf_lwt_unix.cmt
- _build/install/default/lib/httpaf-lwt-unix/httpaf_lwt_unix.cmti => /home/opam/.opam/4.14/lib/httpaf-lwt-unix/httpaf_lwt_unix.cmti
- _build/install/default/lib/httpaf-lwt-unix/httpaf_lwt_unix.cmx => /home/opam/.opam/4.14/lib/httpaf-lwt-unix/httpaf_lwt_unix.cmx
- _build/install/default/lib/httpaf-lwt-unix/httpaf_lwt_unix.cmxa => /home/opam/.opam/4.14/lib/httpaf-lwt-unix/httpaf_lwt_unix.cmxa
- _build/install/default/lib/httpaf-lwt-unix/httpaf_lwt_unix.ml => /home/opam/.opam/4.14/lib/httpaf-lwt-unix/httpaf_lwt_unix.ml
- _build/install/default/lib/httpaf-lwt-unix/httpaf_lwt_unix.mli => /home/opam/.opam/4.14/lib/httpaf-lwt-unix/httpaf_lwt_unix.mli
- _build/install/default/lib/httpaf-lwt-unix/opam => /home/opam/.opam/4.14/lib/httpaf-lwt-unix/opam
- _build/install/default/lib/httpaf-lwt-unix/httpaf_lwt_unix.cmxs => /home/opam/.opam/4.14/lib/httpaf-lwt-unix/httpaf_lwt_unix.cmxs
- Creating directory /home/opam/.opam/4.14/doc/httpaf-lwt-unix
- _build/install/default/doc/httpaf-lwt-unix/CHANGES.md => /home/opam/.opam/4.14/doc/httpaf-lwt-unix/CHANGES.md
- _build/install/default/doc/httpaf-lwt-unix/LICENSE => /home/opam/.opam/4.14/doc/httpaf-lwt-unix/LICENSE
- _build/install/default/doc/httpaf-lwt-unix/README.md => /home/opam/.opam/4.14/doc/httpaf-lwt-unix/README.md
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "opam-installer" "--prefix" "/home/opam/.opam/4.14" "src/vendor/h2/hpack.install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dream.1.0.0~alpha1)
- Creating directory /home/opam/.opam/4.14/lib/hpack
- _build/install/default/lib/hpack/META => /home/opam/.opam/4.14/lib/hpack/META
- _build/install/default/lib/hpack/decoder.ml => /home/opam/.opam/4.14/lib/hpack/decoder.ml
- _build/install/default/lib/hpack/dune-package => /home/opam/.opam/4.14/lib/hpack/dune-package
- _build/install/default/lib/hpack/dynamic_table.ml => /home/opam/.opam/4.14/lib/hpack/dynamic_table.ml
- _build/install/default/lib/hpack/encoder.ml => /home/opam/.opam/4.14/lib/hpack/encoder.ml
- _build/install/default/lib/hpack/hpack.a => /home/opam/.opam/4.14/lib/hpack/hpack.a
- _build/install/default/lib/hpack/hpack.cma => /home/opam/.opam/4.14/lib/hpack/hpack.cma
- _build/install/default/lib/hpack/hpack.cmi => /home/opam/.opam/4.14/lib/hpack/hpack.cmi
- _build/install/default/lib/hpack/hpack.cmt => /home/opam/.opam/4.14/lib/hpack/hpack.cmt
- _build/install/default/lib/hpack/hpack.cmti => /home/opam/.opam/4.14/lib/hpack/hpack.cmti
- _build/install/default/lib/hpack/hpack.cmx => /home/opam/.opam/4.14/lib/hpack/hpack.cmx
- _build/install/default/lib/hpack/hpack.cmxa => /home/opam/.opam/4.14/lib/hpack/hpack.cmxa
- _build/install/default/lib/hpack/hpack.ml => /home/opam/.opam/4.14/lib/hpack/hpack.ml
- _build/install/default/lib/hpack/hpack.mli => /home/opam/.opam/4.14/lib/hpack/hpack.mli
- _build/install/default/lib/hpack/hpack__.cmi => /home/opam/.opam/4.14/lib/hpack/hpack__.cmi
- _build/install/default/lib/hpack/hpack__.cmt => /home/opam/.opam/4.14/lib/hpack/hpack__.cmt
- _build/install/default/lib/hpack/hpack__.cmx => /home/opam/.opam/4.14/lib/hpack/hpack__.cmx
- _build/install/default/lib/hpack/hpack__.ml => /home/opam/.opam/4.14/lib/hpack/hpack__.ml
- _build/install/default/lib/hpack/hpack__Decoder.cmi => /home/opam/.opam/4.14/lib/hpack/hpack__Decoder.cmi
- _build/install/default/lib/hpack/hpack__Decoder.cmt => /home/opam/.opam/4.14/lib/hpack/hpack__Decoder.cmt
- _build/install/default/lib/hpack/hpack__Decoder.cmx => /home/opam/.opam/4.14/lib/hpack/hpack__Decoder.cmx
- _build/install/default/lib/hpack/hpack__Dynamic_table.cmi => /home/opam/.opam/4.14/lib/hpack/hpack__Dynamic_table.cmi
- _build/install/default/lib/hpack/hpack__Dynamic_table.cmt => /home/opam/.opam/4.14/lib/hpack/hpack__Dynamic_table.cmt
- _build/install/default/lib/hpack/hpack__Dynamic_table.cmx => /home/opam/.opam/4.14/lib/hpack/hpack__Dynamic_table.cmx
- _build/install/default/lib/hpack/hpack__Encoder.cmi => /home/opam/.opam/4.14/lib/hpack/hpack__Encoder.cmi
- _build/install/default/lib/hpack/hpack__Encoder.cmt => /home/opam/.opam/4.14/lib/hpack/hpack__Encoder.cmt
- _build/install/default/lib/hpack/hpack__Encoder.cmx => /home/opam/.opam/4.14/lib/hpack/hpack__Encoder.cmx
- _build/install/default/lib/hpack/hpack__Huffman.cmi => /home/opam/.opam/4.14/lib/hpack/hpack__Huffman.cmi
- _build/install/default/lib/hpack/hpack__Huffman.cmt => /home/opam/.opam/4.14/lib/hpack/hpack__Huffman.cmt
- _build/install/default/lib/hpack/hpack__Huffman.cmx => /home/opam/.opam/4.14/lib/hpack/hpack__Huffman.cmx
- _build/install/default/lib/hpack/hpack__Huffman_table.cmi => /home/opam/.opam/4.14/lib/hpack/hpack__Huffman_table.cmi
- _build/install/default/lib/hpack/hpack__Huffman_table.cmt => /home/opam/.opam/4.14/lib/hpack/hpack__Huffman_table.cmt
- _build/install/default/lib/hpack/hpack__Huffman_table.cmx => /home/opam/.opam/4.14/lib/hpack/hpack__Huffman_table.cmx
- _build/install/default/lib/hpack/hpack__Static_table.cmi => /home/opam/.opam/4.14/lib/hpack/hpack__Static_table.cmi
- _build/install/default/lib/hpack/hpack__Static_table.cmt => /home/opam/.opam/4.14/lib/hpack/hpack__Static_table.cmt
- _build/install/default/lib/hpack/hpack__Static_table.cmx => /home/opam/.opam/4.14/lib/hpack/hpack__Static_table.cmx
- _build/install/default/lib/hpack/hpack__Types.cmi => /home/opam/.opam/4.14/lib/hpack/hpack__Types.cmi
- _build/install/default/lib/hpack/hpack__Types.cmt => /home/opam/.opam/4.14/lib/hpack/hpack__Types.cmt
- _build/install/default/lib/hpack/hpack__Types.cmx => /home/opam/.opam/4.14/lib/hpack/hpack__Types.cmx
- _build/install/default/lib/hpack/huffman.ml => /home/opam/.opam/4.14/lib/hpack/huffman.ml
- _build/install/default/lib/hpack/huffman_table.ml => /home/opam/.opam/4.14/lib/hpack/huffman_table.ml
- _build/install/default/lib/hpack/opam => /home/opam/.opam/4.14/lib/hpack/opam
- _build/install/default/lib/hpack/static_table.ml => /home/opam/.opam/4.14/lib/hpack/static_table.ml
- _build/install/default/lib/hpack/types.ml => /home/opam/.opam/4.14/lib/hpack/types.ml
- _build/install/default/lib/hpack/hpack.cmxs => /home/opam/.opam/4.14/lib/hpack/hpack.cmxs
- Creating directory /home/opam/.opam/4.14/doc/hpack
- _build/install/default/doc/hpack/CHANGES.md => /home/opam/.opam/4.14/doc/hpack/CHANGES.md
- _build/install/default/doc/hpack/LICENSE => /home/opam/.opam/4.14/doc/hpack/LICENSE
- _build/install/default/doc/hpack/README.md => /home/opam/.opam/4.14/doc/hpack/README.md
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "opam-installer" "--prefix" "/home/opam/.opam/4.14" "src/vendor/h2/h2.install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dream.1.0.0~alpha1)
- Creating directory /home/opam/.opam/4.14/lib/h2
- _build/install/default/lib/h2/META => /home/opam/.opam/4.14/lib/h2/META
- _build/install/default/lib/h2/body.ml => /home/opam/.opam/4.14/lib/h2/body.ml
- _build/install/default/lib/h2/client_connection.ml => /home/opam/.opam/4.14/lib/h2/client_connection.ml
- _build/install/default/lib/h2/config.ml => /home/opam/.opam/4.14/lib/h2/config.ml
- _build/install/default/lib/h2/dune-package => /home/opam/.opam/4.14/lib/h2/dune-package
- _build/install/default/lib/h2/error.ml => /home/opam/.opam/4.14/lib/h2/error.ml
- _build/install/default/lib/h2/error_code.ml => /home/opam/.opam/4.14/lib/h2/error_code.ml
- _build/install/default/lib/h2/flags.ml => /home/opam/.opam/4.14/lib/h2/flags.ml
- _build/install/default/lib/h2/frame.ml => /home/opam/.opam/4.14/lib/h2/frame.ml
- _build/install/default/lib/h2/h2.a => /home/opam/.opam/4.14/lib/h2/h2.a
- _build/install/default/lib/h2/h2.cma => /home/opam/.opam/4.14/lib/h2/h2.cma
- _build/install/default/lib/h2/h2.cmi => /home/opam/.opam/4.14/lib/h2/h2.cmi
- _build/install/default/lib/h2/h2.cmt => /home/opam/.opam/4.14/lib/h2/h2.cmt
- _build/install/default/lib/h2/h2.cmti => /home/opam/.opam/4.14/lib/h2/h2.cmti
- _build/install/default/lib/h2/h2.cmx => /home/opam/.opam/4.14/lib/h2/h2.cmx
- _build/install/default/lib/h2/h2.cmxa => /home/opam/.opam/4.14/lib/h2/h2.cmxa
- _build/install/default/lib/h2/h2.ml => /home/opam/.opam/4.14/lib/h2/h2.ml
- _build/install/default/lib/h2/h2.mli => /home/opam/.opam/4.14/lib/h2/h2.mli
- _build/install/default/lib/h2/h2__.cmi => /home/opam/.opam/4.14/lib/h2/h2__.cmi
- _build/install/default/lib/h2/h2__.cmt => /home/opam/.opam/4.14/lib/h2/h2__.cmt
- _build/install/default/lib/h2/h2__.cmx => /home/opam/.opam/4.14/lib/h2/h2__.cmx
- _build/install/default/lib/h2/h2__.ml => /home/opam/.opam/4.14/lib/h2/h2__.ml
- _build/install/default/lib/h2/h2__Body.cmi => /home/opam/.opam/4.14/lib/h2/h2__Body.cmi
- _build/install/default/lib/h2/h2__Body.cmt => /home/opam/.opam/4.14/lib/h2/h2__Body.cmt
- _build/install/default/lib/h2/h2__Body.cmx => /home/opam/.opam/4.14/lib/h2/h2__Body.cmx
- _build/install/default/lib/h2/h2__Client_connection.cmi => /home/opam/.opam/4.14/lib/h2/h2__Client_connection.cmi
- _build/install/default/lib/h2/h2__Client_connection.cmt => /home/opam/.opam/4.14/lib/h2/h2__Client_connection.cmt
- _build/install/default/lib/h2/h2__Client_connection.cmx => /home/opam/.opam/4.14/lib/h2/h2__Client_connection.cmx
- _build/install/default/lib/h2/h2__Config.cmi => /home/opam/.opam/4.14/lib/h2/h2__Config.cmi
- _build/install/default/lib/h2/h2__Config.cmt => /home/opam/.opam/4.14/lib/h2/h2__Config.cmt
- _build/install/default/lib/h2/h2__Config.cmx => /home/opam/.opam/4.14/lib/h2/h2__Config.cmx
- _build/install/default/lib/h2/h2__Error.cmi => /home/opam/.opam/4.14/lib/h2/h2__Error.cmi
- _build/install/default/lib/h2/h2__Error.cmt => /home/opam/.opam/4.14/lib/h2/h2__Error.cmt
- _build/install/default/lib/h2/h2__Error.cmx => /home/opam/.opam/4.14/lib/h2/h2__Error.cmx
- _build/install/default/lib/h2/h2__Error_code.cmi => /home/opam/.opam/4.14/lib/h2/h2__Error_code.cmi
- _build/install/default/lib/h2/h2__Error_code.cmt => /home/opam/.opam/4.14/lib/h2/h2__Error_code.cmt
- _build/install/default/lib/h2/h2__Error_code.cmx => /home/opam/.opam/4.14/lib/h2/h2__Error_code.cmx
- _build/install/default/lib/h2/h2__Flags.cmi => /home/opam/.opam/4.14/lib/h2/h2__Flags.cmi
- _build/install/default/lib/h2/h2__Flags.cmt => /home/opam/.opam/4.14/lib/h2/h2__Flags.cmt
- _build/install/default/lib/h2/h2__Flags.cmx => /home/opam/.opam/4.14/lib/h2/h2__Flags.cmx
- _build/install/default/lib/h2/h2__Frame.cmi => /home/opam/.opam/4.14/lib/h2/h2__Frame.cmi
- _build/install/default/lib/h2/h2__Frame.cmt => /home/opam/.opam/4.14/lib/h2/h2__Frame.cmt
- _build/install/default/lib/h2/h2__Frame.cmx => /home/opam/.opam/4.14/lib/h2/h2__Frame.cmx
- _build/install/default/lib/h2/h2__Headers.cmi => /home/opam/.opam/4.14/lib/h2/h2__Headers.cmi
- _build/install/default/lib/h2/h2__Headers.cmt => /home/opam/.opam/4.14/lib/h2/h2__Headers.cmt
- _build/install/default/lib/h2/h2__Headers.cmx => /home/opam/.opam/4.14/lib/h2/h2__Headers.cmx
- _build/install/default/lib/h2/h2__Message.cmi => /home/opam/.opam/4.14/lib/h2/h2__Message.cmi
- _build/install/default/lib/h2/h2__Message.cmt => /home/opam/.opam/4.14/lib/h2/h2__Message.cmt
- _build/install/default/lib/h2/h2__Message.cmx => /home/opam/.opam/4.14/lib/h2/h2__Message.cmx
- _build/install/default/lib/h2/h2__Optional_thunk.cmi => /home/opam/.opam/4.14/lib/h2/h2__Optional_thunk.cmi
- _build/install/default/lib/h2/h2__Optional_thunk.cmt => /home/opam/.opam/4.14/lib/h2/h2__Optional_thunk.cmt
- _build/install/default/lib/h2/h2__Optional_thunk.cmti => /home/opam/.opam/4.14/lib/h2/h2__Optional_thunk.cmti
- _build/install/default/lib/h2/h2__Optional_thunk.cmx => /home/opam/.opam/4.14/lib/h2/h2__Optional_thunk.cmx
- _build/install/default/lib/h2/h2__Parse.cmi => /home/opam/.opam/4.14/lib/h2/h2__Parse.cmi
- _build/install/default/lib/h2/h2__Parse.cmt => /home/opam/.opam/4.14/lib/h2/h2__Parse.cmt
- _build/install/default/lib/h2/h2__Parse.cmx => /home/opam/.opam/4.14/lib/h2/h2__Parse.cmx
- _build/install/default/lib/h2/h2__Priority.cmi => /home/opam/.opam/4.14/lib/h2/h2__Priority.cmi
- _build/install/default/lib/h2/h2__Priority.cmt => /home/opam/.opam/4.14/lib/h2/h2__Priority.cmt
- _build/install/default/lib/h2/h2__Priority.cmx => /home/opam/.opam/4.14/lib/h2/h2__Priority.cmx
- _build/install/default/lib/h2/h2__Reqd.cmi => /home/opam/.opam/4.14/lib/h2/h2__Reqd.cmi
- _build/install/default/lib/h2/h2__Reqd.cmt => /home/opam/.opam/4.14/lib/h2/h2__Reqd.cmt
- _build/install/default/lib/h2/h2__Reqd.cmx => /home/opam/.opam/4.14/lib/h2/h2__Reqd.cmx
- _build/install/default/lib/h2/h2__Request.cmi => /home/opam/.opam/4.14/lib/h2/h2__Request.cmi
- _build/install/default/lib/h2/h2__Request.cmt => /home/opam/.opam/4.14/lib/h2/h2__Request.cmt
- _build/install/default/lib/h2/h2__Request.cmx => /home/opam/.opam/4.14/lib/h2/h2__Request.cmx
- _build/install/default/lib/h2/h2__Respd.cmi => /home/opam/.opam/4.14/lib/h2/h2__Respd.cmi
- _build/install/default/lib/h2/h2__Respd.cmt => /home/opam/.opam/4.14/lib/h2/h2__Respd.cmt
- _build/install/default/lib/h2/h2__Respd.cmx => /home/opam/.opam/4.14/lib/h2/h2__Respd.cmx
- _build/install/default/lib/h2/h2__Response.cmi => /home/opam/.opam/4.14/lib/h2/h2__Response.cmi
- _build/install/default/lib/h2/h2__Response.cmt => /home/opam/.opam/4.14/lib/h2/h2__Response.cmt
- _build/install/default/lib/h2/h2__Response.cmx => /home/opam/.opam/4.14/lib/h2/h2__Response.cmx
- _build/install/default/lib/h2/h2__Scheduler.cmi => /home/opam/.opam/4.14/lib/h2/h2__Scheduler.cmi
- _build/install/default/lib/h2/h2__Scheduler.cmt => /home/opam/.opam/4.14/lib/h2/h2__Scheduler.cmt
- _build/install/default/lib/h2/h2__Scheduler.cmx => /home/opam/.opam/4.14/lib/h2/h2__Scheduler.cmx
- _build/install/default/lib/h2/h2__Serialize.cmi => /home/opam/.opam/4.14/lib/h2/h2__Serialize.cmi
- _build/install/default/lib/h2/h2__Serialize.cmt => /home/opam/.opam/4.14/lib/h2/h2__Serialize.cmt
- _build/install/default/lib/h2/h2__Serialize.cmx => /home/opam/.opam/4.14/lib/h2/h2__Serialize.cmx
- _build/install/default/lib/h2/h2__Server_connection.cmi => /home/opam/.opam/4.14/lib/h2/h2__Server_connection.cmi
- _build/install/default/lib/h2/h2__Server_connection.cmt => /home/opam/.opam/4.14/lib/h2/h2__Server_connection.cmt
- _build/install/default/lib/h2/h2__Server_connection.cmx => /home/opam/.opam/4.14/lib/h2/h2__Server_connection.cmx
- _build/install/default/lib/h2/h2__Settings.cmi => /home/opam/.opam/4.14/lib/h2/h2__Settings.cmi
- _build/install/default/lib/h2/h2__Settings.cmt => /home/opam/.opam/4.14/lib/h2/h2__Settings.cmt
- _build/install/default/lib/h2/h2__Settings.cmx => /home/opam/.opam/4.14/lib/h2/h2__Settings.cmx
- _build/install/default/lib/h2/h2__Status.cmi => /home/opam/.opam/4.14/lib/h2/h2__Status.cmi
- _build/install/default/lib/h2/h2__Status.cmt => /home/opam/.opam/4.14/lib/h2/h2__Status.cmt
- _build/install/default/lib/h2/h2__Status.cmx => /home/opam/.opam/4.14/lib/h2/h2__Status.cmx
- _build/install/default/lib/h2/h2__Stream.cmi => /home/opam/.opam/4.14/lib/h2/h2__Stream.cmi
- _build/install/default/lib/h2/h2__Stream.cmt => /home/opam/.opam/4.14/lib/h2/h2__Stream.cmt
- _build/install/default/lib/h2/h2__Stream.cmx => /home/opam/.opam/4.14/lib/h2/h2__Stream.cmx
- _build/install/default/lib/h2/h2__Stream_identifier.cmi => /home/opam/.opam/4.14/lib/h2/h2__Stream_identifier.cmi
- _build/install/default/lib/h2/h2__Stream_identifier.cmt => /home/opam/.opam/4.14/lib/h2/h2__Stream_identifier.cmt
- _build/install/default/lib/h2/h2__Stream_identifier.cmx => /home/opam/.opam/4.14/lib/h2/h2__Stream_identifier.cmx
- _build/install/default/lib/h2/h2__Util.cmi => /home/opam/.opam/4.14/lib/h2/h2__Util.cmi
- _build/install/default/lib/h2/h2__Util.cmt => /home/opam/.opam/4.14/lib/h2/h2__Util.cmt
- _build/install/default/lib/h2/h2__Util.cmx => /home/opam/.opam/4.14/lib/h2/h2__Util.cmx
- _build/install/default/lib/h2/headers.ml => /home/opam/.opam/4.14/lib/h2/headers.ml
- _build/install/default/lib/h2/message.ml => /home/opam/.opam/4.14/lib/h2/message.ml
- _build/install/default/lib/h2/opam => /home/opam/.opam/4.14/lib/h2/opam
- _build/install/default/lib/h2/optional_thunk.ml => /home/opam/.opam/4.14/lib/h2/optional_thunk.ml
- _build/install/default/lib/h2/optional_thunk.mli => /home/opam/.opam/4.14/lib/h2/optional_thunk.mli
- _build/install/default/lib/h2/parse.ml => /home/opam/.opam/4.14/lib/h2/parse.ml
- _build/install/default/lib/h2/priority.ml => /home/opam/.opam/4.14/lib/h2/priority.ml
- _build/install/default/lib/h2/reqd.ml => /home/opam/.opam/4.14/lib/h2/reqd.ml
- _build/install/default/lib/h2/request.ml => /home/opam/.opam/4.14/lib/h2/request.ml
- _build/install/default/lib/h2/respd.ml => /home/opam/.opam/4.14/lib/h2/respd.ml
- _build/install/default/lib/h2/response.ml => /home/opam/.opam/4.14/lib/h2/response.ml
- _build/install/default/lib/h2/scheduler.ml => /home/opam/.opam/4.14/lib/h2/scheduler.ml
- _build/install/default/lib/h2/serialize.ml => /home/opam/.opam/4.14/lib/h2/serialize.ml
- _build/install/default/lib/h2/server_connection.ml => /home/opam/.opam/4.14/lib/h2/server_connection.ml
- _build/install/default/lib/h2/settings.ml => /home/opam/.opam/4.14/lib/h2/settings.ml
- _build/install/default/lib/h2/status.ml => /home/opam/.opam/4.14/lib/h2/status.ml
- _build/install/default/lib/h2/stream.ml => /home/opam/.opam/4.14/lib/h2/stream.ml
- _build/install/default/lib/h2/stream_identifier.ml => /home/opam/.opam/4.14/lib/h2/stream_identifier.ml
- _build/install/default/lib/h2/util.ml => /home/opam/.opam/4.14/lib/h2/util.ml
- _build/install/default/lib/h2/h2.cmxs => /home/opam/.opam/4.14/lib/h2/h2.cmxs
- Creating directory /home/opam/.opam/4.14/doc/h2
- _build/install/default/doc/h2/CHANGES.md => /home/opam/.opam/4.14/doc/h2/CHANGES.md
- _build/install/default/doc/h2/LICENSE => /home/opam/.opam/4.14/doc/h2/LICENSE
- _build/install/default/doc/h2/README.md => /home/opam/.opam/4.14/doc/h2/README.md
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "opam-installer" "--prefix" "/home/opam/.opam/4.14" "src/vendor/h2/h2-lwt.install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dream.1.0.0~alpha1)
- Creating directory /home/opam/.opam/4.14/lib/h2-lwt
- _build/install/default/lib/h2-lwt/META => /home/opam/.opam/4.14/lib/h2-lwt/META
- _build/install/default/lib/h2-lwt/dune-package => /home/opam/.opam/4.14/lib/h2-lwt/dune-package
- _build/install/default/lib/h2-lwt/h2_lwt.a => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt.a
- _build/install/default/lib/h2-lwt/h2_lwt.cma => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt.cma
- _build/install/default/lib/h2-lwt/h2_lwt.cmi => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt.cmi
- _build/install/default/lib/h2-lwt/h2_lwt.cmt => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt.cmt
- _build/install/default/lib/h2-lwt/h2_lwt.cmti => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt.cmti
- _build/install/default/lib/h2-lwt/h2_lwt.cmx => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt.cmx
- _build/install/default/lib/h2-lwt/h2_lwt.cmxa => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt.cmxa
- _build/install/default/lib/h2-lwt/h2_lwt.ml => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt.ml
- _build/install/default/lib/h2-lwt/h2_lwt.mli => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt.mli
- _build/install/default/lib/h2-lwt/h2_lwt__.cmi => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt__.cmi
- _build/install/default/lib/h2-lwt/h2_lwt__.cmt => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt__.cmt
- _build/install/default/lib/h2-lwt/h2_lwt__.cmx => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt__.cmx
- _build/install/default/lib/h2-lwt/h2_lwt__.ml => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt__.ml
- _build/install/default/lib/h2-lwt/h2_lwt__H2_lwt_intf.cmi => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt__H2_lwt_intf.cmi
- _build/install/default/lib/h2-lwt/h2_lwt__H2_lwt_intf.cmt => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt__H2_lwt_intf.cmt
- _build/install/default/lib/h2-lwt/h2_lwt__H2_lwt_intf.cmx => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt__H2_lwt_intf.cmx
- _build/install/default/lib/h2-lwt/h2_lwt_intf.ml => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt_intf.ml
- _build/install/default/lib/h2-lwt/opam => /home/opam/.opam/4.14/lib/h2-lwt/opam
- _build/install/default/lib/h2-lwt/h2_lwt.cmxs => /home/opam/.opam/4.14/lib/h2-lwt/h2_lwt.cmxs
- Creating directory /home/opam/.opam/4.14/doc/h2-lwt
- _build/install/default/doc/h2-lwt/CHANGES.md => /home/opam/.opam/4.14/doc/h2-lwt/CHANGES.md
- _build/install/default/doc/h2-lwt/LICENSE => /home/opam/.opam/4.14/doc/h2-lwt/LICENSE
- _build/install/default/doc/h2-lwt/README.md => /home/opam/.opam/4.14/doc/h2-lwt/README.md
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "opam-installer" "--prefix" "/home/opam/.opam/4.14" "src/vendor/h2/h2-lwt-unix.install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dream.1.0.0~alpha1)
- Creating directory /home/opam/.opam/4.14/lib/h2-lwt-unix
- _build/install/default/lib/h2-lwt-unix/META => /home/opam/.opam/4.14/lib/h2-lwt-unix/META
- _build/install/default/lib/h2-lwt-unix/dune-package => /home/opam/.opam/4.14/lib/h2-lwt-unix/dune-package
- _build/install/default/lib/h2-lwt-unix/h2_lwt_unix.a => /home/opam/.opam/4.14/lib/h2-lwt-unix/h2_lwt_unix.a
- _build/install/default/lib/h2-lwt-unix/h2_lwt_unix.cma => /home/opam/.opam/4.14/lib/h2-lwt-unix/h2_lwt_unix.cma
- _build/install/default/lib/h2-lwt-unix/h2_lwt_unix.cmi => /home/opam/.opam/4.14/lib/h2-lwt-unix/h2_lwt_unix.cmi
- _build/install/default/lib/h2-lwt-unix/h2_lwt_unix.cmt => /home/opam/.opam/4.14/lib/h2-lwt-unix/h2_lwt_unix.cmt
- _build/install/default/lib/h2-lwt-unix/h2_lwt_unix.cmti => /home/opam/.opam/4.14/lib/h2-lwt-unix/h2_lwt_unix.cmti
- _build/install/default/lib/h2-lwt-unix/h2_lwt_unix.cmx => /home/opam/.opam/4.14/lib/h2-lwt-unix/h2_lwt_unix.cmx
- _build/install/default/lib/h2-lwt-unix/h2_lwt_unix.cmxa => /home/opam/.opam/4.14/lib/h2-lwt-unix/h2_lwt_unix.cmxa
- _build/install/default/lib/h2-lwt-unix/h2_lwt_unix.ml => /home/opam/.opam/4.14/lib/h2-lwt-unix/h2_lwt_unix.ml
- _build/install/default/lib/h2-lwt-unix/h2_lwt_unix.mli => /home/opam/.opam/4.14/lib/h2-lwt-unix/h2_lwt_unix.mli
- _build/install/default/lib/h2-lwt-unix/opam => /home/opam/.opam/4.14/lib/h2-lwt-unix/opam
- _build/install/default/lib/h2-lwt-unix/h2_lwt_unix.cmxs => /home/opam/.opam/4.14/lib/h2-lwt-unix/h2_lwt_unix.cmxs
- Creating directory /home/opam/.opam/4.14/doc/h2-lwt-unix
- _build/install/default/doc/h2-lwt-unix/CHANGES.md => /home/opam/.opam/4.14/doc/h2-lwt-unix/CHANGES.md
- _build/install/default/doc/h2-lwt-unix/LICENSE => /home/opam/.opam/4.14/doc/h2-lwt-unix/LICENSE
- _build/install/default/doc/h2-lwt-unix/README.md => /home/opam/.opam/4.14/doc/h2-lwt-unix/README.md
-> installed dream.1.0.0~alpha1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-19 22:55.00 ---> saved as "db2237f2199c666988d3d053ab782ba11d102e28ddab9497e565fab873387748"
Job succeeded
2025-11-19 22:55.04: Job succeeded