Build:
- 0
2026-02-27 04:03.54: New job: test conan-lwt.0.0.5 with ocaml-compiler.5.4.0~rc1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (09d7830dd4a7cd4cfc1725bd69ec5b222eae677d)
on debian-13-ocaml-5.4/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/29451/head" && git reset --hard 09d7830d
git fetch origin master
git merge --no-edit 5abb4f44e937819c2e438ab71bc23607a7cad3da
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
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 ocaml-compiler.5.4.0~rc1 5.4.0~rc1
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~rc1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml-compiler.5.4.0~rc1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall conan-lwt.0.0.5; \
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" != 'conan-lwt.0.0.5' && 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 conan-lwt.0.0.5) || true
RUN opam reinstall --with-test --verbose conan-lwt.0.0.5; \
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" != 'conan-lwt.0.0.5' && 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-02-27 04:03.54: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-ocaml-compiler.5.4.0~rc1-conan-lwt.0.0.5-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 04:03.54: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
(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 ocaml-compiler.5.4.0~rc1 5.4.0~rc1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~rc1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-compiler.5.4.0~rc1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conan-lwt.0.0.5;\
\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\" != 'conan-lwt.0.0.5' && 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 conan-lwt.0.0.5) || true"))
(run (shell "opam reinstall --with-test --verbose conan-lwt.0.0.5;\
\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\" != 'conan-lwt.0.0.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-02-27 04:03.54: Waiting for resource in pool OCluster
2026-03-02 01:18.35: Waiting for worker…
2026-03-02 01:22.38: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 66% (12224/18334)
Updating files: 67% (12284/18334)
Updating files: 68% (12468/18334)
Updating files: 69% (12651/18334)
Updating files: 70% (12834/18334)
Updating files: 71% (13018/18334)
Updating files: 72% (13201/18334)
Updating files: 73% (13384/18334)
Updating files: 74% (13568/18334)
Updating files: 75% (13751/18334)
Updating files: 76% (13934/18334)
Updating files: 77% (14118/18334)
Updating files: 78% (14301/18334)
Updating files: 79% (14484/18334)
Updating files: 80% (14668/18334)
Updating files: 81% (14851/18334)
Updating files: 82% (15034/18334)
Updating files: 83% (15218/18334)
Updating files: 84% (15401/18334)
Updating files: 85% (15584/18334)
Updating files: 86% (15768/18334)
Updating files: 87% (15951/18334)
Updating files: 88% (16134/18334)
Updating files: 89% (16318/18334)
Updating files: 90% (16501/18334)
Updating files: 91% (16684/18334)
Updating files: 92% (16868/18334)
Updating files: 93% (17051/18334)
Updating files: 94% (17234/18334)
Updating files: 95% (17418/18334)
Updating files: 96% (17601/18334)
Updating files: 97% (17784/18334)
Updating files: 98% (17968/18334)
Updating files: 99% (18151/18334)
Updating files: 100% (18334/18334)
Updating files: 100% (18334/18334), done.
HEAD is now at 5abb4f44e9 Merge pull request #29466 from mseri/release-doi2bib-0.9.1
Merge made by the 'ort' strategy.
.../ocaml-base-compiler.3.07+1/opam | 1 +
.../ocaml-base-compiler.3.07+2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.07/opam | 1 +
.../ocaml-base-compiler.3.08.0/opam | 1 +
.../ocaml-base-compiler.3.08.1/opam | 1 +
.../ocaml-base-compiler.3.08.2/opam | 1 +
.../ocaml-base-compiler.3.08.3/opam | 1 +
.../ocaml-base-compiler.3.08.4/opam | 1 +
.../ocaml-base-compiler.3.09.0/opam | 1 +
.../ocaml-base-compiler.3.09.1/opam | 1 +
.../ocaml-base-compiler.3.09.2/opam | 1 +
.../ocaml-base-compiler.3.09.3/opam | 1 +
.../ocaml-base-compiler.3.10.0/opam | 1 +
.../ocaml-base-compiler.3.10.1/opam | 1 +
.../ocaml-base-compiler.3.10.2/opam | 1 +
.../ocaml-base-compiler.3.11.0/opam | 1 +
.../ocaml-base-compiler.3.11.1/opam | 1 +
.../ocaml-base-compiler.3.11.2/opam | 1 +
.../ocaml-base-compiler.3.12.0/opam | 1 +
.../ocaml-base-compiler.3.12.1/opam | 1 +
.../ocaml-base-compiler.4.00.0/opam | 1 +
.../ocaml-base-compiler.4.00.1/opam | 1 +
.../ocaml-base-compiler.4.01.0/opam | 1 +
.../ocaml-base-compiler.4.02.0/opam | 1 +
.../ocaml-base-compiler.4.02.1/opam | 1 +
.../ocaml-base-compiler.4.02.2/opam | 1 +
.../ocaml-base-compiler.4.02.3/opam | 1 +
.../ocaml-base-compiler.4.03.0/opam | 1 +
.../ocaml-base-compiler.4.04.0/opam | 1 +
.../ocaml-base-compiler.4.04.1/opam | 1 +
.../ocaml-base-compiler.4.04.2/opam | 1 +
.../ocaml-base-compiler.4.05.0/opam | 1 +
.../ocaml-base-compiler.4.06.0/opam | 1 +
.../ocaml-base-compiler.4.06.1/opam | 1 +
.../ocaml-base-compiler.4.07.0/opam | 1 +
.../ocaml-base-compiler.4.07.1/opam | 1 +
.../ocaml-base-compiler.4.08.0/opam | 1 +
.../ocaml-base-compiler.4.08.1/opam | 1 +
.../ocaml-base-compiler.4.09.0/opam | 1 +
.../ocaml-base-compiler.4.09.1/opam | 1 +
.../ocaml-base-compiler.4.10.0/opam | 1 +
.../ocaml-base-compiler.4.10.1/opam | 1 +
.../ocaml-base-compiler.4.10.2/opam | 1 +
.../ocaml-base-compiler.4.11.0/opam | 1 +
.../ocaml-base-compiler.4.11.1/opam | 1 +
.../ocaml-base-compiler.4.11.2/opam | 1 +
.../ocaml-base-compiler.4.12.0/opam | 1 +
.../ocaml-base-compiler.4.12.1/opam | 1 +
.../ocaml-base-compiler.4.13.0/opam | 1 +
.../ocaml-base-compiler.4.13.1/opam | 1 +
.../ocaml-base-compiler.4.14.0/opam | 1 +
.../ocaml-base-compiler.4.14.1/opam | 1 +
.../ocaml-base-compiler.4.14.2/opam | 1 +
.../ocaml-base-compiler.4.14.2~rc1/opam | 1 +
.../ocaml-base-compiler.4.14.3/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.5.0.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.1/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 1 +
.../ocaml-secondary-compiler.4.08.1-1/opam | 1 +
.../ocaml-secondary-compiler.4.08.1/opam | 1 +
.../ocaml-secondary-compiler.4.14.2/opam | 1 +
.../ocaml-variants.3.09.1+metaocaml/opam | 1 +
.../ocaml-variants.4.00.0+debug-runtime/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+PIC/opam | 1 +
.../ocaml-variants.4.00.1+debug-runtime/opam | 1 +
.../ocaml-variants.4.00.1+open-types/opam | 1 +
.../ocaml-variants.4.00.1+raspberrypi/opam | 1 +
.../ocaml-variants.4.00.1+short-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+PIC/opam | 1 +
.../ocaml-variants.4.01.0+armv6-freebsd/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+lsb/opam | 1 +
.../ocaml-variants.4.01.0+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+musl/opam | 1 +
.../ocaml-variants.4.01.0+open-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+profile/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.0+PIC/opam | 1 +
.../ocaml-variants.4.02.0+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+PIC/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+fp/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits-ber/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits/opam | 1 +
.../ocaml-variants.4.02.1+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+musl/opam | 1 +
.../ocaml-variants.4.02.2+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+PIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+buckle-1/opam | 1 +
.../ocaml-variants.4.02.3+buckle-master/opam | 1 +
.../ocaml-variants.4.02.3+bytecode-only/opam | 1 +
.../ocaml-variants.4.02.3+curried-constr/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+fp/opam | 1 +
.../ocaml-variants.4.02.3+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+musl/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+32bit/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+flambda/opam | 1 +
.../ocaml-variants.4.03.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.03.0+fp/opam | 1 +
.../ocaml-variants.4.03.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+afl/opam | 1 +
.../ocaml-variants.4.04.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+flambda/opam | 1 +
.../ocaml-variants.4.04.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+fp/opam | 1 +
.../ocaml-variants.4.04.0+safe-string/opam | 1 +
.../ocaml-variants.4.04.0+spacetime/opam | 1 +
.../ocaml-variants.4.04.0+trunk+forced_lto/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+32bit/opam | 1 +
.../ocaml-variants.4.04.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.04.1+copatterns/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+flambda/opam | 1 +
.../ocaml-variants.4.04.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.1+fp/opam | 1 +
.../ocaml-variants.4.04.1+safe-string/opam | 1 +
.../ocaml-variants.4.04.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+32bit/opam | 1 +
.../ocaml-variants.4.04.2+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+flambda/opam | 1 +
.../ocaml-variants.4.04.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.2+fp/opam | 1 +
.../ocaml-variants.4.04.2+safe-string/opam | 1 +
.../ocaml-variants.4.04.2+spacetime/opam | 1 +
.../ocaml-variants.4.04.2+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+afl/opam | 1 +
.../ocaml-variants.4.05.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+lto/opam | 1 +
.../ocaml-variants.4.05.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.05.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.05.0+safe-string/opam | 1 +
.../ocaml-variants.4.05.0+spacetime/opam | 1 +
.../ocaml-variants.4.05.0+statistical-memprof/opam | 1 +
.../ocaml-variants.4.05.1+trunk+afl/opam | 1 +
.../ocaml-variants.4.05.1+trunk+flambda/opam | 1 +
.../ocaml-variants.4.05.1+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk+fp/opam | 1 +
.../ocaml-variants.4.05.1+trunk+safe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+afl/opam | 1 +
.../ocaml-variants.4.06.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+flambda/opam | 1 +
.../ocaml-variants.4.06.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+fp/opam | 1 +
.../ocaml-variants.4.06.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.06.0+spacetime/opam | 1 +
.../ocaml-variants.4.06.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+afl/opam | 1 +
.../ocaml-variants.4.06.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.1+default-unsafe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+flambda/opam | 1 +
.../ocaml-variants.4.06.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+lto/opam | 1 +
.../ocaml-variants.4.06.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.1+no-flat-float-array/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+rescript/opam | 1 +
.../ocaml-variants.4.06.1+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+termux/opam | 1 +
.../ocaml-variants.4.06.2+trunk+afl/opam | 1 +
.../ocaml-variants.4.06.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.06.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+afl/opam | 1 +
.../ocaml-variants.4.07.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+flambda/opam | 1 +
.../ocaml-variants.4.07.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+fp/opam | 1 +
.../ocaml-variants.4.07.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+afl/opam | 1 +
.../ocaml-variants.4.07.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+flambda/opam | 1 +
.../ocaml-variants.4.07.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+fp/opam | 1 +
.../ocaml-variants.4.07.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.07.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.07.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.1+spacetime/opam | 1 +
.../ocaml-variants.4.07.1+statistical-memprof/opam | 1 +
.../ocaml-variants.4.07.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.07.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.07.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+afl/opam | 1 +
.../ocaml-variants.4.08.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+flambda/opam | 1 +
.../ocaml-variants.4.08.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+fp/opam | 1 +
.../ocaml-variants.4.08.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.08.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+afl/opam | 1 +
.../ocaml-variants.4.08.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+flambda/opam | 1 +
.../ocaml-variants.4.08.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+fp/opam | 1 +
.../ocaml-variants.4.08.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.1+spacetime/opam | 1 +
.../ocaml-variants.4.08.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.08.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.08.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+afl/opam | 1 +
.../ocaml-variants.4.09.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+flambda/opam | 1 +
.../ocaml-variants.4.09.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+fp/opam | 1 +
.../ocaml-variants.4.09.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+32bit/opam | 1 +
.../ocaml-variants.4.09.1+afl+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+afl/opam | 1 +
.../ocaml-variants.4.09.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+flambda/opam | 1 +
.../ocaml-variants.4.09.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+fp/opam | 1 +
.../ocaml-variants.4.09.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.1+spacetime/opam | 1 +
.../ocaml-variants.4.09.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.09.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.09.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+afl/opam | 1 +
.../ocaml-variants.4.10.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+flambda/opam | 1 +
.../ocaml-variants.4.10.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+fp/opam | 1 +
.../ocaml-variants.4.10.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.0+musl+static+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+nnpcheck/opam | 1 +
.../ocaml-variants.4.10.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.10.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+afl/opam | 1 +
.../ocaml-variants.4.10.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+flambda/opam | 1 +
.../ocaml-variants.4.10.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+fp/opam | 1 +
.../ocaml-variants.4.10.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.1+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+rc1+afl/opam | 1 +
.../ocaml-variants.4.10.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+afl/opam | 1 +
.../ocaml-variants.4.10.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+flambda/opam | 1 +
.../ocaml-variants.4.10.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+fp/opam | 1 +
.../ocaml-variants.4.10.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.2+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+rescript/opam | 1 +
.../ocaml-variants.4.10.2+spacetime/opam | 1 +
.../ocaml-variants.4.10.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.10.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+afl/opam | 1 +
.../ocaml-variants.4.11.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+flambda/opam | 1 +
.../ocaml-variants.4.11.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam | 1 +
.../ocaml-variants.4.11.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+32bit/opam | 1 +
.../ocaml-variants.4.11.1+BER+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+afl/opam | 1 +
.../ocaml-variants.4.11.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+flambda/opam | 1 +
.../ocaml-variants.4.11.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+fp/opam | 1 +
.../ocaml-variants.4.11.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+afl/opam | 1 +
.../ocaml-variants.4.11.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+flambda/opam | 1 +
.../ocaml-variants.4.11.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+fp/opam | 1 +
.../ocaml-variants.4.11.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.2+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.2+spacetime/opam | 1 +
.../ocaml-variants.4.11.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.11.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk/opam | 1 +
.../ocaml-variants.4.12.0+domains+effects/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+domains/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.14.1+BER/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.2+options/opam | 1 +
.../ocaml-variants.4.14.2~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.3+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.0.0+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.0+tsan/opam | 1 +
.../ocaml-variants.5.1.1+effect-syntax/opam | 1 +
.../ocaml-variants.5.1.1+flambda2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+flambda2/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.1+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.0+options/opam | 1 +
.../ocaml-variants.5.2.0+statmemprof/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.1+options/opam | 1 +
.../ocaml-variants.5.2.1~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.3.0+BER/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.1/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.15.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.16.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.0/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.2/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.3/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.5/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.6/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.8/opam | 1 +
packages/relocatable/relocatable.packages/opam | 18 ++++++++++++++++++
432 files changed, 464 insertions(+), 5 deletions(-)
create mode 100644 packages/relocatable/relocatable.packages/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
2026-03-02 01:22.41 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-02 01:22.41 ---> using "7a3442ad99cd957e3ce65df65cad40aee4354c6d524c7813b8b589bc410c187e" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
Continue? [Y/n] y
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-02 01:22.41 ---> using "4214446d06a5b764dff5167574d07a5b4441731262795df63d7a3c5f64e1a189" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-02 01:22.41 ---> using "8bf276ecf196c09ac4fb294f887dce47d9744c212aabbbad5d313f0a4179272a" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-02 01:22.41 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-02 01:22.43 ---> using "f28d2d55603b70a3956974bde95e68526d52d43abb5c3f086de712d28b994566" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-02 01:22.43 ---> using "3775e9b8ca53e7a42e175e2f214e7d345a02bf22f9dd6d271ae720654f277192" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 203 kB in 0s (1230 kB/s)
- Reading package lists...
-
2026-03-02 01:22.43 ---> using "a6fcf1eb697bb2cbcd49a3ac591b228ed4dfb5d9211b39971561804e137638fa" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~rc1 5.4.0~rc1"))
ocaml-compiler is now pinned to version 5.4.0~rc1
2026-03-02 01:22.43 ---> using "7f59afc8569d372cdff05a25219bb838bcd2ac1106223157c8c00d0d2de86f37" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~rc1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-compiler.5.4.0~rc1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocaml-compiler.5.4.0~rc1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
- remove ocaml-base-compiler 5.4.0 (pinned) [conflicts with ocaml-compiler]
=== downgrade 1 package
- downgrade ocaml-compiler 5.4.0 to 5.4.0~rc1 (pinned)
=== recompile 6 packages
- recompile base-domains base [uses ocaml]
- recompile base-effects base [uses ocaml]
- recompile base-nnp base [uses base-domains]
- recompile ocaml 5.4.0 [uses ocaml-base-compiler]
- recompile ocaml-config 3 [uses ocaml-base-compiler]
- recompile opam-depext 1.2.3 [uses ocaml]
=== install 1 package
- install ocaml-variants 5.4.0~rc1+options [required by ocaml]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~rc1 (cached)
-> retrieved ocaml-config.3 (cached)
-> retrieved opam-depext.1.2.3 (cached)
-> removed base-effects.base
-> removed base-nnp.base
-> removed base-domains.base
-> removed opam-depext.1.2.3
-> removed ocaml.5.4.0
-> removed ocaml-config.3
-> removed ocaml-base-compiler.5.4.0
-> removed ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~rc1
-> installed ocaml-variants.5.4.0~rc1+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~rc1+options"}]
Use `opam switch set-invariant' to change it.
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-02 01:22.43 ---> using "74f1d3c2ced61271e81f53a652eb1fc779b2788839e8821a36f8d5d64e64c908" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conan-lwt.0.0.5;\
\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\" != 'conan-lwt.0.0.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
conan-lwt.0.0.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 17 packages
- install base-bytes base [required by ocplib-endian]
- install bigstringaf 0.10.0 [required by conan-lwt]
- install conan 0.0.5 [required by conan-lwt]
- install conan-lwt 0.0.5
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.21.1 [required by conan-lwt]
- install dune-configurator 3.21.1 [required by bigstringaf, lwt]
- install lwt 6.1.1 [required by conan-lwt]
- install ocamlbuild 0.16.1 [required by ptime, uutf]
- install ocamlfind 1.9.8 [required by ptime, uutf]
- install ocplib-endian 1.2 [required by lwt]
- install ptime 1.2.0 [required by conan]
- install re 1.11.0 [required by conan]
- install seq base [required by re]
- install topkg 1.1.1 [required by ptime, uutf]
- install uutf 1.0.4 [required by conan]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved conan.0.0.5, conan-lwt.0.0.5 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved lwt.6.1.1 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.11.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved topkg.1.1.1 (cached)
-> retrieved uutf.1.0.4 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed ptime.1.2.0
-> installed dune.3.21.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed re.1.11.0
-> installed ocplib-endian.1.2
-> installed conan.0.0.5
-> installed dune-configurator.3.21.1
-> installed bigstringaf.0.10.0
-> installed lwt.6.1.1
-> installed conan-lwt.0.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 01:25.41 ---> saved as "5910e1a14e62e69eba279bd2f4bbb2197f9724e8d04298940f0f4e728edfa5f0"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test conan-lwt.0.0.5) || true"))
The following actions will be performed:
=== recompile 3 packages
- recompile conan 0.0.5 [uses uutf]
- recompile conan-lwt 0.0.5
- recompile uutf 1.0.4 [uses cmdliner]
=== install 9 packages
- install afl-persistent 1.4 [required by crowbar]
- install alcotest 1.9.1 [required by conan-lwt]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 2.1.0 [required by alcotest, crowbar]
- install crowbar 0.2.2 [required by conan-lwt]
- install fmt 0.11.0 [required by conan-lwt]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install rresult 0.7.0 [required by conan-lwt]
- install stdlib-shims 0.3.0 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved afl-persistent.1.4 (https://opam.ocaml.org/cache)
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> installed afl-persistent.1.4
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved conan.0.0.5, conan-lwt.0.0.5 (https://opam.ocaml.org/cache)
-> retrieved crowbar.0.2.2 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved rresult.0.7.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed rresult.0.7.0
-> installed astring.0.8.5
-> installed ocaml-syntax-shims.1.0.0
-> removed conan-lwt.0.0.5
-> removed conan.0.0.5
-> removed uutf.1.0.4
-> installed cmdliner.2.1.0
-> installed crowbar.0.2.2
-> installed fmt.0.11.0
-> installed uutf.1.0.4
-> installed alcotest.1.9.1
-> installed conan.0.0.5
-> installed conan-lwt.0.0.5
Done.
<><> afl-persistent.1.4 installed successfully ><><><><><><><><><><><><><><><><>
=> afl-persistent is installed, but since the current OCaml compiler does
not enable AFL instrumentation by default, most packages will not be
instrumented and fuzzing with afl-fuzz may not be effective.
To globally enable AFL instrumentation, create an OCaml switch like:
opam switch create 5.4.0+afl ocaml-variants.5.4.0+options ocaml-option-afl
# To update the current shell environment, run: eval $(opam env)
2026-03-02 01:28.19 ---> saved as "e488ae59326a560e2355aef71f705ac2b0e07ede60845e3915bf3888ad9ff371"
/home/opam: (run (shell "opam reinstall --with-test --verbose conan-lwt.0.0.5;\
\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\" != 'conan-lwt.0.0.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile conan-lwt 0.0.5
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [conan-lwt.0.0.5: extract]
-> retrieved conan-lwt.0.0.5 (cached)
Processing 2/4: [conan-lwt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "conan-lwt" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/conan-lwt.0.0.5)
Processing 2/4: [conan-lwt: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "conan-lwt" "--create-install-files" "conan-lwt" (CWD=/home/opam/.opam/5.4/.opam-switch/build/conan-lwt.0.0.5)
Processing 2/4: [conan-lwt: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "conan-lwt" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/conan-lwt.0.0.5)
- (cd _build/default/test && ./test_file.exe --color=always)
- Testing `file'.
- This run has ID `02BGXDZX'.
-
- [OK] simple 0 test00.
- [OK] simple 1 test01.
- [OK] simple 2 test02 (odd/even).
- [OK] simple 3 test03 (odd/even).
- [OK] simple 4 test04 (odd/even).
- [OK] simple 5 test05 (odd/even).
- [OK] simple 6 test06 (zlib).
- [OK] simple 7 test07 (caml).
- [OK] simple 8 test08 (gzip).
-
- Full test results in `~/.opam/5.4/.opam-switch/build/conan-lwt.0.0.5/_build/default/test/_build/_tests/file'.
- Test Successful in 0.002s. 9 tests run.
- (cd _build/default/test && ./test_parser.exe --color=always)
- Testing `conan'.
- This run has ID `6B22FWE2'.
-
- [OK] parser 0 acorn.
- [OK] parser 1 adi.
- [OK] parser 2 adventure.
- [OK] parser 3 aes.
- [OK] parser 4 algol68.
- [OK] parser 5 allegro.
- [OK] parser 6 alliant.
- [OK] parser 7 alpha.
- [OK] parser 8 amanda.
- [OK] parser 9 amigaos.
- [OK] parser 10 android.
- [OK] parser 11 animation.
- [OK] parser 12 aout.
- [OK] parser 13 apache.
- [OK] parser 14 apl.
- [OK] parser 15 apple.
- [OK] parser 16 application.
- [OK] parser 17 applix.
- [OK] parser 18 apt.
- [OK] parser 19 archive.
- [OK] parser 20 aria.
- [OK] parser 21 arm.
- [OK] parser 22 asf.
- [OK] parser 23 assembler.
- [OK] parser 24 asterix.
- [OK] parser 25 att3b.
- [OK] parser 26 audio.
- [OK] parser 27 avm.
- [OK] parser 28 basis.
- [OK] parser 29 beetle.
- [OK] parser 30 ber.
- [OK] parser 31 bflt.
- [OK] parser 32 bhl.
- [OK] parser 33 bioinformatics.
- [OK] parser 34 biosig.
- [OK] parser 35 blackberry.
- [OK] parser 36 blcr.
- [OK] parser 37 blender.
- [OK] parser 38 blit.
- [OK] parser 39 bm.
- [OK] parser 40 bout.
- [OK] parser 41 bsdi.
- [OK] parser 42 bsi.
- [OK] parser 43 btsnoop.
- [OK] parser 44 burp.
- [OK] parser 45 bytecode.
- [OK] parser 46 c64.
- [OK] parser 47 cad.
- [OK] parser 48 cafebabe.
- [OK] parser 49 cbor.
- [OK] parser 50 ccf.
- [OK] parser 51 cddb.
- [OK] parser 52 chord.
- [OK] parser 53 cisco.
- [OK] parser 54 citrus.
- [OK] parser 55 c-lang.
- [OK] parser 56 clarion.
- [OK] parser 57 claris.
- [OK] parser 58 clipper.
- [OK] parser 59 clojure.
- [OK] parser 60 coff.
- [OK] parser 61 commands.
- [OK] parser 62 communications.
- [OK] parser 63 compress.
- [OK] parser 64 console.
- [OK] parser 65 convex.
- [OK] parser 66 coverage.
- [OK] parser 67 cracklib.
- [OK] parser 68 crypto.
- [OK] parser 69 ctags.
- [OK] parser 70 ctf.
- [OK] parser 71 cubemap.
- [OK] parser 72 cups.
- [OK] parser 73 dact.
- [OK] parser 74 database.
- [OK] parser 75 dataone.
- [OK] parser 76 dbpf.
- [OK] parser 77 diamond.
- [OK] parser 78 dif.
- [OK] parser 79 diff.
- [OK] parser 80 digital.
- [OK] parser 81 dolby.
- [OK] parser 82 dump.
- [OK] parser 83 dwarfs.
- [OK] parser 84 dyadic.
- [OK] parser 85 ebml.
- [OK] parser 86 edid.
- [OK] parser 87 editors.
- [OK] parser 88 efi.
- [OK] parser 89 elf.
- [OK] parser 90 encore.
- [OK] parser 91 epoc.
- [OK] parser 92 erlang.
- [OK] parser 93 espressif.
- [OK] parser 94 esri.
- [OK] parser 95 etf.
- [OK] parser 96 fcs.
- [OK] parser 97 filesystems.
- [OK] parser 98 finger.
- [OK] parser 99 firmware.
- [OK] parser 100 flash.
- [OK] parser 101 flif.
- [OK] parser 102 fonts.
- [OK] parser 103 forth.
- [OK] parser 104 fortran.
- [OK] parser 105 frame.
- [OK] parser 106 freebsd.
- [OK] parser 107 fsav.
- [OK] parser 108 fusecompress.
- [OK] parser 109 games.
- [OK] parser 110 gcc.
- [OK] parser 111 gconv.
- [OK] parser 112 geo.
- [OK] parser 113 geos.
- [OK] parser 114 gimp.
- [OK] parser 115 git.
- [OK] parser 116 glibc.
- [OK] parser 117 gnome.
- [OK] parser 118 gnu.
- [OK] parser 119 gnumeric.
- [OK] parser 120 gpt.
- [OK] parser 121 gpu.
- [OK] parser 122 grace.
- [OK] parser 123 graphviz.
- [OK] parser 124 gringotts.
- [OK] parser 125 guile.
- [OK] parser 126 hardware.
- [OK] parser 127 hitachi-sh.
- [OK] parser 128 hp.
- [OK] parser 129 human68k.
- [OK] parser 130 ibm370.
- [OK] parser 131 ibm6000.
- [OK] parser 132 icc.
- [OK] parser 133 iff.
- [OK] parser 134 images.
- [OK] parser 135 inform.
- [OK] parser 136 intel.
- [OK] parser 137 interleaf.
- [OK] parser 138 island.
- [OK] parser 139 ispell.
- [OK] parser 140 isz.
- [OK] parser 141 java.
- [OK] parser 142 javascript.
- [OK] parser 143 jpeg.
- [OK] parser 144 karma.
- [OK] parser 145 kde.
- [OK] parser 146 keepass.
- [OK] parser 147 kerberos.
- [OK] parser 148 kicad.
- [OK] parser 149 kml.
- [OK] parser 150 lammps.
- [OK] parser 151 lecter.
- [OK] parser 152 lex.
- [OK] parser 153 lif.
- [OK] parser 154 linux.
- [OK] parser 155 lisp.
- [OK] parser 156 llvm.
- [OK] parser 157 locoscript.
- [OK] parser 158 lua.
- [OK] parser 159 luks.
- [OK] parser 160 m4.
- [OK] parser 161 mach.
- [OK] parser 162 macintosh.
- [OK] parser 163 macos.
- [OK] parser 164 magic.
- [OK] parser 165 mail.news.
- [OK] parser 166 make.
- [OK] parser 167 map.
- [OK] parser 168 maple.
- [OK] parser 169 marc21.
- [OK] parser 170 mathcad.
- [OK] parser 171 mathematica.
- [OK] parser 172 matroska.
- [OK] parser 173 mcrypt.
- [OK] parser 174 measure.
- [OK] parser 175 mercurial.
- [OK] parser 176 metastore.
- [OK] parser 177 meteorological.
- [OK] parser 178 microfocus.
- [OK] parser 179 mime.
- [OK] parser 180 mips.
- [OK] parser 181 mirage.
- [OK] parser 182 misctools.
- [OK] parser 183 mkid.
- [OK] parser 184 mlssa.
- [OK] parser 185 mmdf.
- [OK] parser 186 modem.
- [OK] parser 187 modulefile.
- [OK] parser 188 motorola.
- [OK] parser 189 mozilla.
- [OK] parser 190 msdos.
- [OK] parser 191 msooxml.
- [OK] parser 192 msvc.
- [OK] parser 193 msx.
- [OK] parser 194 mup.
- [OK] parser 195 music.
- [OK] parser 196 nasa.
- [OK] parser 197 natinst.
- [OK] parser 198 ncr.
- [OK] parser 199 neko.
- [OK] parser 200 netbsd.
- [OK] parser 201 netscape.
- [OK] parser 202 netware.
- [OK] parser 203 news.
- [OK] parser 204 nifty.
- [OK] parser 205 nim-lang.
- [OK] parser 206 nitpicker.
- [OK] parser 207 numpy.
- [OK] parser 208 oasis.
- [OK] parser 209 ocaml.
- [OK] parser 210 octave.
- [OK] parser 211 ole2compounddocs.
- [OK] parser 212 olf.
- [OK] parser 213 openfst.
- [OK] parser 214 opentimestamps.
- [OK] parser 215 oric.
- [OK] parser 216 os2.
- [OK] parser 217 os400.
- [OK] parser 218 os9.
- [OK] parser 219 osf1.
- [OK] parser 220 palm.
- [OK] parser 221 parix.
- [OK] parser 222 parrot.
- [OK] parser 223 pascal.
- [OK] parser 224 pbf.
- [OK] parser 225 pbm.
- [OK] parser 226 pc88.
- [OK] parser 227 pc98.
- [OK] parser 228 pci_ids.
- [OK] parser 229 pcjr.
- [OK] parser 230 pdf.
- [OK] parser 231 pdp.
- [OK] parser 232 perl.
- [OK] parser 233 pgf.
- [OK] parser 234 pgp.
- [OK] parser 235 pgp-binary-keys.
- [OK] parser 236 pkgadd.
- [OK] parser 237 plan9.
- [OK] parser 238 playdate.
- [OK] parser 239 plus5.
- [OK] parser 240 pmem.
- [OK] parser 241 polyml.
- [OK] parser 242 printer.
- [OK] parser 243 project.
- [OK] parser 244 psdbms.
- [OK] parser 245 psl.
- [OK] parser 246 pulsar.
- [OK] parser 247 puzzle.
- [OK] parser 248 pwsafe.
- [OK] parser 249 pyramid.
- [OK] parser 250 python.
- [OK] parser 251 qt.
- [OK] parser 252 revision.
- [OK] parser 253 riff.
- [OK] parser 254 rinex.
- [OK] parser 255 ringdove.
- [OK] parser 256 rpi.
- [OK] parser 257 rpm.
- [OK] parser 258 rpmsg.
- [OK] parser 259 rst.
- [OK] parser 260 rtf.
- [OK] parser 261 ruby.
- [OK] parser 262 rust.
- [OK] parser 263 sc.
- [OK] parser 264 sccs.
- [OK] parser 265 scientific.
- [OK] parser 266 securitycerts.
- [OK] parser 267 selinux.
- [OK] parser 268 sendmail.
- [OK] parser 269 sequent.
- [OK] parser 270 sereal.
- [OK] parser 271 sgi.
- [OK] parser 272 sgml.
- [OK] parser 273 sharc.
- [OK] parser 274 sinclair.
- [OK] parser 275 sisu.
- [OK] parser 276 sketch.
- [OK] parser 277 smalltalk.
- [OK] parser 278 smile.
- [OK] parser 279 sniffer.
- [OK] parser 280 softquad.
- [OK] parser 281 sosi.
- [OK] parser 282 spec.
- [OK] parser 283 spectrum.
- [OK] parser 284 sql.
- [OK] parser 285 ssh.
- [OK] parser 286 ssl.
- [OK] parser 287 statistics.
- [OK] parser 288 subtitle.
- [OK] parser 289 sun.
- [OK] parser 290 svf.
- [OK] parser 291 sylk.
- [OK] parser 292 symbos.
- [OK] parser 293 sysex.
- [OK] parser 294 tcl.
- [OK] parser 295 teapot.
- [OK] parser 296 terminfo.
- [OK] parser 297 tex.
- [OK] parser 298 tgif.
- [OK] parser 299 ti-8x.
- [OK] parser 300 timezone.
- [OK] parser 301 tplink.
- [OK] parser 302 troff.
- [OK] parser 303 tuxedo.
- [OK] parser 304 typeset.
- [OK] parser 305 uf2.
- [OK] parser 306 unicode.
- [OK] parser 307 unisig.
- [OK] parser 308 unknown.
- [OK] parser 309 usd.
- [OK] parser 310 uterus.
- [OK] parser 311 uuencode.
- [OK] parser 312 vacuum-cleaner.
- [OK] parser 313 varied.out.
- [OK] parser 314 varied.script.
- [OK] parser 315 vax.
- [OK] parser 316 vicar.
- [OK] parser 317 virtual.
- [OK] parser 318 virtutech.
- [OK] parser 319 visx.
- [OK] parser 320 vms.
- [OK] parser 321 vmware.
- [OK] parser 322 vorbis.
- [OK] parser 323 vxl.
- [OK] parser 324 warc.
- [OK] parser 325 weak.
- [OK] parser 326 web.
- [OK] parser 327 webassembly.
- [OK] parser 328 windows.
- [OK] parser 329 wireless.
- [OK] parser 330 wordprocessors.
- [OK] parser 331 wsdl.
- [OK] parser 332 x68000.
- [OK] parser 333 xdelta.
- [OK] parser 334 xenix.
- [OK] parser 335 xilinx.
- [OK] parser 336 xo65.
- [OK] parser 337 xwindows.
- [OK] parser 338 yara.
- [OK] parser 339 zfs.
- [OK] parser 340 zilog.
- [OK] parser 341 zip.
- [OK] parser 342 zyxel.
- [OK] tree 0 acorn.
- [OK] tree 1 adi.
- [OK] tree 2 adventure.
- [OK] tree 3 aes.
- [OK] tree 4 algol68.
- [OK] tree 5 allegro.
- [OK] tree 6 alliant.
- [OK] tree 7 alpha.
- [OK] tree 8 amanda.
- [OK] tree 9 amigaos.
- [OK] tree 10 android.
- [OK] tree 11 animation.
- [OK] tree 12 aout.
- [OK] tree 13 apache.
- [OK] tree 14 apl.
- [OK] tree 15 apple.
- [OK] tree 16 application.
- [OK] tree 17 applix.
- [OK] tree 18 apt.
- [OK] tree 19 archive.
- [OK] tree 20 aria.
- [OK] tree 21 arm.
- [OK] tree 22 asf.
- [OK] tree 23 assembler.
- [OK] tree 24 asterix.
- [OK] tree 25 att3b.
- [OK] tree 26 audio.
- [OK] tree 27 avm.
- [OK] tree 28 basis.
- [OK] tree 29 beetle.
- [OK] tree 30 ber.
- [OK] tree 31 bflt.
- [OK] tree 32 bhl.
- [OK] tree 33 bioinformatics.
- [OK] tree 34 biosig.
- [OK] tree 35 blackberry.
- [OK] tree 36 blcr.
- [OK] tree 37 blender.
- [OK] tree 38 blit.
- [OK] tree 39 bm.
- [OK] tree 40 bout.
- [OK] tree 41 bsdi.
- [OK] tree 42 bsi.
- [OK] tree 43 btsnoop.
- [OK] tree 44 burp.
- [OK] tree 45 bytecode.
- [OK] tree 46 c64.
- [OK] tree 47 cad.
- [OK] tree 48 cafebabe.
- [OK] tree 49 cbor.
- [OK] tree 50 ccf.
- [OK] tree 51 cddb.
- [OK] tree 52 chord.
- [OK] tree 53 cisco.
- [OK] tree 54 citrus.
- [OK] tree 55 c-lang.
- [OK] tree 56 clarion.
- [OK] tree 57 claris.
- [OK] tree 58 clipper.
- [OK] tree 59 clojure.
- [OK] tree 60 coff.
- [OK] tree 61 commands.
- [OK] tree 62 communications.
- [OK] tree 63 compress.
- [OK] tree 64 console.
- [OK] tree 65 convex.
- [OK] tree 66 coverage.
- [OK] tree 67 cracklib.
- [OK] tree 68 crypto.
- [OK] tree 69 ctags.
- [OK] tree 70 ctf.
- [OK] tree 71 cubemap.
- [OK] tree 72 cups.
- [OK] tree 73 dact.
- [OK] tree 74 database.
- [OK] tree 75 dataone.
- [OK] tree 76 dbpf.
- [OK] tree 77 diamond.
- [OK] tree 78 dif.
- [OK] tree 79 diff.
- [OK] tree 80 digital.
- [OK] tree 81 dolby.
- [OK] tree 82 dump.
- [OK] tree 83 dwarfs.
- [OK] tree 84 dyadic.
- [OK] tree 85 ebml.
- [OK] tree 86 edid.
- [OK] tree 87 editors.
- [OK] tree 88 efi.
- [OK] tree 89 elf.
- [OK] tree 90 encore.
- [OK] tree 91 epoc.
- [OK] tree 92 erlang.
- [OK] tree 93 espressif.
- [OK] tree 94 esri.
- [OK] tree 95 etf.
- [OK] tree 96 fcs.
- [OK] tree 97 filesystems.
- [OK] tree 98 finger.
- [OK] tree 99 firmware.
- [OK] tree 100 flash.
- [OK] tree 101 flif.
- [OK] tree 102 fonts.
- [OK] tree 103 forth.
- [OK] tree 104 fortran.
- [OK] tree 105 frame.
- [OK] tree 106 freebsd.
- [OK] tree 107 fsav.
- [OK] tree 108 fusecompress.
- [OK] tree 109 games.
- [OK] tree 110 gcc.
- [OK] tree 111 gconv.
- [OK] tree 112 geo.
- [OK] tree 113 geos.
- [OK] tree 114 gimp.
- [OK] tree 115 git.
- [OK] tree 116 glibc.
- [OK] tree 117 gnome.
- [OK] tree 118 gnu.
- [OK] tree 119 gnumeric.
- [OK] tree 120 gpt.
- [OK] tree 121 gpu.
- [OK] tree 122 grace.
- [OK] tree 123 graphviz.
- [OK] tree 124 gringotts.
- [OK] tree 125 guile.
- [OK] tree 126 hardware.
- [OK] tree 127 hitachi-sh.
- [OK] tree 128 hp.
- [OK] tree 129 human68k.
- [OK] tree 130 ibm370.
- [OK] tree 131 ibm6000.
- [OK] tree 132 icc.
- [OK] tree 133 iff.
- [OK] tree 134 images.
- [OK] tree 135 inform.
- [OK] tree 136 intel.
- [OK] tree 137 interleaf.
- [OK] tree 138 island.
- [OK] tree 139 ispell.
- [OK] tree 140 isz.
- [OK] tree 141 java.
- [OK] tree 142 javascript.
- [OK] tree 143 jpeg.
- [OK] tree 144 karma.
- [OK] tree 145 kde.
- [OK] tree 146 keepass.
- [OK] tree 147 kerberos.
- [OK] tree 148 kicad.
- [OK] tree 149 kml.
- [OK] tree 150 lammps.
- [OK] tree 151 lecter.
- [OK] tree 152 lex.
- [OK] tree 153 lif.
- [OK] tree 154 linux.
- [OK] tree 155 lisp.
- [OK] tree 156 llvm.
- [OK] tree 157 locoscript.
- [OK] tree 158 lua.
- [OK] tree 159 luks.
- [OK] tree 160 m4.
- [OK] tree 161 mach.
- [OK] tree 162 macintosh.
- [OK] tree 163 macos.
- [OK] tree 164 magic.
- [OK] tree 165 mail.news.
- [OK] tree 166 make.
- [OK] tree 167 map.
- [OK] tree 168 maple.
- [OK] tree 169 marc21.
- [OK] tree 170 mathcad.
- [OK] tree 171 mathematica.
- [OK] tree 172 matroska.
- [OK] tree 173 mcrypt.
- [OK] tree 174 measure.
- [OK] tree 175 mercurial.
- [OK] tree 176 metastore.
- [OK] tree 177 meteorological.
- [OK] tree 178 microfocus.
- [OK] tree 179 mime.
- [OK] tree 180 mips.
- [OK] tree 181 mirage.
- [OK] tree 182 misctools.
- [OK] tree 183 mkid.
- [OK] tree 184 mlssa.
- [OK] tree 185 mmdf.
- [OK] tree 186 modem.
- [OK] tree 187 modulefile.
- [OK] tree 188 motorola.
- [OK] tree 189 mozilla.
- [OK] tree 190 msdos.
- [OK] tree 191 msooxml.
- [OK] tree 192 msvc.
- [OK] tree 193 msx.
- [OK] tree 194 mup.
- [OK] tree 195 music.
- [OK] tree 196 nasa.
- [OK] tree 197 natinst.
- [OK] tree 198 ncr.
- [OK] tree 199 neko.
- [OK] tree 200 netbsd.
- [OK] tree 201 netscape.
- [OK] tree 202 netware.
- [OK] tree 203 news.
- [OK] tree 204 nifty.
- [OK] tree 205 nim-lang.
- [OK] tree 206 nitpicker.
- [OK] tree 207 numpy.
- [OK] tree 208 oasis.
- [OK] tree 209 ocaml.
- [OK] tree 210 octave.
- [OK] tree 211 ole2compounddocs.
- [OK] tree 212 olf.
- [OK] tree 213 openfst.
- [OK] tree 214 opentimestamps.
- [OK] tree 215 oric.
- [OK] tree 216 os2.
- [OK] tree 217 os400.
- [OK] tree 218 os9.
- [OK] tree 219 osf1.
- [OK] tree 220 palm.
- [OK] tree 221 parix.
- [OK] tree 222 parrot.
- [OK] tree 223 pascal.
- [OK] tree 224 pbf.
- [OK] tree 225 pbm.
- [OK] tree 226 pc88.
- [OK] tree 227 pc98.
- [OK] tree 228 pci_ids.
- [OK] tree 229 pcjr.
- [OK] tree 230 pdf.
- [OK] tree 231 pdp.
- [OK] tree 232 perl.
- [OK] tree 233 pgf.
- [OK] tree 234 pgp.
- [OK] tree 235 pgp-binary-keys.
- [OK] tree 236 pkgadd.
- [OK] tree 237 plan9.
- [OK] tree 238 playdate.
- [OK] tree 239 plus5.
- [OK] tree 240 pmem.
- [OK] tree 241 polyml.
- [OK] tree 242 printer.
- [OK] tree 243 project.
- [OK] tree 244 psdbms.
- [OK] tree 245 psl.
- [OK] tree 246 pulsar.
- [OK] tree 247 puzzle.
- [OK] tree 248 pwsafe.
- [OK] tree 249 pyramid.
- [OK] tree 250 python.
- [OK] tree 251 qt.
- [OK] tree 252 revision.
- [OK] tree 253 riff.
- [OK] tree 254 rinex.
- [OK] tree 255 ringdove.
- [OK] tree 256 rpi.
- [OK] tree 257 rpm.
- [OK] tree 258 rpmsg.
- [OK] tree 259 rst.
- [OK] tree 260 rtf.
- [OK] tree 261 ruby.
- [OK] tree 262 rust.
- [OK] tree 263 sc.
- [OK] tree 264 sccs.
- [OK] tree 265 scientific.
- [OK] tree 266 securitycerts.
- [OK] tree 267 selinux.
- [OK] tree 268 sendmail.
- [OK] tree 269 sequent.
- [OK] tree 270 sereal.
- [OK] tree 271 sgi.
- [OK] tree 272 sgml.
- [OK] tree 273 sharc.
- [OK] tree 274 sinclair.
- [OK] tree 275 sisu.
- [OK] tree 276 sketch.
- [OK] tree 277 smalltalk.
- [OK] tree 278 smile.
- [OK] tree 279 sniffer.
- [OK] tree 280 softquad.
- [OK] tree 281 sosi.
- [OK] tree 282 spec.
- [OK] tree 283 spectrum.
- [OK] tree 284 sql.
- [OK] tree 285 ssh.
- [OK] tree 286 ssl.
- [OK] tree 287 statistics.
- [OK] tree 288 subtitle.
- [OK] tree 289 sun.
- [OK] tree 290 svf.
- [OK] tree 291 sylk.
- [OK] tree 292 symbos.
- [OK] tree 293 sysex.
- [OK] tree 294 tcl.
- [OK] tree 295 teapot.
- [OK] tree 296 terminfo.
- [OK] tree 297 tex.
- [OK] tree 298 tgif.
- [OK] tree 299 ti-8x.
- [OK] tree 300 timezone.
- [OK] tree 301 tplink.
- [OK] tree 302 troff.
- [OK] tree 303 tuxedo.
- [OK] tree 304 typeset.
- [OK] tree 305 uf2.
- [OK] tree 306 unicode.
- [OK] tree 307 unisig.
- [OK] tree 308 unknown.
- [OK] tree 309 usd.
- [OK] tree 310 uterus.
- [OK] tree 311 uuencode.
- [OK] tree 312 vacuum-cleaner.
- [OK] tree 313 varied.out.
- [OK] tree 314 varied.script.
- [OK] tree 315 vax.
- [OK] tree 316 vicar.
- [OK] tree 317 virtual.
- [OK] tree 318 virtutech.
- [OK] tree 319 visx.
- [OK] tree 320 vms.
- [OK] tree 321 vmware.
- [OK] tree 322 vorbis.
- [OK] tree 323 vxl.
- [OK] tree 324 warc.
- [OK] tree 325 weak.
- [OK] tree 326 web.
- [OK] tree 327 webassembly.
- [OK] tree 328 windows.
- [OK] tree 329 wireless.
- [OK] tree 330 wordprocessors.
- [OK] tree 331 wsdl.
- [OK] tree 332 x68000.
- [OK] tree 333 xdelta.
- [OK] tree 334 xenix.
- [OK] tree 335 xilinx.
- [OK] tree 336 xo65.
- [OK] tree 337 xwindows.
- [OK] tree 338 yara.
- [OK] tree 339 zfs.
- [OK] tree 340 zilog.
- [OK] tree 341 zip.
- [OK] tree 342 zyxel.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/conan-lwt.0.0.5/_build/default/test/_build/_tests/conan'.
- Test Successful in 0.642s. 686 tests run.
- (cd _build/default/fuzz && ./fuzz.exe)
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "Dyalog APL component file 64-bit non-journaled checksummed version 54.243".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "GTA2 binary mission script (SCR), Downtown area (wil)".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "Dyalog APL DDB version 219.84".
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- "zlib compressed data" ("application/zlib")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "Arhangel archive data".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "ALAN game data".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- "zlib compressed data" ("application/zlib")
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "Atari 68xxx executable, text len 1893661733, data len 261236557, BSS len 1372550753, symboltab len 1910110929, fastload flag, flags: 1533219881, + relocation tab".
- Found a solution for the given input: "OpenPGP Public Key".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "mc68k COFF object not stripped".
- Found a solution for the given input: "OpenPGP Secret Key".
- "MPEG ADTS, AAC, v4 Main, 44.1 kHz, stereo + center" ("audio/x-hx-aac-adts")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "COM executable for DOS" ("application/x-dosexec")
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "PGP symmetric key encrypted data -".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "MPEG-4 LOAS" ("audio/x-mp4a-latm")
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- "COM executable for DOS" ("application/x-dosexec")
- "MPEG-4 LOAS, 3 streams" ("audio/x-mp4a-latm")
- Found a solution for the given input: "OpenPGP Secret Key".
- "zlib compressed data" ("application/zlib")
- "MPEG-4 LOAS, 4 or more streams, 8 or more streams" ("audio/x-mp4a-latm")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "COM executable for DOS" ("application/x-dosexec")
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Public Key".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "Dyalog APL version 3.202".
- "COM executable for DOS" ("application/x-dosexec")
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Public Key".
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- "MPEG-4 LOAS" ("audio/x-mp4a-latm")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- "zlib compressed data" ("application/zlib")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "COM executable for DOS" ("application/x-dosexec")
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Public Key".
- "zlib compressed data" ("application/zlib")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "Apollo m68k COFF executable not stripped - version 14357".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "Erlang External Term Format, starts with FLOAT_EXT".
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Public Key".
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Public Key".
- "MPEG ADTS, layer II, v1, 384 kbps, 48 kHz, JntStereo" ("audio/mpeg")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "MPEG-4 LOAS" ("audio/x-mp4a-latm")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "zlib compressed data" ("application/zlib")
- "PGP symmetric key encrypted data - DOS executable (COM, 0x8C-variant)" ("application/x-dosexec")
- "zlib compressed data" ("application/zlib")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key".
- Found a solution for the given input: "OpenPGP Public Key".
- "COM executable for DOS" ("application/x-dosexec")
- Found a solution for the given input: "OpenPGP Secret Key".
- "PostScript document text" ("application/postscript")
- Found a solution for the given input: "OpenPGP Public Key".
- Found a solution for the given input: "OpenPGP Secret Key PGP Secret Sub-key -".
- lint (assert false / exception): PASS
-
-> compiled conan-lwt.0.0.5
-> removed conan-lwt.0.0.5
-> installed conan-lwt.0.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 01:30.34 ---> saved as "0f68d391cc00928e2c7eb14f31a69ff7a8a44f6df48c579ee847a01fe3ab37d6"
Job succeeded
2026-03-02 01:30.52: Job succeeded