Build:
- 0
2026-01-13 04:05.02: New job: test dkml-component-staging-opam64.2.2.0~alpha0~20221104 with dune.3.21.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29216/head (001b427da21d4d746e124eaaffab7b4134813f6d)
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/29216/head" && git reset --hard 001b427d
git fetch origin master
git merge --no-edit 1c361fac36225534ee877701522e296785f9a9db
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa
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 dune.3.21.0 3.21.0
RUN opam reinstall dune.3.21.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" != 'dune.3.21.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall dkml-component-staging-opam64.2.2.0~alpha0~20221104; \
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" != 'dkml-component-staging-opam64.2.2.0~alpha0~20221104' && 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 dkml-component-staging-opam64.2.2.0~alpha0~20221104) || true
RUN opam reinstall --with-test --verbose dkml-component-staging-opam64.2.2.0~alpha0~20221104; \
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" != 'dkml-component-staging-opam64.2.2.0~alpha0~20221104' && 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-13 04:05.02: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa-dune.3.21.0-dkml-component-staging-opam64.2.2.0~alpha0~20221104-001b427da21d4d746e124eaaffab7b4134813f6d"
2026-01-13 04:05.02: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa)
(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 dune.3.21.0 3.21.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.21.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\" != 'dune.3.21.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 dkml-component-staging-opam64.2.2.0~alpha0~20221104;\
\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\" != 'dkml-component-staging-opam64.2.2.0~alpha0~20221104' && 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 dkml-component-staging-opam64.2.2.0~alpha0~20221104) || true"))
(run (shell "opam reinstall --with-test --verbose dkml-component-staging-opam64.2.2.0~alpha0~20221104;\
\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\" != 'dkml-component-staging-opam64.2.2.0~alpha0~20221104' && 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-13 04:05.02: Waiting for resource in pool OCluster
2026-01-13 19:00.33: Waiting for worker…
2026-01-13 19:03.28: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 1c361fac36 Merge pull request #29210 from dinosaure/release-miou-v0.5.1
Merge made by the 'ort' strategy.
packages/chrome-trace/chrome-trace.3.21.0/opam | 41 ++++++++++++
.../dune-action-plugin.3.21.0/opam | 54 ++++++++++++++++
.../dune-build-info/dune-build-info.3.21.0/opam | 47 ++++++++++++++
.../dune-configurator.3.21.0/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.21.0/opam | 44 +++++++++++++
.../dune-private-libs.3.21.0/opam | 52 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.21.0/opam | 46 +++++++++++++
packages/dune-site/dune-site.3.21.0/opam | 39 +++++++++++
packages/dune/dune.3.21.0/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.21.0/opam | 42 ++++++++++++
packages/fs-io/fs-io.3.21.0/opam | 41 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.21.0/opam | 45 +++++++++++++
packages/ordering/ordering.3.21.0/opam | 40 ++++++++++++
packages/stdune/stdune.3.21.0/opam | 48 ++++++++++++++
packages/top-closure/top-closure.3.21.0/opam | 40 ++++++++++++
packages/xdg/xdg.3.21.0/opam | 41 ++++++++++++
17 files changed, 789 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.21.0/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.21.0/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.21.0/opam
create mode 100644 packages/dune-glob/dune-glob.3.21.0/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.21.0/opam
create mode 100644 packages/dune-site/dune-site.3.21.0/opam
create mode 100644 packages/dune/dune.3.21.0/opam
create mode 100644 packages/dyn/dyn.3.21.0/opam
create mode 100644 packages/fs-io/fs-io.3.21.0/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0/opam
create mode 100644 packages/ordering/ordering.3.21.0/opam
create mode 100644 packages/stdune/stdune.3.21.0/opam
create mode 100644 packages/top-closure/top-closure.3.21.0/opam
create mode 100644 packages/xdg/xdg.3.21.0/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa)
2026-01-13 19:12.41 ---> using "2ecda48447fc68e8dcd256d2898af0a11126a077e05d747a0dcdff2845100de1" 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-01-13 19:12.41 ---> using "79eb1218297339daa5e94be48ad16ae73f417b872defa106efeff5b5f3323e6e" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-13 19:12.41 ---> using "bf81485066c79fc9faf7a51b95869ba9d998fe2bf3de5ff7f59b253fc915122f" 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 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-01-13 19:12.41 ---> using "f7c0c02658daf7a6d6c7671a8028e0e553264100bd569724894645b7844f6d7f" 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-01-13 19:12.41 ---> using "9b3e592c65565b9b3dc8b88c605e54ddba818eb105df981d794040a64c2f9916" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-13 19:12.42 ---> using "09c39d7126e88ed573ca8f78acbffb48c0088baecebf7a9155a91c3290ace20b" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-13 19:12.42 ---> using "1f9ebb837e22c3f42b1c3f6e7178a2aa2fcb8206685e62bba70fde550083c584" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [95.5 kB]
- Fetched 9997 kB in 1s (9884 kB/s)
- Reading package lists...
2026-01-13 19:12.42 ---> using "bc5a313c83583d746179a868806b410c236b5a3d4895b7d8bc464eed6cfe706e" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.21.0 3.21.0"))
dune is now pinned to version 3.21.0
2026-01-13 19:12.42 ---> using "448b2b0e77526967dc1d84c9cd1fd4fdf010f08d862d127b94c63a52bbc324d1" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.21.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\" != 'dune.3.21.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.21.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.21.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0 (cached)
-> installed dune.3.21.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 19:12.42 ---> using "5acb627376dc8b6ecaceedd8635589b9dfb44ea06abcf3fc03092c3e94ea4126" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dkml-component-staging-opam64.2.2.0~alpha0~20221104;\
\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\" != 'dkml-component-staging-opam64.2.2.0~alpha0~20221104' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dkml-component-staging-opam64.2.2.0~alpha0~20221104 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 22 packages
- install astring 0.8.5 [required by dkml-install]
- install bos 0.2.1 [required by diskuvbox, dkml-install]
- install cmdliner 2.1.0 [required by dkml-component-staging-opam64]
- install cppo 1.8.0 [required by ppx_deriving]
- install diskuvbox 0.2.0 [required by dkml-component-staging-opam64]
- install dkml-component-staging-opam64 2.2.0~alpha0~20221104
- install dkml-install 0.5.3 [required by dkml-component-staging-opam64]
- install fmt 0.11.0 [required by diskuvbox, dkml-install]
- install fpath 0.7.3 [required by bos]
- install logs 0.10.0 [required by diskuvbox]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocamlbuild 0.16.1 [required by bos]
- install ocamlfind 1.9.8 [required by bos, ppx_deriving]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by diskuvbox, dkml-install]
- install ppxlib 0.37.0 [required by ppx_deriving]
- install result 1.5 [required by diskuvbox, dkml-install]
- install rresult 0.7.0 [required by bos]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install topkg 1.1.1 [required by bos]
- install tsort 2.2.0 [required by dkml-install]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved diskuvbox.0.2.0 (cached)
-> retrieved dkml-component-staging-opam64.2.2.0~alpha0~20221104 (cached)
-> retrieved dkml-install.0.5.3 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> retrieved ppxlib.0.37.0 (cached)
-> installed ppx_derivers.1.2.1
-> retrieved result.1.5 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved tsort.2.2.0 (cached)
-> installed result.1.5
-> installed stdlib-shims.0.3.0
-> installed tsort.2.2.0
-> installed cppo.1.8.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed logs.0.10.0
-> installed ppxlib.0.37.0
-> installed bos.0.2.1
-> installed ppx_deriving.6.1.1
-> installed dkml-install.0.5.3
-> installed diskuvbox.0.2.0
-> installed dkml-component-staging-opam64.2.2.0~alpha0~20221104
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 19:13.25 ---> saved as "14b59eb42bd38eee22e469879f24fee4268db8e8d23b019f3196b5926579cf98"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test dkml-component-staging-opam64.2.2.0~alpha0~20221104) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile dkml-component-staging-opam64 2.2.0~alpha0~20221104
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dkml-component-staging-opam64.2.2.0~alpha0~20221104 (https://opam.ocaml.org/cache)
-> removed dkml-component-staging-opam64.2.2.0~alpha0~20221104
-> installed dkml-component-staging-opam64.2.2.0~alpha0~20221104
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 19:13.54 ---> saved as "9ef169dc13445424e27618d1d9e04e4f87933fd2ee2087f44e74175f3a9dac5e"
/home/opam: (run (shell "opam reinstall --with-test --verbose dkml-component-staging-opam64.2.2.0~alpha0~20221104;\
\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\" != 'dkml-component-staging-opam64.2.2.0~alpha0~20221104' && 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 dkml-component-staging-opam64 2.2.0~alpha0~20221104
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [dkml-component-staging-opam64.2.2.0~alpha0~20221104: extract]
-> retrieved dkml-component-staging-opam64.2.2.0~alpha0~20221104 (cached)
Processing 2/4: [dkml-component-staging-opam64: install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "install" "-d" "dl/opam" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104)
Processing 2/4: [dkml-component-staging-opam64: tar xCfz]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "tar" "xCfz" "dl/opam" "dl/opam.tar.gz" "--strip-components=1" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104)
Processing 2/4: [dkml-component-staging-opam64: install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "install" "-d" "dkmldir/vendor/drc" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104)
Processing 2/4: [dkml-component-staging-opam64: tar xCfz]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "tar" "xCfz" "dkmldir/vendor/drc" "dl/dkml-runtime-common.tar.gz" "--strip-components=1" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104)
Processing 2/4: [dkml-component-staging-opam64: install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "install" "dkmldir/vendor/drc/.template.dkmlroot" "dkmldir/.dkmlroot" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104)
Processing 2/4: [dkml-component-staging-opam64: diskuvbox copy-dir]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "diskuvbox" "copy-dir" "src/repro" "dkmldir/vendor/drd/src/unix/private" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104)
Processing 2/4: [dkml-component-staging-opam64: install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "install" "-d" "dkmldir/vendor/dkml-compiler/src" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104)
Processing 2/4: [dkml-component-staging-opam64: tar xCfz]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "tar" "xCfz" "dkmldir/vendor/dkml-compiler" "dl/dkml-compiler.tar.gz" "--strip-components=1" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104)
Processing 2/4: [dkml-component-staging-opam64: env bash]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "env" "TOPDIR=dkmldir/vendor/drc/all/emptytop" "DKML_REPRODUCIBLE_SYSTEM_BREWFILE=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/Brewfile" "bash" "-x" "dkmldir/vendor/drd/src/unix/private/r-c-opam-1-setup.sh" "-d" "dkmldir" "-t" "_w" "-v" "dl/opam" "-p" "2.2.0~alpha0~20221104" "-c" "/home/opam/.opam/4.14" "-alinux_x86_64" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104)
- + set -euf
- + SETUP_ARGS=()
- + BUILD_ARGS=()
- + TRIM_ARGS=()
- + OPT_MSVS_PREFERENCE='VS16.*;VS15.*;VS14.0'
- + DKMLDIR=
- + GIT_URL=https://github.com/ocaml/opam
- + GIT_COMMITID_TAG_OR_DIR=
- + TARGETDIR=
- + PRESERVEGIT=OFF
- + DKMLABI=
- + PACKAGE_VERSION=
- + getopts :d:u:v:t:a:b:c:e:f:p:h opt
- + case ${opt} in
- + DKMLDIR=dkmldir
- + '[' '!' -e dkmldir/.dkmlroot ']'
- ++ dirname dkmldir
- + DKMLDIR_1=.
- ++ cd .
- ++ pwd
- + DKMLDIR_1=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104
- ++ basename dkmldir
- + DKMLDIR_2=dkmldir
- + DKMLDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir
- + getopts :d:u:v:t:a:b:c:e:f:p:h opt
- + case ${opt} in
- + TARGETDIR=_w
- + BUILD_ARGS+=(-t .)
- + TRIM_ARGS+=(-t .)
- + SETUP_ARGS+=(-t .)
- + getopts :d:u:v:t:a:b:c:e:f:p:h opt
- + case ${opt} in
- + GIT_COMMITID_TAG_OR_DIR=dl/opam
- + SETUP_ARGS+=(-v "$GIT_COMMITID_TAG_OR_DIR")
- + getopts :d:u:v:t:a:b:c:e:f:p:h opt
- + case ${opt} in
- + PACKAGE_VERSION=2.2.0~alpha0~20221104
- + SETUP_ARGS+=(-p "$OPTARG")
- + getopts :d:u:v:t:a:b:c:e:f:p:h opt
- + case ${opt} in
- + BUILD_ARGS+=(-c "$OPTARG")
- + SETUP_ARGS+=(-c "$OPTARG")
- + getopts :d:u:v:t:a:b:c:e:f:p:h opt
- + case ${opt} in
- + DKMLABI=linux_x86_64
- + BUILD_ARGS+=(-a "$OPTARG")
- + SETUP_ARGS+=(-a "$OPTARG")
- + getopts :d:u:v:t:a:b:c:e:f:p:h opt
- + shift 11
- + '[' -z /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir ']'
- + '[' -z dl/opam ']'
- + '[' -z _w ']'
- + '[' -z linux_x86_64 ']'
- + BUILD_ARGS+=(-e "$PRESERVEGIT")
- + TRIM_ARGS+=(-e "$PRESERVEGIT")
- + USERMODE=ON
- + STATEDIR=
- + . /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drc/unix/_common_tool.sh
- ++ '[' '!' -e /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/.dkmlroot ']'
- ++ . /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/.dkmlroot
- +++ dkml_root_version=1.0.1
- +++ printf %s 1.0.1
- +++ PATH=/usr/bin:/bin
- +++ tr -d '\r'
- ++ dkml_root_version=1.0.1
- ++ '[' -z dkmldir/vendor/drc/all/emptytop ']'
- ++ export TOPDIR
- ++ '[' -x /usr/bin/cygpath ']'
- ++ OS_DIR_SEP=/
- ++ OPAM_CACHE_SUBDIR=.dkml/opam-cache
- ++ WRAP_COMMANDS_CACHE_KEY=wrap-commands.1.0.1
- ++ . /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drc/unix/crossplatform-functions.sh
- +++ export SHARE_OCAML_OPAM_REPO_RELPATH=share/dkml/repro
- +++ SHARE_OCAML_OPAM_REPO_RELPATH=share/dkml/repro
- +++ export SHARE_REPRODUCIBLE_BUILD_RELPATH=share/dkml/repro
- +++ SHARE_REPRODUCIBLE_BUILD_RELPATH=share/dkml/repro
- +++ export SHARE_FUNCTIONS_RELPATH=share/dkml/functions
- +++ SHARE_FUNCTIONS_RELPATH=share/dkml/functions
- ++ create_workdir
- ++ '[' -n '' ']'
- ++ '[' -n /opam-tmp ']'
- +++ printf %s /opam-tmp
- +++ PATH=/usr/bin:/bin
- +++ sed 's#/$##'
- ++ make_workdir_DEFAULT=/opam-tmp
- ++ DKML_TMP_PARENTDIR=/opam-tmp
- ++ '[' '!' -e /opam-tmp ']'
- +++ PATH=/usr/bin:/bin
- +++ mktemp -d /opam-tmp/dkmlw.XXXXX
- ++ WORK=/opam-tmp/dkmlw.ukpSO
- ++ install -d /opam-tmp/dkmlw.ukpSO
- ++ trap 'PATH=/usr/bin:/bin rm -rf "$WORK"' EXIT
- ++ OPAM_ARCH_IN_WINDOWS=amd64
- ++ OPAM_PORT_FOR_SWITCHES_IN_WINDOWS=msvc
- + disambiguate_filesystem_paths
- + is_msys2_msys_build_machine
- + '[' -e /usr/bin/msys-2.0.dll ']'
- + return 1
- ++ install -d _w
- ++ cd _w
- ++ pwd
- + TARGETDIR_UNIX=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w
- + '[' -x /usr/bin/cygpath ']'
- + OPAMSRC_UNIX=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam
- + OPAMSRC_MIXED=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam
- + '[' -d dl/opam ']'
- + '[' -x /usr/bin/cygpath ']'
- + buildhost_pathize dl/opam
- + buildhost_pathize_PATH=dl/opam
- + shift
- + '[' -x /usr/bin/cygpath ']'
- + case "$buildhost_pathize_PATH" in
- + buildhost_pathize_RETVAL=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dl/opam
- + GIT_COMMITID_TAG_OR_DIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dl/opam
- + cd /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir
- + '[' -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dl/opam ']'
- + '[' '!' -e /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/Makefile ']'
- + log_trace install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam
- + log_trace_RETURN=OFF
- + log_trace_1=install
- + '[' install = --return-error-code ']'
- + '[' OFF = ON ']'
- + install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam
- + log_trace_ec=0
- + '[' 0 -ne 0 ']'
- + log_trace rm -rf /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam
- + log_trace_RETURN=OFF
- + log_trace_1=rm
- + '[' rm = --return-error-code ']'
- + '[' OFF = ON ']'
- + rm -rf /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam
- + log_trace_ec=0
- + '[' 0 -ne 0 ']'
- + log_trace cp -rp /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dl/opam /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam
- + log_trace_RETURN=OFF
- + log_trace_1=cp
- + '[' cp = --return-error-code ']'
- + '[' OFF = ON ']'
- + cp -rp /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dl/opam /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam
- + log_trace_ec=0
- + '[' 0 -ne 0 ']'
- + '[' '!' -e /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/.git ']'
- + log_trace git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam init
- + log_trace_RETURN=OFF
- + log_trace_1=git
- + '[' git = --return-error-code ']'
- + '[' OFF = ON ']'
- + git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam init
- hint: Using 'master' as the name for the initial branch. This default branch name
- hint: is subject to change. To configure the initial branch name to use in all
- hint: of your new repositories, which will suppress this warning, call:
- hint:
- hint: git config --global init.defaultBranch <name>
- hint:
- hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
- hint: 'development'. The just-created branch can be renamed via this command:
- hint:
- hint: git branch -m <name>
- Initialized empty Git repository in /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/.git/
- + log_trace_ec=0
- + '[' 0 -ne 0 ']'
- + log_trace git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam config user.email nobody+autocommitter@diskuv.ocaml.org
- + log_trace_RETURN=OFF
- + log_trace_1=git
- + '[' git = --return-error-code ']'
- + '[' OFF = ON ']'
- + git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam config user.email nobody+autocommitter@diskuv.ocaml.org
- + log_trace_ec=0
- + '[' 0 -ne 0 ']'
- + log_trace git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam config user.name 'Auto Committer'
- + log_trace_RETURN=OFF
- + log_trace_1=git
- + '[' git = --return-error-code ']'
- + '[' OFF = ON ']'
- + git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam config user.name 'Auto Committer'
- + log_trace_ec=0
- + '[' 0 -ne 0 ']'
- + log_trace git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam add -A
- + log_trace_RETURN=OFF
- + log_trace_1=git
- + '[' git = --return-error-code ']'
- + '[' OFF = ON ']'
- + git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam add -A
- + log_trace_ec=0
- + '[' 0 -ne 0 ']'
- + log_trace git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam commit -m 'Commit from source tree'
- + log_trace_RETURN=OFF
- + log_trace_1=git
- + '[' git = --return-error-code ']'
- + '[' OFF = ON ']'
- + git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam commit -m 'Commit from source tree'
- [master (root-commit) c7af5a0] Commit from source tree
- 452 files changed, 103343 insertions(+)
- create mode 100644 .gitattributes
- create mode 100644 .github/issue_template.md
- create mode 100644 .github/pull_request_template.md
- create mode 100644 .github/scripts/changelog/checker.sh
- create mode 100644 .github/scripts/common/hygiene-preamble.sh
- create mode 100644 .github/scripts/common/preamble.sh
- create mode 100644 .github/scripts/cygwin.cmd
- create mode 100644 .github/scripts/depexts/generate-actions.sh
- create mode 100644 .github/scripts/main/archives-cache.sh
- create mode 100644 .github/scripts/main/hygiene.sh
- create mode 100644 .github/scripts/main/legacy-cache.sh
- create mode 100644 .github/scripts/main/legacy.sh
- create mode 100644 .github/scripts/main/main.sh
- create mode 100644 .github/scripts/main/ocaml-cache.sh
- create mode 100644 .github/scripts/main/opam-bs-cache.sh
- create mode 100644 .github/scripts/main/opam-rt.sh
- create mode 100644 .github/scripts/main/preamble.sh
- create mode 100644 .github/scripts/main/reftests.sh
- create mode 100644 .github/scripts/main/solvers.sh
- create mode 100644 .github/scripts/main/test.sh
- create mode 100644 .github/scripts/main/upgrade.sh
- create mode 100644 .github/scripts/scripts/hygiene.sh
- create mode 100644 .github/workflows/.gitignore
- create mode 100644 .github/workflows/changelog_check.yml
- create mode 100644 .github/workflows/ci.ml
- create mode 100644 .github/workflows/depexts.yml
- create mode 100644 .github/workflows/dune
- create mode 100644 .github/workflows/dune-project
- create mode 100644 .github/workflows/lib.ml
- create mode 100644 .github/workflows/main.yml
- create mode 100644 .github/workflows/scripts.yml
- create mode 100644 .gitignore
- create mode 100644 .ocamlinit
- create mode 100644 .ocp-indent
- create mode 100644 .ocplint
- create mode 100644 AUTHORS
- create mode 100644 CHANGES
- create mode 100644 CONTRIBUTING.md
- create mode 100644 LICENSE
- create mode 100644 Makefile
- create mode 100644 Makefile.config.in
- create mode 100644 README.md
- create mode 100644 admin-scripts/Makefile
- create mode 100755 admin-scripts/add-build-deps.ml
- create mode 100755 admin-scripts/add-github-dev.ml
- create mode 100755 admin-scripts/compilers-to-packages.ml
- create mode 100755 admin-scripts/couverture.ml
- create mode 100755 admin-scripts/cudf-debug.ml
- create mode 100755 admin-scripts/depopts_to_conflicts.ml
- create mode 100755 admin-scripts/extract_mini_repository.sh
- create mode 100755 admin-scripts/lint.ml
- create mode 100755 admin-scripts/split_install.ml
- create mode 100755 admin-scripts/to_1_1.ml
- create mode 100755 configure
- create mode 100644 configure.ac
- create mode 100644 doc/Makefile
- create mode 100644 doc/design/depexts-plugins
- create mode 100644 doc/design/depopts-and-features
- create mode 100644 doc/design/provides.md
- create mode 100644 doc/index.html
- create mode 100644 doc/man/dune
- create mode 100644 doc/man/dune_man.ml
- create mode 100644 doc/man/opam-admin-topics.inc
- create mode 100644 doc/man/opam-topics.inc
- create mode 100644 doc/modules
- create mode 100644 doc/pages/About.md
- create mode 100644 doc/pages/Distribution.md
- create mode 100644 doc/pages/External_solvers.md
- create mode 100644 doc/pages/FAQ.md
- create mode 100644 doc/pages/Install.md
- create mode 100644 doc/pages/Manual.md
- create mode 100644 doc/pages/Packaging.md
- create mode 100644 doc/pages/Specifying_Solver_Preferences.md
- create mode 100644 doc/pages/Tricks.md
- create mode 100644 doc/pages/Upgrade_guide.md
- create mode 100644 doc/pages/Usage.md
- create mode 100644 doc/pages/index.menu
- create mode 100644 dune
- create mode 100644 dune-project
- create mode 100644 m4/ax_compare_version.m4
- create mode 100644 m4/cpp.m4
- create mode 100644 m4/ocaml.m4
- create mode 100644 master_changes.md
- create mode 100644 opam-admin.opam
- create mode 100644 opam-client.opam
- create mode 100644 opam-core.opam
- create mode 100644 opam-devel.opam
- create mode 100644 opam-format.opam
- create mode 100644 opam-installer.opam
- create mode 100644 opam-repository.opam
- create mode 100644 opam-solver.opam
- create mode 100644 opam-state.opam
- create mode 100644 opam.opam
- create mode 100644 process.sed
- create mode 100644 release/Dockerfile.in
- create mode 100644 release/Makefile
- create mode 100644 release/readme.md
- create mode 100755 release/release.sh
- create mode 100644 release/sign.sh
- create mode 100755 shell/autogen
- create mode 100755 shell/bootstrap-ocaml.sh
- create mode 100755 shell/bundle.sh
- create mode 100755 shell/check_linker
- create mode 100644 shell/context_flags.ml
- create mode 100644 shell/crunch.ml
- create mode 100644 shell/dot_ocamlinit
- create mode 100644 shell/get_version.ml
- create mode 100755 shell/install.sh
- create mode 100644 shell/link_runtime.ml
- create mode 100644 shell/md5check.ml
- create mode 100755 shell/msvs-detect
- create mode 100755 shell/opam-bin-cache.sh
- create mode 100755 shell/opam_installer.sh
- create mode 100755 shell/pkg-stats.sh
- create mode 100644 shell/print_config.ml
- create mode 100755 shell/re-patch.sh
- create mode 100755 shell/wrap-build.sh
- create mode 100755 shell/wrap-install.sh
- create mode 100755 shell/wrap-remove.sh
- create mode 100644 src/client/dune
- create mode 100644 src/client/opamAction.ml
- create mode 100644 src/client/opamAction.mli
- create mode 100644 src/client/opamAdminCheck.ml
- create mode 100644 src/client/opamAdminCheck.mli
- create mode 100644 src/client/opamAdminCommand.ml
- create mode 100644 src/client/opamAdminCommand.mli
- create mode 100644 src/client/opamAdminRepoUpgrade.ml
- create mode 100644 src/client/opamAdminRepoUpgrade.mli
- create mode 100644 src/client/opamArg.ml
- create mode 100644 src/client/opamArg.mli
- create mode 100644 src/client/opamArgTools.ml
- create mode 100644 src/client/opamArgTools.mli
- create mode 100644 src/client/opamAuxCommands.ml
- create mode 100644 src/client/opamAuxCommands.mli
- create mode 100644 src/client/opamCLIVersion.ml
- create mode 100644 src/client/opamCLIVersion.mli
- create mode 100644 src/client/opamCliMain.ml
- create mode 100644 src/client/opamCliMain.mli
- create mode 100644 src/client/opamClient.ml
- create mode 100644 src/client/opamClient.mli
- create mode 100644 src/client/opamClientConfig.ml
- create mode 100644 src/client/opamClientConfig.mli
- create mode 100644 src/client/opamCommands.ml
- create mode 100644 src/client/opamCommands.mli
- create mode 100644 src/client/opamConfigCommand.ml
- create mode 100644 src/client/opamConfigCommand.mli
- create mode 100644 src/client/opamGitVersion.mli
- create mode 100644 src/client/opamInitDefaults.ml
- create mode 100644 src/client/opamInitDefaults.mli
- create mode 100644 src/client/opamListCommand.ml
- create mode 100644 src/client/opamListCommand.mli
- create mode 100644 src/client/opamLockCommand.ml
- create mode 100644 src/client/opamLockCommand.mli
- create mode 100644 src/client/opamMain.ml
- create mode 100644 src/client/opamMain.mli
- create mode 100644 src/client/opamPinCommand.ml
- create mode 100644 src/client/opamPinCommand.mli
- create mode 100644 src/client/opamRepositoryCommand.ml
- create mode 100644 src/client/opamRepositoryCommand.mli
- create mode 100644 src/client/opamSolution.ml
- create mode 100644 src/client/opamSolution.mli
- create mode 100644 src/client/opamSwitchCommand.ml
- create mode 100644 src/client/opamSwitchCommand.mli
- create mode 100644 src/client/opamTreeCommand.ml
- create mode 100644 src/client/opamTreeCommand.mli
- create mode 100644 src/core/dune
- create mode 100644 src/core/opamACL.dummy.ml
- create mode 100644 src/core/opamACL.libacl.ml
- create mode 100644 src/core/opamACL.mli
- create mode 100644 src/core/opamCached.ml
- create mode 100644 src/core/opamCached.mli
- create mode 100644 src/core/opamCompat.ml
- create mode 100644 src/core/opamCompat.mli
- create mode 100644 src/core/opamConsole.ml
- create mode 100644 src/core/opamConsole.mli
- create mode 100644 src/core/opamCoreConfig.ml
- create mode 100644 src/core/opamCoreConfig.mli
- create mode 100644 src/core/opamDirTrack.ml
- create mode 100644 src/core/opamDirTrack.mli
- create mode 100644 src/core/opamFilename.ml
- create mode 100644 src/core/opamFilename.mli
- create mode 100644 src/core/opamHash.ml
- create mode 100644 src/core/opamHash.mli
- create mode 100644 src/core/opamJson.ml
- create mode 100644 src/core/opamJson.mli
- create mode 100644 src/core/opamParallel.ml
- create mode 100644 src/core/opamParallel.mli
- create mode 100644 src/core/opamProcess.ml
- create mode 100644 src/core/opamProcess.mli
- create mode 100644 src/core/opamSHA.ml
- create mode 100644 src/core/opamSHA.mli
- create mode 100644 src/core/opamStd.ml
- create mode 100644 src/core/opamStd.mli
- create mode 100644 src/core/opamStubs.dummy.ml
- create mode 100644 src/core/opamStubs.mli
- create mode 100644 src/core/opamStubs.win32.ml
- create mode 100644 src/core/opamStubsTypes.ml
- create mode 100644 src/core/opamSystem.ml
- create mode 100644 src/core/opamSystem.mli
- create mode 100644 src/core/opamUrl.ml
- create mode 100644 src/core/opamUrl.mli
- create mode 100644 src/core/opamVersion.ml
- create mode 100644 src/core/opamVersion.mli
- create mode 100644 src/core/opamVersionCompare.ml
- create mode 100644 src/core/opamVersionCompare.mli
- create mode 100644 src/crowbar/dune
- create mode 100644 src/crowbar/dune-project
- create mode 100644 src/crowbar/opam-crowbar.opam
- create mode 100644 src/crowbar/opamActionGraph_crowbar.ml
- create mode 100644 src/crowbar/opamCrowbar.ml
- create mode 100644 src/crowbar/opamCrowbar.mli
- create mode 100644 src/crowbar/opamCudf_crowbar.ml
- create mode 100644 src/crowbar/opamFilename_crowbar.ml
- create mode 100644 src/crowbar/opamHash_crowbar.ml
- create mode 100644 src/crowbar/opamPackage_crowbar.ml
- create mode 100644 src/crowbar/opamUrl_crowbar.ml
- create mode 100644 src/crowbar/opamVariable_crowbar.ml
- create mode 100644 src/crowbar/opamVersion_crowbar.ml
- create mode 100644 src/crowbar/test.ml
- create mode 100644 src/dune
- create mode 100644 src/format/dune
- create mode 100644 src/format/opamFile.ml
- create mode 100644 src/format/opamFile.mli
- create mode 100644 src/format/opamFilter.ml
- create mode 100644 src/format/opamFilter.mli
- create mode 100644 src/format/opamFormat.ml
- create mode 100644 src/format/opamFormat.mli
- create mode 100644 src/format/opamFormatConfig.ml
- create mode 100644 src/format/opamFormatConfig.mli
- create mode 100644 src/format/opamFormula.ml
- create mode 100644 src/format/opamFormula.mli
- create mode 100644 src/format/opamInterpLexer.mli
- create mode 100644 src/format/opamInterpLexer.mll
- create mode 100644 src/format/opamLineLexer.mli
- create mode 100644 src/format/opamLineLexer.mll
- create mode 100644 src/format/opamPackage.ml
- create mode 100644 src/format/opamPackage.mli
- create mode 100644 src/format/opamPath.ml
- create mode 100644 src/format/opamPath.mli
- create mode 100644 src/format/opamPp.ml
- create mode 100644 src/format/opamPp.mli
- create mode 100644 src/format/opamRepositoryName.ml
- create mode 100644 src/format/opamRepositoryName.mli
- create mode 100644 src/format/opamSwitch.ml
- create mode 100644 src/format/opamSwitch.mli
- create mode 100644 src/format/opamSysPkg.ml
- create mode 100644 src/format/opamSysPkg.mli
- create mode 100644 src/format/opamTypes.mli
- create mode 100644 src/format/opamTypesBase.ml
- create mode 100644 src/format/opamTypesBase.mli
- create mode 100644 src/format/opamVariable.ml
- create mode 100644 src/format/opamVariable.mli
- create mode 100644 src/manifest/Opam.Runtime.amd64.manifest
- create mode 100644 src/manifest/Opam.Runtime.x86.manifest
- create mode 100644 src/manifest/default-manifest.xmlf
- create mode 100644 src/manifest/dune-manifest
- create mode 100644 src/manifest/install.amd64
- create mode 100644 src/manifest/install.i386
- create mode 100644 src/manifest/opam-mingw.xmlf
- create mode 100644 src/manifest/opam-mingw64.xmlf
- create mode 100644 src/ocaml-flags-configure.sexp.in
- create mode 100644 src/ocaml-flags-standard.sexp
- create mode 100644 src/repository/dune
- create mode 100644 src/repository/opamDarcs.ml
- create mode 100644 src/repository/opamDarcs.mli
- create mode 100644 src/repository/opamDownload.ml
- create mode 100644 src/repository/opamDownload.mli
- create mode 100644 src/repository/opamGit.ml
- create mode 100644 src/repository/opamGit.mli
- create mode 100644 src/repository/opamHTTP.ml
- create mode 100644 src/repository/opamHTTP.mli
- create mode 100644 src/repository/opamHg.ml
- create mode 100644 src/repository/opamHg.mli
- create mode 100644 src/repository/opamLocal.ml
- create mode 100644 src/repository/opamLocal.mli
- create mode 100644 src/repository/opamRepository.ml
- create mode 100644 src/repository/opamRepository.mli
- create mode 100644 src/repository/opamRepositoryBackend.ml
- create mode 100644 src/repository/opamRepositoryBackend.mli
- create mode 100644 src/repository/opamRepositoryConfig.ml
- create mode 100644 src/repository/opamRepositoryConfig.mli
- create mode 100644 src/repository/opamRepositoryPath.ml
- create mode 100644 src/repository/opamRepositoryPath.mli
- create mode 100644 src/repository/opamVCS.ml
- create mode 100644 src/repository/opamVCS.mli
- create mode 100644 src/solver/dune
- create mode 100644 src/solver/opamActionGraph.ml
- create mode 100644 src/solver/opamActionGraph.mli
- create mode 100644 src/solver/opamBuiltin0install.ml
- create mode 100644 src/solver/opamBuiltin0install.mli
- create mode 100644 src/solver/opamBuiltinMccs.dummy.ml
- create mode 100644 src/solver/opamBuiltinMccs.mli
- create mode 100644 src/solver/opamBuiltinMccs.real.ml
- create mode 100644 src/solver/opamBuiltinZ3.dummy.ml
- create mode 100644 src/solver/opamBuiltinZ3.mli
- create mode 100644 src/solver/opamBuiltinZ3.real.ml
- create mode 100644 src/solver/opamCudf.ml
- create mode 100644 src/solver/opamCudf.mli
- create mode 100644 src/solver/opamCudfSolver.ml
- create mode 100644 src/solver/opamCudfSolver.mli
- create mode 100644 src/solver/opamCudfSolverSig.ml
- create mode 100644 src/solver/opamSolver.ml
- create mode 100644 src/solver/opamSolver.mli
- create mode 100644 src/solver/opamSolverConfig.ml
- create mode 100644 src/solver/opamSolverConfig.mli
- create mode 100644 src/state/dune
- create mode 100644 src/state/opamEnv.ml
- create mode 100644 src/state/opamEnv.mli
- create mode 100644 src/state/opamFileTools.ml
- create mode 100644 src/state/opamFileTools.mli
- create mode 100644 src/state/opamFormatUpgrade.ml
- create mode 100644 src/state/opamFormatUpgrade.mli
- create mode 100644 src/state/opamGlobalState.ml
- create mode 100644 src/state/opamGlobalState.mli
- create mode 100644 src/state/opamPackageVar.ml
- create mode 100644 src/state/opamPackageVar.mli
- create mode 100644 src/state/opamPinned.ml
- create mode 100644 src/state/opamPinned.mli
- create mode 100644 src/state/opamRepositoryState.ml
- create mode 100644 src/state/opamRepositoryState.mli
- create mode 100644 src/state/opamScript.mli
- create mode 100644 src/state/opamStateConfig.ml
- create mode 100644 src/state/opamStateConfig.mli
- create mode 100644 src/state/opamStateTypes.mli
- create mode 100644 src/state/opamSwitchAction.ml
- create mode 100644 src/state/opamSwitchAction.mli
- create mode 100644 src/state/opamSwitchState.ml
- create mode 100644 src/state/opamSwitchState.mli
- create mode 100644 src/state/opamSysInteract.ml
- create mode 100644 src/state/opamSysInteract.mli
- create mode 100644 src/state/opamSysPoll.ml
- create mode 100644 src/state/opamSysPoll.mli
- create mode 100644 src/state/opamUpdate.ml
- create mode 100644 src/state/opamUpdate.mli
- create mode 100644 src/state/shellscripts/bwrap.sh
- create mode 100644 src/state/shellscripts/complete.sh
- create mode 100644 src/state/shellscripts/complete.zsh
- create mode 100644 src/state/shellscripts/env_hook.csh
- create mode 100644 src/state/shellscripts/env_hook.fish
- create mode 100644 src/state/shellscripts/env_hook.sh
- create mode 100644 src/state/shellscripts/env_hook.zsh
- create mode 100644 src/state/shellscripts/prompt.sh
- create mode 100644 src/state/shellscripts/sandbox_exec.sh
- create mode 100644 src/stubs/c-flags.sexp.in
- create mode 100644 src/stubs/dune
- create mode 100644 src/stubs/libacl/c-libraries.sexp.in
- create mode 100644 src/stubs/libacl/dune-libacl
- create mode 100644 src/stubs/libacl/opamACL.c
- create mode 100644 src/stubs/libacl/opamlibACL.ml
- create mode 100644 src/stubs/win32/build-putenv.ml
- create mode 100644 src/stubs/win32/dune-win32
- create mode 100644 src/stubs/win32/opam-putenv.c
- create mode 100644 src/stubs/win32/opamInject.c
- create mode 100644 src/stubs/win32/opamWin32Stubs.ml
- create mode 100644 src/stubs/win32/opamWindows.c
- create mode 100644 src/tools/dune
- create mode 100644 src/tools/opam_admin_top.ml
- create mode 100644 src/tools/opam_admin_top.mli
- create mode 100644 src/tools/opam_installer.ml
- create mode 100644 src_ext/HACKING.md
- create mode 100644 src_ext/Makefile
- create mode 100644 src_ext/Makefile.dune
- create mode 100644 src_ext/Makefile.packages
- create mode 100644 src_ext/Makefile.sources
- create mode 100644 src_ext/Windows.md
- create mode 100644 src_ext/dune-extlib-src
- create mode 100644 src_ext/dune-jsonm-src
- create mode 100644 src_ext/dune-uutf-src
- create mode 100644 src_ext/patches/extlib/extlib-1.7.5.patch
- create mode 100644 src_ext/patches/jsonm.pkg/0001-remove-uchar-dep.patch
- create mode 100644 src_ext/patches/mccs.common/0001-Add-lgcc_s-on-Cygwin.patch
- create mode 100644 src_ext/patches/mccs.common/0001-Always-include-std-headers-first.patch
- create mode 100755 src_ext/update-sources.sh
- create mode 100644 tests/bin/dune
- create mode 100644 tests/dune
- create mode 100644 tests/patcher.expected
- create mode 100644 tests/patcher.ml
- create mode 100644 tests/reftests/assume-built.test
- create mode 100644 tests/reftests/autopin.test
- create mode 100644 tests/reftests/avoid-version.test
- create mode 100644 tests/reftests/best-effort.test
- create mode 100644 tests/reftests/camelus.test.disabled
- create mode 100644 tests/reftests/clean.test
- create mode 100644 tests/reftests/cli-versioning.test
- create mode 100644 tests/reftests/config.test
- create mode 100644 tests/reftests/conflict-3819.test.disabled
- create mode 100644 tests/reftests/conflict-4373.test
- create mode 100644 tests/reftests/conflict-badversion.test
- create mode 100644 tests/reftests/conflict-camlp4.test
- create mode 100644 tests/reftests/conflict-core.test
- create mode 100644 tests/reftests/conflict-resto.test
- create mode 100644 tests/reftests/conflict-solo5.test
- create mode 100644 tests/reftests/cudf-preprocess.test
- create mode 100644 tests/reftests/depexts.test
- create mode 100644 tests/reftests/deprecated.test
- create mode 100644 tests/reftests/deps-only.test
- create mode 100644 tests/reftests/dot-install.test
- create mode 100644 tests/reftests/dune
- create mode 100644 tests/reftests/dune.inc
- create mode 100644 tests/reftests/empty-conflicts-001.test
- create mode 100644 tests/reftests/empty-conflicts-002.test
- create mode 100644 tests/reftests/empty-conflicts-003.test
- create mode 100644 tests/reftests/empty-conflicts-004.test
- create mode 100644 tests/reftests/empty-conflicts-005.test
- create mode 100644 tests/reftests/empty-conflicts-006.test
- create mode 100644 tests/reftests/env.test
- create mode 100644 tests/reftests/gen.ml
- create mode 100644 tests/reftests/gen.mli
- create mode 100644 tests/reftests/init.test
- create mode 100644 tests/reftests/inplace.test
- create mode 100644 tests/reftests/install-formula.test
- create mode 100644 tests/reftests/install-pgocaml.test
- create mode 100644 tests/reftests/json.unix.test
- create mode 100644 tests/reftests/legacy-git.test
- create mode 100644 tests/reftests/legacy-local.test
- create mode 100644 tests/reftests/lint.test
- create mode 100644 tests/reftests/list.test
- create mode 100644 tests/reftests/list.unix.test
- create mode 100644 tests/reftests/lock.test
- create mode 100644 tests/reftests/opamroot-versions.test
- create mode 100644 tests/reftests/opamrt-big-upgrade.test
- create mode 100644 tests/reftests/opamrt-dep-cycle.test
- create mode 100644 tests/reftests/opamrt-reinstall.test
- create mode 100644 tests/reftests/orphans.test
- create mode 100644 tests/reftests/parallel.test
- create mode 100644 tests/reftests/pat-sub.test
- create mode 100644 tests/reftests/pin.test
- create mode 100644 tests/reftests/rebuild.test
- create mode 100644 tests/reftests/rec-pin.test
- create mode 100644 tests/reftests/reinstall.test
- create mode 100644 tests/reftests/remove.test
- create mode 100644 tests/reftests/repository.test
- create mode 100644 tests/reftests/resolve-variables.test
- create mode 100644 tests/reftests/run.ml
- create mode 100644 tests/reftests/run.mli
- create mode 100644 tests/reftests/shared-fetch.test
- create mode 100644 tests/reftests/show.test
- create mode 100644 tests/reftests/source.test
- create mode 100644 tests/reftests/switch-creation.test
- create mode 100644 tests/reftests/switch-import.test
- create mode 100644 tests/reftests/switch-invariant.test
- create mode 100644 tests/reftests/switch-set.test
- create mode 100644 tests/reftests/testing-env
- create mode 100644 tests/reftests/tree.test
- create mode 100644 tests/reftests/unhelpful-conflicts-001.test
- create mode 100644 tests/reftests/update-upgrade.test
- create mode 100644 tests/reftests/upgrade-format.test
- create mode 100644 tests/reftests/upgrade-two-point-o.test
- create mode 100644 tests/reftests/upgrade.test
- create mode 100644 tests/reftests/var-option.test
- create mode 100644 tests/reftests/with-dev-setup.test
- create mode 100644 tests/reftests/working-dir.test
- + log_trace_ec=0
- + '[' 0 -ne 0 ']'
- + log_trace git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam tag r-c-opam-1-setup-srctree
- + log_trace_RETURN=OFF
- + log_trace_1=git
- + '[' git = --return-error-code ']'
- + '[' OFF = ON ']'
- + git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam tag r-c-opam-1-setup-srctree
- + log_trace_ec=0
- + '[' 0 -ne 0 ']'
- + log_trace git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam stash
- + log_trace_RETURN=OFF
- + log_trace_1=git
- + '[' git = --return-error-code ']'
- + '[' OFF = ON ']'
- + git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam stash
- No local changes to save
- + log_trace_ec=0
- + '[' 0 -ne 0 ']'
- + log_trace git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam -c advice.detachedHead=false checkout r-c-opam-1-setup-srctree
- + log_trace_RETURN=OFF
- + log_trace_1=git
- + '[' git = --return-error-code ']'
- + '[' OFF = ON ']'
- + git -C /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam -c advice.detachedHead=false checkout r-c-opam-1-setup-srctree
- HEAD is now at c7af5a0 Commit from source tree
- + log_trace_ec=0
- + '[' 0 -ne 0 ']'
- + '[' '!' -e /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/shell/msvs-detect ']'
- + '[' '!' -e /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/shell/msvs-detect.complete ']'
- + DKML_TARGET_ABI=linux_x86_64
- + autodetect_compiler --msvs-detect /opam-tmp/dkmlw.ukpSO/msvs-detect
- + autodetect_buildhost_arch
- + autodetect_system_binaries
- + '[' -z '' ']'
- + '[' -x /usr/bin/mv ']'
- + DKMLSYS_MV=/usr/bin/mv
- + '[' -z '' ']'
- + '[' -x /usr/bin/chmod ']'
- + DKMLSYS_CHMOD=/usr/bin/chmod
- + '[' -z '' ']'
- + '[' -x /usr/bin/uname ']'
- + DKMLSYS_UNAME=/usr/bin/uname
- + '[' -z '' ']'
- + '[' -x /usr/bin/env ']'
- + DKMLSYS_ENV=/usr/bin/env
- + '[' -z '' ']'
- + '[' -x /usr/bin/awk ']'
- + DKMLSYS_AWK=/usr/bin/awk
- + '[' -z '' ']'
- + '[' -x /usr/bin/sed ']'
- + DKMLSYS_SED=/usr/bin/sed
- + '[' -z '' ']'
- + '[' -x /usr/bin/comm ']'
- + DKMLSYS_COMM=/usr/bin/comm
- + '[' -z '' ']'
- + '[' -x /usr/bin/install ']'
- + DKMLSYS_INSTALL=/usr/bin/install
- + '[' -z '' ']'
- + '[' -x /usr/bin/rm ']'
- + DKMLSYS_RM=/usr/bin/rm
- + '[' -z '' ']'
- + '[' -x /usr/bin/sort ']'
- + DKMLSYS_SORT=/usr/bin/sort
- + '[' -z '' ']'
- + '[' -x /usr/bin/cat ']'
- + DKMLSYS_CAT=/usr/bin/cat
- + '[' -z '' ']'
- + '[' -x /usr/bin/stat ']'
- + DKMLSYS_STAT=/usr/bin/stat
- + '[' -z '' ']'
- + '[' -x /usr/bin/grep ']'
- + DKMLSYS_GREP=/usr/bin/grep
- + '[' -z '' ']'
- + '[' -x /usr/bin/curl ']'
- + DKMLSYS_CURL=/usr/bin/curl
- + '[' -z '' ']'
- + '[' -x /usr/bin/tr ']'
- + DKMLSYS_TR=/usr/bin/tr
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- ++ /usr/bin/uname -s
- + autodetect_buildhost_arch_SYSTEM=Linux
- ++ /usr/bin/uname -m
- + autodetect_buildhost_arch_MACHINE=x86_64
- + case "${autodetect_buildhost_arch_SYSTEM}-${autodetect_buildhost_arch_MACHINE}" in
- + BUILDHOST_ARCH=linux_x86_64
- + autodetect_compiler_OUTPUTMODE=LAUNCHER
- + '[' --msvs-detect = --sexp ']'
- + '[' --msvs-detect = --msvs-detect ']'
- + autodetect_compiler_OUTPUTMODE=MSVS_DETECT
- + shift
- + autodetect_compiler_OUTPUTFILE=/opam-tmp/dkmlw.ukpSO/msvs-detect
- + shift
- + '[' -n /opam-tmp/dkmlw.ukpSO ']'
- + autodetect_compiler_TEMPDIR=/opam-tmp/dkmlw.ukpSO
- + '[' -n linux_x86_64 ']'
- + autodetect_compiler_PLATFORM_ARCH=linux_x86_64
- + autodetect_compiler_SPECBITS=
- + '[' -n '' ']'
- + '[' -n '' ']'
- + '[' -n '' ']'
- + '[' -n '' ']'
- + '[' -n '' ']'
- + '[' -n '' ']'
- + '[' -n '' ']'
- + '[' -n '' ']'
- + '[' -n '' ']'
- + '[' -n '' ']'
- + '[' -n '' ']'
- + '[' -z '' ']'
- + '[' '!' '' = '' ']'
- + autodetect_posix_shell
- + export DKML_POSIX_SHELL
- + export DKML_HOST_POSIX_SHELL
- + '[' -n '' ']'
- + '[' -e /usr/bin/dash.exe ']'
- + '[' -e /usr/bin/dash ']'
- + DKML_POSIX_SHELL=/usr/bin/dash
- + '[' -x /usr/bin/cygpath ']'
- + DKML_HOST_POSIX_SHELL=/usr/bin/dash
- + autodetect_system_path
- + export DKML_SYSTEM_PATH
- + '[' -x /usr/bin/cygpath ']'
- + is_cygwin_build_machine
- + '[' -e /usr/bin/cygwin1.dll ']'
- + return 1
- + is_msys2_msys_build_machine
- + '[' -e /usr/bin/msys-2.0.dll ']'
- + return 1
- + DKML_SYSTEM_PATH=/usr/bin:/bin
- + autodetect_dkmlvars
- + autodetect_dkmlvars_DiskuvOCamlVarsVersion_Override=
- + autodetect_dkmlvars_DiskuvOCamlHome_Override=
- + autodetect_dkmlvars_DiskuvOCamlBinaryPaths_Override=
- + autodetect_dkmlvars_DiskuvOCamlDeploymentId_Override=
- + autodetect_dkmlvars_DiskuvOCamlVersion_Override=
- + autodetect_dkmlvars_DiskuvOCamlMSYS2Dir_Override=
- + set_dkmlparenthomedir
- + '[' -n '' ']'
- + DKMLPARENTHOME_BUILDHOST=/home/opam/.local/share/diskuv-ocaml
- + DKMLVERSION=
- + DKMLHOME_UNIX=
- + DKMLHOME_BUILDHOST=
- + DKMLBINPATHS_UNIX=
- + DKMLBINPATHS_BUILDHOST=
- + DKMLMSYS2DIR_BUILDHOST=
- + is_unixy_windows_build_machine
- + is_msys2_msys_build_machine
- + '[' -e /usr/bin/msys-2.0.dll ']'
- + return 1
- + is_cygwin_build_machine
- + '[' -e /usr/bin/cygwin1.dll ']'
- + return 1
- + return 1
- + '[' -e /home/opam/.local/share/diskuv-ocaml/dkmlvars.sh ']'
- + '[' -n '' ']'
- + '[' -n '' ']'
- + '[' -n '' ']'
- + '[' -n '' ']'
- + '[' -n '' ']'
- + '[' -n '' ']'
- + '[' -z '' ']'
- + return 1
- + true
- ++ command -v git
- + autodetect_system_path_GITEXE=/usr/bin/git
- + '[' -n /usr/bin/git ']'
- ++ PATH=/usr/bin:/bin
- ++ dirname /usr/bin/git
- + autodetect_system_path_GITDIR=/usr/bin
- + case "$autodetect_system_path_GITDIR" in
- + '[' -n '' ']'
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- + '[' MSVS_DETECT = SEXP ']'
- + '[' MSVS_DETECT = MSVS_DETECT ']'
- + true
- + /usr/bin/chmod +x /opam-tmp/dkmlw.ukpSO/msvs-detect
- + export VSDEV_HOME_UNIX=
- + VSDEV_HOME_UNIX=
- + export VSDEV_HOME_BUILDHOST=
- + VSDEV_HOME_BUILDHOST=
- + export DKML_TARGET_SYSROOT=
- + DKML_TARGET_SYSROOT=
- + export OCAML_HOST_TRIPLET=
- + OCAML_HOST_TRIPLET=
- + '[' OFF = ON ']'
- + '[' '' = 1 ']'
- + '[' '' = 1 ']'
- + autodetect_vsdev
- + export VSDEV_HOME_UNIX=
- + VSDEV_HOME_UNIX=
- + export VSDEV_HOME_BUILDHOST=
- + VSDEV_HOME_BUILDHOST=
- + export VSDEV_VCVARSVER=
- + VSDEV_VCVARSVER=
- + export VSDEV_WINSDKVER=
- + VSDEV_WINSDKVER=
- + export VSDEV_MSVSPREFERENCE=
- + VSDEV_MSVSPREFERENCE=
- + export VSDEV_CMAKEGENERATOR=
- + VSDEV_CMAKEGENERATOR=
- + is_unixy_windows_build_machine
- + is_msys2_msys_build_machine
- + '[' -e /usr/bin/msys-2.0.dll ']'
- + return 1
- + is_cygwin_build_machine
- + '[' -e /usr/bin/cygwin1.dll ']'
- + return 1
- + return 1
- + return 0
- + '[' -n '' ']'
- + '[' linux_x86_64 = darwin_x86_64 ']'
- + '[' linux_x86_64 = darwin_arm64 ']'
- + '[' OFF = OFF ']'
- + autodetect_compiler_system
- + '[' MSVS_DETECT = SEXP ']'
- + '[' MSVS_DETECT = LAUNCHER ']'
- ++ command -v gcc
- + autodetect_compiler_system_GCC=/usr/bin/gcc
- + '[' -n /usr/bin/gcc ']'
- + case "$autodetect_compiler_PLATFORM_ARCH" in
- ++ command -v g++
- + autodetect_compiler_system_GPLUSPLUS=/usr/bin/g++
- + '[' -n /usr/bin/g++ ']'
- + case "$autodetect_compiler_PLATFORM_ARCH" in
- ++ command -v as
- + autodetect_compiler_system_AS=/usr/bin/as
- + '[' -n /usr/bin/as ']'
- + case "$autodetect_compiler_PLATFORM_ARCH" in
- ++ command -v ld
- + autodetect_compiler_system_LD=/usr/bin/ld
- + '[' -n /usr/bin/ld ']'
- + case "$autodetect_compiler_PLATFORM_ARCH" in
- + autodetect_compiler_system_LDFLAGS=-melf_x86_64
- + '[' MSVS_DETECT = SEXP ']'
- + '[' MSVS_DETECT = LAUNCHER ']'
- + '[' MSVS_DETECT = SEXP ']'
- + '[' MSVS_DETECT = LAUNCHER ']'
- + /usr/bin/chmod +x /opam-tmp/dkmlw.ukpSO/msvs-detect.tmp
- + /usr/bin/mv /opam-tmp/dkmlw.ukpSO/msvs-detect.tmp /opam-tmp/dkmlw.ukpSO/msvs-detect
- + '[' OFF = ON ']'
- + '[' -z /opam-tmp/dkmlw.ukpSO ']'
- + install /opam-tmp/dkmlw.ukpSO/msvs-detect /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/shell/msvs-detect
- + touch /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/shell/msvs-detect.complete
- + '[' -n 2.2.0~alpha0~20221104 ']'
- + sed 's/PACKAGE_VERSION='\''[^'\'']*'\''/PACKAGE_VERSION='\''2.2.0~alpha0~20221104'\''/; s/PACKAGE_STRING='\''opam [^'\'']*'\''/PACKAGE_STRING='\''opam 2.2.0~alpha0~20221104'\''/' /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/configure
- + mv /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/configure.new /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/configure
- + chmod +x /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/configure
- + sed 's/^AC_INIT(opam,.*)/AC_INIT(opam,2.2.0~alpha0~20221104)/' /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/configure.ac
- + mv /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/configure.ac.new /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/configure.ac
- + export BOOTSTRAPNAME=110co
- + BOOTSTRAPNAME=110co
- + export DEPLOYDIR_UNIX=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w
- + DEPLOYDIR_UNIX=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w
- + DESTDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- ++ pwd
- + THISDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir
- + '[' /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co = /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir ']'
- + COMMON_ARGS=(-d "$SHARE_REPRODUCIBLE_BUILD_RELPATH/$BOOTSTRAPNAME")
- + install_reproducible_common
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- + install_reproducible_common_BOOTSTRAPDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + /usr/bin/install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + install_reproducible_file .dkmlroot
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- + _install_reproducible_file_RELFILE=.dkmlroot
- + shift
- ++ dirname .dkmlroot
- + _install_reproducible_file_RELDIR=.
- + _install_reproducible_file_BOOTSTRAPDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + /usr/bin/install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/./
- + '[' /dev/null -ef /dev/null ']'
- + '[' '!' /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/.dkmlroot -ef /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/.dkmlroot ']'
- + /usr/bin/install /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/.dkmlroot /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/./
- + install_reproducible_file vendor/drc/all/emptytop/dune-project
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- + _install_reproducible_file_RELFILE=vendor/drc/all/emptytop/dune-project
- + shift
- ++ dirname vendor/drc/all/emptytop/dune-project
- + _install_reproducible_file_RELDIR=vendor/drc/all/emptytop
- + _install_reproducible_file_BOOTSTRAPDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + /usr/bin/install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drc/all/emptytop/
- + '[' /dev/null -ef /dev/null ']'
- + '[' '!' /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drc/all/emptytop/dune-project -ef /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drc/all/emptytop/dune-project ']'
- + /usr/bin/install /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drc/all/emptytop/dune-project /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drc/all/emptytop/
- + install_reproducible_file vendor/drc/unix/crossplatform-functions.sh
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- + _install_reproducible_file_RELFILE=vendor/drc/unix/crossplatform-functions.sh
- + shift
- ++ dirname vendor/drc/unix/crossplatform-functions.sh
- + _install_reproducible_file_RELDIR=vendor/drc/unix
- + _install_reproducible_file_BOOTSTRAPDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + /usr/bin/install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drc/unix/
- + '[' /dev/null -ef /dev/null ']'
- + '[' '!' /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drc/unix/crossplatform-functions.sh -ef /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drc/unix/crossplatform-functions.sh ']'
- + /usr/bin/install /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drc/unix/crossplatform-functions.sh /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drc/unix/
- + install_reproducible_file vendor/drc/unix/_common_tool.sh
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- + _install_reproducible_file_RELFILE=vendor/drc/unix/_common_tool.sh
- + shift
- ++ dirname vendor/drc/unix/_common_tool.sh
- + _install_reproducible_file_RELDIR=vendor/drc/unix
- + _install_reproducible_file_BOOTSTRAPDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + /usr/bin/install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drc/unix/
- + '[' /dev/null -ef /dev/null ']'
- + '[' '!' /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drc/unix/_common_tool.sh -ef /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drc/unix/_common_tool.sh ']'
- + /usr/bin/install /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drc/unix/_common_tool.sh /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drc/unix/
- + install_reproducible_readme vendor/drd/src/unix/private/r-c-opam-README.md
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- + install_reproducible_readme_RELFILE=vendor/drd/src/unix/private/r-c-opam-README.md
- + shift
- + install_reproducible_file vendor/drd/src/unix/private/r-c-opam-README.md
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- + _install_reproducible_file_RELFILE=vendor/drd/src/unix/private/r-c-opam-README.md
- + shift
- ++ dirname vendor/drd/src/unix/private/r-c-opam-README.md
- + _install_reproducible_file_RELDIR=vendor/drd/src/unix/private
- + _install_reproducible_file_BOOTSTRAPDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + /usr/bin/install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/
- + '[' /dev/null -ef /dev/null ']'
- + '[' '!' /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drd/src/unix/private/r-c-opam-README.md -ef /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-README.md ']'
- + /usr/bin/install /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drd/src/unix/private/r-c-opam-README.md /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/
- + install_reproducible_readme_BOOTSTRAPDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + /usr/bin/install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + /usr/bin/sed s,@@BOOTSTRAPDIR_UNIX@@,share/dkml/repro/110co/,g /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drd/src/unix/private/r-c-opam-README.md
- + install_reproducible_system_packages vendor/drd/src/unix/private/r-c-opam-0-system.sh
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- + autodetect_buildhost_arch
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- ++ /usr/bin/uname -s
- + autodetect_buildhost_arch_SYSTEM=Linux
- ++ /usr/bin/uname -m
- + autodetect_buildhost_arch_MACHINE=x86_64
- + case "${autodetect_buildhost_arch_SYSTEM}-${autodetect_buildhost_arch_MACHINE}" in
- + BUILDHOST_ARCH=linux_x86_64
- + install_reproducible_system_packages_SCRIPTFILE=vendor/drd/src/unix/private/r-c-opam-0-system.sh
- + shift
- ++ change_suffix vendor/drd/src/unix/private/r-c-opam-0-system.sh .sh .packagelist.txt
- ++ change_suffix_TEXT=vendor/drd/src/unix/private/r-c-opam-0-system.sh
- ++ shift
- ++ change_suffix_OLD_SUFFIX=.sh
- ++ shift
- ++ change_suffix_NEW_SUFFIX=.packagelist.txt
- ++ shift
- ++ autodetect_system_binaries
- ++ '[' -z /usr/bin/mv ']'
- ++ '[' -z /usr/bin/chmod ']'
- ++ '[' -z /usr/bin/uname ']'
- ++ '[' -z /usr/bin/env ']'
- ++ '[' -z /usr/bin/awk ']'
- ++ '[' -z /usr/bin/sed ']'
- ++ '[' -z /usr/bin/comm ']'
- ++ '[' -z /usr/bin/install ']'
- ++ '[' -z /usr/bin/rm ']'
- ++ '[' -z /usr/bin/sort ']'
- ++ '[' -z /usr/bin/cat ']'
- ++ '[' -z /usr/bin/stat ']'
- ++ '[' -z /usr/bin/grep ']'
- ++ '[' -z /usr/bin/curl ']'
- ++ '[' -z /usr/bin/tr ']'
- ++ export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- ++ export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- ++ printf %s vendor/drd/src/unix/private/r-c-opam-0-system.sh
- ++ /usr/bin/awk -v REPLACE=.packagelist.txt '{ gsub(/.sh/,REPLACE); print }'
- + install_reproducible_system_packages_PACKAGEFILE=vendor/drd/src/unix/private/r-c-opam-0-system.packagelist.txt
- + '[' vendor/drd/src/unix/private/r-c-opam-0-system.packagelist.txt = vendor/drd/src/unix/private/r-c-opam-0-system.sh ']'
- ++ dirname vendor/drd/src/unix/private/r-c-opam-0-system.sh
- + install_reproducible_system_packages_SCRIPTDIR=vendor/drd/src/unix/private
- + install_reproducible_system_packages_BOOTSTRAPRELDIR=share/dkml/repro/110co
- + install_reproducible_system_packages_BOOTSTRAPDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + /usr/bin/install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/
- + is_msys2_msys_build_machine
- + '[' -e /usr/bin/msys-2.0.dll ']'
- + return 1
- + '[' -x /usr/bin/pacman ']'
- + '[' -x /usr/sbin/pacman ']'
- + is_cygwin_build_machine
- + '[' -e /usr/bin/cygwin1.dll ']'
- + return 1
- + is_arg_darwin_based_platform linux_x86_64
- + autodetect_buildhost_arch
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- ++ /usr/bin/uname -s
- + autodetect_buildhost_arch_SYSTEM=Linux
- ++ /usr/bin/uname -m
- + autodetect_buildhost_arch_MACHINE=x86_64
- + case "${autodetect_buildhost_arch_SYSTEM}-${autodetect_buildhost_arch_MACHINE}" in
- + BUILDHOST_ARCH=linux_x86_64
- + case "$1" in
- + return 1
- + '[' -x /usr/bin/dpkg ']'
- + /usr/bin/dpkg --get-selections
- + printf '#!/bin/sh\n'
- + printf 'sudo apt-cache dumpavail | sudo dpkg --merge-avail\n'
- + printf 'sudo dpkg --set-selections < '\''%s'\''\n' share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-0-system.packagelist.txt
- + printf 'sudo apt-get dselect-upgrade\n'
- + /usr/bin/chmod 755 /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-0-system.sh
- + install_reproducible_script_with_args vendor/drd/src/unix/private/r-c-opam-1-setup.sh -d share/dkml/repro/110co -t . -v dl/opam -p 2.2.0~alpha0~20221104 -c /home/opam/.opam/4.14 -a linux_x86_64
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- + install_reproducible_script_with_args_SCRIPTFILE=vendor/drd/src/unix/private/r-c-opam-1-setup.sh
- + shift
- ++ change_suffix vendor/drd/src/unix/private/r-c-opam-1-setup.sh .sh -noargs.sh
- ++ change_suffix_TEXT=vendor/drd/src/unix/private/r-c-opam-1-setup.sh
- ++ shift
- ++ change_suffix_OLD_SUFFIX=.sh
- ++ shift
- ++ change_suffix_NEW_SUFFIX=-noargs.sh
- ++ shift
- ++ autodetect_system_binaries
- ++ '[' -z /usr/bin/mv ']'
- ++ '[' -z /usr/bin/chmod ']'
- ++ '[' -z /usr/bin/uname ']'
- ++ '[' -z /usr/bin/env ']'
- ++ '[' -z /usr/bin/awk ']'
- ++ '[' -z /usr/bin/sed ']'
- ++ '[' -z /usr/bin/comm ']'
- ++ '[' -z /usr/bin/install ']'
- ++ '[' -z /usr/bin/rm ']'
- ++ '[' -z /usr/bin/sort ']'
- ++ '[' -z /usr/bin/cat ']'
- ++ '[' -z /usr/bin/stat ']'
- ++ '[' -z /usr/bin/grep ']'
- ++ '[' -z /usr/bin/curl ']'
- ++ '[' -z /usr/bin/tr ']'
- ++ export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- ++ export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- ++ printf %s vendor/drd/src/unix/private/r-c-opam-1-setup.sh
- ++ /usr/bin/awk -v REPLACE=-noargs.sh '{ gsub(/.sh/,REPLACE); print }'
- + install_reproducible_script_with_args_RECREATEFILE=vendor/drd/src/unix/private/r-c-opam-1-setup-noargs.sh
- + '[' vendor/drd/src/unix/private/r-c-opam-1-setup-noargs.sh = vendor/drd/src/unix/private/r-c-opam-1-setup.sh ']'
- ++ dirname vendor/drd/src/unix/private/r-c-opam-1-setup.sh
- + install_reproducible_script_with_args_RECREATEDIR=vendor/drd/src/unix/private
- + install_reproducible_script_with_args_BOOTSTRAPRELDIR=share/dkml/repro/110co
- + install_reproducible_script_with_args_BOOTSTRAPDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + install_reproducible_file vendor/drd/src/unix/private/r-c-opam-1-setup.sh
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- + _install_reproducible_file_RELFILE=vendor/drd/src/unix/private/r-c-opam-1-setup.sh
- + shift
- ++ dirname vendor/drd/src/unix/private/r-c-opam-1-setup.sh
- + _install_reproducible_file_RELDIR=vendor/drd/src/unix/private
- + _install_reproducible_file_BOOTSTRAPDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + /usr/bin/install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/
- + '[' /dev/null -ef /dev/null ']'
- + '[' '!' /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drd/src/unix/private/r-c-opam-1-setup.sh -ef /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-1-setup.sh ']'
- + /usr/bin/install /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drd/src/unix/private/r-c-opam-1-setup.sh /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/
- + /usr/bin/install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/
- + printf '#!/bin/sh\n'
- + printf 'set -euf\n'
- + printf 'if [ "${DKML_BUILD_TRACE:-}" = ON ] && [ "${DKML_BUILD_TRACE_LEVEL:-0}" -ge 2 ]; then\n'
- + printf ' exec env TOPDIR="$PWD/%s/vendor/drc/all/emptytop" bash -x %s ' share/dkml/repro/110co share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-1-setup.sh
- + escape_args_for_shell -d share/dkml/repro/110co -t . -v dl/opam -p 2.2.0~alpha0~20221104 -c /home/opam/.opam/4.14 -a linux_x86_64
- + bash -c 'printf "%q " "$@"' -- -d share/dkml/repro/110co -t . -v dl/opam -p 2.2.0~alpha0~20221104 -c /home/opam/.opam/4.14 -a linux_x86_64
- + /usr/bin/sed 's/ $//'
- + printf '\n'
- + printf 'else\n'
- + printf ' exec env TOPDIR="$PWD/%s/vendor/drc/all/emptytop" %s ' share/dkml/repro/110co share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-1-setup.sh
- + escape_args_for_shell -d share/dkml/repro/110co -t . -v dl/opam -p 2.2.0~alpha0~20221104 -c /home/opam/.opam/4.14 -a linux_x86_64
- + bash -c 'printf "%q " "$@"' -- -d share/dkml/repro/110co -t . -v dl/opam -p 2.2.0~alpha0~20221104 -c /home/opam/.opam/4.14 -a linux_x86_64
- + /usr/bin/sed 's/ $//'
- + printf '\n'
- + printf 'fi\n'
- + /usr/bin/chmod 755 /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-1-setup-noargs.sh
- + install_reproducible_script_with_args vendor/drd/src/unix/private/r-c-opam-2-build.sh -d share/dkml/repro/110co -t . -c /home/opam/.opam/4.14 -a linux_x86_64 -e OFF
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- + install_reproducible_script_with_args_SCRIPTFILE=vendor/drd/src/unix/private/r-c-opam-2-build.sh
- + shift
- ++ change_suffix vendor/drd/src/unix/private/r-c-opam-2-build.sh .sh -noargs.sh
- ++ change_suffix_TEXT=vendor/drd/src/unix/private/r-c-opam-2-build.sh
- ++ shift
- ++ change_suffix_OLD_SUFFIX=.sh
- ++ shift
- ++ change_suffix_NEW_SUFFIX=-noargs.sh
- ++ shift
- ++ autodetect_system_binaries
- ++ '[' -z /usr/bin/mv ']'
- ++ '[' -z /usr/bin/chmod ']'
- ++ '[' -z /usr/bin/uname ']'
- ++ '[' -z /usr/bin/env ']'
- ++ '[' -z /usr/bin/awk ']'
- ++ '[' -z /usr/bin/sed ']'
- ++ '[' -z /usr/bin/comm ']'
- ++ '[' -z /usr/bin/install ']'
- ++ '[' -z /usr/bin/rm ']'
- ++ '[' -z /usr/bin/sort ']'
- ++ '[' -z /usr/bin/cat ']'
- ++ '[' -z /usr/bin/stat ']'
- ++ '[' -z /usr/bin/grep ']'
- ++ '[' -z /usr/bin/curl ']'
- ++ '[' -z /usr/bin/tr ']'
- ++ export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- ++ export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- ++ printf %s vendor/drd/src/unix/private/r-c-opam-2-build.sh
- ++ /usr/bin/awk -v REPLACE=-noargs.sh '{ gsub(/.sh/,REPLACE); print }'
- + install_reproducible_script_with_args_RECREATEFILE=vendor/drd/src/unix/private/r-c-opam-2-build-noargs.sh
- + '[' vendor/drd/src/unix/private/r-c-opam-2-build-noargs.sh = vendor/drd/src/unix/private/r-c-opam-2-build.sh ']'
- ++ dirname vendor/drd/src/unix/private/r-c-opam-2-build.sh
- + install_reproducible_script_with_args_RECREATEDIR=vendor/drd/src/unix/private
- + install_reproducible_script_with_args_BOOTSTRAPRELDIR=share/dkml/repro/110co
- + install_reproducible_script_with_args_BOOTSTRAPDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + install_reproducible_file vendor/drd/src/unix/private/r-c-opam-2-build.sh
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- + _install_reproducible_file_RELFILE=vendor/drd/src/unix/private/r-c-opam-2-build.sh
- + shift
- ++ dirname vendor/drd/src/unix/private/r-c-opam-2-build.sh
- + _install_reproducible_file_RELDIR=vendor/drd/src/unix/private
- + _install_reproducible_file_BOOTSTRAPDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + /usr/bin/install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/
- + '[' /dev/null -ef /dev/null ']'
- + '[' '!' /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drd/src/unix/private/r-c-opam-2-build.sh -ef /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-2-build.sh ']'
- + /usr/bin/install /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drd/src/unix/private/r-c-opam-2-build.sh /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/
- + /usr/bin/install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/
- + printf '#!/bin/sh\n'
- + printf 'set -euf\n'
- + printf 'if [ "${DKML_BUILD_TRACE:-}" = ON ] && [ "${DKML_BUILD_TRACE_LEVEL:-0}" -ge 2 ]; then\n'
- + printf ' exec env TOPDIR="$PWD/%s/vendor/drc/all/emptytop" bash -x %s ' share/dkml/repro/110co share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-2-build.sh
- + escape_args_for_shell -d share/dkml/repro/110co -t . -c /home/opam/.opam/4.14 -a linux_x86_64 -e OFF
- + bash -c 'printf "%q " "$@"' -- -d share/dkml/repro/110co -t . -c /home/opam/.opam/4.14 -a linux_x86_64 -e OFF
- + /usr/bin/sed 's/ $//'
- + printf '\n'
- + printf 'else\n'
- + printf ' exec env TOPDIR="$PWD/%s/vendor/drc/all/emptytop" %s ' share/dkml/repro/110co share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-2-build.sh
- + escape_args_for_shell -d share/dkml/repro/110co -t . -c /home/opam/.opam/4.14 -a linux_x86_64 -e OFF
- + bash -c 'printf "%q " "$@"' -- -d share/dkml/repro/110co -t . -c /home/opam/.opam/4.14 -a linux_x86_64 -e OFF
- + /usr/bin/sed 's/ $//'
- + printf '\n'
- + printf 'fi\n'
- + /usr/bin/chmod 755 /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-2-build-noargs.sh
- + install_reproducible_script_with_args vendor/drd/src/unix/private/r-c-opam-9-trim.sh -d share/dkml/repro/110co -t . -e OFF
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- + install_reproducible_script_with_args_SCRIPTFILE=vendor/drd/src/unix/private/r-c-opam-9-trim.sh
- + shift
- ++ change_suffix vendor/drd/src/unix/private/r-c-opam-9-trim.sh .sh -noargs.sh
- ++ change_suffix_TEXT=vendor/drd/src/unix/private/r-c-opam-9-trim.sh
- ++ shift
- ++ change_suffix_OLD_SUFFIX=.sh
- ++ shift
- ++ change_suffix_NEW_SUFFIX=-noargs.sh
- ++ shift
- ++ autodetect_system_binaries
- ++ '[' -z /usr/bin/mv ']'
- ++ '[' -z /usr/bin/chmod ']'
- ++ '[' -z /usr/bin/uname ']'
- ++ '[' -z /usr/bin/env ']'
- ++ '[' -z /usr/bin/awk ']'
- ++ '[' -z /usr/bin/sed ']'
- ++ '[' -z /usr/bin/comm ']'
- ++ '[' -z /usr/bin/install ']'
- ++ '[' -z /usr/bin/rm ']'
- ++ '[' -z /usr/bin/sort ']'
- ++ '[' -z /usr/bin/cat ']'
- ++ '[' -z /usr/bin/stat ']'
- ++ '[' -z /usr/bin/grep ']'
- ++ '[' -z /usr/bin/curl ']'
- ++ '[' -z /usr/bin/tr ']'
- ++ export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- ++ export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- ++ printf %s vendor/drd/src/unix/private/r-c-opam-9-trim.sh
- ++ /usr/bin/awk -v REPLACE=-noargs.sh '{ gsub(/.sh/,REPLACE); print }'
- + install_reproducible_script_with_args_RECREATEFILE=vendor/drd/src/unix/private/r-c-opam-9-trim-noargs.sh
- + '[' vendor/drd/src/unix/private/r-c-opam-9-trim-noargs.sh = vendor/drd/src/unix/private/r-c-opam-9-trim.sh ']'
- ++ dirname vendor/drd/src/unix/private/r-c-opam-9-trim.sh
- + install_reproducible_script_with_args_RECREATEDIR=vendor/drd/src/unix/private
- + install_reproducible_script_with_args_BOOTSTRAPRELDIR=share/dkml/repro/110co
- + install_reproducible_script_with_args_BOOTSTRAPDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + install_reproducible_file vendor/drd/src/unix/private/r-c-opam-9-trim.sh
- + autodetect_system_binaries
- + '[' -z /usr/bin/mv ']'
- + '[' -z /usr/bin/chmod ']'
- + '[' -z /usr/bin/uname ']'
- + '[' -z /usr/bin/env ']'
- + '[' -z /usr/bin/awk ']'
- + '[' -z /usr/bin/sed ']'
- + '[' -z /usr/bin/comm ']'
- + '[' -z /usr/bin/install ']'
- + '[' -z /usr/bin/rm ']'
- + '[' -z /usr/bin/sort ']'
- + '[' -z /usr/bin/cat ']'
- + '[' -z /usr/bin/stat ']'
- + '[' -z /usr/bin/grep ']'
- + '[' -z /usr/bin/curl ']'
- + '[' -z /usr/bin/tr ']'
- + export DKMLSYS_MV DKMLSYS_CHMOD DKMLSYS_UNAME DKMLSYS_ENV DKMLSYS_AWK DKMLSYS_SED DKMLSYS_COMM DKMLSYS_INSTALL
- + export DKMLSYS_RM DKMLSYS_SORT DKMLSYS_CAT DKMLSYS_STAT DKMLSYS_GREP DKMLSYS_CURL DKMLSYS_TR
- + _install_reproducible_file_RELFILE=vendor/drd/src/unix/private/r-c-opam-9-trim.sh
- + shift
- ++ dirname vendor/drd/src/unix/private/r-c-opam-9-trim.sh
- + _install_reproducible_file_RELDIR=vendor/drd/src/unix/private
- + _install_reproducible_file_BOOTSTRAPDIR=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- + /usr/bin/install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/
- + '[' /dev/null -ef /dev/null ']'
- + '[' '!' /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drd/src/unix/private/r-c-opam-9-trim.sh -ef /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-9-trim.sh ']'
- + /usr/bin/install /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/dkmldir/vendor/drd/src/unix/private/r-c-opam-9-trim.sh /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/
- + /usr/bin/install -d /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/
- + printf '#!/bin/sh\n'
- + printf 'set -euf\n'
- + printf 'if [ "${DKML_BUILD_TRACE:-}" = ON ] && [ "${DKML_BUILD_TRACE_LEVEL:-0}" -ge 2 ]; then\n'
- + printf ' exec env TOPDIR="$PWD/%s/vendor/drc/all/emptytop" bash -x %s ' share/dkml/repro/110co share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-9-trim.sh
- + escape_args_for_shell -d share/dkml/repro/110co -t . -e OFF
- + bash -c 'printf "%q " "$@"' -- -d share/dkml/repro/110co -t . -e OFF
- + /usr/bin/sed 's/ $//'
- + printf '\n'
- + printf 'else\n'
- + printf ' exec env TOPDIR="$PWD/%s/vendor/drc/all/emptytop" %s ' share/dkml/repro/110co share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-9-trim.sh
- + escape_args_for_shell -d share/dkml/repro/110co -t . -e OFF
- + bash -c 'printf "%q " "$@"' -- -d share/dkml/repro/110co -t . -e OFF
- + /usr/bin/sed 's/ $//'
- + printf '\n'
- + printf 'fi\n'
- + /usr/bin/chmod 755 /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-9-trim-noargs.sh
- + PATH=/usr/bin:/bin
- + rm -rf /opam-tmp/dkmlw.ukpSO
Processing 2/4: [dkml-component-staging-opam64: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "sh" "-eufc" "cd _w && share/dkml/repro/110co/vendor/drd/src/unix/private/r-c-opam-2-build-noargs.sh" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104)
- make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam'
- make -C doc clean
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/doc'
- rm -rf dependencies.dot html/ocamldoc man-html pages/*.html html/index.html
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/doc'
- rm -f *.install *.env *.err *.info *.out opam opam-admin.top opam-installer
- rm -f src/client/no-git-version
- rm -rf _build Opam.Runtime.*
- make -C src_ext distclean
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/src_ext'
- rm -rf dune-local secondary cppo base64 extlib re cmdliner ocamlgraph cudf dose3 opam-file-format result seq stdlib-shims spdx_licenses opam-0install-cudf 0install-solver uutf jsonm sha cppo base64 extlib re cmdliner ocamlgraph cudf dose3 opam-file-format result seq stdlib-shims spdx_licenses opam-0install-cudf 0install-solver uutf jsonm sha dune-local findlib ocamlbuild topkg mccs
- rm -f *.tar.gz *.tbz *.*stamp *.*download *.pkgbuild dune \
- Makefile.config
- [ -d archives ] && ([ "$(find archives -maxdepth 0 -type d -empty)" != "" ] && rmdir archives || echo "WARNING! $(pwd)/archives/ not empty so left") || true
- WARNING! /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/src_ext/archives/ not empty so left
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/src_ext'
- rm -rf autom4te.cache bootstrap
- rm -f Makefile.config config.log config.status aclocal.m4
- rm -f src/*.META src/*/.merlin src/manifest/dune src/manifest/install.inc src/stubs/libacl/dune src/stubs/win32/dune src/stubs/win32/cc64 src/ocaml-flags-configure.sexp src/stubs/libacl/c-libraries.sexp
- rm -f src/client/linking.sexp src/stubs/c-flags.sexp src/core/developer src/core/version
- make: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam'
- ~/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam ~/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- checking for ocamlc... ocamlc
- OCaml version is 4.14.2
- OCaml library path is /home/opam/.opam/4.14/lib/ocaml
- checking for ocamlopt... ocamlopt
- checking for ocamlc.opt... ocamlc.opt
- checking for ocamlopt.opt... ocamlopt.opt
- checking for ocaml... ocaml
- checking for ocamldep... ocamldep
- checking for ocamldep.opt... ocamldep.opt
- checking for ocamlmktop... ocamlmktop
- checking for ocamlmklib... ocamlmklib
- checking for ocamldoc... ocamldoc
- checking for ocamldoc.opt... ocamldoc.opt
- checking for ocamlbuild... ocamlbuild
- checking OCaml Sys.os_type... Unix
- checking for gawk... no
- checking for mawk... mawk
- checking for compiler type... cc
- checking for compiler architecture...
- amd64
- checking for compiler system... linux
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether the compiler supports GNU C... yes
- checking whether /usr/bin/gcc accepts -g... yes
- checking for /usr/bin/gcc option to enable C11 features... none needed
- checking for stdio.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for strings.h... yes
- checking for sys/stat.h... yes
- checking for sys/types.h...
- yes
- checking for unistd.h... yes
- checking for acl/libacl.h... no
- checking for library containing acl_get_perm... no
- checking for ocamlobjinfo... ocamlobjinfo
- checking for ocamlfind... ocamlfind
- checking for curl... curl
- checking for dune... dune
- checking for cppo... cppo
- checking for patch... patch
- checking for bunzip2... bunzip2
-
- checking for OCaml findlib package unix... found
- checking for OCaml findlib package bigarray... found
- checking for OCaml findlib package re 1.9.0 or later... no
- checking for OCaml findlib package base64 3.1.0 or later... no
- checking for OCaml findlib package cmdliner... found
- checking for OCaml findlib package ocamlgraph... not found
- checking for OCaml findlib package cudf 0.7 or later... no
- checking for OCaml findlib package dose3.common 6.1 or later... no
- checking for OCaml findlib package dose3.algo 6.1 or later... no
- checking for OCaml findlib package opam-file-format 2.1.4 or later... no
- checking for OCaml findlib package spdx_licenses... not found
- checking for OCaml findlib package opam-0install-cudf 0.4 or later... no
- checking for OCaml findlib package jsonm... not found
- checking for OCaml findlib package uutf... not found
- checking for OCaml findlib package sha... not found
- checking for OCaml findlib package mccs 1.1+9 or later... no
- checking whether the compiler supports GNU C++... yes
- checking whether /usr/bin/g++ accepts -g... yes
- checking for /usr/bin/g++ option to enable C++11 features... none needed
- checking whether /usr/bin/g++ really is a C++ compiler... yes
-
- configure: creating ./config.status
- config.status: creating Makefile.config
- config.status: creating src/ocaml-flags-configure.sexp
- config.status: creating src/stubs/c-flags.sexp
- config.status: creating src/stubs/libacl/c-libraries.sexp
-
- Opam will be built WITH its default built-in solver
-
- Executables will be installed in /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/bin
- Manual pages will be installed in /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man
-
- Downloading vendored source dependencies...
- done
- Extracting vendored source dependencies in src_ext/...
- done
- ~/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/dkml/repro/110co
- make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam'
- dune build --profile=release --root . --promote-install-files -- opam-installer.install opam.install
- (cd src_ext/0install-solver/src/gui_gtk && /home/opam/.opam/4.14/bin/ocaml -I +compiler-libs /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/_build/.dune/default/src_ext/0install-solver/src/gui_gtk/dune.ml)
- (will skip building the GTK plugin)
- ocamlfind: Package `lablgtk3' not found
- (cd _build/default/src_ext/dose3/src/common && /home/opam/.opam/4.14/bin/ocaml unix.cma get-git-info.mlt) > _build/default/src_ext/dose3/src/common/gitVersionInfo.ml
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
- sed -f process.sed opam.install > processed-opam.install
- dune build --profile=release --root . --promote-install-files -- opam-installer.install
- (cd src_ext/0install-solver/src/gui_gtk && /home/opam/.opam/4.14/bin/ocaml -I +compiler-libs /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/_build/.dune/default/src_ext/0install-solver/src/gui_gtk/dune.ml)
- (will skip building the GTK plugin)
- ocamlfind: Package `lablgtk3' not found
- sed -f process.sed opam-installer.install > processed-opam-installer.install
- make: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam'
- make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam'
- ./opam-installer --prefix "/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w" --mandir "/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man" --libdir "/home/opam/.opam/4.14/lib" --docdir "/home/opam/.opam/4.14/lib/../doc" processed-opam.install
- Creating directory /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/bin
- _build/install/default/bin/opam => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/bin/opam
- Creating directory /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1
- _build/install/default/man/man1/opam-admin-add-constraint.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-admin-add-constraint.1
- _build/install/default/man/man1/opam-admin-add-hashes.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-admin-add-hashes.1
- _build/install/default/man/man1/opam-admin-cache.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-admin-cache.1
- _build/install/default/man/man1/opam-admin-check.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-admin-check.1
- _build/install/default/man/man1/opam-admin-filter.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-admin-filter.1
- _build/install/default/man/man1/opam-admin-help.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-admin-help.1
- _build/install/default/man/man1/opam-admin-index.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-admin-index.1
- _build/install/default/man/man1/opam-admin-lint.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-admin-lint.1
- _build/install/default/man/man1/opam-admin-list.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-admin-list.1
- _build/install/default/man/man1/opam-admin-make.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-admin-make.1
- _build/install/default/man/man1/opam-admin-upgrade.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-admin-upgrade.1
- _build/install/default/man/man1/opam-admin.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-admin.1
- _build/install/default/man/man1/opam-clean.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-clean.1
- _build/install/default/man/man1/opam-config.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-config.1
- _build/install/default/man/man1/opam-env.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-env.1
- _build/install/default/man/man1/opam-exec.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-exec.1
- _build/install/default/man/man1/opam-help.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-help.1
- _build/install/default/man/man1/opam-info.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-info.1
- _build/install/default/man/man1/opam-init.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-init.1
- _build/install/default/man/man1/opam-install.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-install.1
- _build/install/default/man/man1/opam-lint.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-lint.1
- _build/install/default/man/man1/opam-list.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-list.1
- _build/install/default/man/man1/opam-lock.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-lock.1
- _build/install/default/man/man1/opam-option.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-option.1
- _build/install/default/man/man1/opam-pin.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-pin.1
- _build/install/default/man/man1/opam-reinstall.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-reinstall.1
- _build/install/default/man/man1/opam-remote.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-remote.1
- _build/install/default/man/man1/opam-remove.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-remove.1
- _build/install/default/man/man1/opam-repository.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-repository.1
- _build/install/default/man/man1/opam-search.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-search.1
- _build/install/default/man/man1/opam-show.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-show.1
- _build/install/default/man/man1/opam-source.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-source.1
- _build/install/default/man/man1/opam-switch.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-switch.1
- _build/install/default/man/man1/opam-tree.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-tree.1
- _build/install/default/man/man1/opam-uninstall.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-uninstall.1
- _build/install/default/man/man1/opam-unpin.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-unpin.1
- _build/install/default/man/man1/opam-update.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-update.1
- _build/install/default/man/man1/opam-upgrade.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-upgrade.1
- _build/install/default/man/man1/opam-var.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-var.1
- _build/install/default/man/man1/opam-why.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-why.1
- _build/install/default/man/man1/opam.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam.1
- ./opam-installer --prefix "/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w" --mandir "/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man" --libdir "/home/opam/.opam/4.14/lib" --docdir "/home/opam/.opam/4.14/lib/../doc" processed-opam-installer.install
- _build/install/default/bin/opam-installer => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/bin/opam-installer
- _build/install/default/man/man1/opam-installer.1 => /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/share/man/man1/opam-installer.1
- make: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam'
- Entering directory '/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam'
- Shared cache: enabled-except-user-rules
- Shared cache location: /home/opam/.cache/dune/db
- Workspace root:
- /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam
- Auto-detected concurrency: 256
- Dune context:
- { name = "default"
- ; kind = "default"
- ; profile = Dev
- ; merlin = true
- ; fdo_target_exe = None
- ; build_dir = In_build_dir "default"
- ; instrument_with = []
- }
- (cd src_ext/0install-solver/src/gui_gtk && /home/opam/.opam/4.14/bin/ocaml -I +compiler-libs /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/_build/.dune/default/src_ext/0install-solver/src/gui_gtk/dune.ml)
- (will skip building the GTK plugin)
- ocamlfind: Package `lablgtk3' not found
- (flags
- (-w
- @1..3@5..28@30..39@43@46..47@49..57@61..62-40
- -strict-sequence
- -strict-formats
- -short-paths
- -keep-locs))
- (ocamlc_flags (-g))
- (ocamlopt_flags (-g))
- (melange.compile_flags (-g))
- (c_flags
- (-O2 -fno-strict-aliasing -fwrapv -pthread -fPIC))
- (cxx_flags
- (-O2 -fno-strict-aliasing -fwrapv -pthread -fPIC))
- (link_flags ())
- (menhir_flags ())
- (menhir_explain ())
- (coq_flags (-q))
- (coqdep_flags ())
- (coqdoc_flags (--toc))
- (coqdoc_header ())
- (coqdoc_footer ())
- (rocq_flags (-q))
- (rocqdep_flags ())
- (rocqdoc_flags (--toc))
- (rocqdoc_header ())
- (rocqdoc_footer ())
- (js_of_ocaml_flags (--pretty))
- (js_of_ocaml_build_runtime_flags (--pretty))
- (js_of_ocaml_link_flags ())
- (wasm_of_ocaml_flags (--pretty))
- (wasm_of_ocaml_build_runtime_flags (--pretty))
- (wasm_of_ocaml_link_flags ())
- Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam'
- ccomp_type is cc
- Entering directory '/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam'
- (cd src_ext/0install-solver/src/gui_gtk && /home/opam/.opam/4.14/bin/ocaml -I +compiler-libs /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam/_build/.dune/default/src_ext/0install-solver/src/gui_gtk/dune.ml)
- (will skip building the GTK plugin)
- ocamlfind: Package `lablgtk3' not found
- Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104/_w/src/opam'
Processing 2/4: [dkml-component-staging-opam64: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dkml-component-staging-opam64" "-j" "255" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104)
Processing 2/4: [dkml-component-staging-opam64: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "dkml-component-staging-opam64" "--create-install-files" "dkml-component-staging-opam64" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104)
-> compiled dkml-component-staging-opam64.2.2.0~alpha0~20221104
-> removed dkml-component-staging-opam64.2.2.0~alpha0~20221104
Processing 4/4: [dkml-component-staging-opam64: diskuvbox copy-file-into]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "diskuvbox" "copy-file-into" "_w/bin/opam" "_w/bin/opam-installer" "/home/opam/.opam/4.14/share/dkml-component-staging-opam64/staging-files/linux_x86_64/bin" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104)
Processing 4/4: [dkml-component-staging-opam64: diskuvbox copy-dir]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "diskuvbox" "copy-dir" "_w/share/man" "/home/opam/.opam/4.14/share/dkml-component-staging-opam64/staging-files/generic/man" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-opam64.2.2.0~alpha0~20221104)
-> installed dkml-component-staging-opam64.2.2.0~alpha0~20221104
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 19:14.20 ---> saved as "4d02c879f85df471ae40b47a3a335cdb1954487ffb41cd2f35461da496437e34"
Job succeeded
2026-01-13 19:14.35: Job succeeded