(not at the head of any monitored branch or PR)
2026-03-17 12:54.58: New job: test dream.1.0.0~alpha1 with lwt_ppx.2.1.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (395113449576622af70540fb22e5d90e18554bdc)
                              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/29530/head" && git reset --hard 39511344
git fetch origin master
git merge --no-edit e589be2bb3f3c3428c9c98a122428f3ad2d44845
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn lwt_ppx.2.1.0 2.1.0
RUN opam reinstall lwt_ppx.2.1.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'lwt_ppx.2.1.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall 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 .

2026-03-17 12:54.58: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-lwt_ppx.2.1.0-dream.1.0.0~alpha1-395113449576622af70540fb22e5d90e18554bdc"
2026-03-17 12:54.58: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn lwt_ppx.2.1.0 2.1.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall lwt_ppx.2.1.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'lwt_ppx.2.1.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (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"))
)

2026-03-17 12:54.58: Waiting for resource in pool OCluster
2026-03-17 17:38.26: Waiting for worker…
2026-03-17 17:44.31: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files:  65% (12098/18444)
Updating files:  66% (12174/18444)
Updating files:  67% (12358/18444)
Updating files:  68% (12542/18444)
Updating files:  69% (12727/18444)
Updating files:  70% (12911/18444)
Updating files:  71% (13096/18444)
Updating files:  72% (13280/18444)
Updating files:  73% (13465/18444)
Updating files:  74% (13649/18444)
Updating files:  75% (13833/18444)
Updating files:  76% (14018/18444)
Updating files:  77% (14202/18444)
Updating files:  78% (14387/18444)
Updating files:  79% (14571/18444)
Updating files:  80% (14756/18444)
Updating files:  81% (14940/18444)
Updating files:  82% (15125/18444)
Updating files:  83% (15309/18444)
Updating files:  84% (15493/18444)
Updating files:  85% (15678/18444)
Updating files:  86% (15862/18444)
Updating files:  87% (16047/18444)
Updating files:  88% (16231/18444)
Updating files:  89% (16416/18444)
Updating files:  90% (16600/18444)
Updating files:  91% (16785/18444)
Updating files:  92% (16969/18444)
Updating files:  93% (17153/18444)
Updating files:  94% (17338/18444)
Updating files:  95% (17522/18444)
Updating files:  96% (17707/18444)
Updating files:  97% (17891/18444)
Updating files:  98% (18076/18444)
Updating files:  99% (18260/18444)
Updating files: 100% (18444/18444)
Updating files: 100% (18444/18444), done.
HEAD is now at e589be2bb3 Merge pull request #29546 from johnwhitington/opam-publish-camlpdf.2.9
Merge made by the 'ort' strategy.
 packages/bimage-lwt/bimage-lwt.0.3.0/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.3.1/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.4.0/opam    | 6 +++++-
 packages/caqti-lwt/caqti-lwt.0.11.0/opam     | 4 +++-
 packages/caqti-lwt/caqti-lwt.1.0.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.2.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.3.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.6.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.7.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.8.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.9.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.0.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.1.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.2.4/opam      | 6 +++++-
 packages/fuseau-lwt/fuseau-lwt.0.1/opam      | 6 +++++-
 packages/lambda-term/lambda-term.1.13/opam   | 6 +++++-
 packages/lambda-term/lambda-term.2.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.2/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.3/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0/opam    | 6 +++++-
 packages/lambda-term/lambda-term.3.0.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.1.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.2.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.2/opam  | 6 +++++-
 packages/lwt_domain/lwt_domain.0.1.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.2.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.3.0/opam    | 6 +++++-
 packages/lwt_eio/lwt_eio.0.1/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.2/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.3/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.4/opam            | 7 ++++++-
 packages/lwt_eio/lwt_eio.0.5.1/opam          | 7 ++++++-
 packages/lwt_eio/lwt_eio.0.5/opam            | 7 ++++++-
 packages/lwt_glib/lwt_glib.1.0.1/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.0/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.1/opam        | 6 +++++-
 packages/lwt_log/lwt_log.1.1.0/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.1/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.4/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.3/opam          | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.10/opam | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.6/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.7/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.8/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.9/opam  | 6 +++++-
 packages/mwt/mwt.0.1.0/opam                  | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-1/opam      | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-2/opam      | 6 +++++-
 packages/ocluster/ocluster.0.1/opam          | 4 +++-
 packages/ocluster/ocluster.0.2.1/opam        | 6 +++++-
 packages/ocluster/ocluster.0.2/opam          | 4 +++-
 packages/ocluster/ocluster.0.3.0/opam        | 6 +++++-
 packages/picos/picos.0.3.0/opam              | 6 +++++-
 packages/picos/picos.0.4.0/opam              | 6 +++++-
 packages/picos_lwt/picos_lwt.0.5.0/opam      | 6 +++++-
 packages/picos_lwt/picos_lwt.0.6.0/opam      | 6 +++++-
 packages/tezt/tezt.2.0.0/opam                | 6 +++++-
 packages/tezt/tezt.3.0.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.1/opam                | 4 +++-
 packages/tezt/tezt.4.0.0/opam                | 4 +++-
 packages/tezt/tezt.4.1.0/opam                | 4 +++-
 packages/tezt/tezt.4.2.0/opam                | 4 +++-
 packages/tezt/tezt.4.3.0/opam                | 4 +++-
 84 files changed, 403 insertions(+), 84 deletions(-)

(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-17 17:44.36 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-17 17:44.36 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-17 17:44.36 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-17 17:44.36 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-17 17:44.36 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 17:44.37 ---> using "2ea19ba6f877d7490ae9d28c3ca82f6e95d6422fa89ee35c988285b501b22151" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 17:44.37 ---> using "4b3f38aef2d21c9a37671a782598114b37b94b05f6a6f32ffa66d88a437eafcd" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [111 kB]
- Fetched 10.0 MB in 2s (5649 kB/s)
- Reading package lists...
- 
2026-03-17 17:44.38 ---> using "95a3159566682deae2959ada00c816034be3f300ca41bc004797908f9469a557" from cache

/home/opam: (run (shell "opam pin add -k version -yn lwt_ppx.2.1.0 2.1.0"))
lwt_ppx is now pinned to version 2.1.0
2026-03-17 17:44.38 ---> using "620f539788d347cca7bc4ab91c4033c5a71ebd9a0fde5f1176bf006687cc648f" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lwt_ppx.2.1.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'lwt_ppx.2.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
lwt_ppx.2.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
  - install base-bytes          base           [required by ocplib-endian]
  - install cppo                1.8.0          [required by lwt]
  - install csexp               1.5.2          [required by dune-configurator]
  - install dune                3.21.1         [required by lwt_ppx]
  - install dune-configurator   3.21.1         [required by lwt]
  - install lwt                 5.9.2          [required by lwt_ppx]
  - install lwt_ppx             2.1.0 (pinned)
  - install ocaml-compiler-libs v0.12.4        [required by ppxlib]
  - install ocamlfind           1.9.8          [required by base-bytes]
  - install ocplib-endian       1.2            [required by lwt]
  - install ppx_derivers        1.2.1          [required by ppxlib]
  - install ppxlib              0.35.0         [required by lwt_ppx]
  - install sexplib0            v0.17.0        [required by ppxlib]
  - install stdlib-shims        0.3.0          [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved lwt_ppx.2.1.0  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.21.1
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.17.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.21.1
-> installed lwt.5.9.2
-> installed ppxlib.0.35.0
-> installed lwt_ppx.2.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 17:44.38 ---> using "e3ce8870a2ef17d56c053b549a59ecd294aeaf28e897c145a0308666152c10de" 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:
=== recompile 2 packages
  - recompile lwt                 5.9.2          [uses conf-libev]
  - recompile lwt_ppx             2.1.0 (pinned) [uses lwt]
=== install 57 packages
  - install   angstrom            0.16.1         [required by dream]
  - 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   cstruct             6.2.0          [required by dream]
  - install   digestif            1.3.0          [required by dream]
  - install   dream               1.0.0~alpha1
  - 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   jsonm               1.0.2          [required by opam-core]
  - install   logs                0.10.0         [required by dream]
  - install   lwt_ssl             1.2.0          [required by dream]
  - install   magic-mime          1.3.1          [required by dream]
  - install   menhir              20260209       [required by graphql_parser]
  - install   menhirCST           20260209       [required by menhir]
  - install   menhirGLR           20260209       [required by menhir]
  - install   menhirLib           20260209       [required by menhir]
  - install   menhirSdk           20260209       [required by menhir]
  - 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-syntax-shims  1.0.0          [required by angstrom]
  - install   ocamlbuild          0.16.1         [required by hmap]
  - install   ocamlgraph          2.2.0          [required by opam-core]
  - install   opam-core           2.5.0          [required by opam-format]
  - install   opam-file-format    2.2.0          [required by opam-format]
  - install   opam-format         2.5.0          [required by opam-installer]
  - install   opam-installer      2.5.0          [required by dream]
  - install   patch               3.1.0          [required by opam-core]
  - install   psq                 0.2.1          [required by dream]
  - install   ptime               1.2.0          [required by caqti]
  - install   re                  1.14.0         [required by graphql_parser]
  - install   result              1.5            [required by dream]
  - install   rresult             0.7.0          [required by graphql]
  - install   seq                 base           [required by psq]
  - install   sha                 1.15.4         [required by opam-core]
  - install   ssl                 0.7.0          [required by dream]
  - install   stringext           1.6.0          [required by multipart-form-data]
  - install   swhid_core          0.1            [required by opam-core]
  - install   topkg               1.1.1          [required by hmap]
  - install   uri                 4.4.0          [required by dream]
  - install   uutf                1.0.4          [required by opam-core]
  - 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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../openssl-provider-legacy_3.5.5-1~deb13u1_amd64.deb ...
- Unpacking openssl-provider-legacy (3.5.5-1~deb13u1) over (3.5.4-1~deb13u2) ...
- Setting up openssl-provider-legacy (3.5.5-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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../libssl3t64_3.5.5-1~deb13u1_amd64.deb ...
- Unpacking libssl3t64:amd64 (3.5.5-1~deb13u1) over (3.5.4-1~deb13u2) ...
- Setting up libssl3t64:amd64 (3.5.5-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 ... 20623 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.5-1~deb13u1_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.5.5-1~deb13u1) ...
- Preparing to unpack .../4-openssl_3.5.5-1~deb13u1_amd64.deb ...
- Unpacking openssl (3.5.5-1~deb13u1) over (3.5.4-1~deb13u2) ...
- 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.5-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.5-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+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> 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 cstruct.6.2.0  (cached)
-> installed conf-pkg-config.4
-> installed base64.3.5.2
-> installed conf-libssl.4
-> installed bigarray-compat.1.1.0
-> installed conf-libev.4-13
-> installed bigstringaf.0.10.0
-> retrieved digestif.1.3.0  (cached)
-> retrieved dream.1.0.0~alpha1  (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 jsonm.1.0.2  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt.5.9.2  (cached)
-> removed   lwt_ppx.2.1.0
-> removed   lwt.5.9.2
-> retrieved lwt_ssl.1.2.0  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> installed duration.0.2.1
-> installed faraday.0.8.2
-> installed magic-mime.1.3.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-syntax-shims.1.0.0  (cached)
-> installed menhirCST.20260209
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved opam-core.2.5.0, opam-format.2.5.0, opam-installer.2.5.0  (cached)
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed ocaml-syntax-shims.1.0.0
-> retrieved opam-file-format.2.2.0  (cached)
-> retrieved patch.3.1.0  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved result.1.5  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sha.1.15.4  (cached)
-> retrieved ssl.0.7.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved swhid_core.0.1  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed result.1.5
-> retrieved uri.4.4.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed patch.3.1.0
-> installed stringext.1.6.0
-> installed angstrom.0.16.1
-> installed psq.0.2.1
-> installed swhid_core.0.1
-> installed lwt.5.9.2
-> installed ocamlgraph.2.2.0
-> installed re.1.14.0
-> installed ssl.0.7.0
-> installed faraday-lwt.0.8.2
-> installed lwt_ssl.1.2.0
-> installed yojson.3.0.0
-> installed faraday-lwt-unix.0.8.2
-> installed sha.1.15.4
-> installed lwt_ppx.2.1.0
-> installed uri.4.4.0
-> installed multipart-form-data.0.3.0
-> installed ocamlbuild.0.16.1
-> installed menhir.20260209
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed opam-file-format.2.2.0
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed cstruct.6.2.0
-> installed graphql_parser.0.14.0
-> installed jsonm.1.0.2
-> installed eqaf.0.9
-> installed logs.0.10.0
-> installed graphql.0.14.0
-> installed graphql-lwt.0.14.0
-> installed caqti.1.9.0
-> installed digestif.1.3.0
-> installed caqti-lwt.1.9.0
-> installed mirage-crypto.0.10.7
-> installed mirage-crypto-rng.0.10.7
-> installed opam-core.2.5.0
-> installed opam-format.2.5.0
-> installed opam-installer.2.5.0
-> installed dream.1.0.0~alpha1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 17:46.47 ---> saved as "6571418c8965c6e74f6291c588d936b8acf72f7a7ad058c4db3bea01627ec8ad"

/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             2.1.0 (pinned)     [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              [uses uutf]
  - recompile opam-format         2.5.0              [uses opam-core]
  - recompile opam-installer      2.5.0              [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.1.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.1.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)
-> 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)
-> installed astring.0.8.5
-> retrieved jsonm.1.0.2  (https://opam.ocaml.org/cache)
-> installed jane-street-headers.v0.16.0
-> retrieved jst-config.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0  (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, opam-format.2.5.0, opam-installer.2.5.0  (https://opam.ocaml.org/cache)
-> 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)
-> 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)
-> installed cmdliner.2.1.0
-> 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.2.1.0
-> removed   opam-installer.2.5.0
-> removed   opam-format.2.5.0
-> removed   opam-core.2.5.0
-> removed   jsonm.1.0.2
-> removed   ppxlib.0.35.0
-> removed   sexplib0.v0.17.0
-> removed   uutf.1.0.4
-> installed sexplib0.v0.16.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed cstruct.6.2.0
-> installed graphql_parser.0.14.0
-> installed eqaf.0.9
-> installed logs.0.10.0
-> installed alcotest.1.9.1
-> installed jsonm.1.0.2
-> installed graphql.0.14.0
-> installed graphql-lwt.0.14.0
-> installed caqti.1.9.0
-> installed digestif.1.3.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
-> installed opam-format.2.5.0
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed opam-installer.2.5.0
-> installed ppx_compare.v0.16.0
-> installed lwt_ppx.2.1.0
-> 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)
2026-03-17 17:48.58 ---> saved as "e2bf07806e46eb83b8c2629d800f88b865b4362cb11afdace8f5e4dea6be7713"

/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" "71" (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)
2026-03-17 17:49.23 ---> saved as "a9239d9d7f1d32e66d59f949726eeeb1424e98c20ca1990a3024d2b83f70d622"
Job succeeded
2026-03-17 17:49.40: Job succeeded