(for PR #29582)
2026-03-25 23:09.41: New job: test hevea.2.38 with ocaml-compiler.5.4.0~beta1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
on debian-13-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 40ee9f8d41e293fa1327d03c279f5e61e22157f8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ocaml-compiler.5.4.0~beta1 5.4.0~beta1
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml-compiler.5.4.0~beta1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall hevea.2.38; \
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" != 'hevea.2.38' && 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 hevea.2.38) || true
RUN opam reinstall --with-test --verbose hevea.2.38; \
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" != 'hevea.2.38' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-25 23:09.41: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0~beta1-hevea.2.38-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 23:09.41: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~beta1 5.4.0~beta1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-compiler.5.4.0~beta1' && 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 hevea.2.38;\
\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\" != 'hevea.2.38' && 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 hevea.2.38) || true"))
(run (shell "opam reinstall --with-test --verbose hevea.2.38;\
\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\" != 'hevea.2.38' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-25 23:09.41: Waiting for resource in pool OCluster
2026-03-25 23:30.51: Waiting for worker…
2026-03-25 23:33.05: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
Updating files: 50% (9445/18536)
Updating files: 51% (9454/18536)
Updating files: 52% (9639/18536)
Updating files: 53% (9825/18536)
Updating files: 54% (10010/18536)
Updating files: 55% (10195/18536)
Updating files: 56% (10381/18536)
Updating files: 57% (10566/18536)
Updating files: 58% (10751/18536)
Updating files: 59% (10937/18536)
Updating files: 60% (11122/18536)
Updating files: 61% (11307/18536)
Updating files: 62% (11493/18536)
Updating files: 63% (11678/18536)
Updating files: 64% (11864/18536)
Updating files: 65% (12049/18536)
Updating files: 66% (12234/18536)
Updating files: 67% (12420/18536)
Updating files: 68% (12605/18536)
Updating files: 69% (12790/18536)
Updating files: 70% (12976/18536)
Updating files: 71% (13161/18536)
Updating files: 72% (13346/18536)
Updating files: 73% (13532/18536)
Updating files: 74% (13717/18536)
Updating files: 75% (13902/18536)
Updating files: 76% (14088/18536)
Updating files: 77% (14273/18536)
Updating files: 78% (14459/18536)
Updating files: 79% (14644/18536)
Updating files: 80% (14829/18536)
Updating files: 81% (15015/18536)
Updating files: 82% (15200/18536)
Updating files: 83% (15385/18536)
Updating files: 84% (15571/18536)
Updating files: 85% (15756/18536)
Updating files: 86% (15941/18536)
Updating files: 87% (16127/18536)
Updating files: 88% (16312/18536)
Updating files: 89% (16498/18536)
Updating files: 90% (16683/18536)
Updating files: 91% (16868/18536)
Updating files: 92% (17054/18536)
Updating files: 93% (17239/18536)
Updating files: 94% (17424/18536)
Updating files: 95% (17610/18536)
Updating files: 96% (17795/18536)
Updating files: 97% (17980/18536)
Updating files: 98% (18166/18536)
Updating files: 99% (18351/18536)
Updating files: 100% (18536/18536)
Updating files: 100% (18536/18536), done.
HEAD is now at 40ee9f8d41 Merge pull request #29587 from astrada/gdfuse08
Merge made by the 'ort' strategy.
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.5/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.6/opam | 5 ++++-
packages/ocaml-option-llvm/ocaml-option-llvm.1/opam | 18 ++++++++++++++++++
.../ocaml-options-vanilla/ocaml-options-vanilla.1/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 2 ++
15 files changed, 69 insertions(+), 12 deletions(-)
create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6' locally
docker.io/ocaml/opam@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6: Pulling from ocaml/opam
866771c43bf5: Already exists
1e49bea09367: Already exists
e793768537e6: Already exists
ed323d3d481a: Already exists
7df34a5cd5f1: Already exists
fd712d3eb935: Already exists
4b9fb8c99118: Already exists
9d9a01948b94: Already exists
0f1514f90b32: Already exists
e1ec5a753447: Already exists
03cc323e2f71: Already exists
c09c08ea9749: Already exists
b36b619f8e6b: Already exists
195344ca5274: Already exists
228ee78582a6: Already exists
504bde1c25b3: Already exists
9d8b1356c89f: Already exists
9d8b1356c89f: Already exists
568fb6dda155: Already exists
c499c9198aea: Already exists
048e5e358118: Already exists
871ca48eb45d: Already exists
4f4fb700ef54: Already exists
a5a2568b9df9: Already exists
068cf3106ac8: Already exists
559f54ec9b29: Already exists
798ffd96fde5: Already exists
e9a891bf80d7: Already exists
d720cfe12674: Already exists
c81c932f4a91: Already exists
79f24fa3bb11: Already exists
8c1debcd8c20: Already exists
1bb2cfea7250: Already exists
2b3d3ca75e4c: Already exists
557cacaf263c: Already exists
d10483022eef: Already exists
7b62a90d8223: Already exists
28ce8ea66e72: Already exists
d975909ea717: Already exists
5c215c69c247: Already exists
e7c082452a54: Already exists
f6cbd774d654: Already exists
b40777a84cca: Already exists
7bb5edb9c889: Already exists
020670bcefab: Already exists
46df05d0db83: Already exists
45bde7b38933: Already exists
b4d63fa01ada: Already exists
Digest: sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
Status: Downloaded newer image for ocaml/opam@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
2026-03-25 23:33.10 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-25 23:33.10 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-25 23:33.10 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-25 23:33.10 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-25 23:33.10 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 23:33.12 ---> using "07a68ecb21bed61e4f94fa4dcb50d9c7e84f81448f8ae7e9e9983c91027df4a2" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 23:33.12 ---> using "b26a47ea5c8289d9e604d194e0a5dfeb524275bd8a7c64613ecd9c7e1857f13a" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 1s (7538 kB/s)
- Reading package lists...
-
2026-03-25 23:33.12 ---> using "0b343335ec438165d35b471bbf0eb838e16886a027b79662715b77b328e1271c" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~beta1 5.4.0~beta1"))
ocaml-compiler is now pinned to version 5.4.0~beta1
2026-03-25 23:33.12 ---> using "e1c05b46f28d7574e116a5b10ba98f694969006f7796f6a98c361e246ff746c8" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-compiler.5.4.0~beta1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocaml-compiler.5.4.0~beta1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
- remove ocaml-base-compiler 5.4.0 (pinned) [conflicts with ocaml-compiler]
=== downgrade 1 package
- downgrade ocaml-compiler 5.4.0 to 5.4.0~beta1 (pinned)
=== recompile 6 packages
- recompile base-domains base [uses ocaml]
- recompile base-effects base [uses ocaml]
- recompile base-nnp base [uses base-domains]
- recompile ocaml 5.4.0 [uses ocaml-base-compiler]
- recompile ocaml-config 3 [uses ocaml-base-compiler]
- recompile opam-depext 1.2.3 [uses ocaml]
=== install 1 package
- install ocaml-variants 5.4.0~beta1+options [required by ocaml]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~beta1 (cached)
-> retrieved ocaml-config.3 (cached)
-> retrieved opam-depext.1.2.3 (cached)
-> removed base-effects.base
-> removed base-nnp.base
-> removed base-domains.base
-> removed opam-depext.1.2.3
-> removed ocaml.5.4.0
-> removed ocaml-config.3
-> removed ocaml-base-compiler.5.4.0
-> removed ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~beta1
-> installed ocaml-variants.5.4.0~beta1+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~beta1+options"}]
Use `opam switch set-invariant' to change it.
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-25 23:33.12 ---> using "3817a208ed5f7baeb43f88e56244319516f39faddd782fe35a9ef1c9797c14d8" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall hevea.2.38;\
\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\" != 'hevea.2.38' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
hevea.2.38 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
- install hevea 2.38
- install ocamlbuild 0.16.1 [required by hevea]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved hevea.2.38 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> installed ocamlbuild.0.16.1
-> installed hevea.2.38
Done.
<><> hevea.2.38 installed successfully ><><><><><><><><><><><><><><><><><><><><>
=> The file 'hevea.sty' has been installed in /home/opam/.opam/5.4/lib/hevea but latex won't see it by itself
# To update the current shell environment, run: eval $(opam env)
2026-03-25 23:33.50 ---> saved as "426aeff430870f1454bfd68221c9f0671a1ada1fb6874a43eb35ce247d39b152"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test hevea.2.38) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile hevea 2.38
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved hevea.2.38 (https://opam.ocaml.org/cache)
-> removed hevea.2.38
-> installed hevea.2.38
Done.
<><> hevea.2.38 installed successfully ><><><><><><><><><><><><><><><><><><><><>
=> The file 'hevea.sty' has been installed in /home/opam/.opam/5.4/lib/hevea but latex won't see it by itself
# To update the current shell environment, run: eval $(opam env)
2026-03-25 23:34.22 ---> saved as "56154b5a449ec1106ae541f9d103a22b36f913c0cf1025f573ae70d2e396e16e"
/home/opam: (run (shell "opam reinstall --with-test --verbose hevea.2.38;\
\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\" != 'hevea.2.38' && 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 hevea 2.38
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [hevea.2.38: extract]
-> retrieved hevea.2.38 (cached)
Processing 2/4: [hevea: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "PREFIX=/home/opam/.opam/5.4" (CWD=/home/opam/.opam/5.4/.opam-switch/build/hevea.2.38)
- sh ocb.sh opt
- + /home/opam/.opam/5.4/bin/ocamlc.opt -config
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules hevea.ml > hevea.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules auxx.mli > auxx.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules colscan.mli > colscan.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules emisc.mli > emisc.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules count.mli > count.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o count.cmi count.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules esp.mli > esp.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules get.mli > get.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules length.mli > length.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules lexstate.mli > lexstate.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules misc.mli > misc.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules myStack.mli > myStack.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o misc.cmi misc.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o myStack.cmi myStack.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o length.cmi length.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o lexstate.cmi lexstate.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules hot.mli > hot.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules html.mli > html.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules outManager.mli > outManager.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules element.mli > element.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules out.mli > out.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules doOut.mli > doOut.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o doOut.cmi doOut.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules outUnicode.mli > outUnicode.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules tabular.mli > tabular.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o element.cmi element.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o out.cmi out.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o outUnicode.cmi outUnicode.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o tabular.cmi tabular.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o outManager.cmi outManager.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules image.mli > image.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules index.mli > index.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules info.mli > info.mli.depends
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q infoRef.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules infoRef.ml > infoRef.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules myLexing.mli > myLexing.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules mysys.mli > mysys.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules parse_opts.mli > parse_opts.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules text.mli > text.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o myLexing.cmi myLexing.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o mysys.cmi mysys.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o parse_opts.cmi parse_opts.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o text.cmi text.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules latexscan.mli > latexscan.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules imageManager.mli > imageManager.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o imageManager.cmi imageManager.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules location.mli > location.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules myfiles.mli > myfiles.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules mylib.mli > mylib.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules noimage.mli > noimage.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules package.mli > package.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o latexscan.cmi latexscan.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules save.mli > save.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules verb.mli > verb.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules videoc.mli > videoc.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules zyva.mli > zyva.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o auxx.cmi auxx.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o colscan.cmi colscan.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o emisc.cmi emisc.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o esp.cmi esp.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o get.cmi get.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o hot.cmi hot.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o html.cmi html.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o image.cmi image.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o index.cmi index.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o info.cmi info.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o infoRef.cmo infoRef.ml
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o location.cmi location.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o myfiles.cmi myfiles.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o mylib.cmi mylib.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o noimage.cmi noimage.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o package.cmi package.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o save.cmi save.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o verb.cmi verb.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o videoc.cmi videoc.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o zyva.cmi zyva.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o hevea.cmo hevea.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules auxx.ml > auxx.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules misc.ml > misc.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules location.ml > location.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules myLexing.ml > myLexing.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules myStack.ml > myStack.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o myLexing.cmx myLexing.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o myStack.cmx myStack.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o location.cmx location.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules mysys.ml > mysys.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules parse_opts.ml > parse_opts.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o misc.cmx misc.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -pp 'sh ../expandlib.sh' -modules mylib.ml > mylib.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules version.ml > version.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules version.mli > version.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o version.cmi version.mli
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -pp 'sh ../expandlib.sh' -o mylib.cmx mylib.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o version.cmx version.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o mysys.cmx mysys.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o parse_opts.cmx parse_opts.ml
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q colscan.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules colscan.ml > colscan.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules emisc.ml > emisc.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules count.ml > count.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o count.cmx count.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules esp.ml > esp.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o emisc.cmx emisc.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules explode.ml > explode.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules explode.mli > explode.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules htmltext.mli > htmltext.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules lexeme.mli > lexeme.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o lexeme.cmi lexeme.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules tree.mli > tree.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o htmltext.cmi htmltext.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o tree.cmi tree.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o explode.cmi explode.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules htmltext.ml > htmltext.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules util.ml > util.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules util.mli > util.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o util.cmi util.mli
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o htmltext.cmx htmltext.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o util.cmx util.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules htmlparse.ml > htmlparse.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules htmlparse.mli > htmlparse.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o htmlparse.cmi htmlparse.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules css.mli > css.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules doOut.ml > doOut.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules simpleRope.ml > simpleRope.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules simpleRope.mli > simpleRope.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o simpleRope.cmi simpleRope.mli
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o simpleRope.cmx simpleRope.ml
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q htmllex.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules htmllex.ml > htmllex.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules htmllex.mli > htmllex.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o css.cmi css.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o htmllex.cmi htmllex.mli
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o doOut.cmx doOut.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o htmllex.cmx htmllex.ml
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q lexstyle.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules lexstyle.ml > lexstyle.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules lexstyle.mli > lexstyle.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o lexstyle.cmi lexstyle.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules pp.ml > pp.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules pp.mli > pp.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o pp.cmi pp.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules ultra.ml > ultra.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules ultra.mli > ultra.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o ultra.cmi ultra.mli
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o explode.cmx explode.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o pp.cmx pp.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o htmlparse.cmx htmlparse.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o lexstyle.cmx lexstyle.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o ultra.cmx ultra.ml
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q get.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules get.ml > get.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules counter.ml > counter.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules counter.mli > counter.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o counter.cmi counter.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules latexmacros.ml > latexmacros.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules latexmacros.mli > latexmacros.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o latexmacros.cmi latexmacros.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules lexstate.ml > lexstate.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules myfiles.ml > myfiles.ml.depends
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q save.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules save.ml > save.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules out.ml > out.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules saveUtils.ml > saveUtils.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o saveUtils.cmo saveUtils.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o out.cmx out.ml
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q saver.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules saver.ml > saver.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules saver.mli > saver.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o saver.cmi saver.mli
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o saveUtils.cmx saveUtils.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o saver.cmx saver.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o myfiles.cmx myfiles.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o save.cmx save.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o lexstate.cmx lexstate.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o latexmacros.cmx latexmacros.ml
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q length.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules length.ml > length.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o counter.cmx counter.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o length.cmx length.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules hot.ml > hot.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules color.ml > color.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules color.mli > color.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o color.cmi color.mli
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o colscan.cmx colscan.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules foot.ml > foot.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules foot.mli > foot.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o foot.cmi foot.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules section.ml > section.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules section.mli > section.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o section.cmi section.mli
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o section.cmx section.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules text.ml > text.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules element.ml > element.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules outUnicode.ml > outUnicode.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules table.ml > table.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules table.mli > table.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o table.cmi table.mli
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q tabular.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules tabular.ml > tabular.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o get.cmx get.ml
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q subst.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules subst.ml > subst.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules subst.mli > subst.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o subst.cmi subst.mli
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o table.cmx table.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o subst.cmx subst.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o element.cmx element.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o outUnicode.cmx outUnicode.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o tabular.cmx tabular.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o text.cmx text.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o color.cmx color.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o foot.cmx foot.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o infoRef.cmx infoRef.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules html.ml > html.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules htmlCommon.ml > htmlCommon.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o htmlCommon.cmo htmlCommon.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules htmlMath.ml > htmlMath.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o htmlMath.cmo htmlMath.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o htmlCommon.cmx htmlCommon.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules mathML.ml > mathML.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o mathML.cmo mathML.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o htmlMath.cmx htmlMath.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o mathML.cmx mathML.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules image.ml > image.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules index.ml > index.ml.depends
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q entry.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules entry.ml > entry.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules entry.mli > entry.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o entry.cmi entry.mli
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o entry.cmx entry.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules info.ml > info.ml.depends
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q latexscan.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules latexscan.ml > latexscan.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o auxx.cmx auxx.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o hot.cmx hot.ml
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q lexattr.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules lexattr.ml > lexattr.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules lexattr.mli > lexattr.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o lexattr.cmi lexattr.mli
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o lexattr.cmx lexattr.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules noimage.ml > noimage.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules package.ml > package.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o index.cmx index.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o latexscan.cmx latexscan.ml
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q url.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules url.ml > url.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules url.mli > url.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o url.cmi url.mli
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o url.cmx url.ml
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q verb.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules verb.ml > verb.ml.depends
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q videoc.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules videoc.ml > videoc.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules zyva.ml > zyva.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o esp.cmx esp.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o html.cmx html.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o image.cmx image.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o info.cmx info.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o noimage.cmx noimage.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o package.cmx package.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o verb.cmx verb.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o videoc.cmx videoc.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o zyva.cmx zyva.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o hevea.cmx hevea.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt myLexing.cmx myStack.cmx location.cmx misc.cmx mylib.cmx mysys.cmx version.cmx parse_opts.cmx auxx.cmx colscan.cmx color.cmx count.cmx simpleRope.cmx doOut.cmx myfiles.cmx out.cmx saveUtils.cmx saver.cmx save.cmx lexstate.cmx latexmacros.cmx counter.cmx element.cmx emisc.cmx entry.cmx htmltext.cmx util.cmx explode.cmx htmllex.cmx htmlparse.cmx lexstyle.cmx pp.cmx ultra.cmx esp.cmx section.cmx foot.cmx length.cmx get.cmx outUnicode.cmx subst.cmx table.cmx tabular.cmx text.cmx infoRef.cmx hot.cmx htmlCommon.cmx htmlMath.cmx mathML.cmx html.cmx image.cmx index.cmx info.cmx lexattr.cmx latexscan.cmx noimage.cmx url.cmx package.cmx verb.cmx videoc.cmx zyva.cmx hevea.cmx -o hevea.native
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules hacha.ml > hacha.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules cross.mli > cross.mli.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules cut.mli > cut.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o cross.cmi cross.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o cut.cmi cut.mli
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o hacha.cmo hacha.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules cross.ml > cross.ml.depends
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q cut.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules cut.ml > cut.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o cross.cmx cross.ml
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules cutOut.ml > cutOut.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules cutOut.mli > cutOut.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o cutOut.cmi cutOut.mli
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q substVar.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules substVar.ml > substVar.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules substVar.mli > substVar.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o substVar.cmi substVar.mli
- + /home/opam/.opam/5.4/bin/ocamllex.opt -q tagout.mll
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules tagout.ml > tagout.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules tagout.mli > tagout.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o tagout.cmi tagout.mli
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules thread.ml > thread.ml.depends
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules thread.mli > thread.mli.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o thread.cmi thread.mli
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o cutOut.cmx cutOut.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o substVar.cmx substVar.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o tagout.cmx tagout.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o thread.cmx thread.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o cut.cmx cut.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o hacha.cmx hacha.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt myLexing.cmx myStack.cmx location.cmx url.cmx cross.cmx misc.cmx simpleRope.cmx doOut.cmx cutOut.cmx section.cmx substVar.cmx tagout.cmx thread.cmx cut.cmx mylib.cmx mysys.cmx version.cmx hacha.cmx -o hacha.native
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules esponja.ml > esponja.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o esponja.cmo esponja.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o esponja.cmx esponja.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt count.cmx myLexing.cmx myStack.cmx location.cmx misc.cmx simpleRope.cmx doOut.cmx emisc.cmx htmltext.cmx util.cmx explode.cmx htmllex.cmx htmlparse.cmx lexstyle.cmx mysys.cmx pp.cmx ultra.cmx esp.cmx mylib.cmx version.cmx esponja.cmx -o esponja.native
- + /home/opam/.opam/5.4/bin/ocamldep.opt -modules bibhva.ml > bibhva.ml.depends
- + /home/opam/.opam/5.4/bin/ocamlc.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o bibhva.cmo bibhva.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt -c -w +a-4-9-41-45-67-70 -annot -safe-string -o bibhva.cmx bibhva.ml
- + /home/opam/.opam/5.4/bin/ocamlopt.opt bibhva.cmx -o bibhva.native
- # Parallel statistics: { count(total): 18(252), max: 20, min: 2, average(total): 3.889(1.206) }
-> compiled hevea.2.38
-> removed hevea.2.38
Processing 4/4: [hevea: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "PREFIX=/home/opam/.opam/5.4" "install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/hevea.2.38)
- ./install.sh opt
- ./imagen -> /home/opam/.opam/5.4/lib/hevea
- ./xxcharset.exe -> /home/opam/.opam/5.4/lib/hevea
- ./xxdate.exe -> /home/opam/.opam/5.4/lib/hevea
- ./contents_motif.gif -> /home/opam/.opam/5.4/lib/hevea
- ./next_motif.gif -> /home/opam/.opam/5.4/lib/hevea
- ./previous_motif.gif -> /home/opam/.opam/5.4/lib/hevea
- ./alltt.hva -> /home/opam/.opam/5.4/lib/hevea
- ./amsmath.hva -> /home/opam/.opam/5.4/lib/hevea
- ./mathtools.hva -> /home/opam/.opam/5.4/lib/hevea
- ./articlecommon.hva -> /home/opam/.opam/5.4/lib/hevea
- ./babel.hva -> /home/opam/.opam/5.4/lib/hevea
- ./bookcommon.hva -> /home/opam/.opam/5.4/lib/hevea
- ./booktabs.hva -> /home/opam/.opam/5.4/lib/hevea
- ./comment.hva -> /home/opam/.opam/5.4/lib/hevea
- ./compat.hva -> /home/opam/.opam/5.4/lib/hevea
- ./hyperref.hva -> /home/opam/.opam/5.4/lib/hevea
- ./nameref.hva -> /home/opam/.opam/5.4/lib/hevea
- ./hyphenat.hva -> /home/opam/.opam/5.4/lib/hevea
- ./hrlang.hva -> /home/opam/.opam/5.4/lib/hevea
- ./ifthen.hva -> /home/opam/.opam/5.4/lib/hevea
- ./imakeidx.hva -> /home/opam/.opam/5.4/lib/hevea
- ./index.hva -> /home/opam/.opam/5.4/lib/hevea
- ./iso-symb.hva -> /home/opam/.opam/5.4/lib/hevea
- ./keyval.hva -> /home/opam/.opam/5.4/lib/hevea
- ./latexcommon.hva -> /home/opam/.opam/5.4/lib/hevea
- ./listings.hva -> /home/opam/.opam/5.4/lib/hevea
- ./lstlang1.hva -> /home/opam/.opam/5.4/lib/hevea
- ./lstlang2.hva -> /home/opam/.opam/5.4/lib/hevea
- ./lstlang3.hva -> /home/opam/.opam/5.4/lib/hevea
- ./makeidx.hva -> /home/opam/.opam/5.4/lib/hevea
- ./mathop.hva -> /home/opam/.opam/5.4/lib/hevea
- ./moreverb.hva -> /home/opam/.opam/5.4/lib/hevea
- ./multibib.hva -> /home/opam/.opam/5.4/lib/hevea
- ./multind.hva -> /home/opam/.opam/5.4/lib/hevea
- ./natbib-common.hva -> /home/opam/.opam/5.4/lib/hevea
- ./packages.hva -> /home/opam/.opam/5.4/lib/hevea
- ./plain.hva -> /home/opam/.opam/5.4/lib/hevea
- ./program.hva -> /home/opam/.opam/5.4/lib/hevea
- ./spaces.hva -> /home/opam/.opam/5.4/lib/hevea
- ./supertabular.hva -> /home/opam/.opam/5.4/lib/hevea
- ./underscore.hva -> /home/opam/.opam/5.4/lib/hevea
- ./url.hva -> /home/opam/.opam/5.4/lib/hevea
- ./verbatim.hva -> /home/opam/.opam/5.4/lib/hevea
- ./french-common.hva -> /home/opam/.opam/5.4/lib/hevea
- ./german-common.hva -> /home/opam/.opam/5.4/lib/hevea
- ./english.hva -> /home/opam/.opam/5.4/lib/hevea
- ./czech.hva -> /home/opam/.opam/5.4/lib/hevea
- ./portuguese.hva -> /home/opam/.opam/5.4/lib/hevea
- ./ragged2e.hva -> /home/opam/.opam/5.4/lib/hevea
- ./chapterbib.hva -> /home/opam/.opam/5.4/lib/hevea
- ./deepcut.hva -> /home/opam/.opam/5.4/lib/hevea
- ./figcut.hva -> /home/opam/.opam/5.4/lib/hevea
- ./longtable.hva -> /home/opam/.opam/5.4/lib/hevea
- ./eurosym.hva -> /home/opam/.opam/5.4/lib/hevea
- ./isolatin1.hva -> /home/opam/.opam/5.4/lib/hevea
- ./textcomp.hva -> /home/opam/.opam/5.4/lib/hevea
- ./chngcntr.hva -> /home/opam/.opam/5.4/lib/hevea
- ./ifpdf.hva -> /home/opam/.opam/5.4/lib/hevea
- ./theorem.hva -> /home/opam/.opam/5.4/lib/hevea
- ./xspace.hva -> /home/opam/.opam/5.4/lib/hevea
- ./latexsym.hva -> /home/opam/.opam/5.4/lib/hevea
- ./iso-html.hva -> /home/opam/.opam/5.4/lib/hevea
- ./iso-text.hva -> /home/opam/.opam/5.4/lib/hevea
- ./winstyles.hva -> /home/opam/.opam/5.4/lib/hevea
- ./winfonts.hva -> /home/opam/.opam/5.4/lib/hevea
- ./epsfig.hva -> /home/opam/.opam/5.4/lib/hevea
- ./inputenc.hva -> /home/opam/.opam/5.4/lib/hevea
- ./thai.hva -> /home/opam/.opam/5.4/lib/hevea
- ./import.hva -> /home/opam/.opam/5.4/lib/hevea
- ./hanging.hva -> /home/opam/.opam/5.4/lib/hevea
- ./lstlang1.sty -> /home/opam/.opam/5.4/lib/hevea
- ./lstlang2.sty -> /home/opam/.opam/5.4/lib/hevea
- ./lstlang3.sty -> /home/opam/.opam/5.4/lib/hevea
- ./labeltype.hva -> /home/opam/.opam/5.4/lib/hevea
- ./crlang.hva -> /home/opam/.opam/5.4/lib/hevea
- ./cleveref.hva -> /home/opam/.opam/5.4/lib/hevea
- ./contents_motif.svg -> /home/opam/.opam/5.4/lib/hevea
- ./next_motif.svg -> /home/opam/.opam/5.4/lib/hevea
- ./previous_motif.svg -> /home/opam/.opam/5.4/lib/hevea
- ./hevea.sty -> /home/opam/.opam/5.4/lib/hevea
- ./mathjax.sty -> /home/opam/.opam/5.4/lib/hevea
- html/amssymb.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/amsfonts.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/article.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/austrian.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/book.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/color.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/colortbl.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/commongraphic.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/fancysection.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/fancyvrb.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/french.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/german.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/graphics.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/graphicx.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/hevea.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/lang.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/common-math.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/mathpartir.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/natbib.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/png.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/gif.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/svg.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/report.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/seminar.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/sword.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/symb-eng.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/symb-ent.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/symb-fra.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/symb-mathml.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/symb-text.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/urlhref.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/xypic.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/undersection.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/mathjax.hva -> /home/opam/.opam/5.4/lib/hevea/html
- html/mathjaxauto.hva -> /home/opam/.opam/5.4/lib/hevea/html
- text/article.hva -> /home/opam/.opam/5.4/lib/hevea/text
- text/book.hva -> /home/opam/.opam/5.4/lib/hevea/text
- text/color.hva -> /home/opam/.opam/5.4/lib/hevea/text
- text/colortbl.hva -> /home/opam/.opam/5.4/lib/hevea/text
- text/fancysection.hva -> /home/opam/.opam/5.4/lib/hevea/text
- text/hevea.hva -> /home/opam/.opam/5.4/lib/hevea/text
- text/report.hva -> /home/opam/.opam/5.4/lib/hevea/text
- text/seminar.hva -> /home/opam/.opam/5.4/lib/hevea/text
- text/french.hva -> /home/opam/.opam/5.4/lib/hevea/text
- text/austrian.hva -> /home/opam/.opam/5.4/lib/hevea/text
- text/german.hva -> /home/opam/.opam/5.4/lib/hevea/text
- text/natbib.hva -> /home/opam/.opam/5.4/lib/hevea/text
- info/article.hva -> /home/opam/.opam/5.4/lib/hevea/info
- info/book.hva -> /home/opam/.opam/5.4/lib/hevea/info
- info/hevea.hva -> /home/opam/.opam/5.4/lib/hevea/info
- info/report.hva -> /home/opam/.opam/5.4/lib/hevea/info
- info/seminar.hva -> /home/opam/.opam/5.4/lib/hevea/info
- mappings/ISO-8859-1.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/ISO-8859-10.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/ISO-8859-11.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/ISO-8859-13.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/ISO-8859-14.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/ISO-8859-15.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/ISO-8859-16.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/ISO-8859-2.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/ISO-8859-3.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/ISO-8859-4.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/ISO-8859-5.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/ISO-8859-6.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/ISO-8859-7.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/ISO-8859-8.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/ISO-8859-9.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/KOI8-R.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/US-ASCII.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/macintosh.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/windows-1250.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/windows-1251.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/windows-1252.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- mappings/windows-1257.map -> /home/opam/.opam/5.4/lib/hevea/mappings
- hevea.opt -> /home/opam/.opam/5.4/bin/hevea
- hacha.opt -> /home/opam/.opam/5.4/bin/hacha
- esponja.opt -> /home/opam/.opam/5.4/bin/esponja
- bibhva.opt -> /home/opam/.opam/5.4/bin/bibhva
- imagen -> /home/opam/.opam/5.4/bin
-> installed hevea.2.38
Done.
<><> hevea.2.38 installed successfully ><><><><><><><><><><><><><><><><><><><><>
=> The file 'hevea.sty' has been installed in /home/opam/.opam/5.4/lib/hevea but latex won't see it by itself
# To update the current shell environment, run: eval $(opam env)
2026-03-25 23:34.55 ---> saved as "72b773ce6ae98b57b6c23c25835050cd6adef06dfb2737aac0b561ecc9867b6f"
Job succeeded
2026-03-25 23:35.03: Job succeeded