Build:
  1. 0
2026-01-27 19:21.39: New job: test irmin-http.3.6.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 irmin-http.3.6.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" != 'irmin-http.3.6.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 irmin-http.3.6.1) || true
RUN opam reinstall --with-test --verbose irmin-http.3.6.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" != 'irmin-http.3.6.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-irmin-http.3.6.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 irmin-http.3.6.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\" != 'irmin-http.3.6.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 irmin-http.3.6.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose irmin-http.3.6.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\" != 'irmin-http.3.6.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:34.03: Waiting for worker…
2026-01-27 19:34.39: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
error: unable to create file CHANGES.md: No space left on device
error: unable to create file governance/README.md: No space left on device
error: unable to create file governance/policies/archiving.md: 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/CamelCase/CamelCase.0.2.0/opam: No space left on device
error: unable to create file packages/DAGaml/DAGaml.0.02/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/FrontC/FrontC.3.4.1/opam: No space left on device
error: unable to create file packages/GT/GT.0.4.2/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/ISO8601/ISO8601.0.2.4/opam: No space left on device
error: unable to create file packages/MlFront_Cache/MlFront_Cache.2.3.1/opam: No space left on device
error: unable to create file packages/MlFront_Cli/MlFront_Cli.2.4.2.30/opam: No space left on device
error: unable to create file packages/MlFront_Codept/MlFront_Codept.2.4.2.30/opam: No space left on device
error: unable to create file packages/MlFront_Exec/MlFront_Exec.2.4.2.30/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/OCADml/OCADml.0.4.1/opam: No space left on device
error: unable to create file packages/OCADml/OCADml.0.5.0/opam: No space left on device
error: unable to create file packages/OCanren/OCanren.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/SZXX/SZXX.0.1.0/opam: No space left on device
error: unable to create file packages/SZXX/SZXX.2.2.0/opam: No space left on device
error: unable to create file packages/SZXX/SZXX.3.0.2/opam: No space left on device
error: unable to create file packages/SZXX/SZXX.4.0.1/opam: No space left on device
error: unable to create file packages/Snowflake/Snowflake.0.01/opam: No space left on device
error: unable to create file packages/accessor_async/accessor_async.v0.15.0/opam: No space left on device
error: unable to create file packages/accessor_async/accessor_async.v0.17.0/opam: No space left on device
error: unable to create file packages/acgtk/acgtk.2.1.0/opam: No space left on device
error: unable to create file packages/acgtk/acgtk.2.2.0/opam: No space left on device
error: unable to create file packages/acpc/acpc.1.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/afl-persistent/afl-persistent.1.3/opam: No space left on device
error: unable to create file packages/aifad/aifad.2.3.2/opam: No space left on device
error: unable to create file packages/aio/aio.0.0.3/opam: No space left on device
error: unable to create file packages/alba/alba.0.4.3/opam: No space left on device
error: unable to create file packages/albatross/albatross.2.3.0/opam: No space left on device
error: unable to create file packages/albatross/albatross.2.4.1/opam: No space left on device
error: unable to create file packages/alcotest/alcotest.1.9.0/opam: No space left on device
error: unable to create file packages/alg_structs_qcheck/alg_structs_qcheck.0.1.3/opam: No space left on device
error: unable to create file packages/algaeff/algaeff.2.0.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.4.1/opam: No space left on device
error: unable to create file packages/alt-ergo-lib/alt-ergo-lib.2.4.3/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-lib/alt-ergo-lib.2.6.1/opam: No space left on device
error: unable to create file packages/alt-ergo-parsers/alt-ergo-parsers.2.3.3/opam: No space left on device
error: unable to create file packages/alt-ergo-plugin-ab-why3/alt-ergo-plugin-ab-why3.2.6.0/opam: No space left on device
error: unable to create file packages/alt-ergo/alt-ergo.0.95.2/opam: No space left on device
error: unable to create file packages/alt-ergo/alt-ergo.1.01/opam: No space left on device
error: unable to create file packages/alt-ergo/alt-ergo.2.3.2/opam: No space left on device
error: unable to create file packages/alt-ergo/alt-ergo.2.4.0/opam: No space left on device
error: unable to create file packages/alt-ergo/alt-ergo.2.4.2/opam: No space left on device
error: unable to create file packages/alt-ergo/alt-ergo.2.5.1/opam: No space left on device
error: unable to create file packages/alt-ergo/alt-ergo.2.5.2/opam: No space left on device
error: unable to create file packages/ambient-context-eio/ambient-context-eio.0.1.0/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/angstrom-async/angstrom-async.0.11.2/opam: No space left on device
error: unable to create file packages/angstrom-async/angstrom-async.0.16.0/opam: No space left on device
error: unable to create file packages/angstrom-unix/angstrom-unix.0.16.1/opam: No space left on device
error: unable to create file packages/angstrom-unix/angstrom-unix.0.6.0/opam: No space left on device
error: unable to create file packages/angstrom/angstrom.0.16.1/opam: No space left on device
error: unable to create file packages/angstrom/angstrom.0.6.0/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/antic/antic.0.1.5/opam: No space left on device
error: unable to create file packages/api-watch/api-watch.0.1.1/opam: No space left on device
error: unable to create file packages/archetype/archetype.0.1.11/opam: No space left on device
error: unable to create file packages/archetype/archetype.0.1.3/opam: No space left on device
error: unable to create file packages/archetype/archetype.1.2.14/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/arrayjit/arrayjit.0.5.2/opam: No space left on device
error: unable to create file packages/arrayjit/arrayjit.0.6.0/opam: No space left on device
error: unable to create file packages/asak/asak.0.3/opam: No space left on device
error: unable to create file packages/asetmap/asetmap.0.8.1/opam: No space left on device
error: unable to create file packages/ask-integrator/ask-integrator.0.2.0/opam: No space left on device
error: unable to create file packages/assertions/assertions.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.12.0/opam: No space left on device
error: unable to create file packages/async_find/async_find.v0.13.0/opam: No space left on device
error: unable to create file packages/async_inotify/async_inotify.v0.12.0/opam: No space left on device
error: unable to create file packages/async_shell/async_shell.v0.13.0/opam: No space left on device
error: unable to create file packages/async_ssl/async_ssl.v0.12.0/opam: No space left on device
error: unable to create file packages/async_ssl/async_ssl.v0.17.0-1/opam: No space left on device
error: unable to create file packages/async_ssl/async_ssl.v0.17.0/opam: No space left on device
error: unable to create file packages/async_unix/async_unix.v0.12.0/opam: No space left on device
error: unable to create file packages/async_websocket/async_websocket.v0.14.0/opam: No space left on device
error: unable to create file packages/async_websocket/async_websocket.v0.15.0/opam: No space left on device
error: unable to create file packages/atd/atd.1.0.2/opam: No space left on device
error: unable to create file packages/atd/atd.1.0.3/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.6.0/opam: No space left on device
error: unable to create file packages/atd2cconv/atd2cconv.0.0.0/opam: No space left on device
error: unable to create file packages/atdcpp/atdcpp.3.0.1/opam: No space left on device
error: unable to create file packages/atdd/atdd.2.14.1/opam: No space left on device
error: unable to create file packages/atdd/atdd.2.15.0/opam: No space left on device
error: unable to create file packages/atdd/atdd.2.16.0/opam: No space left on device
error: unable to create file packages/atdd/atdd.3.0.1/opam: No space left on device
error: unable to create file packages/atdgen/atdgen.2.13.0/opam: No space left on device
error: unable to create file packages/atdgen/atdgen.2.5.0/opam: No space left on device
error: unable to create file packages/atdgen/atdgen.2.6.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.1.13.0/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.4.0/opam: No space left on device
error: unable to create file packages/atds/atds.2.15.0/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/atdts/atdts.2.14.1/opam: No space left on device
error: unable to create file packages/atdts/atdts.2.15.0/opam: No space left on device
error: unable to create file packages/atdts/atdts.2.16.0/opam: No space left on device
error: unable to create file packages/awa-mirage/awa-mirage.0.4.0/opam: No space left on device
error: unable to create file packages/awa-mirage/awa-mirage.0.5.2/opam: No space left on device
error: unable to create file packages/aws-autoscaling/aws-autoscaling.0.1.0/opam: No space left on device
error: unable to create file packages/aws-autoscaling/aws-autoscaling.1.2/opam: No space left on device
error: unable to create file packages/aws-lwt/aws-lwt.1.2/opam: No space left on device
error: unable to create file packages/aws-s3-async/aws-s3-async.4.3.0/opam: No space left on device
error: unable to create file packages/aws-s3-async/aws-s3-async.4.6.0/opam: No space left on device
error: unable to create file packages/aws-s3-async/aws-s3-async.4.8.1/opam: No space left on device
error: unable to create file packages/aws-s3/aws-s3.4.2.0/opam: No space left on device
error: unable to create file packages/aws-s3/aws-s3.4.3.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/awsm/awsm.0.1.0/opam: No space left on device
error: unable to create file packages/azblob-async/azblob-async.0.1.0/opam: No space left on device
error: unable to create file packages/bap-abi/bap-abi.2.4.0/opam: No space left on device
error: unable to create file packages/bap-abi/bap-abi.2.5.0/opam: No space left on device
error: unable to create file packages/bap-analyze/bap-analyze.2.5.0/opam: No space left on device
error: unable to create file packages/bap-api/bap-api.2.1.0/opam: No space left on device
error: unable to create file packages/bap-beagle-strings/bap-beagle-strings.2.2.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-byteweight-frontend/bap-byteweight-frontend.2.4.0/opam: No space left on device
error: unable to create file packages/bap-cache/bap-cache.2.1.0/opam: No space left on device
error: unable to create file packages/bap-cache/bap-cache.2.2.0/opam: No space left on device
error: unable to create file packages/bap-cache/bap-cache.2.3.0/opam: No space left on device
error: unable to create file packages/bap-callsites/bap-callsites.2.5.0/opam: No space left on device
error: unable to create file packages/bap-constant-tracker/bap-constant-tracker.2.1.0/opam: No space left on device
error: unable to create file packages/bap-core-theory/bap-core-theory.2.2.0/opam: No space left on device
error: unable to create file packages/bap-core-theory/bap-core-theory.2.3.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-dwarf/bap-dwarf.2.2.0/opam: No space left on device
error: unable to create file packages/bap-dwarf/bap-dwarf.2.4.0/opam: No space left on device
error: unable to create file packages/bap-flatten/bap-flatten.2.5.0/opam: No space left on device
error: unable to create file packages/bap-frontc/bap-frontc.2.3.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-future/bap-future.2.4.0/opam: No space left on device
error: unable to create file packages/bap-glibc-runtime/bap-glibc-runtime.2.4.0/opam: No space left on device
error: unable to create file packages/bap-ida-plugin/bap-ida-plugin.2.1.0/opam: No space left on device
error: unable to create file packages/bap-ida/bap-ida.2.3.0/opam: No space left on device
error: unable to create file packages/bap-main/bap-main.2.3.0/opam: No space left on device
error: unable to create file packages/bap-main/bap-main.2.5.0/opam: No space left on device
error: unable to create file packages/bap-objdump/bap-objdump.2.1.0/opam: No space left on device
error: unable to create file packages/bap-objdump/bap-objdump.2.2.0/opam: No space left on device
error: unable to create file packages/bap-plugins/bap-plugins.2.5.0/opam: No space left on device
error: unable to create file packages/bap-powerpc/bap-powerpc.2.1.0/opam: No space left on device
error: unable to create file packages/bap-primus-limit/bap-primus-limit.2.4.0/opam: No space left on device
error: unable to create file packages/bap-primus-lisp/bap-primus-lisp.2.2.0/opam: No space left on device
error: unable to create file packages/bap-primus-powerpc/bap-primus-powerpc.2.1.0/opam: No space left on device
error: unable to create file packages/bap-primus-region/bap-primus-region.2.1.0/opam: No space left on device
error: unable to create file packages/bap-primus-region/bap-primus-region.2.3.0/opam: No space left on device
error: unable to create file packages/bap-primus-region/bap-primus-region.2.5.0/opam: No space left on device
error: unable to create file packages/bap-primus-round-robin-scheduler/bap-primus-round-robin-scheduler.2.2.0/opam: No space left on device
error: unable to create file packages/bap-primus-wandering-scheduler/bap-primus-wandering-scheduler.2.3.0/opam: No space left on device
error: unable to create file packages/bap-recipe/bap-recipe.2.2.0/opam: No space left on device
error: unable to create file packages/bap-recipe/bap-recipe.2.3.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-report/bap-report.2.5.0/opam: No space left on device
error: unable to create file packages/bap-specification/bap-specification.2.4.0/opam: No space left on device
error: unable to create file packages/bap-specification/bap-specification.2.5.0/opam: No space left on device
error: unable to create file packages/bap-std/bap-std.2.4.0/opam: No space left on device
error: unable to create file packages/bap-std/bap-std.2.5.0/opam: No space left on device
error: unable to create file packages/bap-strings/bap-strings.2.2.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-taint-propagator/bap-taint-propagator.2.2.0/opam: No space left on device
error: unable to create file packages/bap-toplevel/bap-toplevel.2.4.0/opam: No space left on device
error: unable to create file packages/bap-trace/bap-trace.2.1.0/opam: No space left on device
error: unable to create file packages/bap-trace/bap-trace.2.2.0/opam: No space left on device
error: unable to create file packages/bap-trace/bap-trace.2.3.0/opam: No space left on device
error: unable to create file packages/bap-trivial-condition-form/bap-trivial-condition-form.2.2.0/opam: No space left on device
error: unable to create file packages/bare_encoding/bare_encoding.0.3/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.2/opam: No space left on device
error: unable to create file packages/base/base.v0.17.1/opam: No space left on device
error: unable to create file packages/base/base.v0.17.2/opam: No space left on device
error: unable to create file packages/base/base.v0.17.3/opam: No space left on device
error: unable to create file packages/base32/base32.1.0.0/opam: No space left on device
error: unable to create file packages/base58/base58.0.1.0/opam: No space left on device
error: unable to create file packages/base58/base58.0.1.2/opam: No space left on device
error: unable to create file packages/base_bigstring/base_bigstring.v0.15.0/opam: No space left on device
error: unable to create file packages/bastet/bastet.2.0.0/opam: No space left on device
error: unable to create file packages/bastet_async/bastet_async.0.1.0/opam: No space left on device
error: unable to create file packages/batsat/batsat.0.7/opam: No space left on device
error: unable to create file packages/batteries/batteries.3.7.1/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/bddapron/bddapron.2.3.2/opam: No space left on device
error: unable to create file packages/bechamel-perf/bechamel-perf.0.5.0/opam: No space left on device
error: unable to create file packages/bechamel/bechamel.0.2.0/opam: No space left on device
error: unable to create file packages/beluga/beluga.1.1.2/opam: No space left on device
error: unable to create file packages/beluga/beluga.1.1/opam: No space left on device
error: unable to create file packages/benchmark/benchmark.1.4/opam: No space left on device
error: unable to create file packages/bencode/bencode.1.0.0/opam: No space left on device
error: unable to create file packages/bencode/bencode.1.0.1/opam: No space left on device
error: unable to create file packages/bheap/bheap.1.0.0/opam: No space left on device
error: unable to create file packages/bibtex2html/bibtex2html.1.99-1/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/bigdecimal/bigdecimal.v0.16.0/opam: No space left on device
error: unable to create file packages/bigstringaf/bigstringaf.0.1.0/opam: No space left on device
error: unable to create file packages/bimage-display/bimage-display.0.3.0/opam: No space left on device
error: unable to create file packages/bimage-display/bimage-display.0.3.1/opam: No space left on device
error: unable to create file packages/bimage-display/bimage-display.0.4.0/opam: No space left on device
error: unable to create file packages/bimage-lwt/bimage-lwt.0.3.1/opam: No space left on device
error: unable to create file packages/bimage-sdl/bimage-sdl.0.1.1/opam: No space left on device
error: unable to create file packages/bimage/bimage.0.6.0/opam: No space left on device
error: unable to create file packages/bimap/bimap.20201231/opam: No space left on device
error: unable to create file packages/binary_tree/binary_tree.1.0/opam: No space left on device
error: unable to create file packages/binaryen-bin/binaryen-bin.119/opam: No space left on device
error: unable to create file packages/binaryen/binaryen.0.1.0/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.3/opam: No space left on device
error: unable to create file packages/binaryen/binaryen.0.20.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.6.0/opam: No space left on device
error: unable to create file packages/binaryen/binaryen.0.7.0/opam: No space left on device
error: unable to create file packages/bindlib/bindlib.5.0.1/opam: No space left on device
error: unable to create file packages/binsec/binsec.0.11.0/opam: No space left on device
error: unable to create file packages/binsec/binsec.0.4.0/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.7.2/opam: No space left on device
error: unable to create file packages/bio_io/bio_io.0.7.0/opam: No space left on device
error: unable to create file packages/biocaml/biocaml.0.10.0/opam: No space left on device
error: unable to create file packages/bip32/bip32.0.1/opam: No space left on device
error: unable to create file packages/bip32/bip32.0.2/opam: No space left on device
error: unable to create file packages/bisect-summary/bisect-summary.0.3/opam: No space left on device
error: unable to create file packages/bisect/bisect.1.3.1/opam: No space left on device
error: unable to create file packages/bisect_ppx/bisect_ppx.2.4.1/opam: No space left on device
error: unable to create file packages/bisect_ppx/bisect_ppx.2.5.0/opam: No space left on device
error: unable to create file packages/bitmasks/bitmasks.1.5.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.3.1.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/bitstring/bitstring.4.0.1/opam: No space left on device
error: unable to create file packages/bitv/bitv.2.1/opam: No space left on device
error: unable to create file packages/bitvec-binprot/bitvec-binprot.2.1.0/opam: No space left on device
error: unable to create file packages/bitwuzla-c/bitwuzla-c.1.0.0/opam: No space left on device
error: unable to create file packages/bitwuzla-cxx/bitwuzla-cxx.0.8.0/opam: No space left on device
error: unable to create file packages/bitwuzla-cxx/bitwuzla-cxx.0.8.2/opam: No space left on device
error: unable to create file packages/bitwuzla/bitwuzla.1.0.1/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-hash/bls12-381-hash.0.0.3/opam: No space left on device
error: unable to create file packages/bls12-381-hash/bls12-381-hash.0.0.5/opam: No space left on device
error: unable to create file packages/bls12-381-hash/bls12-381-hash.1.0.0/opam: No space left on device
error: unable to create file packages/bls12-381-signature/bls12-381-signature.1.0.0/opam: No space left on device
error: unable to create file packages/bls12-381/bls12-381.0.4.3/opam: No space left on device
error: unable to create file packages/bls12-381/bls12-381.0.5.0/opam: No space left on device
error: unable to create file packages/bls12-381/bls12-381.3.0.1/opam: No space left on device
error: unable to create file packages/bls12-381/bls12-381.3.0.2/opam: No space left on device
error: unable to create file packages/bls12-381/bls12-381.6.1.0/opam: No space left on device
error: unable to create file packages/blurhash/blurhash.0.1.0/opam: No space left on device
error: unable to create file packages/bn128/bn128.0.1.2/opam: No space left on device
error: unable to create file packages/bn128/bn128.0.1.3/opam: No space left on device
error: unable to create file packages/bogue/bogue.20220115/opam: No space left on device
error: unable to create file packages/bogue/bogue.20250224/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/bos/bos.0.1.4/opam: No space left on device
error: unable to create file packages/bos/bos.0.2.1/opam: No space left on device
error: unable to create file packages/brotli/brotli.1.2.0/opam: No space left on device
error: unable to create file packages/brotli/brotli.1.2.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/bsdowl/bsdowl.3.0.0-20150830/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/bytepdf/bytepdf.0.1/opam: No space left on device
error: unable to create file packages/ca-certs-nss/ca-certs-nss.3.114/opam: No space left on device
error: unable to create file packages/ca-certs-nss/ca-certs-nss.3.115/opam: No space left on device
error: unable to create file packages/ca-certs-nss/ca-certs-nss.3.117/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/ca-certs/ca-certs.1.0.1/opam: No space left on device
error: unable to create file packages/cachet-lwt/cachet-lwt.0.0.2/opam: No space left on device
error: unable to create file packages/cairo2-gtk/cairo2-gtk.0.6.1/opam: No space left on device
error: unable to create file packages/cairo2-gtk/cairo2-gtk.0.6.2/opam: No space left on device
error: unable to create file packages/cairo2-gtk/cairo2-gtk.0.6.3/opam: No space left on device
error: unable to create file packages/cairo2/cairo2.0.5/opam: No space left on device
error: unable to create file packages/caisar-nnet/caisar-nnet.0.1/opam: No space left on device
error: unable to create file packages/caisar-nnet/caisar-nnet.0.2/opam: No space left on device
error: unable to create file packages/caisar-onnx/caisar-onnx.0.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/calculon/calculon.0.5/opam: No space left on device
error: unable to create file packages/camelot/camelot.0.5/opam: No space left on device
error: unable to create file packages/camelot/camelot.1.6.0/opam: No space left on device
error: unable to create file packages/camelot/camelot.1.6.2/opam: No space left on device
error: unable to create file packages/camelot/camelot.1.7.1/opam: No space left on device
error: unable to create file packages/camelsnakekebab/camelsnakekebab.0.4/opam: No space left on device
error: unable to create file packages/caml-mode/caml-mode.4.02/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/camlimages/camlimages.5.0.4-1/opam: No space left on device
error: unable to create file packages/camlimages/camlimages.5.0.5/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-gui/camlkit-gui.0.3.0/opam: No space left on device
error: unable to create file packages/camllib/camllib.1.3.2/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.4.04+1/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.4.04+system/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.4.05+1/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.4.09+system/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.4.10+1/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.4.11+system/opam: No space left on device
error: unable to create file packages/camlp4/camlp4.5.0/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/camlp4/camlp4.5.4/opam: No space left on device
error: unable to create file packages/camlp5/camlp5.7.14/opam: No space left on device
error: unable to create file packages/camlp5/camlp5.8.00.02/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/camlp5/camlp5.8.03.05/opam: No space left on device
error: unable to create file packages/camlpdf/camlpdf.2.8.1/opam: No space left on device
error: unable to create file packages/camlpdf/camlpdf.2.8/opam: No space left on device
error: unable to create file packages/camlrack/camlrack.0.10.1/opam: No space left on device
error: unable to create file packages/camyll/camyll.0.2.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/capnp-rpc-unix/capnp-rpc-unix.1.2.4/opam: No space left on device
error: unable to create file packages/capnp-rpc-unix/capnp-rpc-unix.2.1/opam: No space left on device
error: unable to create file packages/capnp/capnp.3.2.1/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/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.2.0/opam: No space left on device
error: unable to create file packages/caqti-driver-mariadb/caqti-driver-mariadb.1.2.1/opam: No space left on device
error: unable to create file packages/caqti-driver-mariadb/caqti-driver-mariadb.1.8.0/opam: No space left on device
error: unable to create file packages/caqti-driver-mariadb/caqti-driver-mariadb.1.9.0/opam: No space left on device
error: unable to create file packages/caqti-driver-mariadb/caqti-driver-mariadb.2.2.4/opam: No space left on device
error: unable to create file packages/caqti-driver-postgresql/caqti-driver-postgresql.1.0.0/opam: No space left on device
error: unable to create file packages/caqti-driver-postgresql/caqti-driver-postgresql.1.1.0/opam: No space left on device
error: unable to create file packages/caqti-driver-postgresql/caqti-driver-postgresql.1.2.0/opam: No space left on device
error: unable to create file packages/caqti-driver-postgresql/caqti-driver-postgresql.2.1.1/opam: No space left on device
error: unable to create file packages/caqti-driver-postgresql/caqti-driver-postgresql.2.2.4/opam: No space left on device
error: unable to create file packages/caqti-driver-sqlite3/caqti-driver-sqlite3.1.7.0/opam: No space left on device
error: unable to create file packages/caqti-dynload/caqti-dynload.0.11.0/opam: No space left on device
error: unable to create file packages/caqti-dynload/caqti-dynload.2.0.1/opam: No space left on device
error: unable to create file packages/caqti-eio/caqti-eio.2.0.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/caqti.1.3.0/opam: No space left on device
error: unable to create file packages/caqti/caqti.1.4.0/opam: No space left on device
error: unable to create file packages/caqti/caqti.1.5.0/opam: No space left on device
error: unable to create file packages/carton-lwt/carton-lwt.0.7.2/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/catala/catala.0.2.0/opam: No space left on device
error: unable to create file packages/catala/catala.0.3.0/opam: No space left on device
error: unable to create file packages/catala/catala.1.0.0~alpha/opam: No space left on device
error: unable to create file packages/catapult-client/catapult-client.0.1.1/opam: No space left on device
error: unable to create file packages/catapult-daemon/catapult-daemon.0.1.1/opam: No space left on device
error: unable to create file packages/catapult-daemon/catapult-daemon.0.1/opam: No space left on device
error: unable to create file packages/catapult-daemon/catapult-daemon.0.2/opam: No space left on device
error: unable to create file packages/catapult-file/catapult-file.0.1.1/opam: No space left on device
error: unable to create file packages/catapult-file/catapult-file.0.1/opam: No space left on device
error: unable to create file packages/cdrom/cdrom.0.9.1/opam: No space left on device
error: unable to create file packages/ceph/ceph.20240106/opam: No space left on device
error: unable to create file packages/certify/certify.0.3.3/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/cf-lwt/cf-lwt.0.5.0/opam: No space left on device
error: unable to create file packages/cf/cf.0.4/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/chamelon.0.0.7/opam: No space left on device
error: unable to create file packages/charInfo_width/charInfo_width.2.0.0/opam: No space left on device
error: unable to create file packages/charrua-client/charrua-client.1.5.0/opam: No space left on device
error: unable to create file packages/charrua-client/charrua-client.2.1.0/opam: No space left on device
error: unable to create file packages/charrua/charrua.1.5.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/charrua/charrua.3.0.0/opam: No space left on device
error: unable to create file packages/chartjs-annotation/chartjs-annotation.0.2.2/opam: No space left on device
error: unable to create file packages/checked_oint/checked_oint.0.2.2/opam: No space left on device
error: unable to create file packages/checked_oint/checked_oint.0.4.1/opam: No space left on device
error: unable to create file packages/checked_oint/checked_oint.1.0.0/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/checkseum/checkseum.0.3.1/opam: No space left on device
error: unable to create file packages/chess_com_api/chess_com_api.1.0.0/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.20.1/opam: No space left on device
error: unable to create file packages/chrome-trace/chrome-trace.3.20.2/opam: No space left on device
error: unable to create file packages/cinaps/cinaps.v0.12.0/opam: No space left on device
error: unable to create file packages/clangml-transforms/clangml-transforms.0.24/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/clangml/clangml.3.5.0/opam: No space left on device
error: unable to create file packages/clangml/clangml.3.9.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/climate/climate.0.6.0/opam: No space left on device
error: unable to create file packages/climate/climate.0.8.6/opam: No space left on device
error: unable to create file packages/climate/climate.0.8.7/opam: No space left on device
error: unable to create file packages/cloudi/cloudi.1.8.0/opam: No space left on device
error: unable to create file packages/cloudi/cloudi.2.0.4/opam: No space left on device
error: unable to create file packages/cmdlang-stdlib-runner/cmdlang-stdlib-runner.0.0.10/opam: No space left on device
error: unable to create file packages/cmdliner-stdlib/cmdliner-stdlib.1.0.0/opam: No space left on device
error: unable to create file packages/cmdliner-stdlib/cmdliner-stdlib.1.0.1/opam: No space left on device
error: unable to create file packages/cmdliner/cmdliner.1.3.0/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/cmdtui/cmdtui.0.3.0/opam: No space left on device
error: unable to create file packages/codept-lib/codept-lib.0.12.1/opam: No space left on device
error: unable to create file packages/cohttp-async/cohttp-async.2.5.2-1/opam: No space left on device
error: unable to create file packages/cohttp-async/cohttp-async.4.1.2/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-async/cohttp-async.6.0.0~beta2/opam: No space left on device
error: unable to create file packages/cohttp-eio/cohttp-eio.6.1.0/opam: No space left on device
error: unable to create file packages/cohttp-eio/cohttp-eio.6.2.1/opam: No space left on device
error: unable to create file packages/cohttp-lwt-jsoo/cohttp-lwt-jsoo.2.5.8/opam: No space left on device
error: unable to create file packages/cohttp-lwt/cohttp-lwt.4.1.2/opam: No space left on device
error: unable to create file packages/cohttp-lwt/cohttp-lwt.5.1.0/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-top/cohttp-top.6.2.1/opam: No space left on device
error: unable to create file packages/cohttp/cohttp.1.0.0/opam: No space left on device
error: unable to create file packages/cohttp/cohttp.1.1.1/opam: No space left on device
error: unable to create file packages/cohttp/cohttp.4.0.0/opam: No space left on device
error: unable to create file packages/cohttp/cohttp.5.1.0/opam: No space left on device
error: unable to create file packages/cohttp/cohttp.5.3.1/opam: No space left on device
error: unable to create file packages/cohttp/cohttp.6.0.0/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/colibri2/colibri2.0.4/opam: No space left on device
error: unable to create file packages/colibrics/colibrics.0.3.3/opam: No space left on device
error: unable to create file packages/colombe/colombe.0.12.1/opam: No space left on device
error: unable to create file packages/colombe/colombe.0.2.0/opam: No space left on device
error: unable to create file packages/colombe/colombe.0.7.0/opam: No space left on device
error: unable to create file packages/colombe/colombe.0.8.0/opam: No space left on device
error: unable to create file packages/colombe/colombe.0.9.0/opam: No space left on device
error: unable to create file packages/color-brewery/color-brewery.0.1/opam: No space left on device
error: unable to create file packages/comby-semantic/comby-semantic.1.7.0/opam: No space left on device
error: unable to create file packages/comby/comby.1.2.2/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/conan.0.0.1/opam: No space left on device
error: unable to create file packages/conan/conan.0.0.3/opam: No space left on device
error: unable to create file packages/conan/conan.0.0.4/opam: No space left on device
error: unable to create file packages/conduit-async/conduit-async.5.1.0/opam: No space left on device
error: unable to create file packages/conduit-async/conduit-async.6.2.3/opam: No space left on device
error: unable to create file packages/conduit-async/conduit-async.8.0.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-unix/conduit-lwt-unix.7.0.0/opam: No space left on device
error: unable to create file packages/conduit-lwt/conduit-lwt.7.1.0/opam: No space left on device
error: unable to create file packages/conduit/conduit.6.2.2/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/conduit/conduit.8.0.0/opam: No space left on device
error: unable to create file packages/conf-antic/conf-antic.1/opam: No space left on device
error: unable to create file packages/conf-ao/conf-ao.1/opam: No space left on device
error: unable to create file packages/conf-bash/conf-bash.1/opam: No space left on device
error: unable to create file packages/conf-brotli/conf-brotli.0.0.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.0/opam: No space left on device
error: unable to create file packages/conf-dbm/conf-dbm.1.0.0/opam: No space left on device
error: unable to create file packages/conf-diffutils/conf-diffutils.1.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-env-travis/conf-env-travis.1/opam: No space left on device
error: unable to create file packages/conf-expat/conf-expat.1/opam: No space left on device
error: unable to create file packages/conf-freeglut/conf-freeglut.1/opam: No space left on device
error: unable to create file packages/conf-fswatch/conf-fswatch.11-0.1.0/opam: No space left on device
error: unable to create file packages/conf-glade/conf-glade.2/opam: No space left on device
error: unable to create file packages/conf-glfw3/conf-glfw3.2/opam: No space left on device
error: unable to create file packages/conf-gnomecanvas/conf-gnomecanvas.2/opam: No space left on device
error: unable to create file packages/conf-gnuplot/conf-gnuplot.0.1/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-leveldb/conf-leveldb.2/opam: No space left on device
error: unable to create file packages/conf-libdw/conf-libdw.1/opam: No space left on device
error: unable to create file packages/conf-libgif/conf-libgif.1/opam: No space left on device
error: unable to create file packages/conf-liblinear-tools/conf-liblinear-tools.1.0.0/opam: No space left on device
error: unable to create file packages/conf-libpcre/conf-libpcre.2/opam: No space left on device
error: unable to create file packages/conf-liburing/conf-liburing.0.1.0/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-libxi/conf-libxi.1/opam: No space left on device
error: unable to create file packages/conf-llvm-shared/conf-llvm-shared.18/opam: No space left on device
error: unable to create file packages/conf-llvm-shared/conf-llvm-shared.19/opam: No space left on device
error: unable to create file packages/conf-llvm/conf-llvm.10.0.0/opam: No space left on device
error: unable to create file packages/conf-llvm/conf-llvm.13.0.0/opam: No space left on device
error: unable to create file packages/conf-llvm/conf-llvm.14.0.6/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-mad/conf-mad.1/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-g++-i686/conf-mingw-w64-g++-i686.1/opam: No space left on device
error: unable to create file packages/conf-mingw-w64-gcc-i686/conf-mingw-w64-gcc-i686.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-glade-x86_64/conf-mingw-w64-glade-x86_64.1/opam: No space left on device
error: unable to create file packages/conf-mingw-w64-gtk3-i686/conf-mingw-w64-gtk3-i686.1/opam: No space left on device
error: unable to create file packages/conf-mingw-w64-gtk3-x86_64/conf-mingw-w64-gtk3-x86_64.1/opam: No space left on device
error: unable to create file packages/conf-mingw-w64-libevent-i686/conf-mingw-w64-libevent-i686.1/opam: No space left on device
error: unable to create file packages/conf-mingw-w64-ncurses-i686/conf-mingw-w64-ncurses-i686.1/opam: No space left on device
error: unable to create file packages/conf-mingw-w64-ncurses-x86_64/conf-mingw-w64-ncurses-x86_64.1/opam: No space left on device
error: unable to create file packages/conf-mingw-w64-nettle-i686/conf-mingw-w64-nettle-i686.1/opam: No space left on device
error: unable to create file packages/conf-mingw-w64-zlib-i686/conf-mingw-w64-zlib-i686.1/opam: No space left on device
error: unable to create file packages/conf-mingw-w64-zstd-x86_64/conf-mingw-w64-zstd-x86_64.1/opam: No space left on device
error: unable to create file packages/conf-netsnmp/conf-netsnmp.1.0.0/opam: No space left on device
error: unable to create file packages/conf-nlopt/conf-nlopt.1/opam: No space left on device
error: unable to create file packages/conf-openbabel/conf-openbabel.0.1/opam: No space left on device
error: unable to create file packages/conf-openblas/conf-openblas.0.2.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-string-shellquote/conf-perl-string-shellquote.3/opam: No space left on device
error: unable to create file packages/conf-protoc/conf-protoc.4.4.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-python-3-dev/conf-python-3-dev.1/opam: No space left on device
error: unable to create file packages/conf-python-3/conf-python-3.1.0.0/opam: No space left on device
error: unable to create file packages/conf-python-3/conf-python-3.9.0.0/opam: No space left on device
error: unable to create file packages/conf-python3-pyparsing/conf-python3-pyparsing.1/opam: No space left on device
error: unable to create file packages/conf-python3-tomli/conf-python3-tomli.1/opam: No space left on device
error: unable to create file packages/conf-python3-yaml/conf-python3-yaml.1/opam: No space left on device
error: unable to create file packages/conf-qemu-img/conf-qemu-img.1/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-scdoc/conf-scdoc.1/opam: No space left on device
error: unable to create file packages/conf-sfml2/conf-sfml2.1/opam: No space left on device
error: unable to create file packages/conf-shine/conf-shine.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-taglib/conf-taglib.1/opam: No space left on device
error: unable to create file packages/conf-taglib_c/conf-taglib_c.1/opam: No space left on device
error: unable to create file packages/conf-tk/conf-tk.1/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-zmq/conf-zmq.0.1/opam: No space left on device
error: unable to create file packages/config/config.0.0.1/opam: No space left on device
error: unable to create file packages/configuration/configuration.0.4.1/opam: No space left on device
error: unable to create file packages/conformist/conformist.0.8.1/opam: No space left on device
error: unable to create file packages/conjury/conjury.2.1.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-data/containers-data.3.11/opam: No space left on device
error: unable to create file packages/containers-data/containers-data.3.12/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-thread/containers-thread.3.6.1/opam: No space left on device
error: unable to create file packages/containers/containers.3.13/opam: No space left on device
error: unable to create file packages/containers/containers.3.17/opam: No space left on device
error: unable to create file packages/containers/containers.3.7/opam: No space left on device
error: unable to create file packages/containers/containers.3.8/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.18.0/opam: No space left on device
error: unable to create file packages/coq-core/coq-core.9.0.1/opam: No space left on device
error: unable to create file packages/coq-lsp/coq-lsp.0.1.5+8.16/opam: No space left on device
error: unable to create file packages/coq-lsp/coq-lsp.0.1.8+8.18/opam: No space left on device
error: unable to create file packages/coq-lsp/coq-lsp.0.1.8+8.19/opam: No space left on device
error: unable to create file packages/coq-lsp/coq-lsp.0.1.9+8.17/opam: No space left on device
error: unable to create file packages/coq-of-ocaml/coq-of-ocaml.2.3.0/opam: No space left on device
error: unable to create file packages/coq-serapi/coq-serapi.8.11.0+0.11.1/opam: No space left on device
error: unable to create file packages/coq-serapi/coq-serapi.8.12.0+0.12.1/opam: No space left on device
error: unable to create file packages/coq-serapi/coq-serapi.8.15.0+0.15.3/opam: No space left on device
error: unable to create file packages/coq-serapi/coq-serapi.8.15.0+0.15.4/opam: No space left on device
error: unable to create file packages/coq-serapi/coq-serapi.8.16.0+0.16.1/opam: No space left on device
error: unable to create file packages/coq-serapi/coq-serapi.8.8.0+0.5.4/opam: No space left on device
error: unable to create file packages/coq-stdlib/coq-stdlib.8.20.1/opam: No space left on device
error: unable to create file packages/coq-waterproof/coq-waterproof.2.1.1+8.18/opam: No space left on device
error: unable to create file packages/coq-waterproof/coq-waterproof.2.2.0+8.17/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.10.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/coq/coq.8.13.2/opam: No space left on device
error: unable to create file packages/coq/coq.8.7.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/coqide-server/coqide-server.8.20.0/opam: No space left on device
error: unable to create file packages/coqide-server/coqide-server.8.20.1/opam: No space left on device
error: unable to create file packages/coqide-server/coqide-server.9.0.1/opam: No space left on device
error: unable to create file packages/coqide-server/coqide-server.9.1.0/opam: No space left on device
error: unable to create file packages/cordova-plugin-activity-indicator/cordova-plugin-activity-indicator.1.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-file-transfer/cordova-plugin-file-transfer.1.0/opam: No space left on device
error: unable to create file packages/cordova-plugin-file/cordova-plugin-file.1.0/opam: No space left on device
error: unable to create file packages/cordova-plugin-image-picker/cordova-plugin-image-picker.1.0/opam: No space left on device
error: unable to create file packages/cordova-plugin-local-notifications/cordova-plugin-local-notifications.1.0/opam: No space left on device
error: unable to create file packages/cordova-plugin-touch-id/cordova-plugin-touch-id.1.0/opam: No space left on device
error: unable to create file packages/core/core.v0.12.3/opam: No space left on device
error: unable to create file packages/core/core.v0.16.1/opam: No space left on device
error: unable to create file packages/core/core.v0.17.1/opam: No space left on device
error: unable to create file packages/core_bench/core_bench.v0.12.0/opam: No space left on device
error: unable to create file packages/core_bench/core_bench.v0.13.0/opam: No space left on device
error: unable to create file packages/core_profiler/core_profiler.v0.16.0/opam: No space left on device
error: unable to create file packages/core_unix/core_unix.v0.14.0/opam: No space left on device
error: unable to create file packages/corosync/corosync.0.0.1/opam: No space left on device
error: unable to create file packages/cpdf/cpdf.2.5/opam: No space left on device
error: unable to create file packages/cpm/cpm.10.0.0/opam: No space left on device
error: unable to create file packages/cpm/cpm.10.2.1/opam: No space left on device
error: unable to create file packages/cpm/cpm.12.1.2/opam: No space left on device
error: unable to create file packages/cpm/cpm.3.0.0/opam: No space left on device
error: unable to create file packages/cpm/cpm.6.0.0/opam: No space left on device
error: unable to create file packages/cppo/cppo.1.6.1/opam: No space left on device
error: unable to create file packages/cppo/cppo.1.6.2/opam: No space left on device
error: unable to create file packages/cpuid/cpuid.0.0.1/opam: No space left on device
error: unable to create file packages/crontab/crontab.0.1/opam: No space left on device
error: unable to create file packages/crs/crs.0.0.20250620/opam: No space left on device
error: unable to create file packages/crs/crs.0.0.20250705/opam: No space left on device
error: unable to create file packages/cry/cry.0.6.5/opam: No space left on device
error: unable to create file packages/cryptoverif/cryptoverif.2.02/opam: No space left on device
error: unable to create file packages/cryptoverif/cryptoverif.2.08pl1/opam: No space left on device
error: unable to create file packages/cryptoverif/cryptoverif.2.10/opam: No space left on device
error: unable to create file packages/csexp/csexp.1.4.0/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/cstruct-sexp/cstruct-sexp.5.1.1/opam: No space left on device
error: unable to create file packages/csv-lwt/csv-lwt.2.1/opam: No space left on device
error: unable to create file packages/csv-lwt/csv-lwt.2.2/opam: No space left on device
error: unable to create file packages/csv-lwt/csv-lwt.2.3/opam: No space left on device
error: unable to create file packages/csv/csv.1.4/opam: No space left on device
error: unable to create file packages/csv/csv.1.5/opam: No space left on device
error: unable to create file packages/csv/csv.1.6/opam: No space left on device
error: unable to create file packages/csv/csv.2.1/opam: No space left on device
error: unable to create file packages/csv/csv.2.4/opam: No space left on device
error: unable to create file packages/ctypes-foreign/ctypes-foreign.0.18.0/opam: No space left on device
error: unable to create file packages/ctypes-foreign/ctypes-foreign.0.21.1/opam: No space left on device
error: unable to create file packages/ctypes/ctypes.0.14.0/opam: No space left on device
error: unable to create file packages/ctypes/ctypes.0.15.0/opam: No space left on device
error: unable to create file packages/ctypes/ctypes.0.9.4/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.7.0/opam: No space left on device
error: unable to create file packages/cudajit/cudajit.0.7.1/opam: No space left on device
error: unable to create file packages/cudajit/cudajit.0.7.2/opam: No space left on device
error: unable to create file packages/cudf/cudf.0.6.3/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/current/current.0.7.2/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.3/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_gitlab/current_gitlab.0.7.3/opam: No space left on device
error: unable to create file packages/current_incr/current_incr.0.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/curses/curses.1.0.6/opam: No space left on device
error: unable to create file packages/curses/curses.1.0.9/opam: No space left on device
error: unable to create file packages/dap/dap.1.0.0/opam: No space left on device
error: unable to create file packages/data-encoding/data-encoding.0.4/opam: No space left on device
error: unable to create file packages/data-encoding/data-encoding.0.5.3/opam: No space left on device
error: unable to create file packages/data-encoding/data-encoding.0.7.1/opam: No space left on device
error: unable to create file packages/data-encoding/data-encoding.0.7/opam: No space left on device
error: unable to create file packages/dates_calc/dates_calc.0.0.1/opam: No space left on device
error: unable to create file packages/dates_calc/dates_calc.0.0.3/opam: No space left on device
error: unable to create file packages/dates_calc/dates_calc.0.0.5/opam: No space left on device
error: unable to create file packages/debian-formats/debian-formats.0.1.1/opam: No space left on device
error: unable to create file packages/decoders-bencode/decoders-bencode.0.3.0/opam: No space left on device
error: unable to create file packages/decoders-bencode/decoders-bencode.0.4.0/opam: No space left on device
error: unable to create file packages/decoders-bencode/decoders-bencode.0.6.0/opam: No space left on device
error: unable to create file packages/decoders-bencode/decoders-bencode.0.7.0/opam: No space left on device
error: unable to create file packages/decoders-bencode/decoders-bencode.1.0.0/opam: No space left on device
error: unable to create file packages/decoders-cbor/decoders-cbor.0.7.0/opam: No space left on device
error: unable to create file packages/decoders-sexplib/decoders-sexplib.0.3.0/opam: No space left on device
error: unable to create file packages/decoders-sexplib/decoders-sexplib.0.6.0/opam: No space left on device
error: unable to create file packages/decoders-yojson/decoders-yojson.0.1.0/opam: No space left on device
error: unable to create file packages/decompress/decompress.0.8.1/opam: No space left on device
error: unable to create file packages/decompress/decompress.1.0.0/opam: No space left on device
error: unable to create file packages/decompress/decompress.1.2.0/opam: No space left on device
error: unable to create file packages/delimcc/delimcc.2023.06.17/opam: No space left on device
error: unable to create file packages/delimcc_of_fxhandler/delimcc_of_fxhandler.0.1/opam: No space left on device
error: unable to create file packages/depext/depext.0.9.0/opam: No space left on device
error: unable to create file packages/devkit/devkit.1.0/opam: No space left on device
error: unable to create file packages/diffast-cli/diffast-cli.0.2/opam: No space left on device
error: unable to create file packages/diffast-cli/diffast-cli.0.3.5.1/opam: No space left on device
error: unable to create file packages/diffast-core/diffast-core.0.1.1/opam: No space left on device
error: unable to create file packages/diffast-core/diffast-core.0.2/opam: No space left on device
error: unable to create file packages/diffast-langs-cpp-parsing-cli/diffast-langs-cpp-parsing-cli.0.3.6/opam: No space left on device
error: unable to create file packages/diffast-langs-cpp-spec/diffast-langs-cpp-spec.0.1.1/opam: No space left on device
error: unable to create file packages/diffast-langs-cpp/diffast-langs-cpp.0.1.1/opam: No space left on device
error: unable to create file packages/diffast-langs-cpp/diffast-langs-cpp.0.3.5.1/opam: No space left on device
error: unable to create file packages/diffast-langs-fortran-parsing/diffast-langs-fortran-parsing.0.2/opam: No space left on device
error: unable to create file packages/diffast-langs-fortran-parsing/diffast-langs-fortran-parsing.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.2/opam: No space left on device
error: unable to create file packages/diffast-langs-fortran/diffast-langs-fortran.0.1.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-verilog-parsing/diffast-langs-verilog-parsing.0.2/opam: No space left on device
error: unable to create file packages/diffast-langs-verilog-spec/diffast-langs-verilog-spec.0.3.5.1/opam: No space left on device
error: unable to create file packages/directories/directories.0.4/opam: No space left on device
error: unable to create file packages/dirsift/dirsift.0.0.3/opam: No space left on device
error: unable to create file packages/dirsp-exchange/dirsp-exchange.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/diskuvbox/diskuvbox.0.1.2/opam: No space left on device
error: unable to create file packages/diskuvbox/diskuvbox.0.2.0/opam: No space left on device
error: unable to create file packages/dispatch/dispatch.0.1.0/opam: No space left on device
error: unable to create file packages/dispatch/dispatch.0.4.0/opam: No space left on device
error: unable to create file packages/dispatch/dispatch.0.5.0/opam: No space left on device
error: unable to create file packages/distributed-lwt/distributed-lwt.0.1.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-offline-ocamlrun/dkml-component-offline-ocamlrun.4.12.1~v1.0.2/opam: No space left on device
error: unable to create file packages/dkml-component-offline-opam/dkml-component-offline-opam.2.2.0~alpha0~20221104/opam: No space left on device
error: unable to create file packages/dkml-component-staging-ocamlrun/dkml-component-staging-ocamlrun.4.12.1~v1.0.0/opam: No space left on device
error: unable to create file packages/dkml-component-staging-ocamlrun/dkml-component-staging-ocamlrun.4.12.1~v1.0.2/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-dune-dsl/dkml-dune-dsl.0.1.3/opam: No space left on device
error: unable to create file packages/dkml-install-runner/dkml-install-runner.0.4.0/opam: No space left on device
error: unable to create file packages/dkml-package-console/dkml-package-console.0.4.0/opam: No space left on device
error: unable to create file packages/dkml-package-console/dkml-package-console.0.5.1/opam: No space left on device
error: unable to create file packages/dlm/dlm.0.3.0/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-miou-unix/dns-client-miou-unix.10.2.0/opam: No space left on device
error: unable to create file packages/dns-client-miou-unix/dns-client-miou-unix.10.2.2/opam: No space left on device
error: unable to create file packages/dns-client-miou-unix/dns-client-miou-unix.10.2.3/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.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.10.0/opam: No space left on device
error: unable to create file packages/dns-resolver/dns-resolver.10.1.0/opam: No space left on device
error: unable to create file packages/dns-server/dns-server.10.2.1/opam: No space left on device
error: unable to create file packages/dns-server/dns-server.9.1.0/opam: No space left on device
error: unable to create file packages/dns-stub/dns-stub.8.0.0/opam: No space left on device
error: unable to create file packages/dns-tsig/dns-tsig.10.2.3/opam: No space left on device
error: unable to create file packages/dns/dns.1.1.1/opam: No space left on device
error: unable to create file packages/dns/dns.8.0.0/opam: No space left on device
error: unable to create file packages/dns/dns.9.1.0/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/dockerfile-cmd/dockerfile-cmd.8.2.9/opam: No space left on device
error: unable to create file packages/dockerfile-opam/dockerfile-opam.8.3.1/opam: No space left on device
error: unable to create file packages/dockerfile-opam/dockerfile-opam.8.3.2/opam: No space left on device
error: unable to create file packages/dockerfile/dockerfile.8.2.7/opam: No space left on device
error: unable to create file packages/dockerfile/dockerfile.8.2.9/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-unix/docteur-unix.0.0.2/opam: No space left on device
error: unable to create file packages/docteur-unix/docteur-unix.0.0.3/opam: No space left on device
error: unable to create file packages/dokeysto/dokeysto.3.0.2/opam: No space left on device
error: unable to create file packages/dokeysto_lz4/dokeysto_lz4.2.0.0/opam: No space left on device
error: unable to create file packages/dolmen/dolmen.0.1/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_loop/dolmen_loop.0.10/opam: No space left on device
error: unable to create file packages/dolmen_type/dolmen_type.0.8.1/opam: No space left on device
error: unable to create file packages/dolmen_type/dolmen_type.0.8/opam: No space left on device
error: unable to create file packages/dolmen_type/dolmen_type.0.9/opam: No space left on device
error: unable to create file packages/dose3-extra/dose3-extra.7.0.0/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/dot-merlin-reader/dot-merlin-reader.5.6.1-504/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/dream-accept/dream-accept.0.1.0/opam: No space left on device
error: unable to create file packages/dream-html/dream-html.0.0.3/opam: No space left on device
error: unable to create file packages/dream-html/dream-html.1.0.0/opam: No space left on device
error: unable to create file packages/dream-html/dream-html.3.11.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.6.2/opam: No space left on device
error: unable to create file packages/dream-httpaf/dream-httpaf.1.0.0~alpha2/opam: No space left on device
error: unable to create file packages/dream-pure/dream-pure.1.0.0~alpha2/opam: No space left on device
error: unable to create file packages/dream-serve/dream-serve.1.0.0/opam: No space left on device
error: unable to create file packages/drom_lib/drom_lib.0.6.0/opam: No space left on device
error: unable to create file packages/drom_lib/drom_lib.0.6.1/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.1/opam: No space left on device
error: unable to create file packages/dtoa/dtoa.0.3.2/opam: No space left on device
error: unable to create file packages/dtools/dtools.0.4.2/opam: No space left on device
error: unable to create file packages/duff/duff.0.2/opam: No space left on device
error: unable to create file packages/duff/duff.0.4/opam: No space left on device
error: unable to create file packages/dum/dum.1.0.3/opam: No space left on device
error: unable to create file packages/dune-build-info/dune-build-info.3.17.2/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-compiledb/dune-compiledb.0.6.0/opam: No space left on device
error: unable to create file packages/dune-configurator/dune-configurator.3.20.2/opam: No space left on device
error: unable to create file packages/dune-glob/dune-glob.3.15.3/opam: No space left on device
error: unable to create file packages/dune-glob/dune-glob.3.17.2/opam: No space left on device
error: unable to create file packages/dune-glob/dune-glob.3.19.0/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/dune-rpc.3.19.0/opam: No space left on device
error: unable to create file packages/dune-secondary/dune-secondary.3.16.0/opam: No space left on device
error: unable to create file packages/dune-secondary/dune-secondary.3.8.1/opam: No space left on device
error: unable to create file packages/dune-site/dune-site.3.19.1/opam: No space left on device
error: unable to create file packages/dune/dune.2.6.1/opam: No space left on device
error: unable to create file packages/dune/dune.3.20.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.7.3/opam: No space left on device
error: unable to create file packages/duppy/duppy.0.9.0/opam: No space left on device
error: unable to create file packages/dyn/dyn.3.1.0/opam: No space left on device
error: unable to create file packages/earley/earley.1.0.2/opam: No space left on device
error: unable to create file packages/earley/earley.1.1.0/opam: No space left on device
error: unable to create file packages/earley/earley.3.0.0/opam: No space left on device
error: unable to create file packages/earlybird/earlybird.1.3.0/opam: No space left on device
error: unable to create file packages/easy-format/easy-format.1.3.2/opam: No space left on device
error: unable to create file packages/easy-format/easy-format.1.3.3/opam: No space left on device
error: unable to create file packages/easy_logging/easy_logging.0.2/opam: No space left on device
error: unable to create file packages/easy_logging/easy_logging.0.5/opam: No space left on device
error: unable to create file packages/echo/echo.0.0.4/opam: No space left on device
error: unable to create file packages/efl/efl.1.12.0/opam: No space left on device
error: unable to create file packages/ego/ego.0.0.5/opam: No space left on device
error: unable to create file packages/ego/ego.0.0.6/opam: No space left on device
error: unable to create file packages/eigen/eigen.0.0.6/opam: No space left on device
error: unable to create file packages/eigen/eigen.0.1.0/opam: No space left on device
error: unable to create file packages/eio/eio.0.7/opam: No space left on device
error: unable to create file packages/eio/eio.0.8.1/opam: No space left on device
error: unable to create file packages/eio/eio.0.9/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_posix/eio_posix.0.15/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/electrod/electrod.0.9.0/opam: No space left on device
error: unable to create file packages/electrod/electrod.1.0.0/opam: No space left on device
error: unable to create file packages/electrumAnalyzer/electrumAnalyzer.0.3.5-2/opam: No space left on device
error: unable to create file packages/eliom/eliom.10.1.2/opam: No space left on device
error: unable to create file packages/eliom/eliom.10.2.0/opam: No space left on device
error: unable to create file packages/eliom/eliom.6.12.1/opam: No space left on device
error: unable to create file packages/eliom/eliom.6.8.0/opam: No space left on device
error: unable to create file packages/eliom/eliom.6.9.1/opam: No space left on device
error: unable to create file packages/elpi/elpi.3.4.2/opam: No space left on device
error: unable to create file packages/email_message/email_message.v0.17.0/opam: No space left on device
error: unable to create file packages/embedded_ocaml_templates/embedded_ocaml_templates.0.3.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.7/opam: No space left on device
error: unable to create file packages/emoji/emoji.2.0.0/opam: No space left on device
error: unable to create file packages/emoji/emoji.3.0.1/opam: No space left on device
error: unable to create file packages/encore/encore.0.2/opam: No space left on device
error: unable to create file packages/encore/encore.0.8/opam: No space left on device
error: unable to create file packages/enumerators/enumerators.0.1.1/opam: No space left on device
error: unable to create file packages/enumerators/enumerators.0.2.0/opam: No space left on device
error: unable to create file packages/env_config/env_config.v0.16.0/opam: No space left on device
error: unable to create file packages/eqaf/eqaf.0.9/opam: No space left on device
error: unable to create file packages/errpy/errpy.0.0.8/opam: No space left on device
error: unable to create file packages/errpy/errpy.0.0.9/opam: No space left on device
error: unable to create file packages/erssical/erssical.1.1.0/opam: No space left on device
error: unable to create file packages/euler/euler.0.3/opam: No space left on device
error: unable to create file packages/expect_test_helpers/expect_test_helpers.v0.12.0/opam: No space left on device
error: unable to create file packages/expect_test_helpers_async/expect_test_helpers_async.v0.15.0/opam: No space left on device
error: unable to create file packages/expect_test_helpers_kernel/expect_test_helpers_kernel.v0.13.0/opam: No space left on device
error: unable to create file packages/expr/expr.0.5.2/opam: No space left on device
error: unable to create file packages/expr/expr.0.6.0/opam: No space left on device
error: unable to create file packages/extism-manifest/extism-manifest.1.3.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/extlib/extlib.1.7.7-1/opam: No space left on device
error: unable to create file packages/extunix/extunix.0.2.0/opam: No space left on device
error: unable to create file packages/extunix/extunix.0.3.1/opam: No space left on device
error: unable to create file packages/ez_cmdliner/ez_cmdliner.0.1.1/opam: No space left on device
error: unable to create file packages/ez_file/ez_file.0.3.0/opam: No space left on device
error: unable to create file packages/ez_hash/ez_hash.0.2.0/opam: No space left on device
error: unable to create file packages/ez_pgocaml/ez_pgocaml.1.0.0/opam: No space left on device
error: unable to create file packages/ezgzip/ezgzip.0.2.1/opam: No space left on device
error: unable to create file packages/ezgzip/ezgzip.0.2.3/opam: No space left on device
error: unable to create file packages/ezjs_extension/ezjs_extension.0.1/opam: No space left on device
error: unable to create file packages/ezjs_extension/ezjs_extension.0.2/opam: No space left on device
error: unable to create file packages/ezjs_fetch/ezjs_fetch.0.2/opam: No space left on device
error: unable to create file packages/ezjs_fetch/ezjs_fetch.0.3/opam: No space left on device
error: unable to create file packages/ezjs_odometer/ezjs_odometer.0.1/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/ezjsonm-lwt/ezjsonm-lwt.1.3.0/opam: No space left on device
error: unable to create file packages/ezresto/ezresto.0.3/opam: No space left on device
error: unable to create file packages/ezresto/ezresto.0.4/opam: No space left on device
error: unable to create file packages/faad/faad.0.3.3/opam: No space left on device
error: unable to create file packages/faad/faad.0.5.1/opam: No space left on device
error: unable to create file packages/faraday-async/faraday-async.0.7.3/opam: No space left on device
error: unable to create file packages/faraday-lwt/faraday-lwt.0.6.1/opam: No space left on device
error: unable to create file packages/faraday-lwt/faraday-lwt.0.7.1/opam: No space left on device
error: unable to create file packages/faraday/faraday.0.5.1/opam: No space left on device
error: unable to create file packages/faraday/faraday.0.6.0/opam: No space left on device
error: unable to create file packages/faraday/faraday.0.6.1/opam: No space left on device
error: unable to create file packages/faraday/faraday.0.7.2/opam: No space left on device
error: unable to create file packages/farmhash/farmhash.0.4/opam: No space left on device
error: unable to create file packages/fasmifra/fasmifra.1.0.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/fdkaac/fdkaac.0.3.3/opam: No space left on device
error: unable to create file packages/feat-core/feat-core.20220407/opam: No space left on device
error: unable to create file packages/ff/ff.0.4.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.3/opam: No space left on device
error: unable to create file packages/ffmpeg-av/ffmpeg-av.1.2.2/opam: No space left on device
error: unable to create file packages/ffmpeg-av/ffmpeg-av.1.2.4/opam: No space left on device
error: unable to create file packages/ffmpeg-av/ffmpeg-av.1.2.6/opam: No space left on device
error: unable to create file packages/ffmpeg-avdevice/ffmpeg-avdevice.1.0.0~beta1/opam: No space left on device
error: unable to create file packages/ffmpeg-avdevice/ffmpeg-avdevice.1.0.0~rc1/opam: No space left on device
error: unable to create file packages/ffmpeg-avdevice/ffmpeg-avdevice.1.1.7/opam: No space left on device
error: unable to create file packages/ffmpeg-swresample/ffmpeg-swresample.1.2.1/opam: No space left on device
error: unable to create file packages/ffmpeg-swresample/ffmpeg-swresample.1.2.2/opam: No space left on device
error: unable to create file packages/ffmpeg-swresample/ffmpeg-swresample.1.2.5/opam: No space left on device
error: unable to create file packages/ffmpeg-swscale/ffmpeg-swscale.1.0.1/opam: No space left on device
error: unable to create file packages/ffmpeg/ffmpeg.0.1.0/opam: No space left on device
error: unable to create file packages/ffmpeg/ffmpeg.0.1.1/opam: No space left on device
error: unable to create file packages/ffmpeg/ffmpeg.0.1.2/opam: No space left on device
error: unable to create file packages/ffmpeg/ffmpeg.1.1.2/opam: No space left on device
error: unable to create file packages/ffmpeg/ffmpeg.1.1.5/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.7/opam: No space left on device
error: unable to create file packages/fiber-lwt/fiber-lwt.3.7.0/opam: No space left on device
error: unable to create file packages/fiber/fiber.3.1.0/opam: No space left on device
error: unable to create file packages/file_path/file_path.v0.17.0/opam: No space left on device
error: unable to create file packages/fileutils/fileutils.0.5.3/opam: No space left on device
error: unable to create file packages/fix/fix.20130611/opam: No space left on device
error: unable to create file packages/fix/fix.20181206/opam: No space left on device
error: unable to create file packages/fix/fix.20211125/opam: No space left on device
error: unable to create file packages/fix/fix.20211231/opam: No space left on device
error: unable to create file packages/flex-array/flex-array.1.0.0/opam: No space left on device
error: unable to create file packages/flex-array/flex-array.1.2.0/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.36/opam: No space left on device
error: unable to create file packages/flint/flint.0.3/opam: No space left on device
error: unable to create file packages/float_option/float_option.0.0.2/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.2.0/opam: No space left on device
error: unable to create file packages/fmlib/fmlib.0.3.0/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.6/opam: No space left on device
error: unable to create file packages/fmlib_browser/fmlib_browser.0.5.8/opam: No space left on device
error: unable to create file packages/fmlib_browser/fmlib_browser.0.6.0/opam: No space left on device
error: unable to create file packages/fmlib_js/fmlib_js.0.6.0/opam: No space left on device
error: unable to create file packages/fmlib_js/fmlib_js.0.6.2/opam: No space left on device
error: unable to create file packages/fmlib_parse/fmlib_parse.0.5.11/opam: No space left on device
error: unable to create file packages/fmlib_std/fmlib_std.0.5.6/opam: No space left on device
error: unable to create file packages/fmt/fmt.0.10.0/opam: No space left on device
error: unable to create file packages/fmt/fmt.0.8.8/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/forester/forester.2.2.1/opam: No space left on device
error: unable to create file packages/forester/forester.3.0.0/opam: No space left on device
error: unable to create file packages/forester/forester.4.0.1/opam: No space left on device
error: unable to create file packages/forester/forester.5.0/opam: No space left on device
error: unable to create file packages/frama-c/frama-c.20.0/opam: No space left on device
error: unable to create file packages/frama-c/frama-c.21.0/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.23.1/opam: No space left on device
error: unable to create file packages/frama-c/frama-c.27.0/opam: No space left on device
error: unable to create file packages/frama-c/frama-c.31.0~beta/opam: No space left on device
error: unable to create file packages/frama-clang/frama-clang.0.0.18~beta/opam: No space left on device
error: unable to create file packages/freetds/freetds.0.5.2/opam: No space left on device
error: unable to create file packages/freetds/freetds.0.6/opam: No space left on device
error: unable to create file packages/freetennis/freetennis.0.4.8/opam: No space left on device
error: unable to create file packages/frei0r/frei0r.0.1.0/opam: No space left on device
error: unable to create file packages/fsml/fsml.0.3.0/opam: No space left on device
error: unable to create file packages/fstar/fstar.2021.06.06/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/fswatch_lwt/fswatch_lwt.11-0.1.0/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/gadelac/gadelac.0.6.1/opam: No space left on device
error: unable to create file packages/gadelac/gadelac.0.6/opam: No space left on device
error: unable to create file packages/gdal/gdal.0.10.0/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/gdbprofiler/gdbprofiler.0.3/opam: No space left on device
error: unable to create file packages/gdbprofiler/gdbprofiler.0.4/opam: No space left on device
error: unable to create file packages/gen_js_api/gen_js_api.1.0.9/opam: No space left on device
error: unable to create file packages/gen_js_api/gen_js_api.1.1.2/opam: No space left on device
error: unable to create file packages/gendarme-yaml/gendarme-yaml.0.4.0/opam: No space left on device
error: unable to create file packages/gendarme/gendarme.0.3.0/opam: No space left on device
error: unable to create file packages/genspir/genspir.1.0.1/opam: No space left on device
error: unable to create file packages/geojson/geojson.0.1.0/opam: No space left on device
error: unable to create file packages/get_line/get_line.4.0.0/opam: No space left on device
error: unable to create file packages/gettext-camomile/gettext-camomile.0.5.0/opam: No space left on device
error: unable to create file packages/gettext-stub/gettext-stub.0.4.1/opam: No space left on device
error: unable to create file packages/gettext/gettext.0.3.8/opam: No space left on device
error: unable to create file packages/gg/gg.1.0.0/opam: No space left on device
error: unable to create file packages/git-cohttp-unix/git-cohttp-unix.3.2.0/opam: No space left on device
error: unable to create file packages/git-mirage/git-mirage.3.16.1/opam: No space left on device
error: unable to create file packages/git-mirage/git-mirage.3.18.0/opam: No space left on device
error: unable to create file packages/git-net/git-net.0.2.1/opam: No space left on device
error: unable to create file packages/git-unix/git-unix.3.18.0/opam: No space left on device
error: unable to create file packages/git/git.3.2.0/opam: No space left on device
error: unable to create file packages/github-data/github-data.4.4.0/opam: No space left on device
error: unable to create file packages/github-jsoo/github-jsoo.4.2.0/opam: No space left on device
error: unable to create file packages/github-jsoo/github-jsoo.4.3.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.5.1/opam: No space left on device
error: unable to create file packages/github-unix/github-unix.3.1.0/opam: No space left on device
error: unable to create file packages/github/github.3.1.0/opam: No space left on device
error: unable to create file packages/github/github.4.0.0/opam: No space left on device
error: unable to create file packages/github/github.4.2.0/opam: No space left on device
error: unable to create file packages/github/github.4.3.0/opam: No space left on device
error: unable to create file packages/gitlab-jsoo/gitlab-jsoo.0.1.5/opam: No space left on device
error: unable to create file packages/gitlab-jsoo/gitlab-jsoo.0.1.8/opam: No space left on device
error: unable to create file packages/gitlab-unix/gitlab-unix.0.1.0/opam: No space left on device
error: unable to create file packages/gitlab-unix/gitlab-unix.0.1.1/opam: No space left on device
error: unable to create file packages/gitlab-unix/gitlab-unix.0.1.8/opam: No space left on device
error: unable to create file packages/gitlab/gitlab.0.1.0/opam: No space left on device
error: unable to create file packages/gitlab/gitlab.0.1.1/opam: No space left on device
error: unable to create file packages/gitlab/gitlab.0.1.3/opam: No space left on device
error: unable to create file packages/gitlab/gitlab.0.1.5/opam: No space left on device
error: unable to create file packages/gitlab/gitlab.0.1.6/opam: No space left on device
error: unable to create file packages/glfw-ocaml/glfw-ocaml.3.3.1-2/opam: No space left on device
error: unable to create file packages/globlon/globlon.1.0/opam: No space left on device
error: unable to create file packages/glpk/glpk.0.1.6/opam: No space left on device
error: unable to create file packages/gluten-eio/gluten-eio.0.5.1/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/gluten-lwt.0.2.1/opam: No space left on device
error: unable to create file packages/gluten-lwt/gluten-lwt.0.3.0/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/gmap/gmap.0.3.0/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/gmp.6.2.1/opam: No space left on device
error: unable to create file packages/goblint/goblint.2.6.0/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/gospel/gospel.0.1.0/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/gpt/gpt.1.0.0/opam: No space left on device
error: unable to create file packages/gr/gr.0.0.1/opam: No space left on device
error: unable to create file packages/gr/gr.0.0.2/opam: No space left on device
error: unable to create file packages/grace/grace.0.1.0/opam: No space left on device
error: unable to create file packages/grain_dypgen/grain_dypgen.0.2/opam: No space left on device
error: unable to create file packages/graphql-cohttp/graphql-cohttp.0.13.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.6.0/opam: No space left on device
error: unable to create file packages/graphql-lwt/graphql-lwt.0.7.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.0.7.1/opam: No space left on device
error: unable to create file packages/graphql_ppx/graphql_ppx.1.0.1/opam: No space left on device
error: unable to create file packages/graphv_core/graphv_core.0.1.1/opam: No space left on device
error: unable to create file packages/graphv_font/graphv_font.0.1.1/opam: No space left on device
error: unable to create file packages/graphv_webgl/graphv_webgl.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/grenier/grenier.0.11/opam: No space left on device
error: unable to create file packages/grpc-lwt/grpc-lwt.0.2.0/opam: No space left on device
error: unable to create file packages/grpc/grpc.0.1.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/h1-lwt-unix/h1-lwt-unix.1.1.0/opam: No space left on device
error: unable to create file packages/h2-lwt-unix/h2-lwt-unix.0.1.0/opam: No space left on device
error: unable to create file packages/h2-lwt-unix/h2-lwt-unix.0.3.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.10.0/opam: No space left on device
error: unable to create file packages/h2-lwt/h2-lwt.0.8.0/opam: No space left on device
error: unable to create file packages/h2-lwt/h2-lwt.0.9.0/opam: No space left on device
error: unable to create file packages/h2/h2.0.1.0/opam: No space left on device
error: unable to create file packages/h2/h2.0.6.0/opam: No space left on device
error: unable to create file packages/hacl-star-raw/hacl-star-raw.0.1/opam: No space left on device
error: unable to create file packages/hacl-star-raw/hacl-star-raw.0.2.0/opam: No space left on device
error: unable to create file packages/hacl-star-raw/hacl-star-raw.0.2.2/opam: No space left on device
error: unable to create file packages/hacl-star-raw/hacl-star-raw.0.3.0-1/opam: No space left on device
error: unable to create file packages/hacl-star/hacl-star.0.4.0/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/happy-eyeballs-lwt/happy-eyeballs-lwt.0.6.0/opam: No space left on device
error: unable to create file packages/happy-eyeballs/happy-eyeballs.0.1.3/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_circuits/hardcaml_circuits.v0.15.0/opam: No space left on device
error: unable to create file packages/hardcaml_circuits/hardcaml_circuits.v0.16.0/opam: No space left on device
error: unable to create file packages/hardcaml_circuits/hardcaml_circuits.v0.17.0/opam: No space left on device
error: unable to create file packages/hardcaml_event_driven_sim/hardcaml_event_driven_sim.v0.17.0/opam: No space left on device
error: unable to create file packages/hardcaml_fixed_point/hardcaml_fixed_point.v0.15.0/opam: No space left on device
error: unable to create file packages/hardcaml_verilator/hardcaml_verilator.v0.16.0/opam: No space left on device
error: unable to create file packages/hardcaml_xilinx_components/hardcaml_xilinx_components.v0.15.0/opam: No space left on device
error: unable to create file packages/hardcaml_xilinx_components/hardcaml_xilinx_components.v0.17.0/opam: No space left on device
error: unable to create file packages/hardcaml_xilinx_reports/hardcaml_xilinx_reports.v0.16.0/opam: No space left on device
error: unable to create file packages/hashset/hashset.1.0.1/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/hc/hc.0.5/opam: No space left on device
error: unable to create file packages/headache/headache.1.05/opam: No space left on device
error: unable to create file packages/headache/headache.1.06/opam: No space left on device
error: unable to create file packages/herdtools7/herdtools7.7.48/opam: No space left on device
error: unable to create file packages/herdtools7/herdtools7.7.58/opam: No space left on device
error: unable to create file packages/hevea/hevea.2.28/opam: No space left on device
error: unable to create file packages/hevea/hevea.2.32/opam: No space left on device
error: unable to create file packages/hevea/hevea.2.35/opam: No space left on device
error: unable to create file packages/hevea/hevea.2.36/opam: No space left on device
error: unable to create file packages/higlo/higlo.0.1/opam: No space left on device
error: unable to create file packages/hilite/hilite.0.5.0/opam: No space left on device
error: unable to create file packages/hiredis/hiredis.0.4/opam: No space left on device
error: unable to create file packages/hiredis/hiredis.0.6/opam: No space left on device
error: unable to create file packages/hiredis/hiredis.0.7.1/opam: No space left on device
error: unable to create file packages/hol2dk/hol2dk.1.0.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-arch-x86_32/host-arch-x86_32.1/opam: No space left on device
error: unable to create file packages/host-system-mingw/host-system-mingw.1/opam: No space left on device
error: unable to create file packages/host-system-msvc/host-system-msvc.1/opam: No space left on device
error: unable to create file packages/htmlfromtexbooks/htmlfromtexbooks.3.3.2/opam: No space left on device
error: unable to create file packages/htmlit/htmlit.0.1.0/opam: No space left on device
error: unable to create file packages/htmlit/htmlit.0.2.0/opam: No space left on device
error: unable to create file packages/hts_shrink/hts_shrink.1.0.0/opam: No space left on device
error: unable to create file packages/http-lwt-client/http-lwt-client.0.0.5/opam: No space left on device
error: unable to create file packages/http-mirage-client/http-mirage-client.0.0.10/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/http/http.6.0.0~beta2/opam: No space left on device
error: unable to create file packages/http/http.6.2.1/opam: No space left on device
error: unable to create file packages/httpaf-lwt-unix/httpaf-lwt-unix.0.6.0/opam: No space left on device
error: unable to create file packages/httpaf/httpaf.0.1.0/opam: No space left on device
error: unable to create file packages/httpcats/httpcats.0.0.1/opam: No space left on device
error: unable to create file packages/httpcats/httpcats.0.1.0/opam: No space left on device
error: unable to create file packages/httpun-async/httpun-async.0.1.0/opam: No space left on device
error: unable to create file packages/httpun-async/httpun-async.0.2.0/opam: No space left on device
error: unable to create file packages/httpun-ws-lwt/httpun-ws-lwt.0.1.0/opam: No space left on device
error: unable to create file packages/httpun-ws-lwt/httpun-ws-lwt.0.2.0/opam: No space left on device
error: unable to create file packages/httpun-ws/httpun-ws.0.1.0/opam: No space left on device
error: unable to create file packages/httpun-ws/httpun-ws.0.2.0/opam: No space left on device
error: unable to create file packages/hugin/hugin.1.0.0~alpha0/opam: No space left on device
error: unable to create file packages/i2c/i2c.0.1.1-0/opam: No space left on device
error: unable to create file packages/icalendar/icalendar.0.1.13/opam: No space left on device
error: unable to create file packages/igvxml/igvxml.0.0.6/opam: No space left on device
error: unable to create file packages/incr_dom/incr_dom.v0.13.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.15.1/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_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/incr_select/incr_select.v0.17.0/opam: No space left on device
error: unable to create file packages/index-bench/index-bench.1.6.2/opam: No space left on device
error: unable to create file packages/inferno/inferno.20180405/opam: No space left on device
error: unable to create file packages/influxdb/influxdb.0.1.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/inotify/inotify.2.1/opam: No space left on device
error: unable to create file packages/inotify/inotify.2.2/opam: No space left on device
error: unable to create file packages/inotify/inotify.2.5/opam: No space left on device
error: unable to create file packages/inquire/inquire.0.1.0/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/inuit/inuit.0.1/opam: No space left on device
error: unable to create file packages/inuit/inuit.0.3/opam: No space left on device
error: unable to create file packages/inuit/inuit.0.4/opam: No space left on device
error: unable to create file packages/io-page-unix/io-page-unix.2.1.0/opam: No space left on device
error: unable to create file packages/iomux/iomux.0.2/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-camlzip/iostream-camlzip.0.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/ip2location/ip2location.8.1.1/opam: No space left on device
error: unable to create file packages/ip2location/ip2location.8.2.0/opam: No space left on device
error: unable to create file packages/ip2locationio/ip2locationio.1.0.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.5.4/opam: No space left on device
error: unable to create file packages/irmin-bench/irmin-bench.3.10.0/opam: No space left on device
error: unable to create file packages/irmin-cli/irmin-cli.3.6.1/opam: No space left on device
error: unable to create file packages/irmin-client/irmin-client.3.11.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.6.1/opam: No space left on device
error: unable to create file packages/irmin-pack/irmin-pack.2.10.2/opam: No space left on device
error: unable to create file packages/irmin-pack/irmin-pack.2.9.0/opam: No space left on device
error: unable to create file packages/irmin-server/irmin-server.3.10.0/opam: No space left on device
error: unable to create file packages/irmin/irmin.2.7.1/opam: No space left on device
error: unable to create file packages/irmin/irmin.2.7.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.12.0/opam: No space left on device
error: unable to create file packages/jane-street-headers/jane-street-headers.v0.16.0/opam: No space left on device
error: unable to create file packages/jekyll-format/jekyll-format.0.1.0/opam: No space left on device
error: unable to create file packages/jekyll-format/jekyll-format.0.2.0/opam: No space left on device
error: unable to create file packages/jemalloc/jemalloc.0.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.5.0/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/js_of_ocaml-compiler/js_of_ocaml-compiler.3.4.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-compiler/js_of_ocaml-compiler.3.5.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-compiler/js_of_ocaml-compiler.3.9.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.2.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-compiler/js_of_ocaml-compiler.5.5.2/opam: No space left on device
error: unable to create file packages/js_of_ocaml-compiler/js_of_ocaml-compiler.5.6.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-compiler/js_of_ocaml-compiler.5.7.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-lwt/js_of_ocaml-lwt.4.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.8.2/opam: No space left on device
error: unable to create file packages/js_of_ocaml-lwt/js_of_ocaml-lwt.6.0.1/opam: No space left on device
error: unable to create file packages/js_of_ocaml-ocamlbuild/js_of_ocaml-ocamlbuild.3.7.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-ocamlbuild/js_of_ocaml-ocamlbuild.5.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.10.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.4.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.2.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.3.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-toplevel/js_of_ocaml-toplevel.5.3.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-toplevel/js_of_ocaml-toplevel.5.4.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.6.0.1/opam: No space left on device
error: unable to create file packages/js_of_ocaml-tyxml/js_of_ocaml-tyxml.3.10.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-tyxml/js_of_ocaml-tyxml.3.11.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-tyxml/js_of_ocaml-tyxml.3.4.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-tyxml/js_of_ocaml-tyxml.5.2.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml-tyxml/js_of_ocaml-tyxml.6.2.0/opam: No space left on device
error: unable to create file packages/js_of_ocaml/js_of_ocaml.5.7.2/opam: No space left on device
error: unable to create file packages/js_of_ocaml/js_of_ocaml.5.8.1/opam: No space left on device
error: unable to create file packages/js_of_ocaml_patches/js_of_ocaml_patches.v0.17.0/opam: No space left on device
error: unable to create file packages/json-data-encoding/json-data-encoding.1.0.0/opam: No space left on device
error: unable to create file packages/jsonfeed/jsonfeed.1.1.0/opam: No space left on device
error: unable to create file packages/jsonm/jsonm.1.0.2/opam: No space left on device
error: unable to create file packages/jsonoo/jsonoo.0.3.0/opam: No space left on device
error: unable to create file packages/jsonrpc/jsonrpc.1.21.0-4.14/opam: No space left on device
error: unable to create file packages/jsonrpc/jsonrpc.1.25.0/opam: No space left on device
error: unable to create file packages/jsonrpc/jsonrpc.1.6.0/opam: No space left on device
error: unable to create file packages/jsonschema/jsonschema.0.1.0/opam: No space left on device
error: unable to create file packages/jsont/jsont.0.2.0/opam: No space left on device
error: unable to create file packages/jst-config/jst-config.v0.15.1/opam: No space left on device
error: unable to create file packages/junit/junit.2.0.1/opam: No space left on device
error: unable to create file packages/junit/junit.2.0.2/opam: No space left on device
error: unable to create file packages/jupyter-archimedes/jupyter-archimedes.2.3.2/opam: No space left on device
error: unable to create file packages/jupyter-archimedes/jupyter-archimedes.2.7.2/opam: No space left on device
error: unable to create file packages/jupyter-archimedes/jupyter-archimedes.2.7.3/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-kernel/jupyter-kernel.0.5/opam: No space left on device
error: unable to create file packages/jupyter-kernel/jupyter-kernel.0.6/opam: No space left on device
error: unable to create file packages/jupyter/jupyter.2.7.9/opam: No space left on device
error: unable to create file packages/jupyter/jupyter.2.8.2/opam: No space left on device
error: unable to create file packages/jwto/jwto.0.3.0/opam: No space left on device
error: unable to create file packages/kafka/kafka.0.5/opam: No space left on device
error: unable to create file packages/kafka_lwt/kafka_lwt.0.5/opam: No space left on device
error: unable to create file packages/kappa-agents/kappa-agents.4.1.0/opam: No space left on device
error: unable to create file packages/kcas/kcas.0.2.2/opam: No space left on device
error: unable to create file packages/kcas/kcas.0.2.4/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.3/opam: No space left on device
error: unable to create file packages/kcas/kcas.0.6.0/opam: No space left on device
error: unable to create file packages/kcas/kcas.0.6.1/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.5.3/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/key-parsers/key-parsers.1.0.0/opam: No space left on device
error: unable to create file packages/kicadsch/kicadsch.0.5.0/opam: No space left on device
error: unable to create file packages/kicadsch/kicadsch.0.9.0/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/kinetic-client/kinetic-client.0.0.1/opam: No space left on device
error: unable to create file packages/kinetic-client/kinetic-client.0.0.11/opam: No space left on device
error: unable to create file packages/kkmarkdown/kkmarkdown.1.0.0/opam: No space left on device
error: unable to create file packages/kkmarkdown/kkmarkdown.1.1.0/opam: No space left on device
error: unable to create file packages/knights_tour/knights_tour.0.0.1/opam: No space left on device
error: unable to create file packages/kqueue/kqueue.0.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/krb/krb.v0.16.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/lab/lab.0.1.2/opam: No space left on device
error: unable to create file packages/lablgl/lablgl.1.04.20120306/opam: No space left on device
error: unable to create file packages/lablgl/lablgl.1.05/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/lablgtk/lablgtk.2.18.8/opam: No space left on device
error: unable to create file packages/lablgtk/lablgtk.2.18.9/opam: No space left on device
error: unable to create file packages/lablgtk3-gtkspell3/lablgtk3-gtkspell3.3.0.beta7/opam: No space left on device
error: unable to create file packages/lablgtk3-gtkspell3/lablgtk3-gtkspell3.3.1.1/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.0.beta2/opam: No space left on device
error: unable to create file packages/lablgtk3/lablgtk3.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.beta5/opam: No space left on device
error: unable to create file packages/lablgtk3/lablgtk3.3.1.1/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.11.0.4/opam: No space left on device
error: unable to create file packages/lacaml/lacaml.7.2.6/opam: No space left on device
error: unable to create file packages/lacaml/lacaml.8.0.5/opam: No space left on device
error: unable to create file packages/lacaml/lacaml.8.0.6/opam: No space left on device
error: unable to create file packages/lacaml/lacaml.8.1.1/opam: No space left on device
error: unable to create file packages/lacaml/lacaml.9.1.0/opam: No space left on device
error: unable to create file packages/lambda-term/lambda-term.2.0.1/opam: No space left on device
error: unable to create file packages/lambda-term/lambda-term.2.0.3/opam: No space left on device
error: unable to create file packages/lambdapi/lambdapi.2.3.1/opam: No space left on device
error: unable to create file packages/lambdapi/lambdapi.2.4.0/opam: No space left on device
error: unable to create file packages/lambdapi/lambdapi.2.4.1/opam: No space left on device
error: unable to create file packages/lambdasoup/lambdasoup.0.6.4/opam: No space left on device
error: unable to create file packages/lambdasoup/lambdasoup.0.6/opam: No space left on device
error: unable to create file packages/lambdasoup/lambdasoup.0.7.0/opam: No space left on device
error: unable to create file packages/lambdasoup/lambdasoup.0.7.1/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/landmarks/landmarks.1.3/opam: No space left on device
error: unable to create file packages/landmarks/landmarks.1.4/opam: No space left on device
error: unable to create file packages/lascar/lascar.0.5/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/lbfgs/lbfgs.0.9.1/opam: No space left on device
error: unable to create file packages/lbfgs/lbfgs.0.9.3/opam: No space left on device
error: unable to create file packages/lbvs_consent/lbvs_consent.2.1.2/opam: No space left on device
error: unable to create file packages/lbvs_consent/lbvs_consent.2.2.0/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/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_js/ldp_js.0.1.0/opam: No space left on device
error: unable to create file packages/leaflet/leaflet.0.2/opam: No space left on device
error: unable to create file packages/learn-ocaml-client/learn-ocaml-client.0.14.1/opam: No space left on device
error: unable to create file packages/learn-ocaml/learn-ocaml.0.13.1/opam: No space left on device
error: unable to create file packages/learn-ocaml/learn-ocaml.0.14.0/opam: No space left on device
error: unable to create file packages/learn-ocaml/learn-ocaml.0.15.0/opam: No space left on device
error: unable to create file packages/leaves/leaves.0.0.1/opam: No space left on device
error: unable to create file packages/ledgerwallet-tezos/ledgerwallet-tezos.0.4.0/opam: No space left on device
error: unable to create file packages/ledgerwallet-tezos/ledgerwallet-tezos.0.4.1/opam: No space left on device
error: unable to create file packages/lem/lem.2025-03-13/opam: No space left on device
error: unable to create file packages/lens/lens.1.0.2/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/lens/lens.1.2.2/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/letters/letters.0.4.0/opam: No space left on device
error: unable to create file packages/leveldb/leveldb.1.2.0/opam: No space left on device
error: unable to create file packages/leveldb/leveldb.1.3.0/opam: No space left on device
error: unable to create file packages/libbinaryen/libbinaryen.102.0.0/opam: No space left on device
error: unable to create file packages/libbinaryen/libbinaryen.102.0.1/opam: No space left on device
error: unable to create file packages/libbinaryen/libbinaryen.102.0.2/opam: No space left on device
error: unable to create file packages/libbinaryen/libbinaryen.124.0.0/opam: No space left on device
error: unable to create file packages/libbinaryen/libbinaryen.124.0.1/opam: No space left on device
error: unable to create file packages/libbinaryen/libbinaryen.125.0.0/opam: No space left on device
error: unable to create file packages/libbpf_maps/libbpf_maps.0.1.0/opam: No space left on device
error: unable to create file packages/libsvm/libsvm.0.9.1/opam: No space left on device
error: unable to create file packages/libtorch/libtorch.1.0.0/opam: No space left on device
error: unable to create file packages/libtorch/libtorch.1.0.1/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.2.0/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.1.5.0/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/libwasmtime/libwasmtime.0.21.0+linux-x86_64/opam: No space left on device
error: unable to create file packages/libwasmtime/libwasmtime.0.21.0+macos-x86_64/opam: No space left on device
error: unable to create file packages/libwasmtime/libwasmtime.0.22.0+linux-x86_64/opam: No space left on device
error: unable to create file packages/line_oriented/line_oriented.1.3.0/opam: No space left on device
error: unable to create file packages/linenoise/linenoise.1.2.0/opam: No space left on device
error: unable to create file packages/linenoise/linenoise.1.3.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-mysql/links-mysql.0.9.4/opam: No space left on device
error: unable to create file packages/links-sqlite3/links-sqlite3.0.9.1/opam: No space left on device
error: unable to create file packages/links-sqlite3/links-sqlite3.0.9.4/opam: No space left on device
error: unable to create file packages/links-sqlite3/links-sqlite3.0.9.6/opam: No space left on device
error: unable to create file packages/linol/linol.0.1/opam: No space left on device
error: unable to create file packages/lintcstubs-arity/lintcstubs-arity.0.2.1/opam: No space left on device
error: unable to create file packages/linwrap/linwrap.0.0.1/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_interpreter/liquid_interpreter.0.1.3/opam: No space left on device
error: unable to create file packages/liquid_ml/liquid_ml.0.1.3/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-libs-extra/liquidsoap-libs-extra.2.2.1/opam: No space left on device
error: unable to create file packages/liquidsoap-libs-extra/liquidsoap-libs-extra.2.2.2/opam: No space left on device
error: unable to create file packages/liquidsoap-libs/liquidsoap-libs.2.2.3/opam: No space left on device
error: unable to create file packages/liquidsoap-libs/liquidsoap-libs.2.2.4-1/opam: No space left on device
error: unable to create file packages/liquidsoap-mode/liquidsoap-mode.2.4.0/opam: No space left on device
error: unable to create file packages/llama-cpp-ocaml/llama-cpp-ocaml.0.0.1/opam: No space left on device
error: unable to create file packages/llama/llama.0.0.1/opam: No space left on device
error: unable to create file packages/llama/llama.0.1.0/opam: No space left on device
error: unable to create file packages/llama_core/llama_core.0.0.1/opam: No space left on device
error: unable to create file packages/llama_interactive/llama_interactive.0.0.1/opam: No space left on device
error: unable to create file packages/llhttp/llhttp.0.0.1/opam: No space left on device
error: unable to create file packages/llvm/llvm.19-shared/opam: No space left on device
error: unable to create file packages/llvm/llvm.3.4/opam: No space left on device
error: unable to create file packages/lo/lo.0.1.0/opam: No space left on device
error: unable to create file packages/logger-p5/logger-p5.0.4.5/opam: No space left on device
error: unable to create file packages/logs-async-reporter/logs-async-reporter.1.0/opam: No space left on device
error: unable to create file packages/logs-async-reporter/logs-async-reporter.1.3/opam: No space left on device
error: unable to create file packages/lp-glpk-js/lp-glpk-js.0.5.0/opam: No space left on device
error: unable to create file packages/lp-glpk/lp-glpk.0.2.0/opam: No space left on device
error: unable to create file packages/lp-glpk/lp-glpk.0.3.0/opam: No space left on device
error: unable to create file packages/lp/lp.0.4.0/opam: No space left on device
error: unable to create file packages/lpi/lpi.0.0.2/opam: No space left on device
error: unable to create file packages/lsp/lsp.1.15.1-5.0/opam: No space left on device
error: unable to create file packages/lsp/lsp.1.17.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/lsp/lsp.1.4.1/opam: No space left on device
error: unable to create file packages/lsp/lsp.1.5.0/opam: No space left on device
error: unable to create file packages/lutin/lutin.2.70.4/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/lutin/lutin.2.71.15/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.7/opam: No space left on device
error: unable to create file packages/lwt-dllist/lwt-dllist.1.1.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.5.0/opam: No space left on device
error: unable to create file packages/lwt/lwt.5.0.0/opam: No space left on device
error: unable to create file packages/lwt/lwt.5.0.1/opam: No space left on device
error: unable to create file packages/lwt/lwt.5.1.0/opam: No space left on device
error: unable to create file packages/lwt_direct/lwt_direct.6.0.0/opam: No space left on device
error: unable to create file packages/lwt_log/lwt_log.1.1.0/opam: No space left on device
error: unable to create file packages/lwt_ppx/lwt_ppx.1.0.0/opam: No space left on device
error: unable to create file packages/lwt_ppx/lwt_ppx.1.0.1/opam: No space left on device
error: unable to create file packages/lwt_ppx/lwt_ppx.1.2.2/opam: No space left on device
error: unable to create file packages/lwt_ppx/lwt_ppx.1.2.4/opam: No space left on device
error: unable to create file packages/lwt_react/lwt_react.1.2.0/opam: No space left on device
error: unable to create file packages/lwt_runtime_events/lwt_runtime_events.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/lwt_ssl/lwt_ssl.1.2.0/opam: No space left on device
error: unable to create file packages/lz4/lz4.1.2.0/opam: No space left on device
error: unable to create file packages/lz4/lz4.1.3.0/opam: No space left on device
error: unable to create file packages/macaque/macaque.0.7.4/opam: No space left on device
error: unable to create file packages/macaque/macaque.0.8/opam: No space left on device
error: unable to create file packages/mad/mad.0.5.1/opam: No space left on device
error: unable to create file packages/magic/magic.0.7.3/opam: No space left on device
error: unable to create file packages/mariadb/mariadb.1.1.5/opam: No space left on device
error: unable to create file packages/mariadb/mariadb.1.2.0/opam: No space left on device
error: unable to create file packages/markup-lwt/markup-lwt.0.5.0/opam: No space left on device
error: unable to create file packages/markup/markup.0.7.3/opam: No space left on device
error: unable to create file packages/mastodon-archive-viewer/mastodon-archive-viewer.0.2/opam: No space left on device
error: unable to create file packages/mastodon-archive-viewer/mastodon-archive-viewer.0.4.0/opam: No space left on device
error: unable to create file packages/matita/matita.0.99.5/opam: No space left on device
error: unable to create file packages/mccs/mccs.1.1+10/opam: No space left on device
error: unable to create file packages/mccs/mccs.1.1+11/opam: No space left on device
error: unable to create file packages/mccs/mccs.1.1+13/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/mdx/mdx.1.10.1/opam: No space left on device
error: unable to create file packages/mdx/mdx.1.11.0/opam: No space left on device
error: unable to create file packages/mdx/mdx.1.11.1/opam: No space left on device
error: unable to create file packages/mdx/mdx.2.5.0/opam: No space left on device
error: unable to create file packages/mdx/mdx.2.5.1/opam: No space left on device
error: unable to create file packages/mec/mec.0.1.0/opam: No space left on device
error: unable to create file packages/mecab/mecab.0.0.0/opam: No space left on device
error: unable to create file packages/mehari-lwt-unix/mehari-lwt-unix.0.1/opam: No space left on device
error: unable to create file packages/mehari-lwt-unix/mehari-lwt-unix.0.3/opam: No space left on device
error: unable to create file packages/mel/mel.0.3.0/opam: No space left on device
error: unable to create file packages/melange-atdgen-codec-runtime/melange-atdgen-codec-runtime.3.0.0/opam: No space left on device
error: unable to create file packages/melange-json-native/melange-json-native.2.0.0/opam: No space left on device
error: unable to create file packages/melange-json/melange-json.1.0.0/opam: No space left on device
error: unable to create file packages/melange-recharts/melange-recharts.4.0.3/opam: No space left on device
error: unable to create file packages/melange-testing-library/melange-testing-library.0.1.0/opam: No space left on device
error: unable to create file packages/melange-webapi/melange-webapi.0.22.0/opam: No space left on device
error: unable to create file packages/melange/melange.4.0.0-51/opam: No space left on device
error: unable to create file packages/melange/melange.5.0.0-414/opam: No space left on device
error: unable to create file packages/melange/melange.5.0.0-53/opam: No space left on device
error: unable to create file packages/melange/melange.5.0.1-414/opam: No space left on device
error: unable to create file packages/memcpy/memcpy.0.2.1/opam: No space left on device
error: unable to create file packages/memgraph_kitty/memgraph_kitty.1.0/opam: No space left on device
error: unable to create file packages/memtrace_viewer/memtrace_viewer.v0.14.0/opam: No space left on device
error: unable to create file packages/memtrace_viewer/memtrace_viewer.v0.14.1/opam: No space left on device
error: unable to create file packages/menhir-secondary/menhir-secondary.20231231/opam: No space left on device
error: unable to create file packages/menhir/menhir.20160303/opam: No space left on device
error: unable to create file packages/menhir/menhir.20160808/opam: No space left on device
error: unable to create file packages/menhir/menhir.20160825/opam: No space left on device
error: unable to create file packages/menhir/menhir.20161114/opam: No space left on device
error: unable to create file packages/menhir/menhir.20180703/opam: No space left on device
error: unable to create file packages/menhir/menhir.20200612/opam: No space left on device
error: unable to create file packages/menhir/menhir.20210310/opam: No space left on device
error: unable to create file packages/menhir/menhir.20211128/opam: No space left on device
error: unable to create file packages/menhir/menhir.20220210/opam: No space left on device
error: unable to create file packages/menhir/menhir.20230608/opam: No space left on device
error: unable to create file packages/menhir/menhir.20231231/opam: No space left on device
error: unable to create file packages/menhir/menhir.20240715/opam: No space left on device
error: unable to create file packages/menhir/menhir.20250903/opam: No space left on device
error: unable to create file packages/menhirSdk/menhirSdk.20211012/opam: No space left on device
error: unable to create file packages/menhirSdk/menhirSdk.20211125/opam: No space left on device
error: unable to create file packages/menhirSdk/menhirSdk.20230608/opam: No space left on device
error: unable to create file packages/merlin-extend/merlin-extend.0.5/opam: No space left on device
error: unable to create file packages/merlin-extend/merlin-extend.0.6/opam: No space left on device
error: unable to create file packages/merlin-lib/merlin-lib.4.19-414/opam: No space left on device
error: unable to create file packages/merlin-lib/merlin-lib.5.3-502/opam: No space left on device
error: unable to create file packages/merlin-lib/merlin-lib.5.5-503/opam: No space left on device
error: unable to create file packages/merlin-of-pds/merlin-of-pds.1.2/opam: No space left on device
error: unable to create file packages/merlin/merlin.3.8.0/opam: No space left on device
error: unable to create file packages/merlin/merlin.4.14-500/opam: No space left on device
error: unable to create file packages/mesh-display/mesh-display.0.8.9/opam: No space left on device
error: unable to create file packages/mesh-easymesh/mesh-easymesh.0.8.9/opam: No space left on device
error: unable to create file packages/mesh-triangle/mesh-triangle.0.9.3/opam: No space left on device
error: unable to create file packages/mesh/mesh.0.9.4/opam: No space left on device
error: unable to create file packages/metadata/metadata.0.2.0/opam: No space left on device
error: unable to create file packages/metadata/metadata.0.3.0/opam: No space left on device
error: unable to create file packages/metadb/metadb.1.0.1/opam: No space left on device
error: unable to create file packages/metapp/metapp.0.4.2/opam: No space left on device
error: unable to create file packages/metapp/metapp.0.4.3/opam: No space left on device
error: unable to create file packages/metaquot/metaquot.0.2.0/opam: No space left on device
error: unable to create file packages/metrics-lwt/metrics-lwt.0.4.1/opam: No space left on device
error: unable to create file packages/metrics-rusage/metrics-rusage.0.4.1/opam: No space left on device
error: unable to create file packages/metrics-unix/metrics-unix.0.4.1/opam: No space left on device
error: unable to create file packages/metrics-unix/metrics-unix.0.5.0/opam: No space left on device
error: unable to create file packages/minicaml/minicaml.0.2.1/opam: No space left on device
error: unable to create file packages/minicaml/minicaml.0.2.2/opam: No space left on device
error: unable to create file packages/minicli/minicli.1.0.0/opam: No space left on device
error: unable to create file packages/minios-xen/minios-xen.0.8/opam: No space left on device
error: unable to create file packages/minisat/minisat.0.1/opam: No space left on device
error: unable to create file packages/miou/miou.0.5.1/opam: No space left on device
error: unable to create file packages/mirage-block-ccm/mirage-block-ccm.1.1.0/opam: No space left on device
error: unable to create file packages/mirage-block-ccm/mirage-block-ccm.2.0.0/opam: No space left on device
error: unable to create file packages/mirage-block-combinators/mirage-block-combinators.2.0.1/opam: No space left on device
error: unable to create file packages/mirage-block-combinators/mirage-block-combinators.3.0.2/opam: No space left on device
error: unable to create file packages/mirage-block/mirage-block.2.0.1/opam: No space left on device
error: unable to create file packages/mirage-bootvar/mirage-bootvar.1.0.0/opam: No space left on device
error: unable to create file packages/mirage-bootvar/mirage-bootvar.1.0.1/opam: No space left on device
error: unable to create file packages/mirage-btrees/mirage-btrees.0.1.0/opam: No space left on device
error: unable to create file packages/mirage-crypto-ec/mirage-crypto-ec.1.1.0/opam: No space left on device
error: unable to create file packages/mirage-crypto-pk/mirage-crypto-pk.1.1.0/opam: No space left on device
error: unable to create file packages/mirage-crypto-pk/mirage-crypto-pk.1.2.0/opam: No space left on device
error: unable to create file packages/mirage-crypto-rng-eio/mirage-crypto-rng-eio.1.2.0/opam: No space left on device
error: unable to create file packages/mirage-crypto/mirage-crypto.0.10.7/opam: No space left on device
error: unable to create file packages/mirage-dns/mirage-dns.3.1.3/opam: No space left on device
error: unable to create file packages/mirage-flow/mirage-flow.1.6.0/opam: No space left on device
error: unable to create file packages/mirage-kv-lwt/mirage-kv-lwt.1.0.0/opam: No space left on device
error: unable to create file packages/mirage-kv-lwt/mirage-kv-lwt.1.1.0/opam: No space left on device
error: unable to create file packages/mirage-kv-mem/mirage-kv-mem.2.0.0/opam: No space left on device
error: unable to create file packages/mirage-kv/mirage-kv.3.0.1/opam: No space left on device
error: unable to create file packages/mirage-kv/mirage-kv.6.0.1/opam: No space left on device
error: unable to create file packages/mirage-kv/mirage-kv.6.1.0/opam: No space left on device
error: unable to create file packages/mirage-kv/mirage-kv.6.1.1/opam: No space left on device
error: unable to create file packages/mirage-logs/mirage-logs.3.0.0/opam: No space left on device
error: unable to create file packages/mirage-net-macosx/mirage-net-macosx.1.8.0/opam: No space left on device
error: unable to create file packages/mirage-net-macosx/mirage-net-macosx.1.9.0/opam: No space left on device
error: unable to create file packages/mirage-net-solo5/mirage-net-solo5.0.8.0/opam: No space left on device
error: unable to create file packages/mirage-no-xen/mirage-no-xen.1/opam: No space left on device
error: unable to create file packages/mirage-qubes/mirage-qubes.0.11.0/opam: No space left on device
error: unable to create file packages/mirage-runtime/mirage-runtime.4.10.0/opam: No space left on device
error: unable to create file packages/mirage-runtime/mirage-runtime.4.10.3/opam: No space left on device
error: unable to create file packages/mirage-tc/mirage-tc.0.3.0/opam: No space left on device
error: unable to create file packages/mirage-time-lwt/mirage-time-lwt.1.3.0/opam: No space left on device
error: unable to create file packages/mirage-time-unix/mirage-time-unix.3.0.0/opam: No space left on device
error: unable to create file packages/mirage-unikraft/mirage-unikraft.1.0.0/opam: No space left on device
error: unable to create file packages/mirage/mirage.4.0.0/opam: No space left on device
error: unable to create file packages/mkaudio/mkaudio.1.0.0/opam: No space left on device
error: unable to create file packages/mkaudio/mkaudio.1.0.1/opam: No space left on device
error: unable to create file packages/mkaudio/mkaudio.1.1.0/opam: No space left on device
error: unable to create file packages/mlbdd/mlbdd.0.5/opam: No space left on device
error: unable to create file packages/mlcuddidl/mlcuddidl.3.0.2/opam: No space left on device
error: unable to create file packages/mlcuddidl/mlcuddidl.3.0.5/opam: No space left on device
error: unable to create file packages/mlgmpidl/mlgmpidl.1.2.6/opam: No space left on device
error: unable to create file packages/mlgmpidl/mlgmpidl.1.2.8/opam: No space left on device
error: unable to create file packages/mlgmpidl/mlgmpidl.1.3.0/opam: No space left on device
error: unable to create file packages/mlmpfr/mlmpfr.4.1.0/opam: No space left on device
error: unable to create file packages/mlx/mlx.0.10/opam: No space left on device
error: unable to create file packages/mlx/mlx.0.9/opam: No space left on device
error: unable to create file packages/mm/mm.0.4.1/opam: No space left on device
error: unable to create file packages/mm/mm.0.7.2/opam: No space left on device
error: unable to create file packages/mm/mm.0.8.0/opam: No space left on device
error: unable to create file packages/mm/mm.0.8.2/opam: No space left on device
error: unable to create file packages/mm/mm.0.8.4/opam: No space left on device
error: unable to create file packages/mm/mm.0.8.5/opam: No space left on device
error: unable to create file packages/mock-ounit/mock-ounit.0.1.0/opam: No space left on device
error: unable to create file packages/mock-ounit/mock-ounit.0.1.1/opam: No space left on device
error: unable to create file packages/molenc/molenc.16.2.0/opam: No space left on device
error: unable to create file packages/molenc/molenc.16.5.0/opam: No space left on device
error: unable to create file packages/molenc/molenc.17.0.1/opam: No space left on device
error: unable to create file packages/molenc/molenc.4.0.2/opam: No space left on device
error: unable to create file packages/molenc/molenc.5.0.1/opam: No space left on device
error: unable to create file packages/molenc/molenc.8.0.2/opam: No space left on device
error: unable to create file packages/monadlib/monadlib.0.2/opam: No space left on device
error: unable to create file packages/monads/monads.2.1.0/opam: No space left on device
error: unable to create file packages/monads/monads.2.3.0/opam: No space left on device
error: unable to create file packages/monads/monads.2.4.0/opam: No space left on device
error: unable to create file packages/moonpool-io/moonpool-io.0.7/opam: No space left on device
error: unable to create file packages/moonpool-io/moonpool-io.0.8/opam: No space left on device
error: unable to create file packages/moonpool-lwt/moonpool-lwt.0.6/opam: No space left on device
error: unable to create file packages/moonpool/moonpool.0.5/opam: No space left on device
error: unable to create file packages/moonpool/moonpool.0.8/opam: No space left on device
error: unable to create file packages/moss/moss.0.1.1/opam: No space left on device
error: unable to create file packages/mparser-pcre/mparser-pcre.1.3/opam: No space left on device
error: unable to create file packages/mparser/mparser.1.2.1/opam: No space left on device
error: unable to create file packages/mparser/mparser.1.2.2/opam: No space left on device
error: unable to create file packages/mpi/mpi.1.06/opam: No space left on device
error: unable to create file packages/mpp/mpp.0.3.2/opam: No space left on device
error: unable to create file packages/mpp/mpp.0.3.4/opam: No space left on device
error: unable to create file packages/msat-bin/msat-bin.0.9/opam: No space left on device
error: unable to create file packages/msat/msat.0.1/opam: No space left on device
error: unable to create file packages/msat/msat.0.2/opam: No space left on device
error: unable to create file packages/msat/msat.0.3/opam: No space left on device
error: unable to create file packages/msat/msat.0.4.1/opam: No space left on device
error: unable to create file packages/msat/msat.0.4/opam: No space left on device
error: unable to create file packages/msat/msat.0.5.1/opam: No space left on device
error: unable to create file packages/msat/msat.0.5/opam: No space left on device
error: unable to create file packages/msys2-ucrt64/msys2-ucrt64.1/opam: No space left on device
error: unable to create file packages/msys2/msys2.0.1.0/opam: No space left on device
error: unable to create file packages/mula/mula.0.1.0/opam: No space left on device
error: unable to create file packages/multicodec/multicodec.0.1.0/opam: No space left on device
error: unable to create file packages/multicont/multicont.1.0.3/opam: No space left on device
error: unable to create file packages/multicore-bench/multicore-bench.0.1.0/opam: No space left on device
error: unable to create file packages/multicore-magic-dscheck/multicore-magic-dscheck.2.3.2/opam: No space left on device
error: unable to create file packages/multipart-form-data/multipart-form-data.0.3.0/opam: No space left on device
error: unable to create file packages/multipart_form-cohttp-lwt/multipart_form-cohttp-lwt.0.6.0/opam: No space left on device
error: unable to create file packages/murmur3/murmur3.0.2/opam: No space left on device
error: unable to create file packages/murmur3/murmur3.0.3/opam: No space left on device
error: unable to create file packages/mustache-cli/mustache-cli.3.3.0/opam: No space left on device
error: unable to create file packages/mybuild/mybuild.2/opam: No space left on device
error: unable to create file packages/mysql/mysql.1.2.1/opam: No space left on device
error: unable to create file packages/named-pipe/named-pipe.0.3/opam: No space left on device
error: unable to create file packages/nanoid/nanoid.1.0.0/opam: No space left on device
error: unable to create file packages/nanosvg_text/nanosvg_text.0.1/opam: No space left on device
error: unable to create file packages/nbd-tool/nbd-tool.6.0.0/opam: No space left on device
error: unable to create file packages/nbd-tool/nbd-tool.6.0.1/opam: No space left on device
error: unable to create file packages/nbd-unix/nbd-unix.6.0.0/opam: No space left on device
error: unable to create file packages/neural_nets_lib/neural_nets_lib.0.3.3/opam: No space left on device
error: unable to create file packages/neural_nets_lib/neural_nets_lib.0.4.0/opam: No space left on device
error: unable to create file packages/neural_nets_lib/neural_nets_lib.0.4.1/opam: No space left on device
error: unable to create file packages/nice_parser/nice_parser.1.0.0/opam: No space left on device
error: unable to create file packages/nlopt-ocaml/nlopt-ocaml.transition/opam: No space left on device
error: unable to create file packages/nlopt/nlopt.0.6.1/opam: No space left on device
error: unable to create file packages/nlopt/nlopt.0.7.0/opam: No space left on device
error: unable to create file packages/nlp/nlp.0.0.1/opam: No space left on device
error: unable to create file packages/nmea/nmea.0.1.2/opam: No space left on device
error: unable to create file packages/nocrypto/nocrypto.0.5.4-2/opam: No space left on device
error: unable to create file packages/noise/noise.0.2.0/opam: No space left on device
error: unable to create file packages/nomad/nomad.0.0.1/opam: No space left on device
error: unable to create file packages/non_empty_list/non_empty_list.0.1/opam: No space left on device
error: unable to create file packages/nonstd/nonstd.0.0.1/opam: No space left on device
error: unable to create file packages/nottui/nottui.0.1/opam: No space left on device
error: unable to create file packages/nottui/nottui.0.4/opam: No space left on device
error: unable to create file packages/np/np.np1.19-0.3.1/opam: No space left on device
error: unable to create file packages/num/num.1.5-1/opam: No space left on device
error: unable to create file packages/numalib/numalib.0.1.0/opam: No space left on device
error: unable to create file packages/nx-datasets/nx-datasets.1.0.0~alpha2/opam: No space left on device
error: unable to create file packages/oasis/oasis.0.4.10/opam: No space left on device
error: unable to create file packages/obeam/obeam.0.0.3/opam: No space left on device
error: unable to create file packages/obeam/obeam.0.1.2/opam: No space left on device
error: unable to create file packages/obelisk/obelisk.0.5.0/opam: No space left on device
error: unable to create file packages/obelisk/obelisk.0.5.2/opam: No space left on device
error: unable to create file packages/obelisk/obelisk.0.8.0/opam: No space left on device
error: unable to create file packages/obuilder-spec/obuilder-spec.0.5/opam: No space left on device
error: unable to create file packages/obuilder-spec/obuilder-spec.0.6.0/opam: No space left on device
error: unable to create file packages/obus/obus.1.2.3/opam: No space left on device
error: unable to create file packages/obytelib/obytelib.1.2/opam: No space left on device
error: unable to create file packages/ocaml-base-compiler/ocaml-base-compiler.3.07+2/opam: No space left on device
error: unable to create file packages/ocaml-base-compiler/ocaml-base-compiler.3.07/opam: No space left on device
error: unable to create file packages/ocaml-base-compiler/ocaml-base-compiler.3.08.0/opam: No space left on device
error: unable to create file packages/ocaml-base-compiler/ocaml-base-compiler.3.08.1/opam: No space left on device
error: unable to create file packages/ocaml-base-compiler/ocaml-base-compiler.3.09.3/opam: No space left on device
error: unable to create file packages/ocaml-base-compiler/ocaml-base-compiler.3.10.2/opam: No space left on device
error: unable to create file packages/ocaml-base-compiler/ocaml-base-compiler.4.00.0/opam: No space left on device
error: unable to create file packages/ocaml-base-compiler/ocaml-base-compiler.4.02.0/opam: No space left on device
error: unable to create file packages/ocaml-base-compiler/ocaml-base-compiler.4.02.3/opam: No space left on device
error: unable to create file packages/ocaml-base-compiler/ocaml-base-compiler.4.04.0/opam: No space left on device
error: unable to create file packages/ocaml-base-compiler/ocaml-base-compiler.4.08.0/opam: No space left on device
error: unable to create file packages/ocaml-base-compiler/ocaml-base-compiler.4.10.0/opam: No space left on device
error: unable to create file packages/ocaml-base-compiler/ocaml-base-compiler.4.11.1/opam: No space left on device
error: unable to create file packages/ocaml-base-compiler/ocaml-base-compiler.4.12.0/opam: No space left on device
error: unable to create file packages/ocaml-base-compiler/ocaml-base-compiler.5.3.0~alpha1/opam: No space left on device
error: unable to create file packages/ocaml-compiler-libs/ocaml-compiler-libs.v0.11.0/opam: No space left on device
error: unable to create file packages/ocaml-compiler-libs/ocaml-compiler-libs.v0.12.1/opam: No space left on device
error: unable to create file packages/ocaml-compiler/ocaml-compiler.5.3.0~alpha1/opam: No space left on device
error: unable to create file packages/ocaml-compiler/ocaml-compiler.5.3/opam: No space left on device
error: unable to create file packages/ocaml-compiler/ocaml-compiler.5.4/opam: No space left on device
error: unable to create file packages/ocaml-compiler/ocaml-compiler.5.5/opam: No space left on device
error: unable to create file packages/ocaml-embed-file/ocaml-embed-file.v0.15.0/opam: No space left on device
error: unable to create file packages/ocaml-lsp-server/ocaml-lsp-server.1.21.0/opam: No space left on device
error: unable to create file packages/ocaml-lsp-server/ocaml-lsp-server.1.22.0/opam: No space left on device
error: unable to create file packages/ocaml-lsp-server/ocaml-lsp-server.1.22.1~5.4preview/opam: No space left on device
error: unable to create file packages/ocaml-migrate-parsetree-ocamlbuild/ocaml-migrate-parsetree-ocamlbuild.1.2.0/opam: No space left on device
error: unable to create file packages/ocaml-migrate-parsetree/ocaml-migrate-parsetree.1.8.0/opam: No space left on device
error: unable to create file packages/ocaml-migrate-parsetree/ocaml-migrate-parsetree.2.0.0/opam: No space left on device
error: unable to create file packages/ocaml-migrate-parsetree/ocaml-migrate-parsetree.2.1.0/opam: No space left on device
error: unable to create file packages/ocaml-migrate-parsetree/ocaml-migrate-parsetree.2.2.0/opam: No space left on device
error: unable to create file packages/ocaml-monadic/ocaml-monadic.0.3.2/opam: No space left on device
error: unable to create file packages/ocaml-option-no-compression/ocaml-option-no-compression.1/opam: No space left on device
error: unable to create file packages/ocaml-option-no-flat-float-array/ocaml-option-no-flat-float-array.1/opam: No space left on device
error: unable to create file packages/ocaml-options-only-afl/ocaml-options-only-afl.1/opam: No space left on device
error: unable to create file packages/ocaml-options-only-nnpchecker/ocaml-options-only-nnpchecker.1/opam: No space left on device
error: unable to create file packages/ocaml-protoc-plugin/ocaml-protoc-plugin.2.0.0/opam: No space left on device
error: unable to create file packages/ocaml-protoc-plugin/ocaml-protoc-plugin.4.0.0/opam: No space left on device
error: unable to create file packages/ocaml-protoc-plugin/ocaml-protoc-plugin.4.2.0/opam: No space left on device
error: unable to create file packages/ocaml-protoc-plugin/ocaml-protoc-plugin.4.3.1/opam: No space left on device
error: unable to create file packages/ocaml-protoc/ocaml-protoc.1.2.6/opam: No space left on device
error: unable to create file packages/ocaml-protoc/ocaml-protoc.3.1/opam: No space left on device
error: unable to create file packages/ocaml-secondary-compiler/ocaml-secondary-compiler.4.08.1-1/opam: No space left on device
error: unable to create file packages/ocaml-src/ocaml-src.5.2.0/opam: No space left on device
error: unable to create file packages/ocaml-src/ocaml-src.5.3.0/opam: No space left on device
error: unable to create file packages/ocaml-src/ocaml-src.5.4.0/opam: No space left on device
error: unable to create file packages/ocaml-system/ocaml-system.3.07+2/opam: No space left on device
error: unable to create file packages/ocaml-system/ocaml-system.3.07/opam: No space left on device
error: unable to create file packages/ocaml-system/ocaml-system.3.09.1/opam: No space left on device
error: unable to create file packages/ocaml-system/ocaml-system.3.09.3/opam: No space left on device
error: unable to create file packages/ocaml-system/ocaml-system.4.09.1/opam: No space left on device
error: unable to create file packages/ocaml-system/ocaml-system.5.2.1/opam: No space left on device
error: unable to create file packages/ocaml-systemd/ocaml-systemd.1.1/opam: No space left on device
error: unable to create file packages/ocaml-unikraft-backend-firecracker-x86_64/ocaml-unikraft-backend-firecracker-x86_64.0.20.0/opam: No space left on device
error: unable to create file packages/ocaml-unikraft-default-x86_64/ocaml-unikraft-default-x86_64.1.1.0/opam: No space left on device
error: unable to create file packages/ocaml-unikraft-option-debug/ocaml-unikraft-option-debug.0.20.0/opam: No space left on device
error: unable to create file packages/ocaml-unikraft-toolchain-arm64/ocaml-unikraft-toolchain-arm64.0.18.0/opam: No space left on device
error: unable to create file packages/ocaml-unikraft-toolchain-arm64/ocaml-unikraft-toolchain-arm64.0.20.0/opam: No space left on device
error: unable to create file packages/ocaml-unikraft/ocaml-unikraft.1.1.0/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.3.09.1+metaocaml/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.00.1+BER/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.00.1+raspberrypi/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.00.1+short-types/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.01.0+open-types/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.02.3+PIC/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.02.3+buckle-1/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.03.0+fp+flambda/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.04.0+fPIC/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.04.0+flambda/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.04.0+fp+flambda/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.04.2+fp+flambda/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.05.0+musl+flambda/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.05.0+spacetime/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.06.0+flambda/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.06.1+default-unsafe-string/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.06.1+flambda/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.06.2+trunk+force-safe-string/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.07.0+flambda+no-flat-float-array/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.07.0+force-safe-string/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.07.0+fp/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.07.1+bytecode-only/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.07.1+spacetime/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.07.1+statistical-memprof/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.07.2+trunk+afl/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.08.0+flambda+no-flat-float-array/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.08.0+flambda/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.08.1+flambda/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.08.1+force-safe-string/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.09.0+force-safe-string/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.09.1+afl/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.09.1+bytecode-only/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.10.0+musl+static+flambda/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.10.1+flambda+no-flat-float-array/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.10.1+musl+flambda/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.10.2+rescript/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.11.1+default-unsafe-string/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.11.1+musl+static+flambda/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.11.2+flambda/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.11.2+fp+flambda/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.11.2+musl+static+flambda/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.11.3+trunk+fp/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.12.0+domains/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.12.1+options/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.13.0+options/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.13.1+options/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.13.2+trunk/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.14.0+options/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.14.1+options/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.14.2~rc1+options/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.4.14.3+trunk/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.5.0.0+options/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.5.0.0+tsan/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.5.1.2+trunk/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.5.2.0+options/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.5.3.0~beta2+options/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.5.3.1+trunk/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.5.4.0+options/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.5.4.0~alpha1+options/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.5.4.1+trunk/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.5.5.0+trunk/opam: No space left on device
error: unable to create file packages/ocaml-variants/ocaml-variants.5.6.0+trunk/opam: No space left on device
error: unable to create file packages/ocaml-xdg-basedir/ocaml-xdg-basedir.0.0.3/opam: No space left on device
error: unable to create file packages/ocaml-xdg-basedir/ocaml-xdg-basedir.transition/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.3.08.1/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.3.08.2/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.3.09.1/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.3.09.2/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.3.10.0/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.3.10.2/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.3.11.1/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.3.11.2/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.4.03.1/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.4.04.0/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.4.04.2/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.4.06.0/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.4.06.1/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.4.08.0/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.4.08.1/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.4.10.3/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.4.11.3/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.4.12.2/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.4.13.1/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.4.14.2/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.5.2.2/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.5.3.0/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.5.5.0/opam: No space left on device
error: unable to create file packages/ocaml/ocaml.5.6.0/opam: No space left on device
error: unable to create file packages/ocaml_db_model/ocaml_db_model.0.1/opam: No space left on device
error: unable to create file packages/ocaml_intrinsics/ocaml_intrinsics.v0.15.0/opam: No space left on device
error: unable to create file packages/ocaml_intrinsics/ocaml_intrinsics.v0.15.1/opam: No space left on device
error: unable to create file packages/ocaml_intrinsics/ocaml_intrinsics.v0.15.2/opam: No space left on device
error: unable to create file packages/ocaml_plugin/ocaml_plugin.v0.12.0/opam: No space left on device
error: unable to create file packages/ocamlbrowser/ocamlbrowser.5.0.0/opam: No space left on device
error: unable to create file packages/ocamlbrowser/ocamlbrowser.5.2.0/opam: No space left on device
error: unable to create file packages/ocamlbrowser/ocamlbrowser.5.3.0/opam: No space left on device
error: unable to create file packages/ocamlbuild-pkg/ocamlbuild-pkg.0.1/opam: No space left on device
error: unable to create file packages/ocamlbuild-pkg/ocamlbuild-pkg.0.2.1/opam: No space left on device
error: unable to create file packages/ocamlbuild-protoc/ocamlbuild-protoc.0.1/opam: No space left on device
error: unable to create file packages/ocamlbuild/ocamlbuild.0.14.2+win/opam: No space left on device
error: unable to create file packages/ocamlbuild/ocamlbuild.0.14.2/opam: No space left on device
error: unable to create file packages/ocamlbuild/ocamlbuild.0.14.3+win/opam: No space left on device
error: unable to create file packages/ocamlbuild/ocamlbuild.0.14.3/opam: No space left on device
error: unable to create file packages/ocamlbuild/ocamlbuild.0.15.0/opam: No space left on device
error: unable to create file packages/ocamlbuild/ocamlbuild.0.16.1/opam: No space left on device
error: unable to create file packages/ocamlc-loc/ocamlc-loc.3.19.1/opam: No space left on device
error: unable to create file packages/ocamlc-loc/ocamlc-loc.3.20.0/opam: No space left on device
error: unable to create file packages/ocamldap/ocamldap.2.3.0/opam: No space left on device
error: unable to create file packages/ocamldap/ocamldap.transition/opam: No space left on device
error: unable to create file packages/ocamldiff/ocamldiff.1.1/opam: No space left on device
error: unable to create file packages/ocamldiff/ocamldiff.1.2/opam: No space left on device
error: unable to create file packages/ocamldot/ocamldot.1.1/opam: No space left on device
error: unable to create file packages/ocamldsort/ocamldsort.0.16.0/opam: No space left on device
error: unable to create file packages/ocamleditor/ocamleditor.1.13.4~preview.4.10/opam: No space left on device
error: unable to create file packages/ocamlfind/ocamlfind.1.8.0/opam: No space left on device
error: unable to create file packages/ocamlfind/ocamlfind.1.8.1/opam: No space left on device
error: unable to create file packages/ocamlfind/ocamlfind.1.9.1/opam: No space left on device
error: unable to create file packages/ocamlfind/ocamlfind.1.9.2/opam: No space left on device
error: unable to create file packages/ocamlfind/ocamlfind.1.9.5/opam: No space left on device
error: unable to create file packages/ocamlfind/ocamlfind.1.9.8/opam: No space left on device
error: unable to create file packages/ocamlformat-lib/ocamlformat-lib.0.25.1/opam: No space left on device
error: unable to create file packages/ocamlformat-mlx-lib/ocamlformat-mlx-lib.0.26.2.0/opam: No space left on device
error: unable to create file packages/ocamlformat-mlx-lib/ocamlformat-mlx-lib.0.27.0/opam: No space left on device
error: unable to create file packages/ocamlformat-mlx-lib/ocamlformat-mlx-lib.0.28.1.1/opam: No space left on device
error: unable to create file packages/ocamlformat-mlx-lib/ocamlformat-mlx-lib.0.28.1.2/opam: No space left on device
error: unable to create file packages/ocamlformat-mlx/ocamlformat-mlx.0.26.2.0/opam: No space left on device
error: unable to create file packages/ocamlformat-mlx/ocamlformat-mlx.0.27.0.1/opam: No space left on device
error: unable to create file packages/ocamlformat-mlx/ocamlformat-mlx.0.27.0/opam: No space left on device
error: unable to create file packages/ocamlformat-mlx/ocamlformat-mlx.0.28.1.1/opam: No space left on device
error: unable to create file packages/ocamlformat-rpc-lib/ocamlformat-rpc-lib.0.19.0/opam: No space left on device
error: unable to create file packages/ocamlformat-rpc-lib/ocamlformat-rpc-lib.0.20.0/opam: No space left on device
error: unable to create file packages/ocamlformat-rpc-lib/ocamlformat-rpc-lib.0.22.4/opam: No space left on device
error: unable to create file packages/ocamlformat-rpc-lib/ocamlformat-rpc-lib.0.26.0/opam: No space left on device
error: unable to create file packages/ocamlformat-rpc-lib/ocamlformat-rpc-lib.0.26.1/opam: No space left on device
error: unable to create file packages/ocamlformat-rpc-lib/ocamlformat-rpc-lib.0.26.2/opam: No space left on device
error: unable to create file packages/ocamlformat-rpc-lib/ocamlformat-rpc-lib.0.27.0/opam: No space left on device
error: unable to create file packages/ocamlformat-rpc/ocamlformat-rpc.0.19.0/opam: No space left on device
error: unable to create file packages/ocamlformat-rpc/ocamlformat-rpc.0.20.0/opam: No space left on device
error: unable to create file packages/ocamlformat-rpc/ocamlformat-rpc.0.20.1/opam: No space left on device
error: unable to create file packages/ocamlformat/ocamlformat.0.11.0/opam: No space left on device
error: unable to create file packages/ocamlformat/ocamlformat.0.12/opam: No space left on device
error: unable to create file packages/ocamlformat/ocamlformat.0.14.0/opam: No space left on device
error: unable to create file packages/ocamlformat/ocamlformat.0.16.0/opam: No space left on device
error: unable to create file packages/ocamlformat/ocamlformat.0.25.1/opam: No space left on device
error: unable to create file packages/ocamlformat/ocamlformat.0.26.2/opam: No space left on device
error: unable to create file packages/ocamlformat/ocamlformat.0.27.0/opam: No space left on device
error: unable to create file packages/ocamlformat/ocamlformat.0.9.1/opam: No space left on device
error: unable to create file packages/ocamlfuse/ocamlfuse.2.7.1-cvs13/opam: No space left on device
error: unable to create file packages/ocamlgraph/ocamlgraph.2.1.0/opam: No space left on device
error: unable to create file packages/ocamlify/ocamlify.0.1.0/opam: No space left on device
error: unable to create file packages/ocamline/ocamline.1.0/opam: No space left on device
error: unable to create file packages/ocamline/ocamline.1.1/opam: No space left on device
error: unable to create file packages/ocamlmerlin-mlx/ocamlmerlin-mlx.0.10/opam: No space left on device
error: unable to create file packages/ocamlmerlin-mlx/ocamlmerlin-mlx.0.11/opam: No space left on device
error: unable to create file packages/ocamlmig/ocamlmig.5.2-20250228/opam: No space left on device
error: unable to create file packages/ocamlmod/ocamlmod.0.0.9/opam: No space left on device
error: unable to create file packages/ocamlmod/ocamlmod.0.1.1/opam: No space left on device
error: unable to create file packages/ocamlnet/ocamlnet.4.1.6/opam: No space left on device
error: unable to create file packages/ocamlnet/ocamlnet.4.1.7/opam: No space left on device
error: unable to create file packages/ocamlnet/ocamlnet.4.1.8/opam: No space left on device
error: unable to create file packages/ocamlnet/ocamlnet.4.1.9-1/opam: No space left on device
error: unable to create file packages/ocamlnet/ocamlnet.4.1.9-2/opam: No space left on device
error: unable to create file packages/ocamlnet/ocamlnet.4.1.9/opam: No space left on device
error: unable to create file packages/ocamlrss/ocamlrss.2.0/opam: No space left on device
error: unable to create file packages/ocamlrss/ocamlrss.2.2.1/opam: No space left on device
error: unable to create file packages/ocamlscript/ocamlscript.2.0.4/opam: No space left on device
error: unable to create file packages/ocamlsdl/ocamlsdl.0.9.1/opam: No space left on device
error: unable to create file packages/ocamlsdl2-image/ocamlsdl2-image.0.01/opam: No space left on device
error: unable to create file packages/ocamlsdl2-ttf/ocamlsdl2-ttf.0.01/opam: No space left on device
error: unable to create file packages/ocamlsdl2-ttf/ocamlsdl2-ttf.0.02/opam: No space left on device
error: unable to create file packages/ocamlsdl2/ocamlsdl2.0.02/opam: No space left on device
error: unable to create file packages/ocamlsdl2/ocamlsdl2.0.03/opam: No space left on device
error: unable to create file packages/ocamlsdl2/ocamlsdl2.0.04/opam: No space left on device
error: unable to create file packages/ocamlwc/ocamlwc.0.3/opam: No space left on device
error: unable to create file packages/ocamlyices/ocamlyices.0.7.1/opam: No space left on device
error: unable to create file packages/ocb-stubblr/ocb-stubblr.0.0.2/opam: No space left on device
error: unable to create file packages/ocb-stubblr/ocb-stubblr.0.1.1-1/opam: No space left on device
error: unable to create file packages/ocb/ocb.0.2/opam: No space left on device
error: unable to create file packages/ocephes/ocephes.0.8.2/opam: No space left on device
error: unable to create file packages/ocf/ocf.0.6.0/opam: No space left on device
error: unable to create file packages/ocf/ocf.1.0.0/opam: No space left on device
error: unable to create file packages/ocf_ppx/ocf_ppx.0.8.0/opam: No space left on device
error: unable to create file packages/ocf_ppx/ocf_ppx.0.9.0/opam: No space left on device
error: unable to create file packages/ocf_ppx/ocf_ppx.1.0.0/opam: No space left on device
error: unable to create file packages/ocluster-api/ocluster-api.0.3.0/opam: No space left on device
error: unable to create file packages/ocluster/ocluster.0.1/opam: No space left on device
error: unable to create file packages/ocluster/ocluster.0.2/opam: No space left on device
error: unable to create file packages/ocolor/ocolor.1.1/opam: No space left on device
error: unable to create file packages/ocolor/ocolor.1.2.1/opam: No space left on device
error: unable to create file packages/ocolor/ocolor.1.2/opam: No space left on device
error: unable to create file packages/ocp-browser/ocp-browser.1.0.0/opam: No space left on device
error: unable to create file packages/ocp-browser/ocp-browser.1.1.9/opam: No space left on device
error: unable to create file packages/ocp-browser/ocp-browser.1.2.1/opam: No space left on device
error: unable to create file packages/ocp-browser/ocp-browser.1.2.2/opam: No space left on device
error: unable to create file packages/ocp-browser/ocp-browser.1.2/opam: No space left on device
error: unable to create file packages/ocp-browser/ocp-browser.1.3.0/opam: No space left on device
error: unable to create file packages/ocp-indent-nlfork/ocp-indent-nlfork.1.5.5/opam: No space left on device
error: unable to create file packages/ocp-indent/ocp-indent.1.6.1/opam: No space left on device
error: unable to create file packages/ocp-indent/ocp-indent.1.8.0/opam: No space left on device
error: unable to create file packages/ocp-indent/ocp-indent.1.8.1/opam: No space left on device
error: unable to create file packages/ocp-index-top/ocp-index-top.0.4.1/opam: No space left on device
error: unable to create file packages/ocp-index/ocp-index.1.3.0/opam: No space left on device
error: unable to create file packages/ocp-index/ocp-index.1.3.1/opam: No space left on device
error: unable to create file packages/ocp-index/ocp-index.1.3.2/opam: No space left on device
error: unable to create file packages/ocp-index/ocp-index.1.3.3/opam: No space left on device
error: unable to create file packages/ocp-ocamlres/ocp-ocamlres.0.4/opam: No space left on device
error: unable to create file packages/ocp-pack-split/ocp-pack-split.1.0.1/opam: No space left on device
error: unable to create file packages/ocplib-endian/ocplib-endian.1.0/opam: No space left on device
error: unable to create file packages/ocplib-endian/ocplib-endian.1.2/opam: No space left on device
error: unable to create file packages/ocplib-json-typed-browser/ocplib-json-typed-browser.0.7.1/opam: No space left on device
error: unable to create file packages/ocplib-json-typed-browser/ocplib-json-typed-browser.0.7/opam: No space left on device
error: unable to create file packages/ocplib-json-typed-bson/ocplib-json-typed-bson.0.7.1/opam: No space left on device
error: unable to create file packages/ocplib-json-typed-bson/ocplib-json-typed-bson.0.7/opam: No space left on device
error: unable to create file packages/ocplib-json-typed/ocplib-json-typed.0.7/opam: No space left on device
error: unable to create file packages/ocplib-resto/ocplib-resto.0.1/opam: No space left on device
error: unable to create file packages/ocplib-simplex/ocplib-simplex.0.3/opam: No space left on device
error: unable to create file packages/ocplib-simplex/ocplib-simplex.0.4/opam: No space left on device
error: unable to create file packages/ocplib-simplex/ocplib-simplex.0.5/opam: No space left on device
error: unable to create file packages/ocplib_stuff/ocplib_stuff.0.2.0/opam: No space left on device
error: unable to create file packages/ocplib_stuff/ocplib_stuff.0.3.0/opam: No space left on device
error: unable to create file packages/ocplib_stuff/ocplib_stuff.0.4.0/opam: No space left on device
error: unable to create file packages/ocsfml/ocsfml.2.0/opam: No space left on device
error: unable to create file packages/ocsigen-i18n/ocsigen-i18n.3.5.0/opam: No space left on device
error: unable to create file packages/ocsigen-i18n/ocsigen-i18n.3.6.0/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.2.15.2/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.2.16.0/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.2.16.1/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.2.18.0/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.2.19.3/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.2.21.1/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.4.0.1/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.4.1.0/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.4.3.0/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.4.6.0/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.4.7.0/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.5.0.0/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.6.1.0/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.6.3.0/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.7.0.0/opam: No space left on device
error: unable to create file packages/ocsigen-start/ocsigen-start.7.1.0/opam: No space left on device
error: unable to create file packages/ocsigen-toolkit/ocsigen-toolkit.2.10.1/opam: No space left on device
error: unable to create file packages/ocsigen-toolkit/ocsigen-toolkit.2.4.1/opam: No space left on device
error: unable to create file packages/ocsigen-toolkit/ocsigen-toolkit.3.3.1/opam: No space left on device
error: unable to create file packages/ocsigen-toolkit/ocsigen-toolkit.4.0.0/opam: No space left on device
error: unable to create file packages/ocsigen-toolkit/ocsigen-toolkit.4.1.0/opam: No space left on device
error: unable to create file packages/ocsigenserver/ocsigenserver.2.12.0/opam: No space left on device
error: unable to create file packages/ocsigenserver/ocsigenserver.2.13.0/opam: No space left on device
error: unable to create file packages/ocsigenserver/ocsigenserver.2.14.0/opam: No space left on device
error: unable to create file packages/ocsigenserver/ocsigenserver.2.15.0/opam: No space left on device
error: unable to create file packages/ocsigenserver/ocsigenserver.2.18.0/opam: No space left on device
error: unable to create file packages/ocsigenserver/ocsigenserver.3.0.0/opam: No space left on device
error: unable to create file packages/ocsigenserver/ocsigenserver.5.0.1/opam: No space left on device
error: unable to create file packages/ocsigenserver/ocsigenserver.5.1.2/opam: No space left on device
error: unable to create file packages/ocsipersist-dbm-config/ocsipersist-dbm-config.2.0.0/opam: No space left on device
error: unable to create file packages/ocsipersist-dbm/ocsipersist-dbm.1.0.1/opam: No space left on device
error: unable to create file packages/ocsipersist-dbm/ocsipersist-dbm.1.0/opam: No space left on device
error: unable to create file packages/ocsipersist-dbm/ocsipersist-dbm.1.1.0/opam: No space left on device
error: unable to create file packages/ocsipersist-pgsql/ocsipersist-pgsql.1.0.2/opam: No space left on device
error: unable to create file packages/ocsipersist-pgsql/ocsipersist-pgsql.1.0.4/opam: No space left on device
error: unable to create file packages/ocsipersist-pgsql/ocsipersist-pgsql.1.0.5/opam: No space left on device
error: unable to create file packages/ocsipersist-pgsql/ocsipersist-pgsql.2.0.0/opam: No space left on device
error: unable to create file packages/ocsipersist-sqlite/ocsipersist-sqlite.1.0/opam: No space left on device
error: unable to create file packages/ocsipersist-sqlite/ocsipersist-sqlite.1.1.0/opam: No space left on device
error: unable to create file packages/ocsipersist/ocsipersist.1.0.1/opam: No space left on device
error: unable to create file packages/octavius/octavius.0.1.0/opam: No space left on device
error: unable to create file packages/octez-accuser-Proxford/octez-accuser-Proxford.18.0/opam: No space left on device
error: unable to create file packages/octez-accuser-Proxford/octez-accuser-Proxford.18.1/opam: No space left on device
error: unable to create file packages/octez-accuser-Proxford/octez-accuser-Proxford.19.0/opam: No space left on device
error: unable to create file packages/octez-accuser-Proxford/octez-accuser-Proxford.19.1/opam: No space left on device
error: unable to create file packages/octez-accuser-Proxford/octez-accuser-Proxford.20.1/opam: No space left on device
error: unable to create file packages/octez-accuser-PsParisC/octez-accuser-PsParisC.20.1/opam: No space left on device
error: unable to create file packages/octez-accuser-PtLimaPt/octez-accuser-PtLimaPt.16.1/opam: No space left on device
error: unable to create file packages/octez-accuser-PtParisB/octez-accuser-PtParisB.20.1/opam: No space left on device
error: unable to create file packages/octez-alcotezt/octez-alcotezt.19.0/opam: No space left on device
error: unable to create file packages/octez-alcotezt/octez-alcotezt.20.1/opam: No space left on device
error: unable to create file packages/octez-baker-Proxford/octez-baker-Proxford.18.0/opam: No space left on device
error: unable to create file packages/octez-baker-PtNairob/octez-baker-PtNairob.18.1/opam: No space left on device
error: unable to create file packages/octez-baker-PtNairob/octez-baker-PtNairob.19.1/opam: No space left on device
error: unable to create file packages/octez-baker-PtParisB/octez-baker-PtParisB.20.1/opam: No space left on device
error: unable to create file packages/octez-bls12-381-hash/octez-bls12-381-hash.17.3/opam: No space left on device
error: unable to create file packages/octez-bls12-381-polynomial/octez-bls12-381-polynomial.17.3/opam: No space left on device
error: unable to create file packages/octez-bls12-381-signature/octez-bls12-381-signature.17.3/opam: No space left on device
error: unable to create file packages/octez-client/octez-client.16.1/opam: No space left on device
error: unable to create file packages/octez-client/octez-client.17.3/opam: No space left on device
error: unable to create file packages/octez-codec/octez-codec.18.1/opam: No space left on device
error: unable to create file packages/octez-codec/octez-codec.19.0/opam: No space left on device
error: unable to create file packages/octez-codec/octez-codec.20.1/opam: No space left on device
fatal: cannot create directory at 'packages/octez-crawler/octez-crawler.18.0': No space left on device
git-reset failed with exit-code 128
2026-01-27 19:34.51: Job failed: Failed: Build failed