Build:
  1. 0
2026-01-27 19:21.39: New job: test ocluster.0.2.1 with mirage-runtime.4.7.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29297/head (bec96dd4b29b0e3eb148af9966895e70442e68e2)
                              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/29297/head" && git reset --hard bec96dd4
git fetch origin master
git merge --no-edit 88150787b3c9df767fd8dadf5d416641f8ee58f8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn mirage-runtime.4.7.0 4.7.0
RUN opam reinstall mirage-runtime.4.7.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" != 'mirage-runtime.4.7.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall ocluster.0.2.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocluster.0.2.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test ocluster.0.2.1) || true
RUN opam reinstall --with-test --verbose ocluster.0.2.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocluster.0.2.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

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

2026-01-27 19:21.39: Waiting for resource in pool OCluster
2026-01-27 19:33.35: Waiting for worker…
2026-01-27 19:34.14: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
error: unable to create file .gitattributes: No space left on device
error: unable to create file .github/workflows/windows.yml: No space left on device
error: unable to create file COPYING: No space left on device
error: unable to create file packages/0install-gtk/0install-gtk.2.15.2/opam: No space left on device
error: unable to create file packages/0install-gtk/0install-gtk.2.16/opam: No space left on device
error: unable to create file packages/0install-gtk/0install-gtk.2.18/opam: No space left on device
error: unable to create file packages/0install-solver/0install-solver.2.17/opam: No space left on device
error: unable to create file packages/0install/0install.2.15.2/opam: No space left on device
error: unable to create file packages/0install/0install.2.16/opam: No space left on device
error: unable to create file packages/ANSITerminal/ANSITerminal.0.7/opam: No space left on device
error: unable to create file packages/ANSITerminal/ANSITerminal.0.8.1/opam: No space left on device
error: unable to create file packages/ANSITerminal/ANSITerminal.0.8.3/opam: No space left on device
error: unable to create file packages/ANSITerminal/ANSITerminal.0.8.4/opam: No space left on device
error: unable to create file packages/ANSITerminal/ANSITerminal.0.8/opam: No space left on device
error: unable to create file packages/DkSDKFFIOCaml_Std/DkSDKFFIOCaml_Std.1.0.0~1/opam: No space left on device
error: unable to create file packages/FPauth-core/FPauth-core.1.0.0/opam: No space left on device
error: unable to create file packages/FrontC/FrontC.4.0.0/opam: No space left on device
error: unable to create file packages/GT/GT.0.5.2/opam: No space left on device
error: unable to create file packages/GT/GT.0.5.3/opam: No space left on device
error: unable to create file packages/GT/GT.0.5.4/opam: No space left on device
error: unable to create file packages/GuaCaml/GuaCaml.0.02/opam: No space left on device
error: unable to create file packages/GuaCaml/GuaCaml.0.03.01/opam: No space left on device
error: unable to create file packages/GuaCaml/GuaCaml.0.03/opam: No space left on device
error: unable to create file packages/GuaCaml/GuaCaml.0.04/opam: No space left on device
error: unable to create file packages/GuaCaml/GuaCaml.0.05/opam: No space left on device
error: unable to create file packages/ISO3166/ISO3166.0.1.0/opam: No space left on device
error: unable to create file packages/ISO8601/ISO8601.0.1.2/opam: No space left on device
error: unable to create file packages/MlFront_Errors/MlFront_Errors.2.3.0/opam: No space left on device
error: unable to create file packages/MlFront_ZipFile/MlFront_ZipFile.2.3.1/opam: No space left on device
error: unable to create file packages/OCanren-ppx/OCanren-ppx.0.3.0/opam: No space left on device
error: unable to create file packages/OSCADml/OSCADml.0.1.0/opam: No space left on device
error: unable to create file packages/OSCADml/OSCADml.0.2.0/opam: No space left on device
error: unable to create file packages/SZXX/SZXX.2.1.1/opam: No space left on device
error: unable to create file packages/SZXX/SZXX.2.1.2/opam: No space left on device
error: unable to create file packages/SZXX/SZXX.2.3.0/opam: No space left on device
error: unable to create file packages/Snowflake/Snowflake.0.02/opam: No space left on device
error: unable to create file packages/SourceCode_ASCII/SourceCode_ASCII.0.1.0/opam: No space left on device
error: unable to create file packages/aarch64-esperanto/aarch64-esperanto.0.0.6/opam: No space left on device
error: unable to create file packages/abella/abella.2.0.2/opam: No space left on device
error: unable to create file packages/abella/abella.2.0.8/opam: No space left on device
error: unable to create file packages/accessor/accessor.v0.17.0/opam: No space left on device
error: unable to create file packages/accessor_base/accessor_base.v0.14.0/opam: No space left on device
error: unable to create file packages/accessor_core/accessor_core.v0.16.0/opam: No space left on device
error: unable to create file packages/accessor_core/accessor_core.v0.17.0/opam: No space left on device
error: unable to create file packages/acgtk/acgtk.1.5.3/opam: No space left on device
error: unable to create file packages/acpc/acpc.2.0.0/opam: No space left on device
error: unable to create file packages/activitypub/activitypub.0.1.0/opam: No space left on device
error: unable to create file packages/aez/aez.0.3/opam: No space left on device
error: unable to create file packages/afl-persistent/afl-persistent.1.1/opam: No space left on device
error: unable to create file packages/afl-persistent/afl-persistent.1.2/opam: No space left on device
error: unable to create file packages/ahrocksdb/ahrocksdb.0.2.0/opam: No space left on device
error: unable to create file packages/alba/alba.0.4.0/opam: No space left on device
error: unable to create file packages/alba/alba.0.4.1/opam: No space left on device
error: unable to create file packages/albatross/albatross.1.2.0/opam: No space left on device
error: unable to create file packages/albatross/albatross.1.4.3/opam: No space left on device
error: unable to create file packages/alcotest-async/alcotest-async.1.9.1/opam: No space left on device
error: unable to create file packages/alcotest-lwt/alcotest-lwt.1.9.0/opam: No space left on device
error: unable to create file packages/alcotest-mirage/alcotest-mirage.1.9.0/opam: No space left on device
error: unable to create file packages/alcotest/alcotest.1.0.1/opam: No space left on device
error: unable to create file packages/alcotest/alcotest.1.5.0/opam: No space left on device
error: unable to create file packages/algaeff/algaeff.0.2.1/opam: No space left on device
error: unable to create file packages/alice/alice.0.2.0/opam: No space left on device
error: unable to create file packages/alice/alice.0.3.0/opam: No space left on device
error: unable to create file packages/alice/alice.0.4.0/opam: No space left on device
error: unable to create file packages/alt-ergo-lib/alt-ergo-lib.2.3.0/opam: No space left on device
error: unable to create file packages/alt-ergo-lib/alt-ergo-lib.2.5.1/opam: No space left on device
error: unable to create file packages/alt-ergo-lib/alt-ergo-lib.2.5.4/opam: No space left on device
error: unable to create file packages/alt-ergo-lib/alt-ergo-lib.2.6.0/opam: No space left on device
error: unable to create file packages/alt-ergo-parsers/alt-ergo-parsers.2.6.0/opam: No space left on device
error: unable to create file packages/alt-ergo-parsers/alt-ergo-parsers.2.6.2/opam: No space left on device
error: unable to create file packages/altgr-ergo/altgr-ergo.0.95.2/opam: No space left on device
error: unable to create file packages/amqp-client-async/amqp-client-async.2.0.3/opam: No space left on device
error: unable to create file packages/amqp-client-async/amqp-client-async.2.2.1/opam: No space left on device
error: unable to create file packages/amqp-client/amqp-client.1.0.5/opam: No space left on device
error: unable to create file packages/amqp-client/amqp-client.1.1.0/opam: No space left on device
error: unable to create file packages/amqp-client/amqp-client.1.1.2/opam: No space left on device
error: unable to create file packages/angstrom-async/angstrom-async.0.11.1/opam: No space left on device
error: unable to create file packages/angstrom-async/angstrom-async.0.12.1/opam: No space left on device
error: unable to create file packages/angstrom-lwt-unix/angstrom-lwt-unix.0.11.1/opam: No space left on device
error: unable to create file packages/angstrom-unix/angstrom-unix.0.10.0/opam: No space left on device
error: unable to create file packages/angstrom-unix/angstrom-unix.0.11.0/opam: No space left on device
error: unable to create file packages/angstrom-unix/angstrom-unix.0.11.2/opam: No space left on device
error: unable to create file packages/angstrom/angstrom.0.10.0/opam: No space left on device
error: unable to create file packages/angstrom/angstrom.0.11.0/opam: No space left on device
error: unable to create file packages/angstrom/angstrom.0.9.0/opam: No space left on device
error: unable to create file packages/ansi-parse/ansi-parse.0.4.0/opam: No space left on device
error: unable to create file packages/ansi/ansi.0.7.0/opam: No space left on device
error: unable to create file packages/ansicolor/ansicolor.0.5/opam: No space left on device
error: unable to create file packages/anthill/anthill.0.1/opam: No space left on device
error: unable to create file packages/anthropic/anthropic.0.1.0/opam: No space left on device
error: unable to create file packages/ao/ao.0.2.3/opam: No space left on device
error: unable to create file packages/ao/ao.0.2.4/opam: No space left on device
error: unable to create file packages/apero-core/apero-core.0.4.7/opam: No space left on device
error: unable to create file packages/apron/apron.20151015/opam: No space left on device
error: unable to create file packages/apron/apron.20160125/opam: No space left on device
error: unable to create file packages/apronext/apronext.1.0/opam: No space left on device
error: unable to create file packages/archetype/archetype.0.1.12/opam: No space left on device
error: unable to create file packages/archetype/archetype.1.2.15/opam: No space left on device
error: unable to create file packages/archetype/archetype.1.2.2/opam: No space left on device
error: unable to create file packages/archi-lwt/archi-lwt.0.1.0/opam: No space left on device
error: unable to create file packages/argon2/argon2.1.0.0/opam: No space left on device
error: unable to create file packages/arrakis/arrakis.1.0.0/opam: No space left on device
error: unable to create file packages/arrayjit/arrayjit.0.3.3/opam: No space left on device
error: unable to create file packages/arrayjit/arrayjit.0.5.2/opam: No space left on device
error: unable to create file packages/art/art.0.1.0/opam: No space left on device
error: unable to create file packages/art/art.0.2.0/opam: No space left on device
error: unable to create file packages/art/art.0.3.0/opam: No space left on device
error: unable to create file packages/asai/asai.0.1.1/opam: No space left on device
error: unable to create file packages/asai/asai.0.2.0/opam: No space left on device
error: unable to create file packages/asai/asai.0.3.1/opam: No space left on device
error: unable to create file packages/asak/asak.0.5/opam: No space left on device
error: unable to create file packages/ascend/ascend.0.1.0/opam: No space left on device
error: unable to create file packages/asl/asl.0.10/opam: No space left on device
error: unable to create file packages/asl/asl.0.11/opam: No space left on device
error: unable to create file packages/asl/asl.0.6/opam: No space left on device
error: unable to create file packages/asli/asli.0.1/opam: No space left on device
error: unable to create file packages/async-uri/async-uri.0.1/opam: No space left on device
error: unable to create file packages/async/async.v0.14.0/opam: No space left on device
error: unable to create file packages/async_extra/async_extra.v0.13.0/opam: No space left on device
error: unable to create file packages/async_inotify/async_inotify.v0.14.0/opam: No space left on device
error: unable to create file packages/async_inotify/async_inotify.v0.16.0/opam: No space left on device
error: unable to create file packages/async_inotify/async_inotify.v0.17.0/opam: No space left on device
error: unable to create file packages/async_interactive/async_interactive.v0.12.0/opam: No space left on device
error: unable to create file packages/async_interactive/async_interactive.v0.15.0/opam: No space left on device
error: unable to create file packages/async_sendfile/async_sendfile.v0.12.0/opam: No space left on device
error: unable to create file packages/async_sendfile/async_sendfile.v0.13.0/opam: No space left on device
error: unable to create file packages/async_sendfile/async_sendfile.v0.14.0/opam: No space left on device
error: unable to create file packages/async_smtp/async_smtp.v0.17.0/opam: No space left on device
error: unable to create file packages/async_ssl/async_ssl.v0.14.0/opam: No space left on device
error: unable to create file packages/async_udp/async_udp.v0.17.0/opam: No space left on device
error: unable to create file packages/async_unix/async_unix.v0.13.0/opam: No space left on device
error: unable to create file packages/async_unix/async_unix.v0.13.1/opam: No space left on device
error: unable to create file packages/async_websocket/async_websocket.v0.17.0/opam: No space left on device
error: unable to create file packages/atacama/atacama.0.0.1/opam: No space left on device
error: unable to create file packages/atacama/atacama.0.0.2/opam: No space left on device
error: unable to create file packages/atacama/atacama.0.0.3/opam: No space left on device
error: unable to create file packages/atacama/atacama.0.0.4/opam: No space left on device
error: unable to create file packages/atd/atd.1.13.0/opam: No space left on device
error: unable to create file packages/atd/atd.1.2.0/opam: No space left on device
error: unable to create file packages/atd/atd.1.2.1/opam: No space left on device
error: unable to create file packages/atd/atd.2.0.0/opam: No space left on device
error: unable to create file packages/atd/atd.2.10.0/opam: No space left on device
error: unable to create file packages/atd/atd.2.12.0/opam: No space left on device
error: unable to create file packages/atd/atd.3.0.1/opam: No space left on device
error: unable to create file packages/atdcpp/atdcpp.2.16.0/opam: No space left on device
error: unable to create file packages/atdgen-codec-runtime/atdgen-codec-runtime.2.14.0/opam: No space left on device
error: unable to create file packages/atdgen-codec-runtime/atdgen-codec-runtime.2.2.1/opam: No space left on device
error: unable to create file packages/atdgen-codec-runtime/atdgen-codec-runtime.3.0.1/opam: No space left on device
error: unable to create file packages/atdgen-runtime/atdgen-runtime.2.10.0/opam: No space left on device
error: unable to create file packages/atdgen-runtime/atdgen-runtime.2.11.0/opam: No space left on device
error: unable to create file packages/atdgen-runtime/atdgen-runtime.2.12.0/opam: No space left on device
error: unable to create file packages/atdgen-runtime/atdgen-runtime.2.13.0/opam: No space left on device
error: unable to create file packages/atdgen-runtime/atdgen-runtime.2.16.0/opam: No space left on device
error: unable to create file packages/atdgen-runtime/atdgen-runtime.2.2.1/opam: No space left on device
error: unable to create file packages/atdgen/atdgen.2.10.0/opam: No space left on device
error: unable to create file packages/atdgen/atdgen.2.11.0/opam: No space left on device
error: unable to create file packages/atdgen/atdgen.2.9.1/opam: No space left on device
error: unable to create file packages/atdgen/atdgen.3.0.1/opam: No space left on device
error: unable to create file packages/atdj/atdj.2.14.0/opam: No space left on device
error: unable to create file packages/atdj/atdj.2.15.0/opam: No space left on device
error: unable to create file packages/atdj/atdj.2.16.0/opam: No space left on device
error: unable to create file packages/atdj/atdj.2.2.1/opam: No space left on device
error: unable to create file packages/atdj/atdj.2.3.3/opam: No space left on device
error: unable to create file packages/atdj/atdj.2.8.0/opam: No space left on device
error: unable to create file packages/atdj/atdj.2.9.1/opam: No space left on device
error: unable to create file packages/atdj/atdj.3.0.1/opam: No space left on device
error: unable to create file packages/atdpy/atdpy.2.13.0/opam: No space left on device
error: unable to create file packages/atdpy/atdpy.2.9.1/opam: No space left on device
error: unable to create file packages/atdpy/atdpy.3.0.1/opam: No space left on device
error: unable to create file packages/atds/atds.2.9.1/opam: No space left on device
error: unable to create file packages/augeas/augeas.0.6/opam: No space left on device
error: unable to create file packages/autofonce_lib/autofonce_lib.0.8/opam: No space left on device
error: unable to create file packages/avro-simple/avro-simple.0.1/opam: No space left on device
error: unable to create file packages/awa-mirage/awa-mirage.0.0.5/opam: No space left on device
error: unable to create file packages/awa-mirage/awa-mirage.0.1.0/opam: No space left on device
error: unable to create file packages/awa-mirage/awa-mirage.0.2.0/opam: No space left on device
error: unable to create file packages/awa-mirage/awa-mirage.0.3.0/opam: No space left on device
error: unable to create file packages/awa-mirage/awa-mirage.0.3.1/opam: No space left on device
error: unable to create file packages/aws-cloudformation/aws-cloudformation.0.1.0/opam: No space left on device
error: unable to create file packages/aws-cloudwatch/aws-cloudwatch.1.2/opam: No space left on device
error: unable to create file packages/aws-s3-async/aws-s3-async.4.2.0/opam: No space left on device
error: unable to create file packages/aws-s3-lwt/aws-s3-lwt.4.4.0/opam: No space left on device
error: unable to create file packages/aws-s3-lwt/aws-s3-lwt.4.4.1/opam: No space left on device
error: unable to create file packages/aws-s3/aws-s3.4.4.0/opam: No space left on device
error: unable to create file packages/aws-s3/aws-s3.4.4.1/opam: No space left on device
error: unable to create file packages/aws-s3/aws-s3.4.6.0/opam: No space left on device
error: unable to create file packages/baguette_sharp/baguette_sharp.2.0.4/opam: No space left on device
error: unable to create file packages/baguette_sharp/baguette_sharp.2.1.1/opam: No space left on device
error: unable to create file packages/balancer/balancer.1.0/opam: No space left on device
error: unable to create file packages/bancos/bancos.0.0.1/opam: No space left on device
error: unable to create file packages/bap-abi/bap-abi.2.1.0/opam: No space left on device
error: unable to create file packages/bap-analyze/bap-analyze.2.4.0/opam: No space left on device
error: unable to create file packages/bap-arm/bap-arm.2.4.0/opam: No space left on device
error: unable to create file packages/bap-beagle-strings/bap-beagle-strings.2.5.0/opam: No space left on device
error: unable to create file packages/bap-build/bap-build.2.1.0/opam: No space left on device
error: unable to create file packages/bap-build/bap-build.2.4.0/opam: No space left on device
error: unable to create file packages/bap-build/bap-build.2.5.0/opam: No space left on device
error: unable to create file packages/bap-bundle/bap-bundle.2.1.0/opam: No space left on device
error: unable to create file packages/bap-bundle/bap-bundle.2.2.0/opam: No space left on device
error: unable to create file packages/bap-bundle/bap-bundle.2.5.0/opam: No space left on device
error: unable to create file packages/bap-byteweight-frontend/bap-byteweight-frontend.2.1.0/opam: No space left on device
error: unable to create file packages/bap-byteweight-frontend/bap-byteweight-frontend.2.2.0/opam: No space left on device
error: unable to create file packages/bap-c/bap-c.2.1.0/opam: No space left on device
error: unable to create file packages/bap-c/bap-c.2.2.0/opam: No space left on device
error: unable to create file packages/bap-c/bap-c.2.4.0/opam: No space left on device
error: unable to create file packages/bap-callsites/bap-callsites.2.1.0/opam: No space left on device
error: unable to create file packages/bap-callsites/bap-callsites.2.2.0/opam: No space left on device
error: unable to create file packages/bap-core-theory/bap-core-theory.2.5.0/opam: No space left on device
error: unable to create file packages/bap-core/bap-core.2.4.0/opam: No space left on device
error: unable to create file packages/bap-core/bap-core.2.5.0/opam: No space left on device
error: unable to create file packages/bap-demangle/bap-demangle.2.5.0/opam: No space left on device
error: unable to create file packages/bap-dependencies/bap-dependencies.2.3.0/opam: No space left on device
error: unable to create file packages/bap-dependencies/bap-dependencies.2.4.0/opam: No space left on device
error: unable to create file packages/bap-elf/bap-elf.2.4.0/opam: No space left on device
error: unable to create file packages/bap-emacs-mode/bap-emacs-mode.0.1/opam: No space left on device
error: unable to create file packages/bap-extra/bap-extra.2.5.0/opam: No space left on device
error: unable to create file packages/bap-future/bap-future.2.2.0/opam: No space left on device
error: unable to create file packages/bap-ida-plugin/bap-ida-plugin.2.3.0/opam: No space left on device
error: unable to create file packages/bap-ida-python/bap-ida-python.2.1.0/opam: No space left on device
error: unable to create file packages/bap-ida-python/bap-ida-python.2.2.0/opam: No space left on device
error: unable to create file packages/bap-llvm/bap-llvm.2.1.0/opam: No space left on device
error: unable to create file packages/bap-llvm/bap-llvm.2.2.0/opam: No space left on device
error: unable to create file packages/bap-mc/bap-mc.2.5.0/opam: No space left on device
error: unable to create file packages/bap-microx/bap-microx.2.1.0/opam: No space left on device
error: unable to create file packages/bap-microx/bap-microx.2.4.0/opam: No space left on device
error: unable to create file packages/bap-microx/bap-microx.2.5.0/opam: No space left on device
error: unable to create file packages/bap-optimization/bap-optimization.2.1.0/opam: No space left on device
error: unable to create file packages/bap-optimization/bap-optimization.2.2.0/opam: No space left on device
error: unable to create file packages/bap-optimization/bap-optimization.2.3.0/opam: No space left on device
error: unable to create file packages/bap-piqi/bap-piqi.2.3.0/opam: No space left on device
error: unable to create file packages/bap-primus-dictionary/bap-primus-dictionary.2.2.0/opam: No space left on device
error: unable to create file packages/bap-primus-exploring-scheduler/bap-primus-exploring-scheduler.2.2.0/opam: No space left on device
error: unable to create file packages/bap-primus-limit/bap-primus-limit.2.2.0/opam: No space left on device
error: unable to create file packages/bap-primus-limit/bap-primus-limit.2.5.0/opam: No space left on device
error: unable to create file packages/bap-primus-promiscuous/bap-primus-promiscuous.2.2.0/opam: No space left on device
error: unable to create file packages/bap-primus-symbolic-executor/bap-primus-symbolic-executor.2.1.0/opam: No space left on device
error: unable to create file packages/bap-primus-symbolic-executor/bap-primus-symbolic-executor.2.3.0/opam: No space left on device
error: unable to create file packages/bap-primus-symbolic-executor/bap-primus-symbolic-executor.2.5.0/opam: No space left on device
error: unable to create file packages/bap-primus-x86/bap-primus-x86.2.2.0/opam: No space left on device
error: unable to create file packages/bap-primus-x86/bap-primus-x86.2.4.0/opam: No space left on device
error: unable to create file packages/bap-print/bap-print.2.4.0/opam: No space left on device
error: unable to create file packages/bap-radare2/bap-radare2.2.2.0/opam: No space left on device
error: unable to create file packages/bap-recipe/bap-recipe.2.4.0/opam: No space left on device
error: unable to create file packages/bap-relation/bap-relation.2.2.0/opam: No space left on device
error: unable to create file packages/bap-relation/bap-relation.2.4.0/opam: No space left on device
error: unable to create file packages/bap-relation/bap-relation.2.5.0/opam: No space left on device
error: unable to create file packages/bap-relocatable/bap-relocatable.2.2.0/opam: No space left on device
error: unable to create file packages/bap-relocatable/bap-relocatable.2.4.0/opam: No space left on device
error: unable to create file packages/bap-signatures/bap-signatures.2.3.0/opam: No space left on device
error: unable to create file packages/bap-signatures/bap-signatures.2.4.0/opam: No space left on device
error: unable to create file packages/bap-signatures/bap-signatures.2.5.0/opam: No space left on device
error: unable to create file packages/bap-strings/bap-strings.2.3.0/opam: No space left on device
error: unable to create file packages/bap-stub-resolver/bap-stub-resolver.2.2.0/opam: No space left on device
error: unable to create file packages/bap-stub-resolver/bap-stub-resolver.2.4.0/opam: No space left on device
error: unable to create file packages/bap-term-mapper/bap-term-mapper.2.4.0/opam: No space left on device
error: unable to create file packages/bap-thumb/bap-thumb.2.3.0/opam: No space left on device
error: unable to create file packages/bap/bap.2.4.0/opam: No space left on device
error: unable to create file packages/bare/bare.2.1.0/opam: No space left on device
error: unable to create file packages/base-flambda2/base-flambda2.base/opam: No space left on device
error: unable to create file packages/base-metaocaml-ocamlfind/base-metaocaml-ocamlfind.base/opam: No space left on device
error: unable to create file packages/base-native-int63/base-native-int63.0.1/opam: No space left on device
error: unable to create file packages/base-nnp/base-nnp.base/opam: No space left on device
error: unable to create file packages/base/base.v0.16.0/opam: No space left on device
error: unable to create file packages/base/base.v0.16.1/opam: No space left on device
error: unable to create file packages/base64/base64.1.1.0/opam: No space left on device
error: unable to create file packages/base64/base64.2.0.0/opam: No space left on device
error: unable to create file packages/base_bigstring/base_bigstring.v0.13.0/opam: No space left on device
error: unable to create file packages/base_bigstring/base_bigstring.v0.14.0/opam: No space left on device
error: unable to create file packages/bastet/bastet.1.2.0/opam: No space left on device
error: unable to create file packages/batteries/batteries.2.11.0/opam: No space left on device
error: unable to create file packages/batteries/batteries.3.0.0/opam: No space left on device
error: unable to create file packages/batteries/batteries.3.1.0/opam: No space left on device
error: unable to create file packages/batteries/batteries.3.7.2/opam: No space left on device
error: unable to create file packages/bdd/bdd.0.3/opam: No space left on device
error: unable to create file packages/bechamel-js/bechamel-js.0.1.0/opam: No space left on device
error: unable to create file packages/bechamel/bechamel.0.1.0/opam: No space left on device
error: unable to create file packages/beluga/beluga.0.8.1/opam: No space left on device
error: unable to create file packages/beluga/beluga.1.0/opam: No space left on device
error: unable to create file packages/bentov/bentov.1/opam: No space left on device
error: unable to create file packages/bibtex2html/bibtex2html.1.99/opam: No space left on device
error: unable to create file packages/bidirectional_map/bidirectional_map.v0.16.0/opam: No space left on device
error: unable to create file packages/bigarray-compat/bigarray-compat.1.0.0/opam: No space left on device
error: unable to create file packages/bigarray-compat/bigarray-compat.1.1.0/opam: No space left on device
error: unable to create file packages/bignum/bignum.v0.17.0/opam: No space left on device
error: unable to create file packages/bigstring-unix/bigstring-unix.0.3/opam: No space left on device
error: unable to create file packages/bigstringaf/bigstringaf.0.6.1/opam: No space left on device
error: unable to create file packages/bigstringaf/bigstringaf.0.7.0/opam: No space left on device
error: unable to create file packages/bimage-gtk/bimage-gtk.0.1/opam: No space left on device
error: unable to create file packages/bimage-gtk/bimage-gtk.0.2.1/opam: No space left on device
error: unable to create file packages/bimage-io/bimage-io.0.3.0/opam: No space left on device
error: unable to create file packages/bimage-unix/bimage-unix.0.1.2/opam: No space left on device
error: unable to create file packages/bin/bin.0.0.1/opam: No space left on device
error: unable to create file packages/bin/bin.0.0.2/opam: No space left on device
error: unable to create file packages/bin_prot/bin_prot.v0.17.0/opam: No space left on device
error: unable to create file packages/bin_tree/bin_tree.0.1/opam: No space left on device
error: unable to create file packages/binaryen/binaryen.0.10.0/opam: No space left on device
error: unable to create file packages/binaryen/binaryen.0.2.1/opam: No space left on device
error: unable to create file packages/binaryen/binaryen.0.2.3/opam: No space left on device
error: unable to create file packages/binaryen/binaryen.0.20.1/opam: No space left on device
error: unable to create file packages/binaryen/binaryen.0.26.0/opam: No space left on device
error: unable to create file packages/binaryen/binaryen.0.29.0/opam: No space left on device
error: unable to create file packages/binaryen/binaryen.0.3.0/opam: No space left on device
error: unable to create file packages/binaryen/binaryen.0.8.1/opam: No space left on device
error: unable to create file packages/binsec/binsec.0.6.3/opam: No space left on device
error: unable to create file packages/binsec/binsec.0.9.1/opam: No space left on device
error: unable to create file packages/bio_io/bio_io.0.1.1/opam: No space left on device
error: unable to create file packages/biocaml/biocaml.0.11.2/opam: No space left on device
error: unable to create file packages/bisect_ppx/bisect_ppx.1.4.0/opam: No space left on device
error: unable to create file packages/bistro/bistro.0.5.0/opam: No space left on device
error: unable to create file packages/bistro/bistro.0.6.0/opam: No space left on device
error: unable to create file packages/bitmasks/bitmasks.1.2.0/opam: No space left on device
error: unable to create file packages/bitmasks/bitmasks.1.3.0/opam: No space left on device
error: unable to create file packages/bitmasks/bitmasks.1.4.0/opam: No space left on device
error: unable to create file packages/bitpack_serializer/bitpack_serializer.0.1.0/opam: No space left on device
error: unable to create file packages/bitstring/bitstring.3.0.0/opam: No space left on device
error: unable to create file packages/bitstring/bitstring.4.0.0/opam: No space left on device
error: unable to create file packages/bitvec-binprot/bitvec-binprot.2.4.0/opam: No space left on device
error: unable to create file packages/bitvec/bitvec.2.3.0/opam: No space left on device
error: unable to create file packages/bitvec/bitvec.2.4.0/opam: No space left on device
error: unable to create file packages/bitwuzla-cxx/bitwuzla-cxx.0.4.0/opam: No space left on device
error: unable to create file packages/bitwuzla-cxx/bitwuzla-cxx.0.6.0/opam: No space left on device
error: unable to create file packages/bitwuzla-cxx/bitwuzla-cxx.0.7.0/opam: No space left on device
error: unable to create file packages/blake2/blake2.0.3/opam: No space left on device
error: unable to create file packages/blake3/blake3.0.3/opam: No space left on device
error: unable to create file packages/bloomf/bloomf.0.1.0/opam: No space left on device
error: unable to create file packages/bloomf/bloomf.0.2.0/opam: No space left on device
error: unable to create file packages/bls12-381-signature/bls12-381-signature.0.0.1/opam: No space left on device
error: unable to create file packages/bls12-381-unix/bls12-381-unix.1.1.1/opam: No space left on device
error: unable to create file packages/bls12-381/bls12-381.1.1.0/opam: No space left on device
error: unable to create file packages/bls12-381/bls12-381.18.0/opam: No space left on device
error: unable to create file packages/bls12-381/bls12-381.18.1/opam: No space left on device
error: unable to create file packages/bls12-381/bls12-381.2.0.1/opam: No space left on device
error: unable to create file packages/bogue-tutorials/bogue-tutorials.0.2.0/opam: No space left on device
error: unable to create file packages/bogue/bogue.20210514/opam: No space left on device
error: unable to create file packages/bogue/bogue.20240928/opam: No space left on device
error: unable to create file packages/bogue/bogue.20250815/opam: No space left on device
error: unable to create file packages/bookaml/bookaml.2.1/opam: No space left on device
error: unable to create file packages/bos/bos.0.1.4/opam: No space left on device
error: unable to create file packages/bos/bos.0.2.0/opam: No space left on device
error: unable to create file packages/boulangerie/boulangerie.1.0.1/opam: No space left on device
error: unable to create file packages/brotli/brotli.1.2.2/opam: No space left on device
error: unable to create file packages/brotli/brotli.1.3.0/opam: No space left on device
error: unable to create file packages/bsdowl/bsdowl.3.0.0-20150830/opam: No space left on device
error: unable to create file packages/bst/bst.3.0.0/opam: No space left on device
error: unable to create file packages/bstr/bstr.0.0.4/opam: No space left on device
error: unable to create file packages/build_path_prefix_map/build_path_prefix_map.0.2/opam: No space left on device
error: unable to create file packages/bwd/bwd.1.0.0/opam: No space left on device
error: unable to create file packages/bwd/bwd.1.1.0/opam: No space left on device
error: unable to create file packages/bwd/bwd.2.1.0/opam: No space left on device
error: unable to create file packages/bwd/bwd.2.2.0/opam: No space left on device
error: unable to create file packages/bz2/bz2.0.8.0/opam: No space left on device
error: unable to create file packages/ca-certs-nss/ca-certs-nss.3.104/opam: No space left on device
error: unable to create file packages/ca-certs-nss/ca-certs-nss.3.63/opam: No space left on device
error: unable to create file packages/ca-certs-nss/ca-certs-nss.3.64/opam: No space left on device
error: unable to create file packages/ca-certs-nss/ca-certs-nss.3.89.1/opam: No space left on device
error: unable to create file packages/cairn/cairn.1.0/opam: No space left on device
error: unable to create file packages/cairo2-pango/cairo2-pango.0.6.1/opam: No space left on device
error: unable to create file packages/caisar/caisar.2.1/opam: No space left on device
error: unable to create file packages/caisar/caisar.4.0/opam: No space left on device
error: unable to create file packages/calcium/calcium.0.3.1/opam: No space left on device
error: unable to create file packages/calculon-redis/calculon-redis.0.6/opam: No space left on device
error: unable to create file packages/calculon/calculon.0.3/opam: No space left on device
error: unable to create file packages/caldav/caldav.0.2.4/opam: No space left on device
error: unable to create file packages/calendar/calendar.1.10/opam: No space left on device
error: unable to create file packages/calipso/calipso.4.1.0/opam: No space left on device
error: unable to create file packages/camelot/camelot.1.2.0/opam: No space left on device
error: unable to create file packages/camelot/camelot.1.3.0/opam: No space left on device
error: unable to create file packages/camelot/camelot.1.4.0/opam: No space left on device
error: unable to create file packages/camlbz2/camlbz2.0.7.0/opam: No space left on device
error: unable to create file packages/camlgpc/camlgpc.1.1/opam: No space left on device
error: unable to create file packages/camlgpc/camlgpc.1.2/opam: No space left on device
error: unable to create file packages/camlkit-gui/camlkit-gui.0.2.1/opam: No space left on device
error: unable to create file packages/camlkit/camlkit.0.1.1/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.4.02+1/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.4.02+2/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.4.02+4/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.4.02+6/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.4.02+7/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.4.07+1/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.4.09+1/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.4.13+1/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.5.2/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.5.3/opam: No space left on device
error: unable to create file packages/camlp5/camlp5.8.00~alpha06/opam: No space left on device
error: unable to create file packages/camlp5/camlp5.8.02.01/opam: No space left on device
error: unable to create file packages/camlp5/camlp5.8.03.00/opam: No space left on device
error: unable to create file packages/camlp5/camlp5.8.03.04/opam: No space left on device
error: unable to create file packages/camlpdf/camlpdf.2.3/opam: No space left on device
error: unable to create file packages/camltc/camltc.0.9.8/opam: No space left on device
error: unable to create file packages/camomile/camomile.0.8.6/opam: No space left on device
error: unable to create file packages/camyll/camyll.0.4.0/opam: No space left on device
error: unable to create file packages/camyll/camyll.0.4.2/opam: No space left on device
error: unable to create file packages/canary/canary.0.0.1/opam: No space left on device
error: unable to create file packages/caper/caper.0.9/opam: No space left on device
error: unable to create file packages/capitalization/capitalization.v0.17.0/opam: No space left on device
error: unable to create file packages/capnp-rpc-unix/capnp-rpc-unix.1.2.4/opam: No space left on device
error: unable to create file packages/capnp/capnp.3.4.0/opam: No space left on device
error: unable to create file packages/capnp/capnp.3.6.0/opam: No space left on device
error: unable to create file packages/captureio/captureio.0.1.1/opam: No space left on device
error: unable to create file packages/caqti-async/caqti-async.1.6.0/opam: No space left on device
error: unable to create file packages/caqti-async/caqti-async.1.8.0/opam: No space left on device
error: unable to create file packages/caqti-driver-mariadb/caqti-driver-mariadb.1.3.0/opam: No space left on device
error: unable to create file packages/caqti-driver-mariadb/caqti-driver-mariadb.1.4.0/opam: No space left on device
error: unable to create file packages/caqti-driver-mariadb/caqti-driver-mariadb.1.6.0/opam: No space left on device
error: unable to create file packages/caqti-driver-mariadb/caqti-driver-mariadb.1.7.0/opam: No space left on device
error: unable to create file packages/caqti-driver-mariadb/caqti-driver-mariadb.2.0.1/opam: No space left on device
error: unable to create file packages/caqti-driver-mariadb/caqti-driver-mariadb.2.1.1/opam: No space left on device
error: unable to create file packages/caqti-driver-postgresql/caqti-driver-postgresql.0.9.0/opam: No space left on device
error: unable to create file packages/caqti-driver-postgresql/caqti-driver-postgresql.1.6.0/opam: No space left on device
error: unable to create file packages/caqti-driver-postgresql/caqti-driver-postgresql.1.8.0/opam: No space left on device
error: unable to create file packages/caqti-driver-sqlite3/caqti-driver-sqlite3.0.10.2/opam: No space left on device
error: unable to create file packages/caqti-driver-sqlite3/caqti-driver-sqlite3.1.6.0/opam: No space left on device
error: unable to create file packages/caqti-driver-sqlite3/caqti-driver-sqlite3.1.9.0/opam: No space left on device
error: unable to create file packages/caqti-lwt/caqti-lwt.0.11.0/opam: No space left on device
error: unable to create file packages/caqti-lwt/caqti-lwt.1.3.0/opam: No space left on device
error: unable to create file packages/caqti-lwt/caqti-lwt.1.7.0/opam: No space left on device
error: unable to create file packages/caqti-lwt/caqti-lwt.2.0.1/opam: No space left on device
error: unable to create file packages/caqti-lwt/caqti-lwt.2.1.1/opam: No space left on device
error: unable to create file packages/caqti-lwt/caqti-lwt.2.2.4/opam: No space left on device
error: unable to create file packages/caqti-mirage/caqti-mirage.2.1.1/opam: No space left on device
error: unable to create file packages/caqti/caqti.0.10.1/opam: No space left on device
error: unable to create file packages/caqti/caqti.0.9.0/opam: No space left on device
error: unable to create file packages/caqti/caqti.1.9.0/opam: No space left on device
error: unable to create file packages/carton-git-lwt/carton-git-lwt.1.0.0/opam: No space left on device
error: unable to create file packages/carton-git/carton-git.0.2.0/opam: No space left on device
error: unable to create file packages/carton-git/carton-git.0.7.2/opam: No space left on device
error: unable to create file packages/carton-lwt/carton-lwt.0.2.0/opam: No space left on device
error: unable to create file packages/carton-lwt/carton-lwt.0.4.3/opam: No space left on device
error: unable to create file packages/carton-lwt/carton-lwt.1.1.0/opam: No space left on device
error: unable to create file packages/carton-miou-unix/carton-miou-unix.1.0.0/opam: No space left on device
error: unable to create file packages/carton/carton.0.2.0/opam: No space left on device
error: unable to create file packages/catala/catala.0.2.0/opam: No space left on device
error: unable to create file packages/catapult-client/catapult-client.0.1/opam: No space left on device
error: unable to create file packages/catapult-client/catapult-client.0.2/opam: No space left on device
error: unable to create file packages/cbor/cbor.0.4/opam: No space left on device
error: unable to create file packages/cconv-ppx/cconv-ppx.0.5/opam: No space left on device
error: unable to create file packages/cconv/cconv.0.3.1/opam: No space left on device
error: unable to create file packages/cconv/cconv.0.4/opam: No space left on device
error: unable to create file packages/cconv/cconv.0.5/opam: No space left on device
error: unable to create file packages/cf-lwt/cf-lwt.0.4/opam: No space left on device
error: unable to create file packages/cfml/cfml.20211215/opam: No space left on device
error: unable to create file packages/cfstream/cfstream.1.3.0/opam: No space left on device
error: unable to create file packages/cgi/cgi.0.9/opam: No space left on device
error: unable to create file packages/chamelon-unix/chamelon-unix.0.0.7/opam: No space left on device
error: unable to create file packages/chamelon-unix/chamelon-unix.0.0.9.1/opam: No space left on device
error: unable to create file packages/chamelon/chamelon.0.0.10/opam: No space left on device
error: unable to create file packages/chamelon/chamelon.0.1.1/opam: No space left on device
error: unable to create file packages/chamelon/chamelon.0.2.1/opam: No space left on device
error: unable to create file packages/chamo/chamo.4.1.0/opam: No space left on device
error: unable to create file packages/charrua-server/charrua-server.1.5.0/opam: No space left on device
error: unable to create file packages/charrua-server/charrua-server.2.1.1/opam: No space left on device
error: unable to create file packages/charrua/charrua.2.0.0/opam: No space left on device
error: unable to create file packages/charrua/charrua.2.1.0/opam: No space left on device
error: unable to create file packages/chase/chase.1.3/opam: No space left on device
error: unable to create file packages/checkseum/checkseum.0.0.2/opam: No space left on device
error: unable to create file packages/checkseum/checkseum.0.0.3/opam: No space left on device
error: unable to create file packages/checkseum/checkseum.0.1.1/opam: No space left on device
error: unable to create file packages/choice/choice.0.2/opam: No space left on device
error: unable to create file packages/chrome-trace/chrome-trace.3.15.3/opam: No space left on device
error: unable to create file packages/chrome-trace/chrome-trace.3.20.0/opam: No space left on device
error: unable to create file packages/cid/cid.0.1.0/opam: No space left on device
error: unable to create file packages/cinaps/cinaps.v0.10.0/opam: No space left on device
error: unable to create file packages/cinaps/cinaps.v0.15.0/opam: No space left on device
error: unable to create file packages/cinaps/cinaps.v0.9.1/opam: No space left on device
error: unable to create file packages/clangml/clangml.0.5.2/opam: No space left on device
error: unable to create file packages/clangml/clangml.3.5.0.1/opam: No space left on device
error: unable to create file packages/clangml/clangml.3.5.0.2/opam: No space left on device
error: unable to create file packages/class_group_vdf/class_group_vdf.0.0.1/opam: No space left on device
error: unable to create file packages/class_group_vdf/class_group_vdf.0.0.3/opam: No space left on device
error: unable to create file packages/claudius/claudius.1.2.1/opam: No space left on device
error: unable to create file packages/climate/climate.0.8.2/opam: No space left on device
error: unable to create file packages/climate/climate.0.8.4/opam: No space left on device
error: unable to create file packages/climate/climate.0.8.5/opam: No space left on device
error: unable to create file packages/cloudi/cloudi.2.0.0/opam: No space left on device
error: unable to create file packages/cloudi/cloudi.2.0.2/opam: No space left on device
error: unable to create file packages/cloudi/cloudi.2.0.6/opam: No space left on device
error: unable to create file packages/cmdlang-stdlib-runner/cmdlang-stdlib-runner.0.0.9/opam: No space left on device
error: unable to create file packages/cmdliner/cmdliner.2.0.0/opam: No space left on device
error: unable to create file packages/coap-core/coap-core.0.1.0/opam: No space left on device
error: unable to create file packages/cohttp-async/cohttp-async.6.0.0~alpha1/opam: No space left on device
error: unable to create file packages/cohttp-bench/cohttp-bench.6.0.0/opam: No space left on device
error: unable to create file packages/cohttp-curl-async/cohttp-curl-async.6.2.1/opam: No space left on device
error: unable to create file packages/cohttp-curl-lwt/cohttp-curl-lwt.6.1.0/opam: No space left on device
error: unable to create file packages/cohttp-curl/cohttp-curl.6.2.1/opam: No space left on device
error: unable to create file packages/cohttp-lwt-jsoo/cohttp-lwt-jsoo.6.2.1/opam: No space left on device
error: unable to create file packages/cohttp-lwt-unix/cohttp-lwt-unix.6.2.1/opam: No space left on device
error: unable to create file packages/cohttp-mirage/cohttp-mirage.6.2.1/opam: No space left on device
error: unable to create file packages/cohttp-server-lwt-unix/cohttp-server-lwt-unix.6.1.0/opam: No space left on device
error: unable to create file packages/cohttp-server-lwt-unix/cohttp-server-lwt-unix.6.2.1/opam: No space left on device
error: unable to create file packages/cohttp-top/cohttp-top.6.1.0/opam: No space left on device
error: unable to create file packages/cohttp/cohttp.5.2.0/opam: No space left on device
error: unable to create file packages/cohttp/cohttp.6.0.0~alpha1/opam: No space left on device
error: unable to create file packages/cohttp/cohttp.6.2.1/opam: No space left on device
error: unable to create file packages/coin/coin.0.1.5/opam: No space left on device
error: unable to create file packages/colombe/colombe.0.11.0/opam: No space left on device
error: unable to create file packages/colombe/colombe.0.12.0/opam: No space left on device
error: unable to create file packages/colombe/colombe.0.4.2/opam: No space left on device
error: unable to create file packages/colombe/colombe.0.5.0/opam: No space left on device
error: unable to create file packages/color/color.0.1.0/opam: No space left on device
error: unable to create file packages/color/color.0.2.0/opam: No space left on device
error: unable to create file packages/command_rpc/command_rpc.v0.14.0/opam: No space left on device
error: unable to create file packages/conan-cli/conan-cli.0.0.4/opam: No space left on device
error: unable to create file packages/conan-database/conan-database.0.0.1/opam: No space left on device
error: unable to create file packages/conan-unix/conan-unix.0.0.2/opam: No space left on device
error: unable to create file packages/conan-unix/conan-unix.0.0.5/opam: No space left on device
error: unable to create file packages/conan-unix/conan-unix.0.0.6/opam: No space left on device
error: unable to create file packages/conan/conan.0.0.1/opam: No space left on device
error: unable to create file packages/conduit-lwt-unix/conduit-lwt-unix.2.3.0/opam: No space left on device
error: unable to create file packages/conduit-lwt-unix/conduit-lwt-unix.4.0.2/opam: No space left on device
error: unable to create file packages/conduit-lwt/conduit-lwt.1.3.0/opam: No space left on device
error: unable to create file packages/conduit-lwt/conduit-lwt.1.5.0/opam: No space left on device
error: unable to create file packages/conduit-lwt/conduit-lwt.6.2.3/opam: No space left on device
error: unable to create file packages/conduit/conduit.1.3.0/opam: No space left on device
error: unable to create file packages/conduit/conduit.7.0.0/opam: No space left on device
error: unable to create file packages/conex/conex.0.11.0/opam: No space left on device
error: unable to create file packages/conf-aarch64-linux-gnu-gcc/conf-aarch64-linux-gnu-gcc.1/opam: No space left on device
error: unable to create file packages/conf-adwaita-icon-theme/conf-adwaita-icon-theme.2/opam: No space left on device
error: unable to create file packages/conf-age/conf-age.1/opam: No space left on device
error: unable to create file packages/conf-alsa/conf-alsa.1/opam: No space left on device
error: unable to create file packages/conf-bap-llvm/conf-bap-llvm.1.4/opam: No space left on device
error: unable to create file packages/conf-bap-llvm/conf-bap-llvm.1.5/opam: No space left on device
error: unable to create file packages/conf-bap-llvm/conf-bap-llvm.1.7/opam: No space left on device
error: unable to create file packages/conf-binutils/conf-binutils.0.3/opam: No space left on device
error: unable to create file packages/conf-bison/conf-bison.1/opam: No space left on device
error: unable to create file packages/conf-cairo/conf-cairo.1/opam: No space left on device
error: unable to create file packages/conf-calcium/conf-calcium.1/opam: No space left on device
error: unable to create file packages/conf-capnproto/conf-capnproto.2/opam: No space left on device
error: unable to create file packages/conf-clang-format/conf-clang-format.1/opam: No space left on device
error: unable to create file packages/conf-dkml-cross-toolchain/conf-dkml-cross-toolchain.4.12.1/opam: No space left on device
error: unable to create file packages/conf-dpkg/conf-dpkg.1/opam: No space left on device
error: unable to create file packages/conf-findutils/conf-findutils.1/opam: No space left on device
error: unable to create file packages/conf-flex/conf-flex.1/opam: No space left on device
error: unable to create file packages/conf-ftgl/conf-ftgl.1/opam: No space left on device
error: unable to create file packages/conf-glpk/conf-glpk.1/opam: No space left on device
error: unable to create file packages/conf-gnustep-gui/conf-gnustep-gui.1/opam: No space left on device
error: unable to create file packages/conf-gnutls/conf-gnutls.1/opam: No space left on device
error: unable to create file packages/conf-gtksourceview3/conf-gtksourceview3.0/opam: No space left on device
error: unable to create file packages/conf-hg/conf-hg.1.0/opam: No space left on device
error: unable to create file packages/conf-leveldb/conf-leveldb.1/opam: No space left on device
error: unable to create file packages/conf-libX11/conf-libX11.1/opam: No space left on device
error: unable to create file packages/conf-libclang/conf-libclang.11/opam: No space left on device
error: unable to create file packages/conf-libfuse/conf-libfuse.1/opam: No space left on device
error: unable to create file packages/conf-libgccjit/conf-libgccjit.1/opam: No space left on device
error: unable to create file packages/conf-libmpg123/conf-libmpg123.1/opam: No space left on device
error: unable to create file packages/conf-libnl3/conf-libnl3.1/opam: No space left on device
error: unable to create file packages/conf-libsamplerate/conf-libsamplerate.2/opam: No space left on device
error: unable to create file packages/conf-libsodium/conf-libsodium.1/opam: No space left on device
error: unable to create file packages/conf-libxcb-shm/conf-libxcb-shm.1/opam: No space left on device
error: unable to create file packages/conf-llvm-static/conf-llvm-static.18/opam: No space left on device
error: unable to create file packages/conf-llvm/conf-llvm.4.0.0/opam: No space left on device
error: unable to create file packages/conf-mariadb/conf-mariadb.2/opam: No space left on device
error: unable to create file packages/conf-mbedtls/conf-mbedtls.1/opam: No space left on device
error: unable to create file packages/conf-mingw-w64-glade-i686/conf-mingw-w64-glade-i686.1/opam: No space left on device
error: unable to create file packages/conf-mingw-w64-gnutls-x86_64/conf-mingw-w64-gnutls-x86_64.1/opam: No space left on device
error: unable to create file packages/conf-mingw-w64-zlib-x86_64/conf-mingw-w64-zlib-x86_64.1/opam: No space left on device
error: unable to create file packages/conf-mpfr-paths/conf-mpfr-paths.1/opam: No space left on device
error: unable to create file packages/conf-msvc64/conf-msvc64.1/opam: No space left on device
error: unable to create file packages/conf-mysql/conf-mysql.1/opam: No space left on device
error: unable to create file packages/conf-nanomsg/conf-nanomsg.0/opam: No space left on device
error: unable to create file packages/conf-ncurses/conf-ncurses.1/opam: No space left on device
error: unable to create file packages/conf-ode/conf-ode.1/opam: No space left on device
error: unable to create file packages/conf-opencc0/conf-opencc0.1/opam: No space left on device
error: unable to create file packages/conf-opencc1/conf-opencc1.1/opam: No space left on device
error: unable to create file packages/conf-opencc1_1/conf-opencc1_1.1/opam: No space left on device
error: unable to create file packages/conf-perl/conf-perl.1/opam: No space left on device
error: unable to create file packages/conf-protoc-dev/conf-protoc-dev.1.0.0/opam: No space left on device
error: unable to create file packages/conf-protoc/conf-protoc.0.9/opam: No space left on device
error: unable to create file packages/conf-python-2-7-dev/conf-python-2-7-dev.1.0/opam: No space left on device
error: unable to create file packages/conf-python-2-7/conf-python-2-7.1.0/opam: No space left on device
error: unable to create file packages/conf-readline/conf-readline.1/opam: No space left on device
error: unable to create file packages/conf-rocksdb/conf-rocksdb.1/opam: No space left on device
error: unable to create file packages/conf-rubberband/conf-rubberband.1/opam: No space left on device
error: unable to create file packages/conf-sdl2-mixer/conf-sdl2-mixer.1/opam: No space left on device
error: unable to create file packages/conf-srt-openssl/conf-srt-openssl.1/opam: No space left on device
error: unable to create file packages/conf-srt/conf-srt.1/opam: No space left on device
error: unable to create file packages/conf-taglib_c/conf-taglib_c.2/opam: No space left on device
error: unable to create file packages/conf-wxwidgets/conf-wxwidgets.3.0/opam: No space left on device
error: unable to create file packages/conf-zstd/conf-zstd.1.3.8/opam: No space left on device
error: unable to create file packages/confero/confero.0.1.1/opam: No space left on device
error: unable to create file packages/configurator/configurator.v0.11.0/opam: No space left on device
error: unable to create file packages/containers-data/containers-data.3.0/opam: No space left on device
error: unable to create file packages/containers-data/containers-data.3.1/opam: No space left on device
error: unable to create file packages/containers-data/containers-data.3.10/opam: No space left on device
error: unable to create file packages/containers-thread/containers-thread.3.3/opam: No space left on device
error: unable to create file packages/containers/containers.3.15/opam: No space left on device
error: unable to create file packages/containers/containers.3.5.1/opam: No space left on device
error: unable to create file packages/containers/containers.3.6.1/opam: No space left on device
error: unable to create file packages/content_security_policy/content_security_policy.v0.16.0/opam: No space left on device
error: unable to create file packages/coq-catt-plugin/coq-catt-plugin.1.0/opam: No space left on device
error: unable to create file packages/coq-core/coq-core.8.17.0/opam: No space left on device
error: unable to create file packages/coq-core/coq-core.8.19.1/opam: No space left on device
error: unable to create file packages/coq-core/coq-core.8.19.2/opam: No space left on device
error: unable to create file packages/coq-core/coq-core.8.20.1/opam: No space left on device
error: unable to create file packages/coq-lsp/coq-lsp.0.1.2+v8.16/opam: No space left on device
error: unable to create file packages/coq-lsp/coq-lsp.0.1.7+8.18/opam: No space left on device
error: unable to create file packages/coq-lsp/coq-lsp.0.1.8+8.16/opam: No space left on device
error: unable to create file packages/coq-serapi/coq-serapi.8.8.0+0.5.3/opam: No space left on device
error: unable to create file packages/coq-serapi/coq-serapi.8.8.0+0.5.5/opam: No space left on device
error: unable to create file packages/coq-serapi/coq-serapi.8.8.0+0.5.6/opam: No space left on device
error: unable to create file packages/coq-serapi/coq-serapi.8.9.0+0.6.0/opam: No space left on device
error: unable to create file packages/coq-waterproof/coq-waterproof.2.2.0+8.20/opam: No space left on device
error: unable to create file packages/coq/coq.8.12.0/opam: No space left on device
error: unable to create file packages/coq/coq.8.13.1/opam: No space left on device
error: unable to create file packages/coqide-server/coqide-server.8.18.0/opam: No space left on device
error: unable to create file packages/cordova-plugin-background-mode/cordova-plugin-background-mode.1.0/opam: No space left on device
error: unable to create file packages/cordova-plugin-barcode-scanner/cordova-plugin-barcode-scanner.1.0/opam: No space left on device
error: unable to create file packages/cordova-plugin-battery-status/cordova-plugin-battery-status.1.0/opam: No space left on device
error: unable to create file packages/cordova-plugin-push-notifications/cordova-plugin-push-notifications.1.1/opam: No space left on device
error: unable to create file packages/cordova-plugin-qrscanner/cordova-plugin-qrscanner.1.0/opam: No space left on device
error: unable to create file packages/cordova-plugin-screen-orientation/cordova-plugin-screen-orientation.1.0/opam: No space left on device
error: unable to create file packages/cordova-plugin-sim-card/cordova-plugin-sim-card.1.0/opam: No space left on device
error: unable to create file packages/core/core.v0.12.4/opam: No space left on device
error: unable to create file packages/core/core.v0.13.0/opam: No space left on device
error: unable to create file packages/core/core.v0.14.0/opam: No space left on device
error: unable to create file packages/core_kernel/core_kernel.v0.14.2/opam: No space left on device
error: unable to create file packages/core_unix/core_unix.v0.15.2/opam: No space left on device
error: unable to create file packages/corecount/corecount.1.0.0/opam: No space left on device
error: unable to create file packages/cowabloga/cowabloga.0.3.0/opam: No space left on device
error: unable to create file packages/cowabloga/cowabloga.0.5.0/opam: No space left on device
error: unable to create file packages/cpdf/cpdf.2.7.1/opam: No space left on device
error: unable to create file packages/cpm/cpm.2.0.0/opam: No space left on device
error: unable to create file packages/cppo_ocamlbuild/cppo_ocamlbuild.1.6.6/opam: No space left on device
error: unable to create file packages/cry/cry.0.6.1/opam: No space left on device
error: unable to create file packages/cry/cry.0.6.2/opam: No space left on device
error: unable to create file packages/cry/cry.1.0.0/opam: No space left on device
error: unable to create file packages/csexp/csexp.1.0.0/opam: No space left on device
error: unable to create file packages/csexp/csexp.1.1.0/opam: No space left on device
error: unable to create file packages/csexp/csexp.1.2.2/opam: No space left on device
error: unable to create file packages/csexp/csexp.1.5.2/opam: No space left on device
error: unable to create file packages/css-parser/css-parser.0.2.4/opam: No space left on device
error: unable to create file packages/cstruct-lwt/cstruct-lwt.6.0.1/opam: No space left on device
error: unable to create file packages/cstruct-lwt/cstruct-lwt.6.2.0/opam: No space left on device
error: unable to create file packages/cstruct-sexp/cstruct-sexp.5.1.1/opam: No space left on device
error: unable to create file packages/csv/csv.1.4.2/opam: No space left on device
error: unable to create file packages/csvfields/csvfields.v0.15.1/opam: No space left on device
error: unable to create file packages/csvfields/csvfields.v0.16.0/opam: No space left on device
error: unable to create file packages/csvfields/csvfields.v0.17.0/opam: No space left on device
error: unable to create file packages/ctypes-foreign/ctypes-foreign.0.24.0/opam: No space left on device
error: unable to create file packages/ctypes-zarith/ctypes-zarith.0.1.0/opam: No space left on device
error: unable to create file packages/ctypes-zarith/ctypes-zarith.0.2.0/opam: No space left on device
error: unable to create file packages/ctypes/ctypes.0.20.0/opam: No space left on device
error: unable to create file packages/ctypes/ctypes.0.20.1/opam: No space left on device
error: unable to create file packages/ctypes/ctypes.0.8.1/opam: No space left on device
error: unable to create file packages/ctypes/ctypes.0.8.2/opam: No space left on device
error: unable to create file packages/ctypes/ctypes.0.9.0/opam: No space left on device
error: unable to create file packages/ctypes/ctypes.0.9.5/opam: No space left on device
error: unable to create file packages/cubicle/cubicle.1.2.0/opam: No space left on device
error: unable to create file packages/cudajit/cudajit.0.4.1/opam: No space left on device
error: unable to create file packages/cudajit/cudajit.0.5.0/opam: No space left on device
error: unable to create file packages/cudajit/cudajit.0.7.0/opam: No space left on device
error: unable to create file packages/cudd/cudd.0.1.3/opam: No space left on device
error: unable to create file packages/cudf/cudf.0.10/opam: No space left on device
error: unable to create file packages/cumulus/cumulus.0.0.1/opam: No space left on device
error: unable to create file packages/cure2/cure2.1.0/opam: No space left on device
error: unable to create file packages/curl_lwt/curl_lwt.0.10.0/opam: No space left on device
error: unable to create file packages/curly/curly.0.1.0/opam: No space left on device
error: unable to create file packages/curly/curly.0.2.0/opam: No space left on device
error: unable to create file packages/curly/curly.0.3.0/opam: No space left on device
error: unable to create file packages/current-albatross-deployer/current-albatross-deployer.1.0.0/opam: No space left on device
error: unable to create file packages/current-web-pipelines/current-web-pipelines.0.1/opam: No space left on device
error: unable to create file packages/current_docker/current_docker.0.7.1/opam: No space left on device
error: unable to create file packages/current_docker/current_docker.0.7.2/opam: No space left on device
error: unable to create file packages/current_examples/current_examples.0.7.1/opam: No space left on device
error: unable to create file packages/current_gitlab/current_gitlab.0.6.2/opam: No space left on device
error: unable to create file packages/current_gitlab/current_gitlab.0.7.1/opam: No space left on device
error: unable to create file packages/current_gitlab/current_gitlab.0.7.2/opam: No space left on device
error: unable to create file packages/current_incr/current_incr.0.6.1/opam: No space left on device
error: unable to create file packages/current_rpc/current_rpc.0.6.2/opam: No space left on device
error: unable to create file packages/current_rpc/current_rpc.0.7.2/opam: No space left on device
error: unable to create file packages/curve-sampling/curve-sampling.0.2.1/opam: No space left on device
error: unable to create file packages/cvc5/cvc5.1.2.0/opam: No space left on device
error: unable to create file packages/cvc5/cvc5.1.3.0/opam: No space left on device
error: unable to create file packages/cviode/cviode.0.0.3/opam: No space left on device
error: unable to create file packages/cviode/cviode.0.0.4/opam: No space left on device
error: unable to create file packages/dap/dap.1.0.5/opam: No space left on device
error: unable to create file packages/data-encoding/data-encoding.0.1.1/opam: No space left on device
error: unable to create file packages/data-encoding/data-encoding.0.1/opam: No space left on device
error: unable to create file packages/datakit-server-9p/datakit-server-9p.0.12.3/opam: No space left on device
error: unable to create file packages/datakit-server-9p/datakit-server-9p.1.0.0/opam: No space left on device
error: unable to create file packages/datakit-server/datakit-server.0.12.0/opam: No space left on device
error: unable to create file packages/datakit-server/datakit-server.0.12.2/opam: No space left on device
error: unable to create file packages/daypack-lib/daypack-lib.0.0.1/opam: No space left on device
error: unable to create file packages/decimal/decimal.0.0.3/opam: No space left on device
error: unable to create file packages/decoders-jsonm/decoders-jsonm.0.5.0/opam: No space left on device
error: unable to create file packages/decoders-jsonm/decoders-jsonm.0.7.0/opam: No space left on device
error: unable to create file packages/decoders/decoders.1.0.0/opam: No space left on device
error: unable to create file packages/decompress/decompress.1.5.2/opam: No space left on device
error: unable to create file packages/depgraph/depgraph.0.1.0/opam: No space left on device
error: unable to create file packages/depyt/depyt.0.3.0/opam: No space left on device
error: unable to create file packages/devkit/devkit.0.6/opam: No space left on device
error: unable to create file packages/devkit/devkit.1.20210517/opam: No space left on device
error: unable to create file packages/diet/diet.0.2/opam: No space left on device
error: unable to create file packages/diffast-etc/diffast-etc.0.1.1/opam: No space left on device
error: unable to create file packages/diffast-etc/diffast-etc.0.3.6/opam: No space left on device
error: unable to create file packages/diffast-git/diffast-git.0.1/opam: No space left on device
error: unable to create file packages/diffast-langs-common/diffast-langs-common.0.3.5.1/opam: No space left on device
error: unable to create file packages/diffast-langs-common/diffast-langs-common.0.3.6/opam: No space left on device
error: unable to create file packages/diffast-langs-cpp-spec/diffast-langs-cpp-spec.0.2/opam: No space left on device
error: unable to create file packages/diffast-langs-cpp-spec/diffast-langs-cpp-spec.0.3.5.1/opam: No space left on device
error: unable to create file packages/diffast-langs-fortran-spec/diffast-langs-fortran-spec.0.1.1/opam: No space left on device
error: unable to create file packages/diffast-langs-java-spec/diffast-langs-java-spec.0.2/opam: No space left on device
error: unable to create file packages/diffast-langs-java/diffast-langs-java.0.3.5.1/opam: No space left on device
error: unable to create file packages/diffast-langs-python-parsing-cli/diffast-langs-python-parsing-cli.0.3.5.1/opam: No space left on device
error: unable to create file packages/diffast-langs-python-parsing-cli/diffast-langs-python-parsing-cli.0.3.6/opam: No space left on device
error: unable to create file packages/diffast-langs-python-parsing/diffast-langs-python-parsing.0.3.5.1/opam: No space left on device
error: unable to create file packages/diffast-misc/diffast-misc.0.1.1/opam: No space left on device
error: unable to create file packages/diffast-misc/diffast-misc.0.3.5.1/opam: No space left on device
error: unable to create file packages/digestif/digestif.0.5/opam: No space left on device
error: unable to create file packages/dirsp-proscript/dirsp-proscript.0.1.0/opam: No space left on device
error: unable to create file packages/diskuvbox/diskuvbox.0.1.0/opam: No space left on device
error: unable to create file packages/disml/disml.0.2.5/opam: No space left on device
error: unable to create file packages/dkim/dkim.0.6.0/opam: No space left on device
error: unable to create file packages/dkim/dkim.0.8.0/opam: No space left on device
error: unable to create file packages/dkml-base-compiler/dkml-base-compiler.4.12.1~v1.0.0/opam: No space left on device
error: unable to create file packages/dkml-component-staging-opam32/dkml-component-staging-opam32.2.2.0~alpha0~20221104/opam: No space left on device
error: unable to create file packages/dkml-component-staging-opam64/dkml-component-staging-opam64.2.2.0~dkml20220801/opam: No space left on device
error: unable to create file packages/dkml-component-xx-console/dkml-component-xx-console.0.1.0/opam: No space left on device
error: unable to create file packages/dkml-dune-dsl-show/dkml-dune-dsl-show.0.1.1/opam: No space left on device
error: unable to create file packages/dkml-dune-dsl-show/dkml-dune-dsl-show.0.1.3/opam: No space left on device
error: unable to create file packages/dkml-dune-dsl/dkml-dune-dsl.0.1.0/opam: No space left on device
error: unable to create file packages/dkml-install/dkml-install.0.3.1/opam: No space left on device
error: unable to create file packages/dkml-install/dkml-install.0.4.0/opam: No space left on device
error: unable to create file packages/dlist/dlist.0.1.0/opam: No space left on device
error: unable to create file packages/dlm/dlm.0.3.3/opam: No space left on device
error: unable to create file packages/dmap/dmap.0.3/opam: No space left on device
error: unable to create file packages/dns-cli/dns-cli.8.0.0/opam: No space left on device
error: unable to create file packages/dns-cli/dns-cli.9.1.0/opam: No space left on device
error: unable to create file packages/dns-client-lwt/dns-client-lwt.10.1.0/opam: No space left on device
error: unable to create file packages/dns-client-lwt/dns-client-lwt.10.2.1/opam: No space left on device
error: unable to create file packages/dns-client-lwt/dns-client-lwt.8.0.0/opam: No space left on device
error: unable to create file packages/dns-client-mirage/dns-client-mirage.10.1.0/opam: No space left on device
error: unable to create file packages/dns-client-mirage/dns-client-mirage.10.2.0/opam: No space left on device
error: unable to create file packages/dns-client-mirage/dns-client-mirage.9.1.0/opam: No space left on device
error: unable to create file packages/dns-client/dns-client.7.0.3/opam: No space left on device
error: unable to create file packages/dns-client/dns-client.8.0.0/opam: No space left on device
error: unable to create file packages/dns-client/dns-client.9.1.0/opam: No space left on device
error: unable to create file packages/dns-forward/dns-forward.0.9.0/opam: No space left on device
error: unable to create file packages/dns-lwt/dns-lwt.1.1.3/opam: No space left on device
error: unable to create file packages/dns-resolver/dns-resolver.8.0.0/opam: No space left on device
error: unable to create file packages/dns-resolver/dns-resolver.9.1.0/opam: No space left on device
error: unable to create file packages/dns-server/dns-server.10.2.0/opam: No space left on device
error: unable to create file packages/dns/dns.10.2.1/opam: No space left on device
error: unable to create file packages/dns/dns.10.2.2/opam: No space left on device
error: unable to create file packages/dns/dns.4.4.1/opam: No space left on device
error: unable to create file packages/docfd/docfd.0.3.3/opam: No space left on device
error: unable to create file packages/docker-api/docker-api.0.2.2/opam: No space left on device
error: unable to create file packages/dockerfile-cmd/dockerfile-cmd.8.3.1/opam: No space left on device
error: unable to create file packages/dockerfile-cmd/dockerfile-cmd.8.3.2/opam: No space left on device
error: unable to create file packages/dockerfile-opam/dockerfile-opam.5.0.0/opam: No space left on device
error: unable to create file packages/dockerfile-opam/dockerfile-opam.8.2.9/opam: No space left on device
error: unable to create file packages/dockerfile-opam/dockerfile-opam.8.3.0/opam: No space left on device
error: unable to create file packages/docteur-solo5/docteur-solo5.0.0.6/opam: No space left on device
error: unable to create file packages/docteur-solo5/docteur-solo5.0.0.7/opam: No space left on device
error: unable to create file packages/docteur/docteur.0.0.4/opam: No space left on device
error: unable to create file packages/doi2bib/doi2bib.0.7.6/opam: No space left on device
error: unable to create file packages/dokeysto/dokeysto.2.0.0/opam: No space left on device
error: unable to create file packages/dokeysto/dokeysto.3.0.0/opam: No space left on device
error: unable to create file packages/dolmen/dolmen.0.10/opam: No space left on device
error: unable to create file packages/dolmen/dolmen.0.4.1/opam: No space left on device
error: unable to create file packages/dolmen_lsp/dolmen_lsp.0.10/opam: No space left on device
error: unable to create file packages/dolmen_lsp/dolmen_lsp.0.5/opam: No space left on device
error: unable to create file packages/dolmen_lsp/dolmen_lsp.0.8/opam: No space left on device
error: unable to create file packages/dolmen_lsp/dolmen_lsp.0.9/opam: No space left on device
error: unable to create file packages/dolog/dolog.3.0/opam: No space left on device
error: unable to create file packages/dolog/dolog.4.0.0/opam: No space left on device
error: unable to create file packages/domain-local-await/domain-local-await.1.0.0/opam: No space left on device
error: unable to create file packages/domain_shims/domain_shims.0.1.0/opam: No space left on device
error: unable to create file packages/domainpc/domainpc.0.1/opam: No space left on device
error: unable to create file packages/domainslib/domainslib.0.5.0/opam: No space left on device
error: unable to create file packages/dose3/dose3.5.0.1/opam: No space left on device
error: unable to create file packages/dot-merlin-reader/dot-merlin-reader.4.9/opam: No space left on device
error: unable to create file packages/dotenv/dotenv.0.0.1/opam: No space left on device
error: unable to create file packages/down/down.0.0.4/opam: No space left on device
error: unable to create file packages/down/down.0.3.0/opam: No space left on device
error: unable to create file packages/dream-encoding/dream-encoding.0.2.0/opam: No space left on device
error: unable to create file packages/dream-encoding/dream-encoding.0.3.0/opam: No space left on device
error: unable to create file packages/dream-html/dream-html.3.0.0/opam: No space left on device
error: unable to create file packages/dream-html/dream-html.3.11.2/opam: No space left on device
error: unable to create file packages/dream-html/dream-html.3.4.1/opam: No space left on device
error: unable to create file packages/dream-htmx/dream-htmx.0.1.0/opam: No space left on device
error: unable to create file packages/dream-httpaf/dream-httpaf.1.0.0~alpha1/opam: No space left on device
error: unable to create file packages/dream-httpaf/dream-httpaf.1.0.0~alpha4/opam: No space left on device
error: unable to create file packages/dream-livereload/dream-livereload.0.1.0/opam: No space left on device
error: unable to create file packages/dream-pure/dream-pure.1.0.0~alpha1/opam: No space left on device
error: unable to create file packages/dropbox/dropbox.0.2/opam: No space left on device
error: unable to create file packages/dscheck/dscheck.0.4.0/opam: No space left on device
error: unable to create file packages/dssi/dssi.0.1.2/opam: No space left on device
error: unable to create file packages/dssi/dssi.0.1.4/opam: No space left on device
error: unable to create file packages/dtc-pb/dtc-pb.1.0/opam: No space left on device
error: unable to create file packages/dtoa/dtoa.0.3.1/opam: No space left on device
error: unable to create file packages/dtoa/dtoa.0.3.3/opam: No space left on device
error: unable to create file packages/duff/duff.0.1/opam: No space left on device
error: unable to create file packages/dune-action-plugin/dune-action-plugin.3.19.0/opam: No space left on device
error: unable to create file packages/dune-build-info/dune-build-info.3.19.1/opam: No space left on device
error: unable to create file packages/dune-build-info/dune-build-info.3.21.0/opam: No space left on device
error: unable to create file packages/dune-compiledb/dune-compiledb.0.5.0/opam: No space left on device
error: unable to create file packages/dune-compiledb/dune-compiledb.0.6.0/opam: No space left on device
error: unable to create file packages/dune-configurator/dune-configurator.1.0.0/opam: No space left on device
error: unable to create file packages/dune-deps/dune-deps.1.0.1/opam: No space left on device
error: unable to create file packages/dune-deps/dune-deps.1.2.0/opam: No space left on device
error: unable to create file packages/dune-deps/dune-deps.1.2.1/opam: No space left on device
error: unable to create file packages/dune-deps/dune-deps.1.4.0/opam: No space left on device
error: unable to create file packages/dune-glob/dune-glob.3.20.1/opam: No space left on device
error: unable to create file packages/dune-release/dune-release.0.2.0/opam: No space left on device
error: unable to create file packages/dune-release/dune-release.1.5.2/opam: No space left on device
error: unable to create file packages/dune-rpc-lwt/dune-rpc-lwt.3.19.1/opam: No space left on device
error: unable to create file packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0/opam: No space left on device
error: unable to create file packages/dune-rpc/dune-rpc.3.15.3/opam: No space left on device
error: unable to create file packages/dune/dune.1.11.4/opam: No space left on device
error: unable to create file packages/dune/dune.1.6.3/opam: No space left on device
error: unable to create file packages/dune/dune.3.21.0/opam: No space left on device
error: unable to create file packages/dunolint-lib/dunolint-lib.0.0.20250310/opam: No space left on device
error: unable to create file packages/duppy/duppy.0.9.3/opam: No space left on device
error: unable to create file packages/dyn/dyn.3.2.0/opam: No space left on device
error: unable to create file packages/dyn/dyn.3.20.2/opam: No space left on device
error: unable to create file packages/dyn/dyn.3.21.0/opam: No space left on device
error: unable to create file packages/dyn/dyn.3.3.0/opam: No space left on device
error: unable to create file packages/dyn/dyn.3.6.2/opam: No space left on device
error: unable to create file packages/dynamic_gc/dynamic_gc.0.1.0/opam: No space left on device
error: unable to create file packages/dynamic_gc/dynamic_gc.0.2.0/opam: No space left on device
error: unable to create file packages/earlybird/earlybird.1.0.2/opam: No space left on device
error: unable to create file packages/earlybird/earlybird.1.0.3/opam: No space left on device
error: unable to create file packages/easy-format/easy-format.1.3.1/opam: No space left on device
error: unable to create file packages/easy_logging/easy_logging.0.6.0/opam: No space left on device
error: unable to create file packages/easy_logging_yojson/easy_logging_yojson.0.5/opam: No space left on device
error: unable to create file packages/easy_logging_yojson/easy_logging_yojson.0.8.2/opam: No space left on device
error: unable to create file packages/ecaml/ecaml.v0.12.0/opam: No space left on device
error: unable to create file packages/efl/efl.1.18.0/opam: No space left on device
error: unable to create file packages/eigen/eigen.0.1.2/opam: No space left on device
error: unable to create file packages/eigen/eigen.0.1.4/opam: No space left on device
error: unable to create file packages/eio-trace/eio-trace.0.4/opam: No space left on device
error: unable to create file packages/eio/eio.0.12/opam: No space left on device
error: unable to create file packages/eio_linux/eio_linux.0.12/opam: No space left on device
error: unable to create file packages/eio_linux/eio_linux.0.13/opam: No space left on device
error: unable to create file packages/eio_linux/eio_linux.0.7/opam: No space left on device
error: unable to create file packages/eio_main/eio_main.1.1/opam: No space left on device
error: unable to create file packages/eio_posix/eio_posix.0.13/opam: No space left on device
error: unable to create file packages/eio_posix/eio_posix.1.0/opam: No space left on device
error: unable to create file packages/eio_windows/eio_windows.0.10/opam: No space left on device
error: unable to create file packages/eio_windows/eio_windows.0.11/opam: No space left on device
error: unable to create file packages/eio_windows/eio_windows.0.14/opam: No space left on device
error: unable to create file packages/electrod/electrod.0.2.3/opam: No space left on device
error: unable to create file packages/electrod/electrod.0.9.0/opam: No space left on device
error: unable to create file packages/eliom/eliom.10.1.0/opam: No space left on device
error: unable to create file packages/eliom/eliom.11.1.1/opam: No space left on device
error: unable to create file packages/eliom/eliom.6.10.1/opam: No space left on device
error: unable to create file packages/eliom/eliom.6.11.0/opam: No space left on device
error: unable to create file packages/elpi/elpi.1.16.10/opam: No space left on device
error: unable to create file packages/elpi/elpi.1.19.6/opam: No space left on device
error: unable to create file packages/elpi/elpi.1.20.0/opam: No space left on device
error: unable to create file packages/embedded_ocaml_templates/embedded_ocaml_templates.0.4/opam: No space left on device
error: unable to create file packages/embedded_ocaml_templates/embedded_ocaml_templates.0.5.1/opam: No space left on device
error: unable to create file packages/emile/emile.0.4/opam: No space left on device
error: unable to create file packages/emile/emile.0.5/opam: No space left on device
error: unable to create file packages/emile/emile.0.7/opam: No space left on device
error: unable to create file packages/encore/encore.0.1/opam: No space left on device
error: unable to create file packages/encore/encore.0.8.1/opam: No space left on device
error: unable to create file packages/eqaf/eqaf.0.2/opam: No space left on device
error: unable to create file packages/equinoxe/equinoxe.0.1.0/opam: No space left on device
error: unable to create file packages/esperanto-cosmopolitan/esperanto-cosmopolitan.0.0.1/opam: No space left on device
error: unable to create file packages/esperanto-cosmopolitan/esperanto-cosmopolitan.0.0.2/opam: No space left on device
error: unable to create file packages/esperanto/esperanto.0.0.2/opam: No space left on device
error: unable to create file packages/esperanto/esperanto.0.0.3/opam: No space left on device
error: unable to create file packages/esperanto/esperanto.0.0.4/opam: No space left on device
error: unable to create file packages/ethernet/ethernet.2.2.1/opam: No space left on device
error: unable to create file packages/ethernet/ethernet.3.2.0/opam: No space left on device
error: unable to create file packages/expect_test_helpers/expect_test_helpers.v0.13.0/opam: No space left on device
error: unable to create file packages/extism/extism.0.1.0/opam: No space left on device
error: unable to create file packages/extism/extism.0.4.0/opam: No space left on device
error: unable to create file packages/extism/extism.1.4.0/opam: No space left on device
error: unable to create file packages/extunix/extunix.0.1.5/opam: No space left on device
error: unable to create file packages/ez-conf-lib/ez-conf-lib.1/opam: No space left on device
error: unable to create file packages/ez_api/ez_api.1.1.1/opam: No space left on device
error: unable to create file packages/ez_api/ez_api.1.2.0/opam: No space left on device
error: unable to create file packages/ez_cmdliner/ez_cmdliner.0.2.0/opam: No space left on device
error: unable to create file packages/ez_cmdliner/ez_cmdliner.0.4.3/opam: No space left on device
error: unable to create file packages/ez_config/ez_config.0.2.0/opam: No space left on device
error: unable to create file packages/ez_hash/ez_hash.0.5.3/opam: No space left on device
error: unable to create file packages/ezcurl/ezcurl.0.1/opam: No space left on device
error: unable to create file packages/ezdl/ezdl.2.71.10/opam: No space left on device
error: unable to create file packages/ezjs_blockies/ezjs_blockies.0.1.1/opam: No space left on device
error: unable to create file packages/ezjs_min/ezjs_min.0.1/opam: No space left on device
error: unable to create file packages/ezjs_min/ezjs_min.0.2.1/opam: No space left on device
error: unable to create file packages/ezjs_push/ezjs_push.0.2/opam: No space left on device
error: unable to create file packages/ezjs_recaptcha/ezjs_recaptcha.0.1/opam: No space left on device
error: unable to create file packages/ezjs_timeline/ezjs_timeline.0.1.1/opam: No space left on device
error: unable to create file packages/ezresto-directory/ezresto-directory.0.4/opam: No space left on device
error: unable to create file packages/ezresto-directory/ezresto-directory.0.5/opam: No space left on device
error: unable to create file packages/ezresto/ezresto.0.2/opam: No space left on device
error: unable to create file packages/ezsqlite/ezsqlite.0.4/opam: No space left on device
error: unable to create file packages/facteur/facteur.0.1.0/opam: No space left on device
error: unable to create file packages/faraday-lwt/faraday-lwt.0.5.0/opam: No space left on device
error: unable to create file packages/faraday/faraday.0.1.0/opam: No space left on device
error: unable to create file packages/faraday/faraday.0.2.0/opam: No space left on device
error: unable to create file packages/faraday/faraday.0.7.3/opam: No space left on device
error: unable to create file packages/fast_bitvector/fast_bitvector.0.1.0.1/opam: No space left on device
error: unable to create file packages/fat-filesystem/fat-filesystem.0.12.3/opam: No space left on device
error: unable to create file packages/fat-filesystem/fat-filesystem.0.13.0/opam: No space left on device
error: unable to create file packages/fd-send-recv/fd-send-recv.2.0.1/opam: No space left on device
error: unable to create file packages/fd-send-recv/fd-send-recv.2.0.3/opam: No space left on device
error: unable to create file packages/feather/feather.0.3.0/opam: No space left on device
error: unable to create file packages/ffmpeg-av/ffmpeg-av.1.0.0/opam: No space left on device
error: unable to create file packages/ffmpeg-av/ffmpeg-av.1.1.0/opam: No space left on device
error: unable to create file packages/ffmpeg-av/ffmpeg-av.1.1.2/opam: No space left on device
error: unable to create file packages/ffmpeg-av/ffmpeg-av.1.1.5/opam: No space left on device
error: unable to create file packages/ffmpeg-av/ffmpeg-av.1.1.7/opam: No space left on device
error: unable to create file packages/ffmpeg-av/ffmpeg-av.1.1.8/opam: No space left on device
error: unable to create file packages/ffmpeg-avcodec/ffmpeg-avcodec.1.0.0~rc1/opam: No space left on device
error: unable to create file packages/ffmpeg-avcodec/ffmpeg-avcodec.1.0.1/opam: No space left on device
error: unable to create file packages/ffmpeg-avcodec/ffmpeg-avcodec.1.1.0/opam: No space left on device
error: unable to create file packages/ffmpeg-avdevice/ffmpeg-avdevice.1.2.5/opam: No space left on device
error: unable to create file packages/ffmpeg-avfilter/ffmpeg-avfilter.1.0.0/opam: No space left on device
error: unable to create file packages/ffmpeg-avfilter/ffmpeg-avfilter.1.1.2/opam: No space left on device
error: unable to create file packages/ffmpeg-avfilter/ffmpeg-avfilter.1.1.8/opam: No space left on device
error: unable to create file packages/ffmpeg-avfilter/ffmpeg-avfilter.1.1.9/opam: No space left on device
error: unable to create file packages/ffmpeg-avutil/ffmpeg-avutil.1.2.5/opam: No space left on device
error: unable to create file packages/ffmpeg-avutil/ffmpeg-avutil.1.2.6/opam: No space left on device
error: unable to create file packages/ffmpeg-swscale/ffmpeg-swscale.1.0.0~beta1/opam: No space left on device
error: unable to create file packages/ffmpeg-swscale/ffmpeg-swscale.1.1.0/opam: No space left on device
error: unable to create file packages/ffmpeg/ffmpeg.0.4.3/opam: No space left on device
error: unable to create file packages/ffmpeg/ffmpeg.1.1.0/opam: No space left on device
error: unable to create file packages/ffmpeg/ffmpeg.1.1.10/opam: No space left on device
error: unable to create file packages/ffmpeg/ffmpeg.1.2.2/opam: No space left on device
error: unable to create file packages/ffmpeg/ffmpeg.1.2.5/opam: No space left on device
error: unable to create file packages/ffmpeg/ffmpeg.1.2.6/opam: No space left on device
error: unable to create file packages/fieldslib/fieldslib.v0.12.0/opam: No space left on device
error: unable to create file packages/fieldslib/fieldslib.v0.13.0/opam: No space left on device
error: unable to create file packages/findlib_top/findlib_top.v0.10.0/opam: No space left on device
error: unable to create file packages/fit/fit.1.0.2/opam: No space left on device
error: unable to create file packages/fix/fix.20200131/opam: No space left on device
error: unable to create file packages/flexdll/flexdll.0.35/opam: No space left on device
error: unable to create file packages/flexdll/flexdll.0.37/opam: No space left on device
error: unable to create file packages/flexdll/flexdll.0.38/opam: No space left on device
error: unable to create file packages/flexdll/flexdll.0.40/opam: No space left on device
error: unable to create file packages/flexdll/flexdll.0.41/opam: No space left on device
error: unable to create file packages/flow_parser/flow_parser.0.229.1/opam: No space left on device
error: unable to create file packages/flow_parser/flow_parser.0.246.0/opam: No space left on device
error: unable to create file packages/fluxt/fluxt.0.0.1~beta2/opam: No space left on device
error: unable to create file packages/fm-simplex-plugin/fm-simplex-plugin.1.01/opam: No space left on device
error: unable to create file packages/fmlib/fmlib.0.3.1/opam: No space left on device
error: unable to create file packages/fmlib/fmlib.0.5.11/opam: No space left on device
error: unable to create file packages/fmlib/fmlib.0.5.4/opam: No space left on device
error: unable to create file packages/fmlib/fmlib.0.5.5/opam: No space left on device
error: unable to create file packages/fmlib_browser/fmlib_browser.0.5.3/opam: No space left on device
error: unable to create file packages/fmlib_browser/fmlib_browser.0.5.9/opam: No space left on device
error: unable to create file packages/fmlib_js/fmlib_js.0.4.0/opam: No space left on device
error: unable to create file packages/fmlib_js/fmlib_js.0.5.0/opam: No space left on device
error: unable to create file packages/fmlib_js/fmlib_js.0.5.4/opam: No space left on device
error: unable to create file packages/fmlib_js/fmlib_js.0.5.5/opam: No space left on device
error: unable to create file packages/fmlib_parse/fmlib_parse.0.3.1/opam: No space left on device
error: unable to create file packages/fmlib_parse/fmlib_parse.0.5.2/opam: No space left on device
error: unable to create file packages/fmlib_parse/fmlib_parse.0.5.3/opam: No space left on device
error: unable to create file packages/fmlib_pretty/fmlib_pretty.0.4.0/opam: No space left on device
error: unable to create file packages/fmlib_pretty/fmlib_pretty.0.5.1/opam: No space left on device
error: unable to create file packages/fmlib_pretty/fmlib_pretty.0.5.11/opam: No space left on device
error: unable to create file packages/fmlib_std/fmlib_std.0.5.11/opam: No space left on device
error: unable to create file packages/forester/forester.2.1/opam: No space left on device
error: unable to create file packages/format/format.0.1/opam: No space left on device
error: unable to create file packages/fpath-base/fpath-base.0.4.0/opam: No space left on device
error: unable to create file packages/fpath-sexp0/fpath-sexp0.0.3.1/opam: No space left on device
error: unable to create file packages/fpath-sexp0/fpath-sexp0.0.4.0/opam: No space left on device
error: unable to create file packages/frama-c-metacsl/frama-c-metacsl.0.8/opam: No space left on device
error: unable to create file packages/frama-c/frama-c.21.1/opam: No space left on device
error: unable to create file packages/frama-c/frama-c.23.0/opam: No space left on device
error: unable to create file packages/frama-c/frama-c.28.0/opam: No space left on device
error: unable to create file packages/frama-c/frama-c.28.0~beta/opam: No space left on device
error: unable to create file packages/frama-c/frama-c.28.1/opam: No space left on device
error: unable to create file packages/frama-c/frama-c.29.0/opam: No space left on device
error: unable to create file packages/frama-c/frama-c.30.0/opam: No space left on device
error: unable to create file packages/frenetic/frenetic.5.0.5/opam: No space left on device
error: unable to create file packages/frontmatter_extractor/frontmatter_extractor.0.1/opam: No space left on device
error: unable to create file packages/fsevents/fsevents.0.3.0/opam: No space left on device
error: unable to create file packages/fstar/fstar.2022.01.15/opam: No space left on device
error: unable to create file packages/fstar/fstar.2025.02.17/opam: No space left on device
error: unable to create file packages/funfields/funfields.0.04/opam: No space left on device
error: unable to create file packages/fungi/fungi.0.1.4/opam: No space left on device
error: unable to create file packages/fuseau-lwt/fuseau-lwt.0.1/opam: No space left on device
error: unable to create file packages/fuseau/fuseau.0.1/opam: No space left on device
error: unable to create file packages/gapi-ocaml/gapi-ocaml.0.4.7/opam: No space left on device
error: unable to create file packages/gapi-ocaml/gapi-ocaml.0.4.8/opam: No space left on device
error: unable to create file packages/gappa/gappa.1.3.5/opam: No space left on device
error: unable to create file packages/gdal/gdal.0.9.0/opam: No space left on device
error: unable to create file packages/gen/gen.0.2.2/opam: No space left on device
error: unable to create file packages/gen/gen.0.5.1/opam: No space left on device
error: unable to create file packages/gen/gen.0.5.2/opam: No space left on device
error: unable to create file packages/gendarme-toml/gendarme-toml.0.3.0/opam: No space left on device
error: unable to create file packages/gendarme/gendarme.0.2.0/opam: No space left on device
error: unable to create file packages/genlet/genlet.201406/opam: No space left on device
error: unable to create file packages/genprint/genprint.0.1/opam: No space left on device
error: unable to create file packages/genprint/genprint.0.2/opam: No space left on device
error: unable to create file packages/genprint/genprint.0.3/opam: No space left on device
error: unable to create file packages/genprint/genprint.0.4/opam: No space left on device
error: unable to create file packages/genspir/genspir.0.1/opam: No space left on device
error: unable to create file packages/genspir/genspir.1.0.0/opam: No space left on device
error: unable to create file packages/get_line/get_line.2.1.1/opam: No space left on device
error: unable to create file packages/get_line/get_line.3.0.0/opam: No space left on device
error: unable to create file packages/git-split/git-split.0.0.4/opam: No space left on device
error: unable to create file packages/git-unix/git-unix.3.6.0/opam: No space left on device
error: unable to create file packages/github-hooks/github-hooks.0.4.0/opam: No space left on device
error: unable to create file packages/github-jsoo/github-jsoo.4.4.0/opam: No space left on device
error: unable to create file packages/github-jsoo/github-jsoo.4.4.1/opam: No space left on device
error: unable to create file packages/github-unix/github-unix.4.5.1/opam: No space left on device
error: unable to create file packages/github/github.4.3.2/opam: No space left on device
error: unable to create file packages/gitlab-jsoo/gitlab-jsoo.0.1.3/opam: No space left on device
error: unable to create file packages/gitlab-jsoo/gitlab-jsoo.0.1.7/opam: No space left on device
error: unable to create file packages/glfw-ocaml/glfw-ocaml.3.2.1~rc1/opam: No space left on device
error: unable to create file packages/glfw-ocaml/glfw-ocaml.3.2.1~rc2/opam: No space left on device
error: unable to create file packages/glpk/glpk.0.1.8/opam: No space left on device
error: unable to create file packages/gluten-lwt-unix/gluten-lwt-unix.0.1.0/opam: No space left on device
error: unable to create file packages/gluten-lwt-unix/gluten-lwt-unix.0.2.0/opam: No space left on device
error: unable to create file packages/gluten-lwt-unix/gluten-lwt-unix.0.2.1/opam: No space left on device
error: unable to create file packages/gluten-lwt/gluten-lwt.0.4.0/opam: No space left on device
error: unable to create file packages/gluten-lwt/gluten-lwt.0.5.0/opam: No space left on device
error: unable to create file packages/gluten-lwt/gluten-lwt.0.5.2/opam: No space left on device
error: unable to create file packages/gmp-ecm/gmp-ecm.7.0.3/opam: No space left on device
error: unable to create file packages/gmp-xen/gmp-xen.6.0.0-1/opam: No space left on device
error: unable to create file packages/gmp-xen/gmp-xen.6.0.0/opam: No space left on device
error: unable to create file packages/goblint-cil/goblint-cil.1.7.3/opam: No space left on device
error: unable to create file packages/goblint-cil/goblint-cil.1.7.4/opam: No space left on device
error: unable to create file packages/goblint/goblint.1.1.1/opam: No space left on device
error: unable to create file packages/gopcaml-mode/gopcaml-mode.0.0.2/opam: No space left on device
error: unable to create file packages/gopcaml-mode/gopcaml-mode.0.0.6/opam: No space left on device
error: unable to create file packages/gpr/gpr.1.5.0/opam: No space left on device
error: unable to create file packages/gpr/gpr.1.5.1/opam: No space left on device
error: unable to create file packages/gpx/gpx.1.1.1/opam: No space left on device
error: unable to create file packages/gradescope_submit/gradescope_submit.2.0.1/opam: No space left on device
error: unable to create file packages/graphlib/graphlib.2.2.0/opam: No space left on device
error: unable to create file packages/graphlib/graphlib.2.3.0/opam: No space left on device
error: unable to create file packages/graphql-cohttp/graphql-cohttp.0.8.0/opam: No space left on device
error: unable to create file packages/graphql-lwt/graphql-lwt.0.1.0/opam: No space left on device
error: unable to create file packages/graphql/graphql.0.8.0/opam: No space left on device
error: unable to create file packages/graphql_ppx/graphql_ppx.1.2.2/opam: No space left on device
error: unable to create file packages/graphv/graphv.0.1.1/opam: No space left on device
error: unable to create file packages/grenier/grenier.0.10/opam: No space left on device
error: unable to create file packages/grid/grid.0.2.0/opam: No space left on device
error: unable to create file packages/gsl/gsl.1.19.1/opam: No space left on device
error: unable to create file packages/gsl/gsl.1.20.2/opam: No space left on device
error: unable to create file packages/gsl/gsl.1.24.2/opam: No space left on device
error: unable to create file packages/gstreamer/gstreamer.0.2.2/opam: No space left on device
error: unable to create file packages/gstreamer/gstreamer.0.3.1/opam: No space left on device
error: unable to create file packages/guardian/guardian.0.0.4/opam: No space left on device
error: unable to create file packages/h2-async/h2-async.0.13.0/opam: No space left on device
error: unable to create file packages/h2-async/h2-async.0.8.0/opam: No space left on device
error: unable to create file packages/h2-eio/h2-eio.0.10.0/opam: No space left on device
error: unable to create file packages/h2-lwt-unix/h2-lwt-unix.0.5.0/opam: No space left on device
error: unable to create file packages/h2-lwt-unix/h2-lwt-unix.0.6.0/opam: No space left on device
error: unable to create file packages/h2-lwt-unix/h2-lwt-unix.0.6.1/opam: No space left on device
error: unable to create file packages/h2-lwt/h2-lwt.0.1.0/opam: No space left on device
error: unable to create file packages/h2-lwt/h2-lwt.0.12.0/opam: No space left on device
error: unable to create file packages/h2-mirage/h2-mirage.0.1.0/opam: No space left on device
error: unable to create file packages/h2-mirage/h2-mirage.0.12.0/opam: No space left on device
error: unable to create file packages/h2/h2.0.12.0/opam: No space left on device
error: unable to create file packages/h2/h2.0.2.0/opam: No space left on device
error: unable to create file packages/h2/h2.0.3.0/opam: No space left on device
error: unable to create file packages/h2/h2.0.4.0/opam: No space left on device
error: unable to create file packages/hacl-star-raw/hacl-star-raw.0.1.1/opam: No space left on device
error: unable to create file packages/hacl-star-raw/hacl-star-raw.0.4.1/opam: No space left on device
error: unable to create file packages/hacl-star-raw/hacl-star-raw.0.7.0/opam: No space left on device
error: unable to create file packages/hacl-star/hacl-star.0.1.1/opam: No space left on device
error: unable to create file packages/hacl-star/hacl-star.0.1/opam: No space left on device
error: unable to create file packages/hacl-star/hacl-star.0.7.0/opam: No space left on device
error: unable to create file packages/hacl-star/hacl-star.0.7.1/opam: No space left on device
error: unable to create file packages/hacl-star/hacl-star.0.7.2/opam: No space left on device
error: unable to create file packages/handlebars-ml/handlebars-ml.0.1.2/opam: No space left on device
error: unable to create file packages/happy-eyeballs-lwt/happy-eyeballs-lwt.0.0.7/opam: No space left on device
error: unable to create file packages/happy-eyeballs/happy-eyeballs.0.6.0/opam: No space left on device
error: unable to create file packages/hardcaml/hardcaml.v0.12.0/opam: No space left on device
error: unable to create file packages/hardcaml/hardcaml.v0.13.0/opam: No space left on device
error: unable to create file packages/hardcaml_axi/hardcaml_axi.v0.16.0/opam: No space left on device
error: unable to create file packages/hardcaml_axi/hardcaml_axi.v0.17.0/opam: No space left on device
error: unable to create file packages/hardcaml_of_verilog/hardcaml_of_verilog.v0.15.0/opam: No space left on device
error: unable to create file packages/hardcaml_of_verilog/hardcaml_of_verilog.v0.17.0/opam: No space left on device
error: unable to create file packages/hardcaml_waveterm/hardcaml_waveterm.v0.12.0/opam: No space left on device
error: unable to create file packages/hardcaml_waveterm/hardcaml_waveterm.v0.15.0/opam: No space left on device
error: unable to create file packages/haxe/haxe.4.0.5/opam: No space left on device
error: unable to create file packages/haxe/haxe.4.1.1/opam: No space left on device
error: unable to create file packages/hdfs/hdfs.0.1/opam: No space left on device
error: unable to create file packages/hdfs/hdfs.0.2/opam: No space left on device
error: unable to create file packages/herdtools7/herdtools7.7.42-beta.3/opam: No space left on device
error: unable to create file packages/herdtools7/herdtools7.7.56.2/opam: No space left on device
error: unable to create file packages/higher/higher.0.2/opam: No space left on device
error: unable to create file packages/higher_kinded/higher_kinded.v0.16.0/opam: No space left on device
error: unable to create file packages/higlo/higlo.0.5/opam: No space left on device
error: unable to create file packages/hlarp/hlarp.0.0.1/opam: No space left on device
error: unable to create file packages/hol2dk/hol2dk.2.1.0/opam: No space left on device
error: unable to create file packages/hol_light/hol_light.3.0.0/opam: No space left on device
error: unable to create file packages/host-system-other/host-system-other.1/opam: No space left on device
error: unable to create file packages/html_of_jsx/html_of_jsx.0.0.5/opam: No space left on device
error: unable to create file packages/hts_shrink/hts_shrink.2.1.0/opam: No space left on device
error: unable to create file packages/hts_shrink/hts_shrink.2.1.1/opam: No space left on device
error: unable to create file packages/hts_shrink/hts_shrink.2.1.2/opam: No space left on device
error: unable to create file packages/hts_shrink/hts_shrink.3.0.1/opam: No space left on device
error: unable to create file packages/http-cookie/http-cookie.4.0.0/opam: No space left on device
error: unable to create file packages/http-mirage-client/http-mirage-client.0.0.6/opam: No space left on device
error: unable to create file packages/http-multipart-formdata/http-multipart-formdata.3.0.0/opam: No space left on device
error: unable to create file packages/http-multipart-formdata/http-multipart-formdata.3.0.1/opam: No space left on device
error: unable to create file packages/http/http.6.0.0/opam: No space left on device
error: unable to create file packages/http/http.6.0.0~alpha1/opam: No space left on device
error: unable to create file packages/httpaf-async/httpaf-async.0.6.0/opam: No space left on device
error: unable to create file packages/httpaf-lwt-unix/httpaf-lwt-unix.0.6.6/opam: No space left on device
error: unable to create file packages/httpaf-lwt-unix/httpaf-lwt-unix.0.7.0/opam: No space left on device
error: unable to create file packages/httpaf-lwt-unix/httpaf-lwt-unix.0.7.1/opam: No space left on device
error: unable to create file packages/httpaf/httpaf.0.5.0/opam: No space left on device
error: unable to create file packages/huml-cli/huml-cli.0.1.1/opam: No space left on device
error: unable to create file packages/huml-cli/huml-cli.0.2.0/opam: No space left on device
error: unable to create file packages/huml/huml.0.1.1/opam: No space left on device
error: unable to create file packages/hvsock/hvsock.1.0.2/opam: No space left on device
error: unable to create file packages/hxd/hxd.0.3.3/opam: No space left on device
error: unable to create file packages/icalendar/icalendar.0.1.11/opam: No space left on device
error: unable to create file packages/imagelib/imagelib.20221222/opam: No space left on device
error: unable to create file packages/incr_dom/incr_dom.v0.12.0/opam: No space left on device
error: unable to create file packages/incr_dom/incr_dom.v0.15.0/opam: No space left on device
error: unable to create file packages/incr_dom_keyboard/incr_dom_keyboard.v0.14.0/opam: No space left on device
error: unable to create file packages/incr_dom_partial_render/incr_dom_partial_render.v0.12.0/opam: No space left on device
error: unable to create file packages/incr_dom_partial_render/incr_dom_partial_render.v0.13.0/opam: No space left on device
error: unable to create file packages/incr_dom_partial_render/incr_dom_partial_render.v0.14.0/opam: No space left on device
error: unable to create file packages/incr_dom_partial_render/incr_dom_partial_render.v0.16.0/opam: No space left on device
error: unable to create file packages/incr_dom_sexp_form/incr_dom_sexp_form.v0.15.0/opam: No space left on device
error: unable to create file packages/incr_dom_sexp_form/incr_dom_sexp_form.v0.15.1/opam: No space left on device
error: unable to create file packages/incr_select/incr_select.v0.14.0/opam: No space left on device
error: unable to create file packages/incr_select/incr_select.v0.15.0/opam: No space left on device
error: unable to create file packages/incr_select/incr_select.v0.16.0/opam: No space left on device
error: unable to create file packages/incremental_cycles/incremental_cycles.0.1/opam: No space left on device
error: unable to create file packages/indentation_buffer/indentation_buffer.v0.17.0/opam: No space left on device
error: unable to create file packages/index-bench/index-bench.1.3.0/opam: No space left on device
error: unable to create file packages/index/index.1.0.1/opam: No space left on device
error: unable to create file packages/index/index.1.1.0/opam: No space left on device
error: unable to create file packages/index/index.1.2.1/opam: No space left on device
error: unable to create file packages/index/index.1.3.0/opam: No space left on device
error: unable to create file packages/index/index.1.5.0/opam: No space left on device
error: unable to create file packages/inferno/inferno.20201001/opam: No space left on device
error: unable to create file packages/influxdb-async/influxdb-async.0.1.0/opam: No space left on device
error: unable to create file packages/influxdb-async/influxdb-async.0.2.0/opam: No space left on device
error: unable to create file packages/influxdb/influxdb.0.3.0/opam: No space left on device
error: unable to create file packages/inotify-eio/inotify-eio.2.6/opam: No space left on device
error: unable to create file packages/int_repr/int_repr.v0.15.0/opam: No space left on device
error: unable to create file packages/integers/integers.0.7.0/opam: No space left on device
error: unable to create file packages/integers_stubs_js/integers_stubs_js.1.0/opam: No space left on device
error: unable to create file packages/integration1d/integration1d.0.5/opam: No space left on device
error: unable to create file packages/intel_hex/intel_hex.0.1/opam: No space left on device
error: unable to create file packages/interface-prime-lwt/interface-prime-lwt.0.1/opam: No space left on device
error: unable to create file packages/interval-map/interval-map.0.1.0/opam: No space left on device
error: unable to create file packages/interval/interval.1.3/opam: No space left on device
error: unable to create file packages/interval_crlibm/interval_crlibm.1.6/opam: No space left on device
error: unable to create file packages/interval_intel/interval_intel.1.5/opam: No space left on device
error: unable to create file packages/inuit/inuit.0.1/opam: No space left on device
error: unable to create file packages/inuit/inuit.0.4.1/opam: No space left on device
error: unable to create file packages/io-page-unix/io-page-unix.2.3.0/opam: No space left on device
error: unable to create file packages/io-page/io-page.2.3.0/opam: No space left on device
error: unable to create file packages/iostream-camlzip/iostream-camlzip.0.2.1/opam: No space left on device
error: unable to create file packages/iostream-camlzip/iostream-camlzip.0.2.2/opam: No space left on device
error: unable to create file packages/iostream/iostream.0.1/opam: No space left on device
error: unable to create file packages/iostream/iostream.0.2.1/opam: No space left on device
error: unable to create file packages/iostream/iostream.0.2.2/opam: No space left on device
error: unable to create file packages/ip2locationio/ip2locationio.1.0.1/opam: No space left on device
error: unable to create file packages/ip2locationio/ip2locationio.1.1.0/opam: No space left on device
error: unable to create file packages/ip2proxy/ip2proxy.3.1.0/opam: No space left on device
error: unable to create file packages/ip2whois/ip2whois.1.0.0/opam: No space left on device
error: unable to create file packages/ipaddr-cstruct/ipaddr-cstruct.5.6.0/opam: No space left on device
error: unable to create file packages/irc-client-lwt-ssl/irc-client-lwt-ssl.0.7.0/opam: No space left on device
error: unable to create file packages/irc-client-lwt/irc-client-lwt.0.6.0/opam: No space left on device
error: unable to create file packages/irc-client/irc-client.0.5.2/opam: No space left on device
error: unable to create file packages/irc-client/irc-client.0.7.1/opam: No space left on device
error: unable to create file packages/iri/iri.1.0.0/opam: No space left on device
error: unable to create file packages/irmin-fs/irmin-fs.2.10.2/opam: No space left on device
error: unable to create file packages/irmin-fs/irmin-fs.3.10.0/opam: No space left on device
error: unable to create file packages/irmin-graphql/irmin-graphql.2.10.2/opam: No space left on device
error: unable to create file packages/irmin-graphql/irmin-graphql.3.10.0/opam: No space left on device
error: unable to create file packages/irmin-graphql/irmin-graphql.3.6.1/opam: No space left on device
error: unable to create file packages/irmin-layers/irmin-layers.2.7.1/opam: No space left on device
error: unable to create file packages/irmin-pack/irmin-pack.2.7.1/opam: No space left on device
error: unable to create file packages/irmin-pack/irmin-pack.2.7.2/opam: No space left on device
error: unable to create file packages/irmin-tezos/irmin-tezos.3.11.0/opam: No space left on device
error: unable to create file packages/irmin-unix/irmin-unix.2.10.2/opam: No space left on device
error: unable to create file packages/irmin-watcher/irmin-watcher.0.5.0/opam: No space left on device
error: unable to create file packages/irrlicht/irrlicht.0.0.5/opam: No space left on device
error: unable to create file packages/itv-tree/itv-tree.2.2/opam: No space left on device
error: unable to create file packages/jane-street-headers/jane-street-headers.v0.10.0/opam: No space left on device
error: unable to create file packages/jane-street-headers/jane-street-headers.v0.11.0/opam: No space left on device
error: unable to create file packages/jane-street-headers/jane-street-headers.v0.15.0/opam: No space left on device
error: unable to create file packages/jasmin/jasmin.2025.02.0/opam: No space left on device
error: unable to create file packages/jasmin/jasmin.2025.02.1/opam: No space left on device
error: unable to create file packages/jasmin/jasmin.2025.06.0/opam: No space left on device
error: unable to create file packages/jasmin/jasmin.2025.06.1/opam: No space left on device
error: unable to create file packages/jasmin/jasmin.2025.06.2/opam: No space left on device
error: unable to create file packages/jext/jext.0.1.0/opam: No space left on device
error: unable to create file packages/jingoo/jingoo.1.2.16/opam: No space left on device
error: unable to create file packages/jingoo/jingoo.1.3.0-1/opam: No space left on device
error: unable to create file packages/jingoo/jingoo.1.3.1-1/opam: No space left on device
error: unable to create file packages/jingoo/jingoo.1.3.4/opam: No space left on device
error: unable to create file packages/jingoo/jingoo.1.4.0/opam: No space left on device
error: unable to create file packages/jingoo/jingoo.1.4.2/opam: No space left on device
error: unable to create file packages/joolog/joolog.0.4/opam: No space left on device
error: unable to create file packages/jose/jose.0.10.0/opam: No space left on device
error: unable to create file packages/jose/jose.0.9.0/opam: No space left on device
error: unable to create file packages/js-build-tools/js-build-tools.113.33.04/opam: No space left on device
error: unable to create file packages/js_of_ocaml-compiler/js_of_ocaml-compiler.3.10.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-compiler/js_of_ocaml-compiler.3.9.1/opam: No space left on device
error: unable to create file packages/js_of_ocaml-compiler/js_of_ocaml-compiler.5.0.1/opam: No space left on device
error: unable to create file packages/js_of_ocaml-compiler/js_of_ocaml-compiler.5.1.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-compiler/js_of_ocaml-compiler.5.1.1/opam: No space left on device
error: unable to create file packages/js_of_ocaml-compiler/js_of_ocaml-compiler.5.9.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-lwt/js_of_ocaml-lwt.3.6.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-lwt/js_of_ocaml-lwt.3.9.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-lwt/js_of_ocaml-lwt.5.1.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-lwt/js_of_ocaml-lwt.5.1.1/opam: No space left on device
error: unable to create file packages/js_of_ocaml-lwt/js_of_ocaml-lwt.5.5.2/opam: No space left on device
error: unable to create file packages/js_of_ocaml-lwt/js_of_ocaml-lwt.5.9.1/opam: No space left on device
error: unable to create file packages/js_of_ocaml-ocamlbuild/js_of_ocaml-ocamlbuild.3.0.1/opam: No space left on device
error: unable to create file packages/js_of_ocaml-ocamlbuild/js_of_ocaml-ocamlbuild.3.5.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-ocamlbuild/js_of_ocaml-ocamlbuild.3.6.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-ppx/js_of_ocaml-ppx.3.8.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-ppx/js_of_ocaml-ppx.4.0.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-ppx_deriving_json/js_of_ocaml-ppx_deriving_json.3.5.1/opam: No space left on device
error: unable to create file packages/js_of_ocaml-ppx_deriving_json/js_of_ocaml-ppx_deriving_json.3.9.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-ppx_deriving_json/js_of_ocaml-ppx_deriving_json.4.0.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-ppx_deriving_json/js_of_ocaml-ppx_deriving_json.5.0.1/opam: No space left on device
error: unable to create file packages/js_of_ocaml-ppx_deriving_json/js_of_ocaml-ppx_deriving_json.5.9.1/opam: No space left on device
error: unable to create file packages/js_of_ocaml-toplevel/js_of_ocaml-toplevel.3.10.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-toplevel/js_of_ocaml-toplevel.5.1.1/opam: No space left on device
error: unable to create file packages/js_of_ocaml-toplevel/js_of_ocaml-toplevel.5.2.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-toplevel/js_of_ocaml-toplevel.5.8.1/opam: No space left on device
error: unable to create file packages/js_of_ocaml-toplevel/js_of_ocaml-toplevel.5.8.2/opam: No space left on device
error: unable to create file packages/js_of_ocaml-toplevel/js_of_ocaml-toplevel.5.9.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-tyxml/js_of_ocaml-tyxml.3.7.1/opam: No space left on device
error: unable to create file packages/js_of_ocaml-tyxml/js_of_ocaml-tyxml.5.1.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-tyxml/js_of_ocaml-tyxml.5.7.2/opam: No space left on device
error: unable to create file packages/js_of_ocaml/js_of_ocaml.3.5.2/opam: No space left on device
error: unable to create file packages/js_of_ocaml/js_of_ocaml.5.7.0/opam: No space left on device
error: unable to create file packages/json-data-encoding-browser/json-data-encoding-browser.0.9.1/opam: No space left on device
error: unable to create file packages/json-data-encoding-bson/json-data-encoding-bson.1.0.1/opam: No space left on device
error: unable to create file packages/json-data-encoding/json-data-encoding.0.10/opam: No space left on device
error: unable to create file packages/json-data-encoding/json-data-encoding.0.9.1/opam: No space left on device
error: unable to create file packages/json-data-encoding/json-data-encoding.0.9/opam: No space left on device
error: unable to create file packages/jsonaf/jsonaf.v0.17.0/opam: No space left on device
error: unable to create file packages/jsonrpc/jsonrpc.1.17.0/opam: No space left on device
error: unable to create file packages/jsonrpc/jsonrpc.1.20.1/opam: No space left on device
error: unable to create file packages/jsonxt/jsonxt.1.0.1/opam: No space left on device
error: unable to create file packages/jsoo-react/jsoo-react.0.1/opam: No space left on device
error: unable to create file packages/jsoo_broadcastchannel/jsoo_broadcastchannel.2.0.0/opam: No space left on device
error: unable to create file packages/junit/junit.2.1.0/opam: No space left on device
error: unable to create file packages/junit/junit.2.2.0/opam: No space left on device
error: unable to create file packages/junit_alcotest/junit_alcotest.2.0/opam: No space left on device
error: unable to create file packages/junit_alcotest/junit_alcotest.2.2.0/opam: No space left on device
error: unable to create file packages/jupyter-kernel/jupyter-kernel.0.4/opam: No space left on device
error: unable to create file packages/jupyter/jupyter.2.8.0/opam: No space left on device
error: unable to create file packages/kafka/kafka.0.3/opam: No space left on device
error: unable to create file packages/kcas/kcas.0.4.0/opam: No space left on device
error: unable to create file packages/kcas/kcas.0.5.0/opam: No space left on device
error: unable to create file packages/kcas/kcas.0.5.2/opam: No space left on device
error: unable to create file packages/kcas_data/kcas_data.0.5.1/opam: No space left on device
error: unable to create file packages/kcas_data/kcas_data.0.6.0/opam: No space left on device
error: unable to create file packages/kcas_data/kcas_data.0.6.1/opam: No space left on device
error: unable to create file packages/kcas_data/kcas_data.0.7.0/opam: No space left on device
error: unable to create file packages/kdf/kdf.1.0.0/opam: No space left on device
error: unable to create file packages/ke/ke.0.3/opam: No space left on device
error: unable to create file packages/ke/ke.0.6/opam: No space left on device
error: unable to create file packages/key-parsers/key-parsers.0.9.2/opam: No space left on device
error: unable to create file packages/kind2/kind2.1.3.0/opam: No space left on device
error: unable to create file packages/kind2/kind2.1.5.1/opam: No space left on device
error: unable to create file packages/kind2/kind2.1.7.0/opam: No space left on device
error: unable to create file packages/kind2/kind2.2.1.0/opam: No space left on device
error: unable to create file packages/krb/krb.v0.15.0/opam: No space left on device
error: unable to create file packages/kremlin/kremlin.transition/opam: No space left on device
error: unable to create file packages/kubecaml/kubecaml.0.1.0/opam: No space left on device
error: unable to create file packages/lablgtk/lablgtk.2.18.12/opam: No space left on device
error: unable to create file packages/lablgtk3-gtkspell3/lablgtk3-gtkspell3.3.0.beta5/opam: No space left on device
error: unable to create file packages/lablgtk3-gtkspell3/lablgtk3-gtkspell3.3.1.0/opam: No space left on device
error: unable to create file packages/lablgtk3-rsvg2/lablgtk3-rsvg2.3.1.5/opam: No space left on device
error: unable to create file packages/lablgtk3-sourceview3/lablgtk3-sourceview3.3.0.beta4/opam: No space left on device
error: unable to create file packages/lablgtk3/lablgtk3.3.0.beta5-1/opam: No space left on device
error: unable to create file packages/lablgtk3/lablgtk3.3.0.beta7/opam: No space left on device
error: unable to create file packages/labltk/labltk.8.06.11/opam: No space left on device
error: unable to create file packages/labltk/labltk.8.06.12/opam: No space left on device
error: unable to create file packages/labltk/labltk.8.06.7/opam: No space left on device
error: unable to create file packages/labltk/labltk.8.06.8/opam: No space left on device
error: unable to create file packages/labrys/labrys.0.1/opam: No space left on device
error: unable to create file packages/lacaml/lacaml.10.0.1/opam: No space left on device
error: unable to create file packages/lacaml/lacaml.10.0.2/opam: No space left on device
error: unable to create file packages/lacaml/lacaml.11.0.10/opam: No space left on device
error: unable to create file packages/lacaml/lacaml.7.2.2/opam: No space left on device
error: unable to create file packages/lambda-runtime/lambda-runtime.0.1.0/opam: No space left on device
error: unable to create file packages/lambdasoup/lambdasoup.0.7.2/opam: No space left on device
error: unable to create file packages/lame/lame.0.3.1/opam: No space left on device
error: unable to create file packages/lame/lame.0.3.3/opam: No space left on device
error: unable to create file packages/lascar/lascar.0.6-alpha/opam: No space left on device
error: unable to create file packages/lastfm/lastfm.0.3.2/opam: No space left on device
error: unable to create file packages/ldap/ldap.2.4.0/opam: No space left on device
error: unable to create file packages/ldap/ldap.2.4.1/opam: No space left on device
error: unable to create file packages/ldp/ldp.0.1.0/opam: No space left on device
error: unable to create file packages/ldp/ldp.0.3.0/opam: No space left on device
error: unable to create file packages/ldp/ldp.0.5.0/opam: No space left on device
error: unable to create file packages/ldp_curl/ldp_curl.0.1.0/opam: No space left on device
error: unable to create file packages/ldp_js/ldp_js.0.3.0/opam: No space left on device
error: unable to create file packages/ldp_js/ldp_js.0.5.0/opam: No space left on device
error: unable to create file packages/ldp_tls/ldp_tls.0.1.0/opam: No space left on device
error: unable to create file packages/ldp_tls/ldp_tls.0.3.0/opam: No space left on device
error: unable to create file packages/ledes/ledes.0.1.0/opam: No space left on device
error: unable to create file packages/ledgerwallet/ledgerwallet.0.4.1/opam: No space left on device
error: unable to create file packages/ledit/ledit.2.08/opam: No space left on device
error: unable to create file packages/lens/lens.1.0.0/opam: No space left on device
error: unable to create file packages/lens/lens.1.2.0/opam: No space left on device
error: unable to create file packages/lens/lens.1.2.1/opam: No space left on device
error: unable to create file packages/letsencrypt-dns/letsencrypt-dns.0.5.1/opam: No space left on device
error: unable to create file packages/letsencrypt-mirage/letsencrypt-mirage.0.5.1/opam: No space left on device
error: unable to create file packages/letsencrypt-mirage/letsencrypt-mirage.1.1.0/opam: No space left on device
error: unable to create file packages/letsencrypt/letsencrypt.1.0.0/opam: No space left on device
error: unable to create file packages/letters/letters.0.2.1/opam: No space left on device
error: unable to create file packages/letters/letters.0.3.0/opam: No space left on device
error: unable to create file packages/lib_parsing/lib_parsing.1.5.5/opam: No space left on device
error: unable to create file packages/libbinaryen/libbinaryen.108.0.0/opam: No space left on device
error: unable to create file packages/libbinaryen/libbinaryen.115.0.0/opam: No space left on device
error: unable to create file packages/libbinaryen/libbinaryen.116.0.0/opam: No space left on device
error: unable to create file packages/libbinaryen/libbinaryen.120.0.0-b/opam: No space left on device
error: unable to create file packages/libdash/libdash.0.1/opam: No space left on device
error: unable to create file packages/libsvm/libsvm.0.8.3/opam: No space left on device
error: unable to create file packages/libtorch/libtorch.1.1.0/opam: No space left on device
error: unable to create file packages/libtorch/libtorch.1.10.0+macos-x86_64/opam: No space left on device
error: unable to create file packages/libtorch/libtorch.1.13.0+macos-x86_64/opam: No space left on device
error: unable to create file packages/libtorch/libtorch.1.3.1/opam: No space left on device
error: unable to create file packages/libtorch/libtorch.1.4.0/opam: No space left on device
error: unable to create file packages/libtorch/libtorch.2.1.2+linux-x86_64/opam: No space left on device
error: unable to create file packages/libtorch/libtorch.2.2.1+linux-x86_64/opam: No space left on device
error: unable to create file packages/libwasmer/libwasmer.3.0.0~beta/opam: No space left on device
error: unable to create file packages/libzipperposition/libzipperposition.1.5.1/opam: No space left on device
error: unable to create file packages/lilac/lilac.0.1.1/opam: No space left on device
error: unable to create file packages/line-up-words/line-up-words.v0.17.0/opam: No space left on device
error: unable to create file packages/linkage/linkage.0.1/opam: No space left on device
error: unable to create file packages/links-mysql/links-mysql.0.9.2/opam: No space left on device
error: unable to create file packages/links/links.0.9/opam: No space left on device
error: unable to create file packages/linol-eio/linol-eio.0.7/opam: No space left on device
error: unable to create file packages/linol-lwt/linol-lwt.0.1/opam: No space left on device
error: unable to create file packages/linol-lwt/linol-lwt.0.2/opam: No space left on device
error: unable to create file packages/lintcstubs-arity/lintcstubs-arity.0.1.0/opam: No space left on device
error: unable to create file packages/lintcstubs-arity/lintcstubs-arity.0.2.0/opam: No space left on device
error: unable to create file packages/linwrap/linwrap.4.0.0/opam: No space left on device
error: unable to create file packages/linwrap/linwrap.5.0.0/opam: No space left on device
error: unable to create file packages/linwrap/linwrap.9.1.5/opam: No space left on device
error: unable to create file packages/liquid_interpreter/liquid_interpreter.0.1.2/opam: No space left on device
error: unable to create file packages/liquid_syntax/liquid_syntax.0.1.1/opam: No space left on device
error: unable to create file packages/liquidsoap-core/liquidsoap-core.2.3.0/opam: No space left on device
error: unable to create file packages/liquidsoap-daemon/liquidsoap-daemon.0.3.0/opam: No space left on device
error: unable to create file packages/liquidsoap-daemon/liquidsoap-daemon.0.3.1/opam: No space left on device
error: unable to create file packages/liquidsoap-daemon/liquidsoap-daemon.1.0.0/opam: No space left on device
error: unable to create file packages/liquidsoap-mode/liquidsoap-mode.2.4.2/opam: No space left on device
error: unable to create file packages/little_logger/little_logger.0.2.0/opam: No space left on device
error: unable to create file packages/little_logger/little_logger.0.3.0/opam: No space left on device
error: unable to create file packages/llopt/llopt.1.0.0/opam: No space left on device
error: unable to create file packages/llvm/llvm.12.0.1/opam: No space left on device
error: unable to create file packages/llvm/llvm.14.0.6/opam: No space left on device
error: unable to create file packages/llvm/llvm.17.0.6/opam: No space left on device
error: unable to create file packages/llvm/llvm.18-shared/opam: No space left on device
error: unable to create file packages/llvm/llvm.3.7/opam: No space left on device
error: unable to create file packages/llvm/llvm.3.8/opam: No space left on device
error: unable to create file packages/lo/lo.0.2.0/opam: No space left on device
error: unable to create file packages/logs-ppx/logs-ppx.0.1.0/opam: No space left on device
error: unable to create file packages/logs-ppx/logs-ppx.0.2.0/opam: No space left on device
error: unable to create file packages/logtk/logtk.1.5.1/opam: No space left on device
error: unable to create file packages/loop/loop.0.0.1/opam: No space left on device
error: unable to create file packages/lp-glpk-js/lp-glpk-js.0.4.0/opam: No space left on device
error: unable to create file packages/lp/lp.0.2.0/opam: No space left on device
error: unable to create file packages/lpi/lpi.0.0.1/opam: No space left on device
error: unable to create file packages/lreplay/lreplay.0.1/opam: No space left on device
error: unable to create file packages/lru/lru.0.1.0/opam: No space left on device
error: unable to create file packages/lsp/lsp.1.22.0/opam: No space left on device
error: unable to create file packages/lsp/lsp.1.23.0/opam: No space left on device
error: unable to create file packages/lsp/lsp.1.24.0/opam: No space left on device
error: unable to create file packages/lua_parser/lua_parser.1.0.0/opam: No space left on device
error: unable to create file packages/lua_parser/lua_parser.1.0.2/opam: No space left on device
error: unable to create file packages/lustre-v6/lustre-v6.6.103.3/opam: No space left on device
error: unable to create file packages/lutin/lutin.2.71.10/opam: No space left on device
error: unable to create file packages/luv/luv.0.5.0/opam: No space left on device
error: unable to create file packages/luv/luv.0.5.1/opam: No space left on device
error: unable to create file packages/luv/luv.0.5.4/opam: No space left on device
error: unable to create file packages/luv/luv.0.5.5/opam: No space left on device
error: unable to create file packages/luv/luv.0.5.8/opam: No space left on device
error: unable to create file packages/lwd/lwd.0.1/opam: No space left on device
error: unable to create file packages/lwd/lwd.0.2/opam: No space left on device
error: unable to create file packages/lwd/lwd.0.3/opam: No space left on device
error: unable to create file packages/lwt-zmq/lwt-zmq.2.1.0/opam: No space left on device
error: unable to create file packages/lwt/lwt.4.2.0/opam: No space left on device
error: unable to create file packages/lwt/lwt.4.3.0/opam: No space left on device
error: unable to create file packages/lwt/lwt.4.3.1/opam: No space left on device
error: unable to create file packages/lwt/lwt.4.4.0/opam: No space left on device
error: unable to create file packages/lwt/lwt.5.2.0/opam: No space left on device
error: unable to create file packages/lwt/lwt.5.6.1/opam: No space left on device
error: unable to create file packages/lwt/lwt.5.7.0/opam: No space left on device
error: unable to create file packages/lwt_domain/lwt_domain.0.1.0/opam: No space left on device
error: unable to create file packages/lwt_glib/lwt_glib.1.0.1/opam: No space left on device
error: unable to create file packages/lwt_glib/lwt_glib.1.1.0/opam: No space left on device
error: unable to create file packages/lwt_ppx/lwt_ppx.5.8.1/opam: No space left on device
error: unable to create file packages/lwt_ppx/lwt_ppx.6.0.0/opam: No space left on device
error: unable to create file packages/lwt_ssl/lwt_ssl.1.1.3/opam: No space left on device
error: unable to create file packages/lz4/lz4.1.1.1/opam: No space left on device
error: unable to create file packages/lz4_chans/lz4_chans.1.0.0/opam: No space left on device
error: unable to create file packages/lzo/lzo.0.0.3/opam: No space left on device
error: unable to create file packages/macaddr-cstruct/macaddr-cstruct.5.6.1/opam: No space left on device
error: unable to create file packages/macaddr-sexp/macaddr-sexp.5.6.0/opam: No space left on device
error: unable to create file packages/macaddr/macaddr.5.6.1/opam: No space left on device
error: unable to create file packages/mad/mad.0.5.2/opam: No space left on device
error: unable to create file packages/mad/mad.0.5.3/opam: No space left on device
error: unable to create file packages/malfunction/malfunction.0.3/opam: No space left on device
error: unable to create file packages/man_in_the_middle_debugger/man_in_the_middle_debugger.v0.16.0/opam: No space left on device
error: unable to create file packages/markup/markup.0.8.0/opam: No space left on device
error: unable to create file packages/markup/markup.0.8.1/opam: No space left on device
error: unable to create file packages/maxminddb/maxminddb.0.5/opam: No space left on device
error: unable to create file packages/mazeppa/mazeppa.0.5.2/opam: No space left on device
error: unable to create file packages/mccs/mccs.1.1+12/opam: No space left on device
error: unable to create file packages/mccs/mccs.1.1+14/opam: No space left on device
error: unable to create file packages/mccs/mccs.1.1+18/opam: No space left on device
error: unable to create file packages/mccs/mccs.1.1+19/opam: No space left on device
error: unable to create file packages/mccs/mccs.1.1+4/opam: No space left on device
error: unable to create file packages/mccs/mccs.1.1+6/opam: No space left on device
error: unable to create file packages/mdx/mdx.1.10.0/opam: No space left on device
error: unable to create file packages/mdx/mdx.1.10.1/opam: No space left on device
error: unable to create file packages/mehari-eio-unix/mehari-eio-unix.0.1/opam: No space left on device
error: unable to create file packages/mehari-lwt-unix/mehari-lwt-unix.0.4/opam: No space left on device
error: unable to create file packages/mehari/mehari.0.3/opam: No space left on device
error: unable to create file packages/mel-bastet/mel-bastet.1.0.0/opam: No space left on device
error: unable to create file packages/melange-json/melange-json.2.0.0/opam: No space left on device
error: unable to create file packages/melange-moment/melange-moment.0.3.0/opam: No space left on device
fatal: cannot create directory at 'packages/melange-radix-icons/melange-radix-icons.0.0.2': No space left on device
git-reset failed with exit-code 128
2026-01-27 19:34.26: Job failed: Failed: Build failed