- github
- ocaml
- opam-repository
- 3e0c39
- compilers,4.14,dune.3.22.2,revdeps,coqide.8.13.2
(not at the head of any monitored branch or PR)
2026-04-10 17:57.46: New job: test coqide.8.13.2 with dune.3.22.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
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.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
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.22.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall coqide.8.13.2; \
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" != 'coqide.8.13.2' && 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 coqide.8.13.2) || true
RUN opam reinstall --with-test --verbose coqide.8.13.2; \
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" != 'coqide.8.13.2' && 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-04-10 17:57.46: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-coqide.8.13.2-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.46: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
(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.22.2 3.22.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\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.22.2' && 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 coqide.8.13.2;\
\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\" != 'coqide.8.13.2' && 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 coqide.8.13.2) || true"))
(run (shell "opam reinstall --with-test --verbose coqide.8.13.2;\
\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\" != 'coqide.8.13.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-10 17:57.46: Waiting for resource in pool OCluster
2026-04-11 03:40.22: Waiting for worker…
2026-04-11 03:42.29: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files: 69% (12951/18686)
Updating files: 70% (13081/18686)
Updating files: 71% (13268/18686)
Updating files: 72% (13454/18686)
Updating files: 73% (13641/18686)
Updating files: 74% (13828/18686)
Updating files: 75% (14015/18686)
Updating files: 76% (14202/18686)
Updating files: 77% (14389/18686)
Updating files: 78% (14576/18686)
Updating files: 79% (14762/18686)
Updating files: 80% (14949/18686)
Updating files: 81% (15136/18686)
Updating files: 82% (15323/18686)
Updating files: 83% (15510/18686)
Updating files: 84% (15697/18686)
Updating files: 85% (15884/18686)
Updating files: 86% (16070/18686)
Updating files: 87% (16257/18686)
Updating files: 88% (16444/18686)
Updating files: 89% (16631/18686)
Updating files: 90% (16818/18686)
Updating files: 91% (17005/18686)
Updating files: 92% (17192/18686)
Updating files: 93% (17378/18686)
Updating files: 94% (17565/18686)
Updating files: 95% (17752/18686)
Updating files: 96% (17939/18686)
Updating files: 97% (18126/18686)
Updating files: 98% (18313/18686)
Updating files: 99% (18500/18686)
Updating files: 100% (18686/18686)
Updating files: 100% (18686/18686), done.
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
packages/chrome-trace/chrome-trace.3.22.2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.2/opam | 39 +++++++++++
.../dune-build-info/dune-build-info.3.22.2/opam | 45 +++++++++++++
.../dune-configurator.3.22.2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.2/opam | 50 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.2/opam | 37 +++++++++++
packages/dune/dune.3.22.2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.2/opam | 46 +++++++++++++
packages/top-closure/top-closure.3.22.2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
create mode 100644 packages/dune-site/dune-site.3.22.2/opam
create mode 100644 packages/dune/dune.3.22.2/opam
create mode 100644 packages/dyn/dyn.3.22.2/opam
create mode 100644 packages/fs-io/fs-io.3.22.2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
create mode 100644 packages/ordering/ordering.3.22.2/opam
create mode 100644 packages/stdune/stdune.3.22.2/opam
create mode 100644 packages/top-closure/top-closure.3.22.2/opam
create mode 100644 packages/xdg/xdg.3.22.2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 03:42.36 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" 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-04-11 03:42.36 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" 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-04-11 03:42.36 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" 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 4.14
# invariant ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, 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.3
2026-04-11 03:42.36 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" 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-04-11 03:42.36 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 03:42.39 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 03:42.39 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (2107 kB/s)
- Reading package lists...
2026-04-11 03:42.39 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 03:42.39 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\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.22.2' && 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.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2 (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:42.39 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall coqide.8.13.2;\
\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\" != 'coqide.8.13.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
coqide.8.13.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 18 packages
- install cairo2 0.6.5 [required by lablgtk3]
- install camlp-streams 5.0.1 [required by lablgtk3-sourceview3]
- install conf-adwaita-icon-theme 2 [required by coqide]
- install conf-cairo 1 [required by cairo2]
- install conf-findutils 1 [required by coqide]
- install conf-gmp 5 [required by zarith]
- install conf-gtk3 18 [required by lablgtk3]
- install conf-gtksourceview3 0+2 [required by lablgtk3-sourceview3]
- install conf-pkg-config 4 [required by conf-adwaita-icon-theme]
- install coq 8.13.2 [required by coqide]
- install coqide 8.13.2
- install csexp 1.5.2 [required by dune-configurator]
- install dune-configurator 3.22.2 [required by cairo2]
- install lablgtk3 3.1.5 [required by lablgtk3-sourceview3]
- install lablgtk3-sourceview3 3.1.5 [required by coqide]
- install num 1.6 [required by coq]
- install ocamlfind 1.9.8 [required by coqide]
- install zarith 1.14 [required by coq]
The following system packages will first need to be installed:
adwaita-icon-theme libcairo2-dev libexpat1-dev libgmp-dev libgtk-3-dev libgtksourceview-3.0-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "adwaita-icon-theme" "libcairo2-dev" "libexpat1-dev" "libgmp-dev" "libgtk-3-dev" "libgtksourceview-3.0-dev" "pkg-config"
- Preconfiguring packages ...
- Selecting previously unselected package libsystemd-shared:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../libsystemd-shared_257.9-1~deb13u1_amd64.deb ...
- Unpacking libsystemd-shared:amd64 (257.9-1~deb13u1) ...
- Setting up libsystemd-shared:amd64 (257.9-1~deb13u1) ...
- Selecting previously unselected package systemd.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20631 files and directories currently installed.)
- Preparing to unpack .../systemd_257.9-1~deb13u1_amd64.deb ...
- Unpacking systemd (257.9-1~deb13u1) ...
- Setting up systemd (257.9-1~deb13u1) ...
- Created symlink '/etc/systemd/system/getty.target.wants/getty@tty1.service' → '/usr/lib/systemd/system/getty@.service'.
- Created symlink '/etc/systemd/system/multi-user.target.wants/remote-fs.target' → '/usr/lib/systemd/system/remote-fs.target'.
- Created symlink '/etc/systemd/system/sysinit.target.wants/systemd-pstore.service' → '/usr/lib/systemd/system/systemd-pstore.service'.
- Initializing machine ID from random generator.
- Creating group 'systemd-journal' with GID 999.
- Creating group 'systemd-network' with GID 998.
- Creating user 'systemd-network' (systemd Network Management) with UID 998 and GID 998.
- /usr/lib/tmpfiles.d/legacy.conf:14: Duplicate line for path "/run/lock", ignoring.
- Selecting previously unselected package systemd-sysv.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21564 files and directories currently installed.)
- Preparing to unpack .../0-systemd-sysv_257.9-1~deb13u1_amd64.deb ...
- Unpacking systemd-sysv (257.9-1~deb13u1) ...
- Selecting previously unselected package libdbus-1-3:amd64.
- Preparing to unpack .../1-libdbus-1-3_1.16.2-2_amd64.deb ...
- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...
- Selecting previously unselected package dbus-bin.
- Preparing to unpack .../2-dbus-bin_1.16.2-2_amd64.deb ...
- Unpacking dbus-bin (1.16.2-2) ...
- Selecting previously unselected package dbus-session-bus-common.
- Preparing to unpack .../3-dbus-session-bus-common_1.16.2-2_all.deb ...
- Unpacking dbus-session-bus-common (1.16.2-2) ...
- Selecting previously unselected package dbus-daemon.
- Preparing to unpack .../4-dbus-daemon_1.16.2-2_amd64.deb ...
- Unpacking dbus-daemon (1.16.2-2) ...
- Selecting previously unselected package dbus-system-bus-common.
- Preparing to unpack .../5-dbus-system-bus-common_1.16.2-2_all.deb ...
- Unpacking dbus-system-bus-common (1.16.2-2) ...
- Selecting previously unselected package dbus.
- Preparing to unpack .../6-dbus_1.16.2-2_amd64.deb ...
- Unpacking dbus (1.16.2-2) ...
- Selecting previously unselected package libpython3.13-minimal:amd64.
- Preparing to unpack .../7-libpython3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-minimal:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13-minimal.
- Preparing to unpack .../8-python3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking python3.13-minimal (3.13.5-2) ...
- Setting up libpython3.13-minimal:amd64 (3.13.5-2) ...
- Setting up python3.13-minimal (3.13.5-2) ...
- Selecting previously unselected package python3-minimal.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21981 files and directories currently installed.)
- Preparing to unpack .../0-python3-minimal_3.13.5-1_amd64.deb ...
- Unpacking python3-minimal (3.13.5-1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../1-media-types_13.0.0_all.deb ...
- Unpacking media-types (13.0.0) ...
- Selecting previously unselected package readline-common.
- Preparing to unpack .../2-readline-common_8.2-6_all.deb ...
- Unpacking readline-common (8.2-6) ...
- Selecting previously unselected package libreadline8t64:amd64.
- Preparing to unpack .../3-libreadline8t64_8.2-6_amd64.deb ...
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
- Unpacking libreadline8t64:amd64 (8.2-6) ...
- Selecting previously unselected package libpython3.13-stdlib:amd64.
- Preparing to unpack .../4-libpython3.13-stdlib_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13.
- Preparing to unpack .../5-python3.13_3.13.5-2_amd64.deb ...
- Unpacking python3.13 (3.13.5-2) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../6-libpython3-stdlib_3.13.5-1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up python3-minimal (3.13.5-1) ...
- Selecting previously unselected package python3.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 22467 files and directories currently installed.)
- Preparing to unpack .../000-python3_3.13.5-1_amd64.deb ...
- Unpacking python3 (3.13.5-1) ...
- Selecting previously unselected package libnss-systemd:amd64.
- Preparing to unpack .../001-libnss-systemd_257.9-1~deb13u1_amd64.deb ...
- Unpacking libnss-systemd:amd64 (257.9-1~deb13u1) ...
- Selecting previously unselected package libpam-systemd:amd64.
- Preparing to unpack .../002-libpam-systemd_257.9-1~deb13u1_amd64.deb ...
- Unpacking libpam-systemd:amd64 (257.9-1~deb13u1) ...
- Selecting previously unselected package systemd-timesyncd.
- Preparing to unpack .../003-systemd-timesyncd_257.9-1~deb13u1_amd64.deb ...
- Unpacking systemd-timesyncd (257.9-1~deb13u1) ...
- Selecting previously unselected package libgdk-pixbuf2.0-common.
- Preparing to unpack .../004-libgdk-pixbuf2.0-common_2.42.12+dfsg-4_all.deb ...
- Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-4) ...
- Selecting previously unselected package libglib2.0-0t64:amd64.
- Preparing to unpack .../005-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../006-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../007-shared-mime-info_2.4-5+b2_amd64.deb ...
- Unpacking shared-mime-info (2.4-5+b2) ...
- Selecting previously unselected package libjpeg62-turbo:amd64.
- Preparing to unpack .../008-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libpng16-16t64:amd64.
- Preparing to unpack .../009-libpng16-16t64_1.6.48-1+deb13u4_amd64.deb ...
- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u4) ...
- Selecting previously unselected package libdeflate0:amd64.
- Preparing to unpack .../010-libdeflate0_1.23-2_amd64.deb ...
- Unpacking libdeflate0:amd64 (1.23-2) ...
- Selecting previously unselected package libjbig0:amd64.
- Preparing to unpack .../011-libjbig0_2.1-6.1+b2_amd64.deb ...
- Unpacking libjbig0:amd64 (2.1-6.1+b2) ...
- Selecting previously unselected package liblerc4:amd64.
- Preparing to unpack .../012-liblerc4_4.0.0+ds-5_amd64.deb ...
- Unpacking liblerc4:amd64 (4.0.0+ds-5) ...
- Selecting previously unselected package libsharpyuv0:amd64.
- Preparing to unpack .../013-libsharpyuv0_1.5.0-0.1_amd64.deb ...
- Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebp7:amd64.
- Preparing to unpack .../014-libwebp7_1.5.0-0.1_amd64.deb ...
- Unpacking libwebp7:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libtiff6:amd64.
- Preparing to unpack .../015-libtiff6_4.7.0-3+deb13u2_amd64.deb ...
- Unpacking libtiff6:amd64 (4.7.0-3+deb13u2) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64.
- Preparing to unpack .../016-libgdk-pixbuf-2.0-0_2.42.12+dfsg-4_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4) ...
- Selecting previously unselected package gtk-update-icon-cache.
- Preparing to unpack .../017-gtk-update-icon-cache_4.18.6+ds-2_amd64.deb ...
- No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed.
- No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed.
- Unpacking gtk-update-icon-cache (4.18.6+ds-2) ...
- Selecting previously unselected package hicolor-icon-theme.
- Preparing to unpack .../018-hicolor-icon-theme_0.18-2_all.deb ...
- Unpacking hicolor-icon-theme (0.18-2) ...
- Selecting previously unselected package adwaita-icon-theme.
- Preparing to unpack .../019-adwaita-icon-theme_48.1-1_all.deb ...
- Unpacking adwaita-icon-theme (48.1-1) ...
- Selecting previously unselected package at-spi2-common.
- Preparing to unpack .../020-at-spi2-common_2.56.2-1+deb13u1_all.deb ...
- Unpacking at-spi2-common (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../021-libxi6_2%3a1.8.2-1_amd64.deb ...
- Unpacking libxi6:amd64 (2:1.8.2-1) ...
- Selecting previously unselected package libatspi2.0-0t64:amd64.
- Preparing to unpack .../022-libatspi2.0-0t64_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatspi2.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../023-x11-common_1%3a7.7+24+deb13u1_all.deb ...
- Unpacking x11-common (1:7.7+24+deb13u1) ...
- Selecting previously unselected package libxtst6:amd64.
- Preparing to unpack .../024-libxtst6_2%3a1.2.5-1_amd64.deb ...
- Unpacking libxtst6:amd64 (2:1.2.5-1) ...
- Selecting previously unselected package dbus-user-session.
- Preparing to unpack .../025-dbus-user-session_1.16.2-2_amd64.deb ...
- Unpacking dbus-user-session (1.16.2-2) ...
- Selecting previously unselected package libdconf1:amd64.
- Preparing to unpack .../026-libdconf1_0.40.0-5_amd64.deb ...
- Unpacking libdconf1:amd64 (0.40.0-5) ...
- Selecting previously unselected package dconf-service.
- Preparing to unpack .../027-dconf-service_0.40.0-5_amd64.deb ...
- Unpacking dconf-service (0.40.0-5) ...
- Selecting previously unselected package dconf-gsettings-backend:amd64.
- Preparing to unpack .../028-dconf-gsettings-backend_0.40.0-5_amd64.deb ...
- Unpacking dconf-gsettings-backend:amd64 (0.40.0-5) ...
- Selecting previously unselected package gsettings-desktop-schemas.
- Preparing to unpack .../029-gsettings-desktop-schemas_48.0-1_all.deb ...
- Unpacking gsettings-desktop-schemas (48.0-1) ...
- Selecting previously unselected package at-spi2-core.
- Preparing to unpack .../030-at-spi2-core_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking at-spi2-core (2.56.2-1+deb13u1) ...
- Selecting previously unselected package bzip2-doc.
- Preparing to unpack .../031-bzip2-doc_1.0.8-6_all.deb ...
- Unpacking bzip2-doc (1.0.8-6) ...
- Selecting previously unselected package libdevmapper1.02.1:amd64.
- Preparing to unpack .../032-libdevmapper1.02.1_2%3a1.02.205-2_amd64.deb ...
- Unpacking libdevmapper1.02.1:amd64 (2:1.02.205-2) ...
- Selecting previously unselected package dmsetup.
- Preparing to unpack .../033-dmsetup_2%3a1.02.205-2_amd64.deb ...
- Unpacking dmsetup (2:1.02.205-2) ...
- Selecting previously unselected package libfreetype6:amd64.
- Preparing to unpack .../034-libfreetype6_2.13.3+dfsg-1+deb13u1_amd64.deb ...
- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Selecting previously unselected package fonts-dejavu-mono.
- Preparing to unpack .../035-fonts-dejavu-mono_2.37-8_all.deb ...
- Unpacking fonts-dejavu-mono (2.37-8) ...
- Selecting previously unselected package fonts-dejavu-core.
- Preparing to unpack .../036-fonts-dejavu-core_2.37-8_all.deb ...
- Unpacking fonts-dejavu-core (2.37-8) ...
- Selecting previously unselected package fontconfig-config.
- Preparing to unpack .../037-fontconfig-config_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig-config (2.15.0-2.3) ...
- Selecting previously unselected package libfontconfig1:amd64.
- Preparing to unpack .../038-libfontconfig1_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package fontconfig.
- Preparing to unpack .../039-fontconfig_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig (2.15.0-2.3) ...
- Selecting previously unselected package gir1.2-glib-2.0:amd64.
- Preparing to unpack .../040-gir1.2-glib-2.0_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking gir1.2-glib-2.0:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libatk1.0-0t64:amd64.
- Preparing to unpack .../041-libatk1.0-0t64_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatk1.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package gir1.2-atk-1.0:amd64.
- Preparing to unpack .../042-gir1.2-atk-1.0_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking gir1.2-atk-1.0:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../043-libpixman-1-0_0.44.0-3_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...
- Selecting previously unselected package libxcb-render0:amd64.
- Preparing to unpack .../044-libxcb-render0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../045-libxcb-shm0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../046-libxrender1_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libcairo2:amd64.
- Preparing to unpack .../047-libcairo2_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package libcairo-gobject2:amd64.
- Preparing to unpack .../048-libcairo-gobject2_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo-gobject2:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package gir1.2-freedesktop:amd64.
- Preparing to unpack .../049-gir1.2-freedesktop_1.84.0-1_amd64.deb ...
- Unpacking gir1.2-freedesktop:amd64 (1.84.0-1) ...
- Selecting previously unselected package gir1.2-atspi-2.0:amd64.
- Preparing to unpack .../050-gir1.2-atspi-2.0_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking gir1.2-atspi-2.0:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libcloudproviders0:amd64.
- Preparing to unpack .../051-libcloudproviders0_0.3.6-2_amd64.deb ...
- Unpacking libcloudproviders0:amd64 (0.3.6-2) ...
- Selecting previously unselected package gir1.2-cloudproviders-0.3.0:amd64.
- Preparing to unpack .../052-gir1.2-cloudproviders-0.3.0_0.3.6-2_amd64.deb ...
- Unpacking gir1.2-cloudproviders-0.3.0:amd64 (0.3.6-2) ...
- Selecting previously unselected package gir1.2-glib-2.0-dev:amd64.
- Preparing to unpack .../053-gir1.2-glib-2.0-dev_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking gir1.2-glib-2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package gir1.2-freedesktop-dev:amd64.
- Preparing to unpack .../054-gir1.2-freedesktop-dev_1.84.0-1_amd64.deb ...
- Unpacking gir1.2-freedesktop-dev:amd64 (1.84.0-1) ...
- Selecting previously unselected package gir1.2-gdkpixbuf-2.0:amd64.
- Preparing to unpack .../055-gir1.2-gdkpixbuf-2.0_2.42.12+dfsg-4_amd64.deb ...
- Unpacking gir1.2-gdkpixbuf-2.0:amd64 (2.42.12+dfsg-4) ...
- Selecting previously unselected package libgraphite2-3:amd64.
- Preparing to unpack .../056-libgraphite2-3_1.3.14-2+b1_amd64.deb ...
- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...
- Selecting previously unselected package libharfbuzz0b:amd64.
- Preparing to unpack .../057-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libharfbuzz-gobject0:amd64.
- Preparing to unpack .../058-libharfbuzz-gobject0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-gobject0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package gir1.2-harfbuzz-0.0:amd64.
- Preparing to unpack .../059-gir1.2-harfbuzz-0.0_10.2.0-1+b1_amd64.deb ...
- Unpacking gir1.2-harfbuzz-0.0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libfribidi0:amd64.
- Preparing to unpack .../060-libfribidi0_1.0.16-1_amd64.deb ...
- Unpacking libfribidi0:amd64 (1.0.16-1) ...
- Selecting previously unselected package libthai-data.
- Preparing to unpack .../061-libthai-data_0.1.29-2_all.deb ...
- Unpacking libthai-data (0.1.29-2) ...
- Selecting previously unselected package libdatrie1:amd64.
- Preparing to unpack .../062-libdatrie1_0.2.13-3+b1_amd64.deb ...
- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...
- Selecting previously unselected package libthai0:amd64.
- Preparing to unpack .../063-libthai0_0.1.29-2+b1_amd64.deb ...
- Unpacking libthai0:amd64 (0.1.29-2+b1) ...
- Selecting previously unselected package libpango-1.0-0:amd64.
- Preparing to unpack .../064-libpango-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libpangoft2-1.0-0:amd64.
- Preparing to unpack .../065-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libpangocairo-1.0-0:amd64.
- Preparing to unpack .../066-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libxft2:amd64.
- Preparing to unpack .../067-libxft2_2.3.6-1+b4_amd64.deb ...
- Unpacking libxft2:amd64 (2.3.6-1+b4) ...
- Selecting previously unselected package libpangoxft-1.0-0:amd64.
- Preparing to unpack .../068-libpangoxft-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangoxft-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package gir1.2-pango-1.0:amd64.
- Preparing to unpack .../069-gir1.2-pango-1.0_1.56.3-1_amd64.deb ...
- Unpacking gir1.2-pango-1.0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libatk-bridge2.0-0t64:amd64.
- Preparing to unpack .../070-libatk-bridge2.0-0t64_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatk-bridge2.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package liblcms2-2:amd64.
- Preparing to unpack .../071-liblcms2-2_2.16-2_amd64.deb ...
- Unpacking liblcms2-2:amd64 (2.16-2) ...
- Selecting previously unselected package libcolord2:amd64.
- Preparing to unpack .../072-libcolord2_1.4.7-3_amd64.deb ...
- Unpacking libcolord2:amd64 (1.4.7-3) ...
- Selecting previously unselected package libavahi-common-data:amd64.
- Preparing to unpack .../073-libavahi-common-data_0.8-16_amd64.deb ...
- Unpacking libavahi-common-data:amd64 (0.8-16) ...
- Selecting previously unselected package libavahi-common3:amd64.
- Preparing to unpack .../074-libavahi-common3_0.8-16_amd64.deb ...
- Unpacking libavahi-common3:amd64 (0.8-16) ...
- Selecting previously unselected package libavahi-client3:amd64.
- Preparing to unpack .../075-libavahi-client3_0.8-16_amd64.deb ...
- Unpacking libavahi-client3:amd64 (0.8-16) ...
- Selecting previously unselected package libcups2t64:amd64.
- Preparing to unpack .../076-libcups2t64_2.4.10-3+deb13u2_amd64.deb ...
- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u2) ...
- Selecting previously unselected package libepoxy0:amd64.
- Preparing to unpack .../077-libepoxy0_1.5.10-2_amd64.deb ...
- Unpacking libepoxy0:amd64 (1.5.10-2) ...
- Selecting previously unselected package libwayland-client0:amd64.
- Preparing to unpack .../078-libwayland-client0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-client0:amd64 (1.23.1-3) ...
- Selecting previously unselected package libwayland-cursor0:amd64.
- Preparing to unpack .../079-libwayland-cursor0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-cursor0:amd64 (1.23.1-3) ...
- Selecting previously unselected package libwayland-egl1:amd64.
- Preparing to unpack .../080-libwayland-egl1_1.23.1-3_amd64.deb ...
- Unpacking libwayland-egl1:amd64 (1.23.1-3) ...
- Selecting previously unselected package libxcomposite1:amd64.
- Preparing to unpack .../081-libxcomposite1_1%3a0.4.6-1_amd64.deb ...
- Unpacking libxcomposite1:amd64 (1:0.4.6-1) ...
- Selecting previously unselected package libxfixes3:amd64.
- Preparing to unpack .../082-libxfixes3_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxcursor1:amd64.
- Preparing to unpack .../083-libxcursor1_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxcursor1:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libxdamage1:amd64.
- Preparing to unpack .../084-libxdamage1_1%3a1.1.6-1+b2_amd64.deb ...
- Unpacking libxdamage1:amd64 (1:1.1.6-1+b2) ...
- Selecting previously unselected package libxinerama1:amd64.
- Preparing to unpack .../085-libxinerama1_2%3a1.1.4-3+b4_amd64.deb ...
- Unpacking libxinerama1:amd64 (2:1.1.4-3+b4) ...
- Selecting previously unselected package xkb-data.
- Preparing to unpack .../086-xkb-data_2.42-1_all.deb ...
- Unpacking xkb-data (2.42-1) ...
- Selecting previously unselected package libxkbcommon0:amd64.
- Preparing to unpack .../087-libxkbcommon0_1.7.0-2_amd64.deb ...
- Unpacking libxkbcommon0:amd64 (1.7.0-2) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../088-libxrandr2_2%3a1.5.4-1+b3_amd64.deb ...
- Unpacking libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Selecting previously unselected package libgtk-3-common.
- Preparing to unpack .../089-libgtk-3-common_3.24.49-3_all.deb ...
- Unpacking libgtk-3-common (3.24.49-3) ...
- Selecting previously unselected package libgtk-3-0t64:amd64.
- Preparing to unpack .../090-libgtk-3-0t64_3.24.49-3_amd64.deb ...
- Unpacking libgtk-3-0t64:amd64 (3.24.49-3) ...
- Selecting previously unselected package gir1.2-gtk-3.0:amd64.
- Preparing to unpack .../091-gir1.2-gtk-3.0_3.24.49-3_amd64.deb ...
- Unpacking gir1.2-gtk-3.0:amd64 (3.24.49-3) ...
- Selecting previously unselected package libgtksourceview-3.0-common.
- Preparing to unpack .../092-libgtksourceview-3.0-common_3.24.11-3_all.deb ...
- Unpacking libgtksourceview-3.0-common (3.24.11-3) ...
- Selecting previously unselected package libgtksourceview-3.0-1:amd64.
- Preparing to unpack .../093-libgtksourceview-3.0-1_3.24.11-3_amd64.deb ...
- Unpacking libgtksourceview-3.0-1:amd64 (3.24.11-3) ...
- Selecting previously unselected package gir1.2-gtksource-3.0:amd64.
- Preparing to unpack .../094-gir1.2-gtksource-3.0_3.24.11-3_amd64.deb ...
- Unpacking gir1.2-gtksource-3.0:amd64 (3.24.11-3) ...
- Selecting previously unselected package native-architecture.
- Preparing to unpack .../095-native-architecture_0.2.6_all.deb ...
- Unpacking native-architecture (0.2.6) ...
- Selecting previously unselected package libgirepository-2.0-0:amd64.
- Preparing to unpack .../096-libgirepository-2.0-0_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libgirepository-2.0-0:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package girepository-tools:amd64.
- Preparing to unpack .../097-girepository-tools_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking girepository-tools:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libicu76:amd64.
- Preparing to unpack .../098-libicu76_76.1-4_amd64.deb ...
- Unpacking libicu76:amd64 (76.1-4) ...
- Selecting previously unselected package icu-devtools.
- Preparing to unpack .../099-icu-devtools_76.1-4_amd64.deb ...
- Unpacking icu-devtools (76.1-4) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../100-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../101-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../102-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../103-libffi-dev_3.4.8-2_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.8-2) ...
- Selecting previously unselected package uuid-dev:amd64.
- Preparing to unpack .../104-uuid-dev_2.41-5_amd64.deb ...
- Unpacking uuid-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libblkid-dev:amd64.
- Preparing to unpack .../105-libblkid-dev_2.41-5_amd64.deb ...
- Unpacking libblkid-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libsepol-dev:amd64.
- Preparing to unpack .../106-libsepol-dev_3.8.1-1_amd64.deb ...
- Unpacking libsepol-dev:amd64 (3.8.1-1) ...
- Selecting previously unselected package libpcre2-16-0:amd64.
- Preparing to unpack .../107-libpcre2-16-0_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-16-0:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpcre2-32-0:amd64.
- Preparing to unpack .../108-libpcre2-32-0_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-32-0:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpcre2-posix3:amd64.
- Preparing to unpack .../109-libpcre2-posix3_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-posix3:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpcre2-dev:amd64.
- Preparing to unpack .../110-libpcre2-dev_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-dev:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libselinux1-dev:amd64.
- Preparing to unpack .../111-libselinux1-dev_3.8.1-1_amd64.deb ...
- Unpacking libselinux1-dev:amd64 (3.8.1-1) ...
- Selecting previously unselected package libmount-dev:amd64.
- Preparing to unpack .../112-libmount-dev_2.41-5_amd64.deb ...
- Unpacking libmount-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libsysprof-capture-4-dev:amd64.
- Preparing to unpack .../113-libsysprof-capture-4-dev_48.0-2_amd64.deb ...
- Unpacking libsysprof-capture-4-dev:amd64 (48.0-2) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../114-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package libgio-2.0-dev:amd64.
- Preparing to unpack .../115-libgio-2.0-dev_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libgio-2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../116-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...
- Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libelf1t64:amd64.
- Preparing to unpack .../117-libelf1t64_0.192-4_amd64.deb ...
- Unpacking libelf1t64:amd64 (0.192-4) ...
- Selecting previously unselected package libglib2.0-bin.
- Preparing to unpack .../118-libglib2.0-bin_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libglib2.0-bin (2.84.4-3~deb13u2) ...
- Selecting previously unselected package python3-packaging.
- Preparing to unpack .../119-python3-packaging_25.0-1_all.deb ...
- Unpacking python3-packaging (25.0-1) ...
- Selecting previously unselected package libgio-2.0-dev-bin.
- Preparing to unpack .../120-libgio-2.0-dev-bin_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libgio-2.0-dev-bin (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libglib2.0-dev-bin.
- Preparing to unpack .../121-libglib2.0-dev-bin_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libglib2.0-dev-bin (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libglib2.0-dev:amd64.
- Preparing to unpack .../122-libglib2.0-dev_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libglib2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libatk1.0-dev:amd64.
- Preparing to unpack .../123-libatk1.0-dev_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatk1.0-dev:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libsystemd-dev:amd64.
- Preparing to unpack .../124-libsystemd-dev_257.9-1~deb13u1_amd64.deb ...
- Unpacking libsystemd-dev:amd64 (257.9-1~deb13u1) ...
- Selecting previously unselected package sgml-base.
- Preparing to unpack .../125-sgml-base_1.31+nmu1_all.deb ...
- Unpacking sgml-base (1.31+nmu1) ...
- Selecting previously unselected package xml-core.
- Preparing to unpack .../126-xml-core_0.19_all.deb ...
- Unpacking xml-core (0.19) ...
- Selecting previously unselected package libdbus-1-dev:amd64.
- Preparing to unpack .../127-libdbus-1-dev_1.16.2-2_amd64.deb ...
- Unpacking libdbus-1-dev:amd64 (1.16.2-2) ...
- Selecting previously unselected package libxext-dev:amd64.
- Preparing to unpack .../128-libxext-dev_2%3a1.3.4-1+b3_amd64.deb ...
- Unpacking libxext-dev:amd64 (2:1.3.4-1+b3) ...
- Selecting previously unselected package libxfixes-dev:amd64.
- Preparing to unpack .../129-libxfixes-dev_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes-dev:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxi-dev:amd64.
- Preparing to unpack .../130-libxi-dev_2%3a1.8.2-1_amd64.deb ...
- Unpacking libxi-dev:amd64 (2:1.8.2-1) ...
- Selecting previously unselected package libxtst-dev:amd64.
- Preparing to unpack .../131-libxtst-dev_2%3a1.2.5-1_amd64.deb ...
- Unpacking libxtst-dev:amd64 (2:1.2.5-1) ...
- Selecting previously unselected package libatspi2.0-dev:amd64.
- Preparing to unpack .../132-libatspi2.0-dev_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatspi2.0-dev:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libatk-bridge2.0-dev:amd64.
- Preparing to unpack .../133-libatk-bridge2.0-dev_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatk-bridge2.0-dev:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../134-libbrotli-dev_1.1.0-2+b7_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Selecting previously unselected package libbz2-dev:amd64.
- Preparing to unpack .../135-libbz2-dev_1.0.8-6_amd64.deb ...
- Unpacking libbz2-dev:amd64 (1.0.8-6) ...
- Selecting previously unselected package liblzo2-2:amd64.
- Preparing to unpack .../136-liblzo2-2_2.10-3+b1_amd64.deb ...
- Unpacking liblzo2-2:amd64 (2.10-3+b1) ...
- Selecting previously unselected package libcairo-script-interpreter2:amd64.
- Preparing to unpack .../137-libcairo-script-interpreter2_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo-script-interpreter2:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package libexpat1-dev:amd64.
- Preparing to unpack .../138-libexpat1-dev_2.7.1-2_amd64.deb ...
- Unpacking libexpat1-dev:amd64 (2.7.1-2) ...
- Selecting previously unselected package libpng-dev:amd64.
- Preparing to unpack .../139-libpng-dev_1.6.48-1+deb13u4_amd64.deb ...
- Unpacking libpng-dev:amd64 (1.6.48-1+deb13u4) ...
- Selecting previously unselected package libfreetype-dev:amd64.
- Preparing to unpack .../140-libfreetype-dev_2.13.3+dfsg-1+deb13u1_amd64.deb ...
- Unpacking libfreetype-dev:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Selecting previously unselected package libfontconfig-dev:amd64.
- Preparing to unpack .../141-libfontconfig-dev_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig-dev:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package libpixman-1-dev:amd64.
- Preparing to unpack .../142-libpixman-1-dev_0.44.0-3_amd64.deb ...
- Unpacking libpixman-1-dev:amd64 (0.44.0-3) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../143-libice6_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice6:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../144-libsm6_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libice-dev:amd64.
- Preparing to unpack .../145-libice-dev_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice-dev:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package libsm-dev:amd64.
- Preparing to unpack .../146-libsm-dev_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm-dev:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libxcb-render0-dev:amd64.
- Preparing to unpack .../147-libxcb-render0-dev_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-render0-dev:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-shm0-dev:amd64.
- Preparing to unpack .../148-libxcb-shm0-dev_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-shm0-dev:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxrender-dev:amd64.
- Preparing to unpack .../149-libxrender-dev_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender-dev:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libcairo2-dev:amd64.
- Preparing to unpack .../150-libcairo2-dev_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo2-dev:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package libcloudproviders-dev:amd64.
- Preparing to unpack .../151-libcloudproviders-dev_0.3.6-2_amd64.deb ...
- Unpacking libcloudproviders-dev:amd64 (0.3.6-2) ...
- Selecting previously unselected package libjson-c5:amd64.
- Preparing to unpack .../152-libjson-c5_0.18+ds-1_amd64.deb ...
- Unpacking libjson-c5:amd64 (0.18+ds-1) ...
- Selecting previously unselected package libcryptsetup12:amd64.
- Preparing to unpack .../153-libcryptsetup12_2%3a2.7.5-2_amd64.deb ...
- Unpacking libcryptsetup12:amd64 (2:2.7.5-2) ...
- Selecting previously unselected package libdatrie-dev:amd64.
- Preparing to unpack .../154-libdatrie-dev_0.2.13-3+b1_amd64.deb ...
- Unpacking libdatrie-dev:amd64 (0.2.13-3+b1) ...
- Selecting previously unselected package libdav1d7:amd64.
- Preparing to unpack .../155-libdav1d7_1.5.1-1_amd64.deb ...
- Unpacking libdav1d7:amd64 (1.5.1-1) ...
- Selecting previously unselected package libdeflate-dev:amd64.
- Preparing to unpack .../156-libdeflate-dev_1.23-2_amd64.deb ...
- Unpacking libdeflate-dev:amd64 (1.23-2) ...
- Selecting previously unselected package libdrm-common.
- Preparing to unpack .../157-libdrm-common_2.4.124-2_all.deb ...
- Unpacking libdrm-common (2.4.124-2) ...
- Selecting previously unselected package libdrm2:amd64.
- Preparing to unpack .../158-libdrm2_2.4.124-2_amd64.deb ...
- Unpacking libdrm2:amd64 (2.4.124-2) ...
- Selecting previously unselected package libdrm-amdgpu1:amd64.
- Preparing to unpack .../159-libdrm-amdgpu1_2.4.124-2_amd64.deb ...
- Unpacking libdrm-amdgpu1:amd64 (2.4.124-2) ...
- Selecting previously unselected package libpciaccess0:amd64.
- Preparing to unpack .../160-libpciaccess0_0.17-3+b3_amd64.deb ...
- Unpacking libpciaccess0:amd64 (0.17-3+b3) ...
- Selecting previously unselected package libdrm-intel1:amd64.
- Preparing to unpack .../161-libdrm-intel1_2.4.124-2_amd64.deb ...
- Unpacking libdrm-intel1:amd64 (2.4.124-2) ...
- Selecting previously unselected package libglvnd0:amd64.
- Preparing to unpack .../162-libglvnd0_1.7.0-1+b2_amd64.deb ...
- Unpacking libglvnd0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libwayland-server0:amd64.
- Preparing to unpack .../163-libwayland-server0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-server0:amd64 (1.23.1-3) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../164-libz3-4_4.13.3-1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.13.3-1) ...
- Selecting previously unselected package libllvm19:amd64.
- Preparing to unpack .../165-libllvm19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libllvm19:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libsensors-config.
- Preparing to unpack .../166-libsensors-config_1%3a3.6.2-2_all.deb ...
- Unpacking libsensors-config (1:3.6.2-2) ...
- Selecting previously unselected package libsensors5:amd64.
- Preparing to unpack .../167-libsensors5_1%3a3.6.2-2_amd64.deb ...
- Unpacking libsensors5:amd64 (1:3.6.2-2) ...
- Selecting previously unselected package libx11-xcb1:amd64.
- Preparing to unpack .../168-libx11-xcb1_2%3a1.8.12-1_amd64.deb ...
- Unpacking libx11-xcb1:amd64 (2:1.8.12-1) ...
- Selecting previously unselected package libxcb-dri3-0:amd64.
- Preparing to unpack .../169-libxcb-dri3-0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-dri3-0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-present0:amd64.
- Preparing to unpack .../170-libxcb-present0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-present0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-randr0:amd64.
- Preparing to unpack .../171-libxcb-randr0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-randr0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-sync1:amd64.
- Preparing to unpack .../172-libxcb-sync1_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-sync1:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-xfixes0:amd64.
- Preparing to unpack .../173-libxcb-xfixes0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxshmfence1:amd64.
- Preparing to unpack .../174-libxshmfence1_1.3.3-1_amd64.deb ...
- Unpacking libxshmfence1:amd64 (1.3.3-1) ...
- Selecting previously unselected package mesa-libgallium:amd64.
- Preparing to unpack .../175-mesa-libgallium_25.0.7-2_amd64.deb ...
- Unpacking mesa-libgallium:amd64 (25.0.7-2) ...
- Selecting previously unselected package libgbm1:amd64.
- Preparing to unpack .../176-libgbm1_25.0.7-2_amd64.deb ...
- Unpacking libgbm1:amd64 (25.0.7-2) ...
- Selecting previously unselected package libegl-mesa0:amd64.
- Preparing to unpack .../177-libegl-mesa0_25.0.7-2_amd64.deb ...
- Unpacking libegl-mesa0:amd64 (25.0.7-2) ...
- Selecting previously unselected package libegl1:amd64.
- Preparing to unpack .../178-libegl1_1.7.0-1+b2_amd64.deb ...
- Unpacking libegl1:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libxcb-glx0:amd64.
- Preparing to unpack .../179-libxcb-glx0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-glx0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxxf86vm1:amd64.
- Preparing to unpack .../180-libxxf86vm1_1%3a1.1.4-1+b4_amd64.deb ...
- Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b4) ...
- Selecting previously unselected package libvulkan1:amd64.
- Preparing to unpack .../181-libvulkan1_1.4.309.0-1_amd64.deb ...
- Unpacking libvulkan1:amd64 (1.4.309.0-1) ...
- Selecting previously unselected package libgl1-mesa-dri:amd64.
- Preparing to unpack .../182-libgl1-mesa-dri_25.0.7-2_amd64.deb ...
- Unpacking libgl1-mesa-dri:amd64 (25.0.7-2) ...
- Selecting previously unselected package libglx-mesa0:amd64.
- Preparing to unpack .../183-libglx-mesa0_25.0.7-2_amd64.deb ...
- Unpacking libglx-mesa0:amd64 (25.0.7-2) ...
- Selecting previously unselected package libglx0:amd64.
- Preparing to unpack .../184-libglx0_1.7.0-1+b2_amd64.deb ...
- Unpacking libglx0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgl1:amd64.
- Preparing to unpack .../185-libgl1_1.7.0-1+b2_amd64.deb ...
- Unpacking libgl1:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libglx-dev:amd64.
- Preparing to unpack .../186-libglx-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libglx-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgl-dev:amd64.
- Preparing to unpack .../187-libgl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libgl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libegl-dev:amd64.
- Preparing to unpack .../188-libegl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libegl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libglvnd-core-dev:amd64.
- Preparing to unpack .../189-libglvnd-core-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libglvnd-core-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgles1:amd64.
- Preparing to unpack .../190-libgles1_1.7.0-1+b2_amd64.deb ...
- Unpacking libgles1:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgles2:amd64.
- Preparing to unpack .../191-libgles2_1.7.0-1+b2_amd64.deb ...
- Unpacking libgles2:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgles-dev:amd64.
- Preparing to unpack .../192-libgles-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libgles-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libopengl0:amd64.
- Preparing to unpack .../193-libopengl0_1.7.0-1+b2_amd64.deb ...
- Unpacking libopengl0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libopengl-dev:amd64.
- Preparing to unpack .../194-libopengl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libopengl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libglvnd-dev:amd64.
- Preparing to unpack .../195-libglvnd-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libglvnd-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libegl1-mesa-dev:amd64.
- Preparing to unpack .../196-libegl1-mesa-dev_25.0.7-2_amd64.deb ...
- Unpacking libegl1-mesa-dev:amd64 (25.0.7-2) ...
- Selecting previously unselected package libepoxy-dev:amd64.
- Preparing to unpack .../197-libepoxy-dev_1.5.10-2_amd64.deb ...
- Unpacking libepoxy-dev:amd64 (1.5.10-2) ...
- Selecting previously unselected package libfribidi-dev:amd64.
- Preparing to unpack .../198-libfribidi-dev_1.0.16-1_amd64.deb ...
- Unpacking libfribidi-dev:amd64 (1.0.16-1) ...
- Selecting previously unselected package libgdk-pixbuf2.0-bin.
- Preparing to unpack .../199-libgdk-pixbuf2.0-bin_2.42.12+dfsg-4_amd64.deb ...
- Unpacking libgdk-pixbuf2.0-bin (2.42.12+dfsg-4) ...
- Selecting previously unselected package libjpeg62-turbo-dev:amd64.
- Preparing to unpack .../200-libjpeg62-turbo-dev_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg62-turbo-dev:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libjpeg-dev:amd64.
- Preparing to unpack .../201-libjpeg-dev_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg-dev:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libjbig-dev:amd64.
- Preparing to unpack .../202-libjbig-dev_2.1-6.1+b2_amd64.deb ...
- Unpacking libjbig-dev:amd64 (2.1-6.1+b2) ...
- Selecting previously unselected package liblzma-dev:amd64.
- Preparing to unpack .../203-liblzma-dev_5.8.1-1_amd64.deb ...
- Unpacking liblzma-dev:amd64 (5.8.1-1) ...
- Selecting previously unselected package libzstd-dev:amd64.
- Preparing to unpack .../204-libzstd-dev_1.5.7+dfsg-1_amd64.deb ...
- Unpacking libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Selecting previously unselected package libwebpdemux2:amd64.
- Preparing to unpack .../205-libwebpdemux2_1.5.0-0.1_amd64.deb ...
- Unpacking libwebpdemux2:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebpmux3:amd64.
- Preparing to unpack .../206-libwebpmux3_1.5.0-0.1_amd64.deb ...
- Unpacking libwebpmux3:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebpdecoder3:amd64.
- Preparing to unpack .../207-libwebpdecoder3_1.5.0-0.1_amd64.deb ...
- Unpacking libwebpdecoder3:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libsharpyuv-dev:amd64.
- Preparing to unpack .../208-libsharpyuv-dev_1.5.0-0.1_amd64.deb ...
- Unpacking libsharpyuv-dev:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebp-dev:amd64.
- Preparing to unpack .../209-libwebp-dev_1.5.0-0.1_amd64.deb ...
- Unpacking libwebp-dev:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libtiffxx6:amd64.
- Preparing to unpack .../210-libtiffxx6_4.7.0-3+deb13u2_amd64.deb ...
- Unpacking libtiffxx6:amd64 (4.7.0-3+deb13u2) ...
- Selecting previously unselected package liblerc-dev:amd64.
- Preparing to unpack .../211-liblerc-dev_4.0.0+ds-5_amd64.deb ...
- Unpacking liblerc-dev:amd64 (4.0.0+ds-5) ...
- Selecting previously unselected package libtiff-dev:amd64.
- Preparing to unpack .../212-libtiff-dev_4.7.0-3+deb13u2_amd64.deb ...
- Unpacking libtiff-dev:amd64 (4.7.0-3+deb13u2) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-dev:amd64.
- Preparing to unpack .../213-libgdk-pixbuf-2.0-dev_2.42.12+dfsg-4_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-dev:amd64 (2.42.12+dfsg-4) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../214-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../215-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgraphite2-dev:amd64.
- Preparing to unpack .../216-libgraphite2-dev_1.3.14-2+b1_amd64.deb ...
- Unpacking libgraphite2-dev:amd64 (1.3.14-2+b1) ...
- Selecting previously unselected package libgtk-3-bin.
- Preparing to unpack .../217-libgtk-3-bin_3.24.49-3_amd64.deb ...
- Unpacking libgtk-3-bin (3.24.49-3) ...
- Selecting previously unselected package libharfbuzz-icu0:amd64.
- Preparing to unpack .../218-libharfbuzz-icu0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-icu0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libharfbuzz-subset0:amd64.
- Preparing to unpack .../219-libharfbuzz-subset0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-subset0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libharfbuzz-cairo0:amd64.
- Preparing to unpack .../220-libharfbuzz-cairo0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-cairo0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libicu-dev:amd64.
- Preparing to unpack .../221-libicu-dev_76.1-4_amd64.deb ...
- Unpacking libicu-dev:amd64 (76.1-4) ...
- Selecting previously unselected package libharfbuzz-dev:amd64.
- Preparing to unpack .../222-libharfbuzz-dev_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-dev:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libthai-dev:amd64.
- Preparing to unpack .../223-libthai-dev_0.1.29-2+b1_amd64.deb ...
- Unpacking libthai-dev:amd64 (0.1.29-2+b1) ...
- Selecting previously unselected package libxft-dev:amd64.
- Preparing to unpack .../224-libxft-dev_2.3.6-1+b4_amd64.deb ...
- Unpacking libxft-dev:amd64 (2.3.6-1+b4) ...
- Selecting previously unselected package pango1.0-tools.
- Preparing to unpack .../225-pango1.0-tools_1.56.3-1_amd64.deb ...
- Unpacking pango1.0-tools (1.56.3-1) ...
- Selecting previously unselected package libpango1.0-dev:amd64.
- Preparing to unpack .../226-libpango1.0-dev_1.56.3-1_amd64.deb ...
- Unpacking libpango1.0-dev:amd64 (1.56.3-1) ...
- Selecting previously unselected package libwayland-bin.
- Preparing to unpack .../227-libwayland-bin_1.23.1-3_amd64.deb ...
- Unpacking libwayland-bin (1.23.1-3) ...
- Selecting previously unselected package libwayland-dev:amd64.
- Preparing to unpack .../228-libwayland-dev_1.23.1-3_amd64.deb ...
- Unpacking libwayland-dev:amd64 (1.23.1-3) ...
- Selecting previously unselected package libxcomposite-dev:amd64.
- Preparing to unpack .../229-libxcomposite-dev_1%3a0.4.6-1_amd64.deb ...
- Unpacking libxcomposite-dev:amd64 (1:0.4.6-1) ...
- Selecting previously unselected package libxcursor-dev:amd64.
- Preparing to unpack .../230-libxcursor-dev_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxcursor-dev:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libxdamage-dev:amd64.
- Preparing to unpack .../231-libxdamage-dev_1%3a1.1.6-1+b2_amd64.deb ...
- Unpacking libxdamage-dev:amd64 (1:1.1.6-1+b2) ...
- Selecting previously unselected package libxinerama-dev:amd64.
- Preparing to unpack .../232-libxinerama-dev_2%3a1.1.4-3+b4_amd64.deb ...
- Unpacking libxinerama-dev:amd64 (2:1.1.4-3+b4) ...
- Selecting previously unselected package libxkbcommon-dev:amd64.
- Preparing to unpack .../233-libxkbcommon-dev_1.7.0-2_amd64.deb ...
- Unpacking libxkbcommon-dev:amd64 (1.7.0-2) ...
- Selecting previously unselected package libxrandr-dev:amd64.
- Preparing to unpack .../234-libxrandr-dev_2%3a1.5.4-1+b3_amd64.deb ...
- Unpacking libxrandr-dev:amd64 (2:1.5.4-1+b3) ...
- Selecting previously unselected package wayland-protocols.
- Preparing to unpack .../235-wayland-protocols_1.44-1_all.deb ...
- Unpacking wayland-protocols (1.44-1) ...
- Selecting previously unselected package libgtk-3-dev:amd64.
- Preparing to unpack .../236-libgtk-3-dev_3.24.49-3_amd64.deb ...
- Unpacking libgtk-3-dev:amd64 (3.24.49-3) ...
- Selecting previously unselected package libxml2-dev:amd64.
- Preparing to unpack .../237-libxml2-dev_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libgtksourceview-3.0-dev:amd64.
- Preparing to unpack .../238-libgtksourceview-3.0-dev_3.24.11-3_amd64.deb ...
- Unpacking libgtksourceview-3.0-dev:amd64 (3.24.11-3) ...
- Selecting previously unselected package libkmod2:amd64.
- Preparing to unpack .../239-libkmod2_34.2-2_amd64.deb ...
- Unpacking libkmod2:amd64 (34.2-2) ...
- Selecting previously unselected package libpng-tools.
- Preparing to unpack .../240-libpng-tools_1.6.48-1+deb13u4_amd64.deb ...
- Unpacking libpng-tools (1.6.48-1+deb13u4) ...
- Selecting previously unselected package librsvg2-2:amd64.
- Preparing to unpack .../241-librsvg2-2_2.60.0+dfsg-1_amd64.deb ...
- Unpacking librsvg2-2:amd64 (2.60.0+dfsg-1) ...
- Selecting previously unselected package librsvg2-common:amd64.
- Preparing to unpack .../242-librsvg2-common_2.60.0+dfsg-1_amd64.deb ...
- Unpacking librsvg2-common:amd64 (2.60.0+dfsg-1) ...
- Selecting previously unselected package mesa-vulkan-drivers:amd64.
- Preparing to unpack .../243-mesa-vulkan-drivers_25.0.7-2_amd64.deb ...
- Unpacking mesa-vulkan-drivers:amd64 (25.0.7-2) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../244-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package systemd-cryptsetup.
- Preparing to unpack .../245-systemd-cryptsetup_257.9-1~deb13u1_amd64.deb ...
- Unpacking systemd-cryptsetup (257.9-1~deb13u1) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../246-xdg-user-dirs_0.18-2_amd64.deb ...
- Unpacking xdg-user-dirs (0.18-2) ...
- Setting up media-types (13.0.0) ...
- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...
- Setting up libxcb-dri3-0:amd64 (1.17.0-2+b1) ...
- Setting up liblcms2-2:amd64 (2.16-2) ...
- Setting up libpixman-1-0:amd64 (0.44.0-3) ...
- Setting up bzip2-doc (1.0.8-6) ...
- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...
- Setting up libwayland-server0:amd64 (1.23.1-3) ...
- Setting up libx11-xcb1:amd64 (2:1.8.12-1) ...
- Setting up libpciaccess0:amd64 (0.17-3+b3) ...
- Setting up systemd-sysv (257.9-1~deb13u1) ...
- Setting up libpixman-1-dev:amd64 (0.44.0-3) ...
- Setting up native-architecture (0.2.6) ...
- Setting up libxdamage1:amd64 (1:1.1.6-1+b2) ...
- Setting up libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
- Setting up liblerc4:amd64 (4.0.0+ds-5) ...
- Setting up libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Setting up libglvnd-core-dev:amd64 (1.7.0-1+b2) ...
- Setting up hicolor-icon-theme (0.18-2) ...
- Setting up libxi6:amd64 (2:1.8.2-1) ...
- Setting up libxrender1:amd64 (1:0.9.12-1) ...
- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...
- Setting up xdg-user-dirs (0.18-2) ...
- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...
- Setting up libglvnd0:amd64 (1.7.0-1+b2) ...
- Setting up libxcb-glx0:amd64 (1.17.0-2+b1) ...
- Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-4) ...
- Setting up x11-common (1:7.7+24+deb13u1) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libsensors-config (1:3.6.2-2) ...
- Setting up libdeflate0:amd64 (1.23-2) ...
- Setting up libwebpdecoder3:amd64 (1.5.0-0.1) ...
- Setting up libnss-systemd:amd64 (257.9-1~deb13u1) ...
- Setting up xkb-data (2.42-1) ...
- Setting up liblzo2-2:amd64 (2.10-3+b1) ...
- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Setting up libffi-dev:amd64 (3.4.8-2) ...
- Setting up libjbig0:amd64 (2.1-6.1+b2) ...
- Setting up libpcre2-16-0:amd64 (10.46-1~deb13u1) ...
- Setting up libopengl0:amd64 (1.7.0-1+b2) ...
- Setting up libelf1t64:amd64 (0.192-4) ...
- Setting up libxxf86vm1:amd64 (1:1.1.4-1+b4) ...
- Setting up libxcb-present0:amd64 (1.17.0-2+b1) ...
- Setting up libsysprof-capture-4-dev:amd64 (48.0-2) ...
- Setting up libxcb-shm0-dev:amd64 (1.17.0-2+b1) ...
- Setting up libgraphite2-dev:amd64 (1.3.14-2+b1) ...
- Setting up libz3-4:amd64 (4.13.3-1) ...
- Setting up libpcre2-32-0:amd64 (10.46-1~deb13u1) ...
- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...
- Setting up libglib2.0-data (2.84.4-3~deb13u2) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libgles2:amd64 (1.7.0-1+b2) ...
- Setting up libexpat1-dev:amd64 (2.7.1-2) ...
- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Setting up libjpeg62-turbo-dev:amd64 (1:2.1.5-4) ...
- Setting up libepoxy0:amd64 (1.5.10-2) ...
- Setting up libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Setting up libxcb-sync1:amd64 (1.17.0-2+b1) ...
- Setting up uuid-dev:amd64 (2.41-5) ...
- Setting up libavahi-common-data:amd64 (0.8-16) ...
- Setting up libgles1:amd64 (1.7.0-1+b2) ...
- Setting up libdbus-1-3:amd64 (1.16.2-2) ...
- Setting up libfribidi0:amd64 (1.0.16-1) ...
- Setting up libxinerama1:amd64 (2:1.1.4-3+b4) ...
- Setting up fonts-dejavu-mono (2.37-8) ...
- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u4) ...
- Setting up systemd-timesyncd (257.9-1~deb13u1) ...
- Creating group 'systemd-timesync' with GID 997.
- Creating user 'systemd-timesync' (systemd Time Synchronization) with UID 997 and GID 997.
- Created symlink '/etc/systemd/system/dbus-org.freedesktop.timesync1.service' → '/usr/lib/systemd/system/systemd-timesyncd.service'.
- Created symlink '/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service' → '/usr/lib/systemd/system/systemd-timesyncd.service'.
- Setting up libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Setting up fonts-dejavu-core (2.37-8) ...
- Setting up libsepol-dev:amd64 (3.8.1-1) ...
- Setting up libxcb-render0-dev:amd64 (1.17.0-2+b1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up gir1.2-glib-2.0:amd64 (2.84.4-3~deb13u2) ...
- Setting up libsensors5:amd64 (1:3.6.2-2) ...
- Setting up liblerc-dev:amd64 (4.0.0+ds-5) ...
- Setting up libvulkan1:amd64 (1.4.309.0-1) ...
- Setting up libwebp7:amd64 (1.5.0-0.1) ...
- Setting up libxext-dev:amd64 (2:1.3.4-1+b3) ...
- Setting up liblzma-dev:amd64 (5.8.1-1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libpcre2-posix3:amd64 (10.46-1~deb13u1) ...
- Setting up wayland-protocols (1.44-1) ...
- Setting up libdav1d7:amd64 (1.5.1-1) ...
- Setting up gir1.2-glib-2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Setting up libxshmfence1:amd64 (1.3.3-1) ...
- Setting up at-spi2-common (2.56.2-1+deb13u1) ...
- Setting up libtiff6:amd64 (4.7.0-3+deb13u2) ...
- Setting up libxcb-randr0:amd64 (1.17.0-2+b1) ...
- Setting up dbus-session-bus-common (1.16.2-2) ...
- Setting up libgtksourceview-3.0-common (3.24.11-3) ...
- Setting up libthai-data (0.1.29-2) ...
- Setting up sgml-base (1.31+nmu1) ...
- Setting up libwayland-egl1:amd64 (1.23.1-3) ...
- Setting up libicu76:amd64 (76.1-4) ...
- Setting up libopengl-dev:amd64 (1.7.0-1+b2) ...
- Setting up dbus-system-bus-common (1.16.2-2) ...
- Creating group 'messagebus' with GID 996.
- Creating user 'messagebus' (System Message Bus) with UID 996 and GID 996.
- Setting up libsharpyuv-dev:amd64 (1.5.0-0.1) ...
- Setting up libwebpmux3:amd64 (1.5.0-0.1) ...
- Setting up libtiffxx6:amd64 (4.7.0-3+deb13u2) ...
- Setting up libdeflate-dev:amd64 (1.23-2) ...
- Setting up libdrm-common (2.4.124-2) ...
- Setting up libxcomposite1:amd64 (1:0.4.6-1) ...
- Setting up libxrender-dev:amd64 (1:0.9.12-1) ...
- Setting up libjson-c5:amd64 (0.18+ds-1) ...
- Setting up readline-common (8.2-6) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up dbus-bin (1.16.2-2) ...
- Setting up libsystemd-dev:amd64 (257.9-1~deb13u1) ...
- Setting up libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Setting up libkmod2:amd64 (34.2-2) ...
- Setting up libbz2-dev:amd64 (1.0.8-6) ...
- Setting up libxkbcommon0:amd64 (1.7.0-2) ...
- Setting up libwayland-client0:amd64 (1.23.1-3) ...
- Setting up libblkid-dev:amd64 (2.41-5) ...
- Setting up libllvm19:amd64 (1:19.1.7-3+b1) ...
- Setting up libice6:amd64 (2:1.1.1-1) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libatk1.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Setting up libpcre2-dev:amd64 (10.46-1~deb13u1) ...
- Setting up libice-dev:amd64 (2:1.1.1-1) ...
- Setting up libpng-tools (1.6.48-1+deb13u4) ...
- Setting up libgirepository-2.0-0:amd64 (2.84.4-3~deb13u2) ...
- Setting up gir1.2-atk-1.0:amd64 (2.56.2-1+deb13u1) ...
- Setting up libselinux1-dev:amd64 (3.8.1-1) ...
- Setting up fontconfig-config (2.15.0-2.3) ...
- Setting up libxtst6:amd64 (2:1.2.5-1) ...
- Setting up libfribidi-dev:amd64 (1.0.16-1) ...
- Setting up libwebpdemux2:amd64 (1.5.0-0.1) ...
- Setting up libxkbcommon-dev:amd64 (1.7.0-2) ...
- Setting up libxcursor1:amd64 (1:1.2.3-1) ...
- Setting up libpng-dev:amd64 (1.6.48-1+deb13u4) ...
- Setting up libavahi-common3:amd64 (0.8-16) ...
- Setting up libjpeg-dev:amd64 (1:2.1.5-4) ...
- Setting up libjbig-dev:amd64 (2.1-6.1+b2) ...
- Setting up libcloudproviders0:amd64 (0.3.6-2) ...
- Setting up libglib2.0-bin (2.84.4-3~deb13u2) ...
- Setting up dbus-daemon (1.16.2-2) ...
- Setting up libcolord2:amd64 (1.4.7-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libdconf1:amd64 (0.40.0-5) ...
- Setting up libxfixes-dev:amd64 (1:6.0.0-2+b4) ...
- Setting up libthai0:amd64 (0.1.29-2+b1) ...
- Setting up libwayland-bin (1.23.1-3) ...
- Setting up libxrandr-dev:amd64 (2:1.5.4-1+b3) ...
- Setting up libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libwebp-dev:amd64 (1.5.0-0.1) ...
- Setting up libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Setting up libtiff-dev:amd64 (4.7.0-3+deb13u2) ...
- Setting up libatspi2.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Setting up dbus (1.16.2-2) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up shared-mime-info (2.4-5+b2) ...
- Setting up icu-devtools (76.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libxinerama-dev:amd64 (2:1.1.4-3+b4) ...
- Setting up libreadline8t64:amd64 (8.2-6) ...
- Setting up libdrm2:amd64 (2.4.124-2) ...
- Setting up libdatrie-dev:amd64 (0.2.13-3+b1) ...
- Setting up gir1.2-cloudproviders-0.3.0:amd64 (0.3.6-2) ...
- Setting up libwayland-cursor0:amd64 (1.23.1-3) ...
- Setting up xml-core (0.19) ...
- Setting up libpam-systemd:amd64 (257.9-1~deb13u1) ...
- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...
- Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4) ...
- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...
- Setting up libxi-dev:amd64 (2:1.8.2-1) ...
- Setting up libsm6:amd64 (2:1.2.6-1) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Setting up libicu-dev:amd64 (76.1-4) ...
- Setting up libavahi-client3:amd64 (0.8-16) ...
- Setting up libmount-dev:amd64 (2.41-5) ...
- Setting up libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up libdrm-amdgpu1:amd64 (2.4.124-2) ...
- Setting up libxtst-dev:amd64 (2:1.2.5-1) ...
- Setting up libxdamage-dev:amd64 (1:1.1.6-1+b2) ...
- Setting up libatk-bridge2.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Setting up mesa-vulkan-drivers:amd64 (25.0.7-2) ...
- Setting up gtk-update-icon-cache (4.18.6+ds-2) ...
- Setting up fontconfig (2.15.0-2.3) ...
- Regenerating fonts cache...
- done.
- Setting up libxft2:amd64 (2.3.6-1+b4) ...
- Setting up libgio-2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Setting up libharfbuzz-icu0:amd64 (10.2.0-1+b1) ...
- Setting up girepository-tools:amd64 (2.84.4-3~deb13u2) ...
- Setting up gir1.2-gdkpixbuf-2.0:amd64 (2.42.12+dfsg-4) ...
- Setting up python3.13 (3.13.5-2) ...
- Setting up libsm-dev:amd64 (2:1.2.6-1) ...
- Setting up libxcomposite-dev:amd64 (1:0.4.6-1) ...
- Setting up libxcursor-dev:amd64 (1:1.2.3-1) ...
- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...
- Setting up libdrm-intel1:amd64 (2.4.124-2) ...
- Setting up python3 (3.13.5-1) ...
- running python rtupdate hooks for python3.13...
- running python post-rtupdate hooks for python3.13...
- Setting up libharfbuzz-gobject0:amd64 (10.2.0-1+b1) ...
- Setting up libwayland-dev:amd64 (1.23.1-3) ...
- Setting up libcairo2:amd64 (1.18.4-1+b1) ...
- Setting up libfreetype-dev:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Setting up dbus-user-session (1.16.2-2) ...
- Setting up python3-packaging (25.0-1) ...
- Setting up libharfbuzz-cairo0:amd64 (10.2.0-1+b1) ...
- Setting up adwaita-icon-theme (48.1-1) ...
- update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode
- Setting up libthai-dev:amd64 (0.1.29-2+b1) ...
- Setting up libgdk-pixbuf2.0-bin (2.42.12+dfsg-4) ...
- Setting up libharfbuzz-subset0:amd64 (10.2.0-1+b1) ...
- Setting up libcairo-gobject2:amd64 (1.18.4-1+b1) ...
- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...
- Setting up libcups2t64:amd64 (2.4.10-3+deb13u2) ...
- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...
- Setting up libcairo-script-interpreter2:amd64 (1.18.4-1+b1) ...
- Setting up mesa-libgallium:amd64 (25.0.7-2) ...
- Setting up libgio-2.0-dev-bin (2.84.4-3~deb13u2) ...
- Setting up gir1.2-freedesktop:amd64 (1.84.0-1) ...
- Setting up libpangoxft-1.0-0:amd64 (1.56.3-1) ...
- Setting up libgbm1:amd64 (25.0.7-2) ...
- Setting up libfontconfig-dev:amd64 (2.15.0-2.3) ...
- Setting up libgl1-mesa-dri:amd64 (25.0.7-2) ...
- Setting up pango1.0-tools (1.56.3-1) ...
- Setting up dconf-service (0.40.0-5) ...
- Setting up gir1.2-atspi-2.0:amd64 (2.56.2-1+deb13u1) ...
- Setting up gir1.2-harfbuzz-0.0:amd64 (10.2.0-1+b1) ...
- Setting up librsvg2-2:amd64 (2.60.0+dfsg-1) ...
- Setting up gir1.2-pango-1.0:amd64 (1.56.3-1) ...
- Setting up libegl-mesa0:amd64 (25.0.7-2) ...
- Setting up gir1.2-freedesktop-dev:amd64 (1.84.0-1) ...
- Setting up librsvg2-common:amd64 (2.60.0+dfsg-1) ...
- Setting up libegl1:amd64 (1.7.0-1+b2) ...
- Setting up libxft-dev:amd64 (2.3.6-1+b4) ...
- Setting up libglib2.0-dev-bin (2.84.4-3~deb13u2) ...
- Setting up libglx-mesa0:amd64 (25.0.7-2) ...
- Setting up libglx0:amd64 (1.7.0-1+b2) ...
- Setting up dconf-gsettings-backend:amd64 (0.40.0-5) ...
- Setting up libgl1:amd64 (1.7.0-1+b2) ...
- Setting up libglib2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Setting up libglx-dev:amd64 (1.7.0-1+b2) ...
- Setting up libcairo2-dev:amd64 (1.18.4-1+b1) ...
- Setting up libgl-dev:amd64 (1.7.0-1+b2) ...
- Setting up libgtk-3-common (3.24.49-3) ...
- Setting up libatk1.0-dev:amd64 (2.56.2-1+deb13u1) ...
- Setting up libgdk-pixbuf-2.0-dev:amd64 (2.42.12+dfsg-4) ...
- Setting up gsettings-desktop-schemas (48.0-1) ...
- Setting up libharfbuzz-dev:amd64 (10.2.0-1+b1) ...
- Setting up libegl-dev:amd64 (1.7.0-1+b2) ...
- Setting up libcloudproviders-dev:amd64 (0.3.6-2) ...
- Setting up libepoxy-dev:amd64 (1.5.10-2) ...
- Setting up libpango1.0-dev:amd64 (1.56.3-1) ...
- Setting up libgtk-3-0t64:amd64 (3.24.49-3) ...
- Setting up at-spi2-core (2.56.2-1+deb13u1) ...
- Setting up libgles-dev:amd64 (1.7.0-1+b2) ...
- Setting up gir1.2-gtk-3.0:amd64 (3.24.49-3) ...
- Setting up libglvnd-dev:amd64 (1.7.0-1+b2) ...
- Setting up libgtk-3-bin (3.24.49-3) ...
- Setting up libgtksourceview-3.0-1:amd64 (3.24.11-3) ...
- Setting up gir1.2-gtksource-3.0:amd64 (3.24.11-3) ...
- Setting up libegl1-mesa-dev:amd64 (25.0.7-2) ...
- Setting up dmsetup (2:1.02.205-2) ...
- Setting up libdevmapper1.02.1:amd64 (2:1.02.205-2) ...
- Setting up libcryptsetup12:amd64 (2:2.7.5-2) ...
- Setting up systemd-cryptsetup (257.9-1~deb13u1) ...
- Processing triggers for procps (2:4.0.4-9) ...
- grep: /proc/1/environ: Permission denied
- procps: Applying updated sysctl configuration
- sysctl: permission denied on key "kernel.core_pattern"
- sysctl: permission denied on key "kernel.unprivileged_userns_clone"
- sysctl: permission denied on key "kernel.sysrq"
- sysctl: permission denied on key "kernel.core_uses_pid"
- sysctl: permission denied on key "net.ipv4.conf.default.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.docker0.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.eno1.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.eno2.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.eno3.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.eno4.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f0.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f1.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.lo.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.default.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.docker0.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.eno1.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.eno2.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.eno3.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.eno4.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f0.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f1.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.lo.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.default.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.docker0.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.eno1.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.eno2.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.eno3.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.eno4.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f0.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f1.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.lo.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.ping_group_range", ignoring
- sysctl: permission denied on key "net.core.default_qdisc", ignoring
- sysctl: permission denied on key "fs.protected_hardlinks"
- sysctl: permission denied on key "fs.protected_symlinks"
- sysctl: permission denied on key "fs.protected_regular"
- sysctl: permission denied on key "fs.protected_fifos"
- sysctl: permission denied on key "vm.max_map_count"
- sysctl: permission denied on key "kernel.pid_max"
- Processing triggers for libc-bin (2.41-12+deb13u2) ...
- Processing triggers for systemd (257.9-1~deb13u1) ...
- Processing triggers for sgml-base (1.31+nmu1) ...
- Setting up libdbus-1-dev:amd64 (1.16.2-2) ...
- Setting up libatspi2.0-dev:amd64 (2.56.2-1+deb13u1) ...
- Setting up libatk-bridge2.0-dev:amd64 (2.56.2-1+deb13u1) ...
- Setting up libgtk-3-dev:amd64 (3.24.49-3) ...
- Setting up libgtksourceview-3.0-dev:amd64 (3.24.11-3) ...
- Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cairo2.0.6.5 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved conf-gmp.5 (cached)
-> installed conf-gmp.5
-> installed conf-findutils.1
-> installed conf-pkg-config.4
-> installed conf-cairo.1
-> installed conf-gtk3.18
-> installed conf-adwaita-icon-theme.2
-> installed conf-gtksourceview3.0+2
-> installed camlp-streams.5.0.1
-> retrieved coq.8.13.2, coqide.8.13.2 (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2 (cached)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.2 (cached)
-> retrieved lablgtk3.3.1.5, lablgtk3-sourceview3.3.1.5 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved zarith.1.14 (cached)
-> installed dune-configurator.3.22.2
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed cairo2.0.6.5
-> installed zarith.1.14
-> installed lablgtk3.3.1.5
-> installed lablgtk3-sourceview3.3.1.5
-> installed coq.8.13.2
-> installed coqide.8.13.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:54.20 ---> saved as "7a44e5cf10cc5a3c8d09be29ca95eb86960d2848973cd8ea50d1c71156fdf202"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test coqide.8.13.2) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile coqide 8.13.2
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved coqide.8.13.2 (https://opam.ocaml.org/cache)
-> removed coqide.8.13.2
-> installed coqide.8.13.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:55.46 ---> saved as "cd4f1ef122f6a60c1f3973e9621c48b5f4744c1c014528099e095652aea4202d"
/home/opam: (run (shell "opam reinstall --with-test --verbose coqide.8.13.2;\
\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\" != 'coqide.8.13.2' && 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 coqide 8.13.2
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [coqide.8.13.2: extract]
-> retrieved coqide.8.13.2 (cached)
Processing 2/4: [coqide: ./configure no]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "-configdir" "/home/opam/.opam/4.14/lib/coq/config" "-prefix" "/home/opam/.opam/4.14" "-mandir" "/home/opam/.opam/4.14/man" "-docdir" "/home/opam/.opam/4.14/doc" "-libdir" "/home/opam/.opam/4.14/lib/coq" "-datadir" "/home/opam/.opam/4.14/share/coq" "-native-compiler" "no" (CWD=/home/opam/.opam/4.14/.opam-switch/build/coqide.8.13.2)
- You have OCaml 4.14.3. Good!
- You have OCamlfind 1.9.8. Good!
- You have native-code compilation. Good!
- You have the Zarith library 1.14 installed. Good!
- LablGtk3 and LablGtkSourceView3 found (3.1.5), with native threads:
- => native CoqIde will be built.
-
- Architecture : Linux
- Sys.os_type : Unix
- Coq VM bytecode link flags : -dllib -lcoqrun -dllpath /home/opam/.opam/4.14/lib/coq/kernel/byterun
- Other bytecode link flags :
- OCaml version : 4.14.3
- OCaml binaries in : /home/opam/.opam/4.14/bin/
- OCaml library in : /home/opam/.opam/4.14/lib/ocaml
- OCaml flambda flags :
- Native dynamic link support : true
- Lablgtk3 library in : /home/opam/.opam/4.14/lib/lablgtk3-sourceview3
- CoqIde : opt
- Documentation : None
- Web browser : firefox -remote "OpenURL(%s,new-tab)" || firefox %s &
- Coq web site : http://coq.inria.fr/
- Bytecode VM enabled : true
- Native Compiler enabled : no
-
- Paths for true installation:
- - the Coq binaries will be copied in /home/opam/.opam/4.14/bin
- - the Coq library will be copied in /home/opam/.opam/4.14/lib/coq
- - the Coqide configuration files will be copied in /home/opam/.opam/4.14/lib/coq/config
- - the Coqide data files will be copied in /home/opam/.opam/4.14/share/coq
- - the Coq man pages will be copied in /home/opam/.opam/4.14/man
- - the Coq documentation will be copied in /home/opam/.opam/4.14/doc
- - the Coqdoc LaTeX files will be copied in /home/opam/.opam/4.14/share/texmf/tex/latex/misc
-
- If anything is wrong above, please restart './configure'.
-
- *Warning* To compile the system for a new architecture
- don't forget to do a 'make clean' before './configure'.
Processing 2/4: [coqide: make coqide-files]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "COQ_USE_DUNE=" "-j71" "coqide-files" (CWD=/home/opam/.opam/4.14/.opam-switch/build/coqide.8.13.2)
- rm -f
- cp -a "plugins/.merlin.in" "plugins/.merlin"
- cp -a "kernel/.merlin.in" "kernel/.merlin"
- cp -a "ide/.merlin.in" "ide/.merlin"
- cp -a ".merlin.in" ".merlin"
- cp -a "test-suite/unit-tests/.merlin.in" "test-suite/unit-tests/.merlin"
- cp -a "META.coq.in" "META.coq"
- mkdir bin
- make --warn-undefined-variable --no-builtin-rules -f Makefile.build coqide-files
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/coqide.8.13.2'
- OCAMLDEP checker/MLFILES checker/MLIFILES
- OCAMLLEX tools/ocamllibdep.mll
- OCAMLC coqpp/coqpp_ast.mli
- make[1]: Circular coqpp/coqpp_parse.cmi <- coqpp/coqpp_parse.cmo dependency dropped.
- OCAMLYACC coqpp/coqpp_parse.mly
- OCAMLLEX coqpp/coqpp_lex.mll
- 14 states, 417 transitions, table size 1752 bytes
- mkdir -p gramlib/.pack
- OCAMLLEX tools/coqwc.mll
- OCAMLLEX tools/coqdoc/cpretty.mll
- OCAMLLEX tools/coqdep_lexer.mll
- OCAMLLEX ide/coqide/utf8_convert.mll
- OCAMLLEX ide/coqide/protocol/xml_lexer.mll
- rm -f ide/coqide/coqide_os_specific.ml && cp ide/coqide/coqide_X11.ml.in ide/coqide/coqide_os_specific.ml && chmod a-w ide/coqide/coqide_os_specific.ml
- OCAMLLEX ide/coqide/coq_lex.mll
- OCAMLLEX ide/coqide/config_lexer.mll
- 15 states, 827 transitions, table size 3398 bytes
- 80 states, 774 transitions, table size 3576 bytes
- rm -f kernel/uint63.ml && cp kernel/uint63_63.ml kernel/uint63.ml && chmod a-w kernel/uint63.ml
- OCAMLC kernel/genOpcodeFiles.ml
- 217 states, 2223 transitions, table size 10194 bytes
- 244 states, 858 transitions, table size 4896 bytes
- rm -f kernel/float64.ml && cp kernel/float64_63.ml kernel/float64.ml && chmod a-w kernel/float64.ml
- printf '# 1 "%s"\n' gramlib/ploc.ml > gramlib/.pack/gramlib__Ploc.ml
- 30 states, 1657 transitions, table size 6808 bytes
- 6052 additional bytes used for bindings
- printf '# 1 "%s"\n' gramlib/plexing.ml > gramlib/.pack/gramlib__Plexing.ml
- 124 states, 1808 transitions, table size 7976 bytes
- cat gramlib/ploc.ml >> gramlib/.pack/gramlib__Ploc.ml
- printf '# 1 "%s"\n' gramlib/gramext.ml > gramlib/.pack/gramlib__Gramext.ml
- cat gramlib/plexing.ml >> gramlib/.pack/gramlib__Plexing.ml
- cat gramlib/gramext.ml >> gramlib/.pack/gramlib__Gramext.ml
- printf '# 1 "%s"\n' gramlib/grammar.ml > gramlib/.pack/gramlib__Grammar.ml
- echo " \
- module Ploc = Gramlib__Ploc \
- module Plexing = Gramlib__Plexing \
- module Gramext = Gramlib__Gramext \
- module Grammar = Gramlib__Grammar" > gramlib/.pack/gramlib.ml
- cat gramlib/grammar.ml >> gramlib/.pack/gramlib__Grammar.ml
- printf '# 1 "%s"\n' gramlib/ploc.mli > gramlib/.pack/gramlib__Ploc.mli
- printf '# 1 "%s"\n' gramlib/plexing.mli > gramlib/.pack/gramlib__Plexing.mli
- cat gramlib/ploc.mli >> gramlib/.pack/gramlib__Ploc.mli
- printf '# 1 "%s"\n' gramlib/gramext.mli > gramlib/.pack/gramlib__Gramext.mli
- cat gramlib/plexing.mli >> gramlib/.pack/gramlib__Plexing.mli
- printf '# 1 "%s"\n' gramlib/grammar.mli > gramlib/.pack/gramlib__Grammar.mli
- 240 states, 15992 transitions, table size 65408 bytes
- File "kernel/genOpcodeFiles.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- cat gramlib/gramext.mli >> gramlib/.pack/gramlib__Gramext.mli
- cat gramlib/grammar.mli >> gramlib/.pack/gramlib__Grammar.mli
- OCAMLC clib/segmenttree.mli
- OCAMLC clib/unicode.mli
- OCAMLC tools/coqdep_lexer.mli
- OCAMLC tools/coqdep_common.mli
- OCAMLC tools/ocamllibdep.ml
- WRITE kernel/vmopcodes.ml
- OCAMLC coqpp/coqpp_parse.mli
- WRITE kernel/byterun/coq_instruct.h
- WRITE kernel/byterun/coq_jumptbl.h
- CCDEP kernel/byterun/coq_values.c
- CCDEP kernel/byterun/coq_memory.c
- CCDEP kernel/byterun/coq_interp.c
- CCDEP kernel/byterun/coq_float64.c
- CCDEP kernel/byterun/coq_fix_code.c
- OCAMLOPT clib/segmenttree.ml
- OCAMLC clib/segmenttree.ml
- OCAMLC coqpp/coqpp_parse.ml
- OCAMLC tools/coqdep_boot.ml
- File "tools/coqdep_boot.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC clib/unicodetable.ml
- File "tools/ocamllibdep.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT tools/ocamllibdep.ml
- OCAMLC coqpp/coqpp_lex.ml
- File "coqpp/coqpp_lex.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC -a bin/coqpp
- 2719 states, 8742 transitions, table size 51282 bytes
- 17643 additional bytes used for bindings
- OCAMLBEST -o bin/ocamllibdep
- File "coqpp/coqpp_main.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- COQPP vernac/g_vernac.mlg
- COQPP vernac/g_proofs.mlg
- COQPP toplevel/g_toplevel.mlg
- COQPP parsing/g_prim.mlg
- COQPP parsing/g_constr.mlg
- COQPP plugins/ssrsearch/g_search.mlg
- COQPP plugins/syntax/g_number_string.mlg
- COQPP plugins/ssrmatching/g_ssrmatching.mlg
- COQPP plugins/ssr/ssrvernac.mlg
- COQPP plugins/rtauto/g_rtauto.mlg
- COQPP plugins/ssr/ssrparser.mlg
- COQPP plugins/ring/g_ring.mlg
- COQPP plugins/omega/g_omega.mlg
- COQPP plugins/nsatz/g_nsatz.mlg
- COQPP plugins/micromega/g_zify.mlg
- COQPP plugins/micromega/g_micromega.mlg
- COQPP plugins/ltac/profile_ltac_tactics.mlg
- COQPP plugins/ltac/g_tactic.mlg
- COQPP plugins/ltac/g_rewrite.mlg
- COQPP plugins/ltac/g_obligations.mlg
- COQPP plugins/ltac/g_ltac.mlg
- COQPP plugins/ltac/g_eqdecide.mlg
- COQPP plugins/ltac/g_class.mlg
- COQPP plugins/ltac/g_auto.mlg
- COQPP plugins/ltac/extratactics.mlg
- COQPP plugins/ltac/extraargs.mlg
- COQPP plugins/ltac/coretactics.mlg
- COQPP plugins/firstorder/g_ground.mlg
- COQPP plugins/funind/g_indfun.mlg
- COQPP plugins/extraction/g_extraction.mlg
- COQPP plugins/derive/g_derive.mlg
- COQPP plugins/cc/g_congruence.mlg
- COQPP plugins/btauto/g_btauto.mlg
- COQPP user-contrib/Ltac2/g_ltac2.mlg
- OCAMLDEP MLFILES MLIFILES
- OCAMLDEP plugins/MLFILES plugins/MLIFILES
- OCAMLDEP user-contrib/MLFILES user-contrib/MLIFILES
- File "clib/unicodetable.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT clib/unicodetable.ml
- OCAMLC clib/unicode.ml
- OCAMLLIBDEP checker/MLLIBFILES checker/MLPACKFILES
- OCAMLLIBDEP MLLIBFILES MLPACKFILES
- OCAMLLIBDEP plugins/MLLIBFILES plugins/MLPACKFILES
- OCAMLLIBDEP user-contrib/MLLIBFILES user-contrib/MLPACKFILES
- OCAMLC clib/minisys.ml
- File "clib/minisys.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT clib/unicode.ml
- OCAMLOPT tools/coqdep_lexer.ml
- OCAMLOPT clib/minisys.ml
- OCAMLOPT tools/coqdep_common.ml
- OCAMLOPT tools/coqdep_boot.ml
- OCAMLBEST -o bin/coqdep_boot
- COQDEP VFILES
- rm coqpp/coqpp_parse.mli
- OCAMLC gramlib/.pack/gramlib.ml
- make[1]: Circular coqpp/coqpp_parse.cmi <- coqpp/coqpp_parse.cmo dependency dropped.
- File "gramlib/.pack/gramlib.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT gramlib/.pack/gramlib.ml
- OCAMLC tools/ocamllibdep.ml
- OCAMLC coqpp/coqpp_ast.mli
- OCAMLC clib/segmenttree.mli
- OCAMLC clib/unicode.mli
- OCAMLC tools/coqdep_lexer.mli
- OCAMLC tools/coqdep_common.mli
- OCAMLC clib/segmenttree.ml
- OCAMLC tools/coqdep_boot.ml
- OCAMLOPT clib/segmenttree.ml
- OCAMLYACC coqpp/coqpp_parse.mly
- OCAMLC coqpp/coqpp_parse.mli
- File "tools/ocamllibdep.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "tools/coqdep_boot.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC coqpp/coqpp_parse.ml
- OCAMLOPT tools/ocamllibdep.ml
- OCAMLC clib/unicodetable.ml
- OCAMLBEST -o bin/ocamllibdep
- OCAMLC coqpp/coqpp_lex.ml
- File "coqpp/coqpp_lex.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC -a bin/coqpp
- File "coqpp/coqpp_main.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- COQPP vernac/g_vernac.mlg
- COQPP vernac/g_proofs.mlg
- COQPP toplevel/g_toplevel.mlg
- COQPP parsing/g_prim.mlg
- COQPP parsing/g_constr.mlg
- COQPP plugins/syntax/g_number_string.mlg
- COQPP plugins/ssrsearch/g_search.mlg
- COQPP plugins/ssrmatching/g_ssrmatching.mlg
- COQPP plugins/ssr/ssrvernac.mlg
- COQPP plugins/ssr/ssrparser.mlg
- COQPP plugins/rtauto/g_rtauto.mlg
- COQPP plugins/ring/g_ring.mlg
- COQPP plugins/omega/g_omega.mlg
- COQPP plugins/nsatz/g_nsatz.mlg
- COQPP plugins/micromega/g_zify.mlg
- COQPP plugins/micromega/g_micromega.mlg
- COQPP plugins/ltac/profile_ltac_tactics.mlg
- COQPP plugins/ltac/g_tactic.mlg
- COQPP plugins/ltac/g_rewrite.mlg
- COQPP plugins/ltac/g_obligations.mlg
- COQPP plugins/ltac/g_ltac.mlg
- File "clib/unicodetable.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- COQPP plugins/ltac/g_eqdecide.mlg
- COQPP plugins/ltac/g_class.mlg
- COQPP plugins/ltac/g_auto.mlg
- COQPP plugins/ltac/extratactics.mlg
- COQPP plugins/ltac/extraargs.mlg
- COQPP plugins/ltac/coretactics.mlg
- COQPP plugins/funind/g_indfun.mlg
- COQPP plugins/firstorder/g_ground.mlg
- COQPP plugins/extraction/g_extraction.mlg
- COQPP plugins/derive/g_derive.mlg
- COQPP plugins/cc/g_congruence.mlg
- COQPP plugins/btauto/g_btauto.mlg
- COQPP user-contrib/Ltac2/g_ltac2.mlg
- OCAMLDEP MLFILES MLIFILES
- OCAMLDEP plugins/MLFILES plugins/MLIFILES
- OCAMLDEP user-contrib/MLFILES user-contrib/MLIFILES
- OCAMLOPT clib/unicodetable.ml
- OCAMLC clib/unicode.ml
- OCAMLC clib/minisys.ml
- File "clib/minisys.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT clib/unicode.ml
- OCAMLOPT clib/minisys.ml
- OCAMLOPT tools/coqdep_lexer.ml
- OCAMLOPT tools/coqdep_common.ml
- OCAMLOPT tools/coqdep_boot.ml
- OCAMLBEST -o bin/coqdep_boot
- rm coqpp/coqpp_parse.mli
- make[1]: Circular coqpp/coqpp_parse.cmi <- coqpp/coqpp_parse.cmo dependency dropped.
- "/home/opam/.opam/4.14/bin/ocamlfind" ocamlc -thread -rectypes -w +a-4-9-27-41-42-44-45-48-58-67 -safe-string -strict-sequence ide/coqide/default_bindings_src.ml -o ide/coqide/default_bindings_src.exe
- File "ide/coqide/default_bindings_src.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- ide/coqide/default_bindings_src.exe ide/coqide/default.bindings
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/coqide.8.13.2'
Processing 2/4: [coqide: make coqide-opt]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "COQ_USE_DUNE=" "-j71" "coqide-opt" (CWD=/home/opam/.opam/4.14/.opam-switch/build/coqide.8.13.2)
- rm -f
- make --warn-undefined-variable --no-builtin-rules -f Makefile.build coqide-opt
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/coqide.8.13.2'
- make[1]: Circular coqpp/coqpp_parse.cmi <- coqpp/coqpp_parse.cmo dependency dropped.
- OCAMLC config/coq_config.mli
- OCAMLC clib/cObj.mli
- OCAMLC clib/cEphemeron.mli
- OCAMLC clib/cSig.mli
- OCAMLC clib/hashset.mli
- OCAMLC clib/orderedType.mli
- OCAMLC clib/range.mli
- OCAMLC clib/cArray.mli
- OCAMLC clib/option.mli
- OCAMLC clib/cUnix.mli
- OCAMLC clib/cThread.mli
- OCAMLC clib/trie.mli
- OCAMLC clib/predicate.mli
- OCAMLC clib/heap.mli
- OCAMLC clib/unionfind.mli
- OCAMLC clib/store.mli
- OCAMLC clib/exninfo.mli
- OCAMLC clib/iStream.mli
- OCAMLC clib/terminal.mli
- OCAMLC clib/monad.mli
- OCAMLC clib/diff2.mli
- OCAMLC lib/hook.mli
- OCAMLC lib/flags.mli
- OCAMLC lib/control.mli
- OCAMLC lib/pp.mli
- OCAMLC lib/xml_datatype.mli
- OCAMLC lib/cProfile.mli
- OCAMLC lib/spawn.mli
- OCAMLC lib/remoteCounter.mli
- OCAMLC lib/envars.mli
- OCAMLC lib/coqProject_file.mli
- OCAMLC ide/coqide/protocol/xml_lexer.mli
- OCAMLC ide/coqide/configwin_types.ml
- OCAMLC ide/coqide/configwin.mli
- OCAMLC ide/coqide/tags.mli
- OCAMLC ide/coqide/wg_Notebook.mli
- OCAMLC ide/coqide/utf8_convert.mli
- OCAMLC ide/coqide/unicode_bindings.mli
- OCAMLC ide/coqide/coq_lex.mli
- OCAMLC ide/coqide/sentence.mli
- OCAMLC ide/coqide/gtk_parsing.mli
- OCAMLC ide/coqide/wg_Segment.mli
- OCAMLC ide/coqide/wg_Detachable.mli
- OCAMLC ide/coqide/wg_Find.mli
- OCAMLC ide/coqide/coq_commands.mli
- OCAMLC ide/coqide/coqide_ui.mli
- OCAMLC ide/coqide/coqide.mli
- OCAMLC ide/coqide/coqide_os_specific.mli
- OCAMLC kernel/uint63.mli
- OCAMLC kernel/vmopcodes.ml
- OCAMLC engine/logic_monad.mli
- OCAMLC interp/numTok.mli
- OCAMLC gramlib/.pack/gramlib__Gramext.mli
- OCAMLC tactics/dnet.mli
- OCAMLC tactics/dn.mli
- OCAMLC stm/spawned.mli
- OCAMLC stm/dag.mli
- OCAMLC stm/tQueue.mli
- OCAMLC stm/coqworkmgrApi.mli
- OCAMLC stm/vio_checking.mli
- OCAMLC toplevel/usage.mli
- OCAMLC toplevel/workerLoop.mli
- OCAMLC toplevel/coqc.mli
- OCAMLC kernel/byterun/coq_fix_code.c
- OCAMLC kernel/byterun/coq_float64.c
- OCAMLC kernel/byterun/coq_memory.c
- OCAMLC kernel/byterun/coq_values.c
- OCAMLC kernel/byterun/coq_interp.c
- OCAMLOPT config/coq_config.ml
- OCAMLOPT clib/cObj.ml
- File "interp/numTok.mli", line 85, characters 19-27:
- 85 | val parse : char Stream.t -> t
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT clib/cEphemeron.ml
- OCAMLC clib/cMap.mli
- OCAMLC clib/hashcons.mli
- OCAMLC clib/cList.mli
- File "kernel/vmopcodes.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT clib/option.ml
- OCAMLOPT clib/cThread.ml
- OCAMLOPT clib/trie.ml
- OCAMLOPT clib/predicate.ml
- File "ide/coqide/configwin_types.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT clib/unionfind.ml
- OCAMLC clib/dyn.mli
- OCAMLOPT clib/iStream.ml
- OCAMLOPT clib/heap.ml
- OCAMLOPT clib/terminal.ml
- OCAMLOPT clib/monad.ml
- OCAMLOPT clib/diff2.ml
- OCAMLOPT lib/hook.ml
- OCAMLC lib/pp_diff.mli
- OCAMLC lib/loc.mli
- OCAMLC lib/rtree.mli
- OCAMLC lib/system.mli
- OCAMLC lib/explore.mli
- OCAMLC lib/future.mli
- OCAMLC lib/genarg.mli
- OCAMLOPT ide/coqide/protocol/xml_lexer.ml
- OCAMLC ide/coqide/protocol/xml_parser.mli
- OCAMLC ide/coqide/protocol/xml_printer.mli
- OCAMLC ide/coqide/minilib.mli
- OCAMLC ide/coqide/protocol/richpp.mli
- OCAMLC ide/coqide/configwin_messages.ml
- OCAMLOPT ide/coqide/configwin_types.ml
- OCAMLC ide/coqide/configwin_ihm.mli
- OCAMLOPT ide/coqide/tags.ml
- OCAMLOPT ide/coqide/utf8_convert.ml
- coq_fix_code.c: In function 'coq_stat_alloc':
- coq_fix_code.c:94:13: warning: "raise_out_of_memory" is deprecated: use "caml_raise_out_of_memory" instead
- 94 | if (result == NULL) raise_out_of_memory ();
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- coq_memory.c: In function 'init_coq_vm':
- coq_memory.c:121:13: warning: "scan_roots_hook" is deprecated: use "caml_scan_roots_hook" instead
- 121 | coq_prev_scan_roots_hook = scan_roots_hook;
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- coq_memory.c:122:13: warning: "scan_roots_hook" is deprecated: use "caml_scan_roots_hook" instead
- 122 | scan_roots_hook = coq_scan_roots;
- | ^~~~~~~~~~~~~~~~~~~~~~~~~
- OCAMLOPT ide/coqide/gtk_parsing.ml
- OCAMLOPT ide/coqide/coq_commands.ml
- OCAMLOPT ide/coqide/coqide_os_specific.ml
- OCAMLOPT kernel/uint63.ml
- OCAMLC kernel/parray.mli
- OCAMLC kernel/float64_common.mli
- OCAMLC kernel/evar.mli
- OCAMLC kernel/float64.mli
- OCAMLOPT kernel/vmopcodes.ml
- File "ide/coqide/configwin_messages.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC library/summary.mli
- OCAMLC interp/deprecation.mli
- OCAMLC gramlib/.pack/gramlib__Ploc.mli
- OCAMLOPT gramlib/.pack/gramlib__Gramext.ml
- OCAMLOPT tactics/dnet.ml
- OCAMLC stm/vcs.mli
- OCAMLOPT stm/coqworkmgrApi.ml
- OCAMLC stm/workerPool.mli
- OCAMLOPT toplevel/usage.ml
- OCAMLOPT -a -o config/config.cmxa
- OCAMLOPT clib/cMap.ml
- OCAMLC clib/int.mli
- OCAMLC clib/cSet.mli
- OCAMLC clib/cString.mli
- OCAMLC lib/stateid.mli
- OCAMLC clib/hMap.mli
- OCAMLC lib/cErrors.mli
- OCAMLC lib/cWarnings.mli
- OCAMLC lib/cAst.mli
- OCAMLC lib/aux_file.mli
- OCAMLOPT ide/coqide/protocol/xml_printer.ml
- OCAMLC ide/coqide/protocol/serialize.mli
- OCAMLOPT ide/coqide/configwin_messages.ml
- File "ide/coqide/configwin_types.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT ide/coqide/coq_lex.ml
- OCAMLC lib/acyclicGraph.mli
- OCAMLOPT ide/coqide/wg_Detachable.ml
- OCAMLOPT ide/coqide/protocol/xml_parser.ml
- OCAMLC lib/feedback.mli
- OCAMLC lib/dAst.mli
- OCAMLC ide/coqide/document.mli
- OCAMLOPT kernel/float64_common.ml
- File "ide/coqide/configwin_messages.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC lib/util.mli
- OCAMLC lib/objFile.mli
- OCAMLC ide/coqide/ideutils.mli
- OCAMLC stm/asyncTaskQueue.mli
- File "lib/util.mli", line 81, characters 27-35:
- 81 | val stream_nth : int -> 'a Stream.t -> 'a
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "lib/util.mli", line 82, characters 29-37:
- 82 | val stream_njunk : int -> 'a Stream.t -> unit
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "ide/coqide/protocol/xml_parser.ml", line 54, characters 2-31:
- 54 | mutable concat_pcdata : bool;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field concat_pcdata is never read.
- (However, this field is used to build or mutate values.)
- OCAMLOPT kernel/float64.ml
- OCAMLC ide/coqide/protocol/interface.ml
- OCAMLC ide/coqide/config_lexer.mli
- OCAMLC ide/coqide/preferences.mli
- OCAMLOPT ide/coqide/sentence.ml
- OCAMLC kernel/names.mli
- OCAMLC kernel/esubst.mli
- OCAMLC gramlib/.pack/gramlib__Plexing.mli
- OCAMLC parsing/tok.mli
- OCAMLC stm/partac.mli
- File "gramlib/plexing.mli", line 13, characters 41-49:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT clib/int.ml
- File "gramlib/plexing.mli", line 13, characters 57-65:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "ide/coqide/protocol/interface.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC gramlib/.pack/gramlib__Grammar.mli
- OCAMLC parsing/cLexer.mli
- OCAMLC ide/coqide/protocol/xmlprotocol.mli
- OCAMLC ide/coqide/coq.mli
- OCAMLC ide/coqide/wg_ProofView.mli
- File "gramlib/grammar.mli", line 30, characters 34-42:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.mli", line 42, characters 63-71:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.mli", line 43, characters 40-48:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC ide/coqide/wg_Completion.mli
- OCAMLC ide/coqide/wg_ScriptView.mli
- OCAMLOPT clib/hashset.ml
- OCAMLOPT clib/orderedType.ml
- OCAMLOPT clib/cList.ml
- OCAMLOPT clib/range.ml
- OCAMLOPT clib/hMap.ml
- OCAMLOPT clib/dyn.ml
- OCAMLOPT stm/dag.ml
- OCAMLC ide/coqide/wg_MessageView.mli
- OCAMLC ide/coqide/fileOps.mli
- OCAMLC kernel/transparentState.mli
- OCAMLC kernel/univ.mli
- OCAMLC library/libnames.mli
- OCAMLC engine/evar_kinds.mli
- OCAMLC pretyping/locus.ml
- OCAMLC proofs/goal_select.mli
- OCAMLC tactics/declareScheme.mli
- OCAMLC vernac/canonical.mli
- File "pretyping/locus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC kernel/conv_oracle.mli
- OCAMLC pretyping/locusops.mli
- OCAMLOPT clib/store.ml
- OCAMLC library/coqlib.mli
- OCAMLC interp/decls.mli
- OCAMLC vernac/loadpath.mli
- OCAMLC ide/coqide/wg_RoutedMessageViews.mli
- OCAMLOPT clib/hashcons.ml
- OCAMLC kernel/uGraph.mli
- OCAMLC kernel/sorts.mli
- OCAMLC engine/univNames.mli
- OCAMLC tactics/declareUctx.mli
- OCAMLC ide/coqide/coqOps.mli
- OCAMLOPT clib/exninfo.ml
- OCAMLC kernel/context.mli
- OCAMLC kernel/vmvalues.mli
- OCAMLOPT clib/cSet.ml
- File "clib/cList.ml", line 147, characters 2-12:
- 147 | head : 'a;
- ^^^^^^^^^^
- Warning 69 [unused-field]: record field head is never read.
- (However, this field is used to build or mutate values.)
- OCAMLC kernel/constr.mli
- OCAMLC kernel/vm.mli
- OCAMLOPT lib/flags.ml
- OCAMLOPT lib/control.ml
- OCAMLOPT lib/loc.ml
- OCAMLC ide/coqide/wg_Command.mli
- OCAMLC kernel/vars.mli
- OCAMLC kernel/term.mli
- OCAMLC kernel/cPrimitives.mli
- OCAMLC kernel/nativevalues.mli
- OCAMLC engine/univSubst.mli
- OCAMLC engine/univProblem.mli
- OCAMLC engine/univops.mli
- OCAMLC engine/nameops.mli
- OCAMLC pretyping/pattern.ml
- OCAMLC pretyping/keys.mli
- OCAMLOPT gramlib/.pack/gramlib__Ploc.ml
- OCAMLOPT lib/cAst.ml
- OCAMLC ide/coqide/session.mli
- OCAMLC kernel/retroknowledge.mli
- OCAMLC kernel/vmbytecodes.mli
- OCAMLC engine/univMinim.mli
- File "pretyping/pattern.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT lib/dAst.ml
- OCAMLC kernel/mod_subst.mli
- OCAMLC kernel/vmemitcodes.mli
- OCAMLC kernel/opaqueproof.mli
- OCAMLC library/globnames.mli
- OCAMLC tactics/term_dnet.mli
- OCAMLC ide/coqide/microPG.mli
- OCAMLOPT clib/cString.ml
- OCAMLOPT clib/cArray.ml
- OCAMLC kernel/declarations.ml
- OCAMLC vernac/library.mli
- OCAMLC library/libobject.mli
- OCAMLC library/nametab.mli
- File "kernel/declarations.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC kernel/entries.ml
- OCAMLC kernel/environ.mli
- OCAMLC kernel/cooking.mli
- File "kernel/entries.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT clib/cUnix.ml
- OCAMLOPT ide/coqide/protocol/serialize.ml
- OCAMLC kernel/declareops.mli
- OCAMLC kernel/primred.mli
- OCAMLC kernel/cClosure.mli
- OCAMLC kernel/reduction.mli
- OCAMLC kernel/vmlambda.mli
- OCAMLC kernel/nativelambda.mli
- OCAMLC kernel/vmbytegen.mli
- OCAMLC kernel/vmsymtable.mli
- OCAMLC kernel/type_errors.mli
- OCAMLC kernel/modops.mli
- OCAMLC kernel/inductive.mli
- OCAMLC kernel/typeops.mli
- OCAMLC kernel/inferCumulativity.mli
- OCAMLC kernel/indTyping.mli
- OCAMLC kernel/indtypes.mli
- OCAMLC kernel/term_typing.mli
- OCAMLC kernel/subtyping.mli
- OCAMLC kernel/mod_typing.mli
- OCAMLC kernel/section.mli
- OCAMLC library/goptions.mli
- OCAMLC engine/univGen.mli
- OCAMLC pretyping/arguments_renaming.mli
- OCAMLC pretyping/heads.mli
- OCAMLC vernac/printmod.mli
- OCAMLC kernel/vconv.mli
- OCAMLC kernel/nativecode.mli
- OCAMLC kernel/nativeconv.mli
- OCAMLC kernel/relevanceops.mli
- OCAMLC vernac/attributes.mli
- OCAMLC library/lib.mli
- OCAMLOPT lib/coqProject_file.ml
- OCAMLC kernel/nativelib.mli
- OCAMLC kernel/nativelibrary.mli
- OCAMLOPT -a -o clib/clib.cmxa
- OCAMLOPT lib/util.ml
- OCAMLOPT lib/pp.ml
- File "lib/coqProject_file.ml", line 94, characters 35-46:
- 94 | let rec parse_string buf s = match Stream.next s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "lib/coqProject_file.ml", line 99, characters 12-26:
- 99 | | exception Stream.Failure -> buffer buf
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT kernel/parray.ml
- File "lib/coqProject_file.ml", line 101, characters 32-43:
- 101 | and parse_string2 buf s = match Stream.next s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "lib/coqProject_file.ml", line 106, characters 12-26:
- 106 | | exception Stream.Failure -> raise (Parsing_error "unterminated string")
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "lib/coqProject_file.ml", line 108, characters 33-44:
- 108 | and parse_skip_comment s = match Stream.next s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "lib/coqProject_file.ml", line 111, characters 12-26:
- 111 | | exception Stream.Failure -> ()
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "lib/coqProject_file.ml", line 113, characters 34-45:
- 113 | and parse_args buf accu s = match Stream.next s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "lib/coqProject_file.ml", line 125, characters 12-26:
- 125 | | exception Stream.Failure -> accu
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "lib/coqProject_file.ml", line 130, characters 31-48:
- 130 | let res = parse_args buf [] (Stream.of_channel c) in
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC kernel/safe_typing.mli
- OCAMLC library/global.mli
- OCAMLC engine/uState.mli
- File "lib/util.ml", line 126, characters 16-28:
- 126 | try List.nth (Stream.npeek (n+1) st) n
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "lib/util.ml", line 127, characters 26-40:
- 127 | with Failure _ -> raise Stream.Failure
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "lib/util.ml", line 130, characters 11-22:
- 130 | repeat n Stream.junk st
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC engine/evd.mli
- OCAMLOPT lib/pp_diff.ml
- OCAMLOPT lib/stateid.ml
- OCAMLOPT lib/cErrors.ml
- OCAMLOPT kernel/evar.ml
- OCAMLOPT lib/rtree.ml
- OCAMLOPT lib/envars.ml
- OCAMLOPT ide/coqide/protocol/richpp.ml
- OCAMLOPT ide/coqide/wg_Notebook.ml
- OCAMLOPT ide/coqide/config_lexer.ml
- OCAMLOPT kernel/esubst.ml
- OCAMLOPT interp/numTok.ml
- OCAMLOPT gramlib/.pack/gramlib__Plexing.ml
- OCAMLOPT tactics/dn.ml
- OCAMLC engine/eConstr.mli
- OCAMLC engine/proofview_monad.mli
- OCAMLC pretyping/indrec.mli
- File "gramlib/plexing.ml", line 6, characters 41-49:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/plexing.ml", line 6, characters 57-65:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT lib/feedback.ml
- OCAMLOPT ide/coqide/document.ml
- File "interp/numTok.ml", line 124, characters 33-44:
- 124 | let rec number len s = match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 125, characters 32-43:
- 125 | | Some ('0'..'9' as c) -> Stream.junk s; number (store len c) s
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 126, characters 40-51:
- 126 | | Some ('_' as c) when len > 0 -> Stream.junk s; number (store len c) s
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 129, characters 37-48:
- 129 | let rec hex_number len s = match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 131, characters 9-20:
- 131 | Stream.junk s; hex_number (store len c) s
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 133, characters 9-20:
- 133 | Stream.junk s; hex_number (store len c) s
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 137, characters 12-24:
- 137 | match Stream.npeek 3 s with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 139, characters 9-20:
- 139 | Stream.junk s; Stream.junk s; Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 139, characters 24-35:
- 139 | Stream.junk s; Stream.junk s; Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 139, characters 39-50:
- 139 | Stream.junk s; Stream.junk s; Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 144, characters 17-29:
- 144 | match hex, Stream.npeek 2 s with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 146, characters 9-20:
- 146 | Stream.junk s; Stream.junk s; get_buff (hex_number (store 0 c) s)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 146, characters 24-35:
- 146 | Stream.junk s; Stream.junk s; get_buff (hex_number (store 0 c) s)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 148, characters 9-20:
- 148 | Stream.junk s; Stream.junk s; get_buff (number (store 0 c) s)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 148, characters 24-35:
- 148 | Stream.junk s; Stream.junk s; get_buff (number (store 0 c) s)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 151, characters 17-29:
- 151 | match hex, Stream.npeek 2 s with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 154, characters 9-20:
- 154 | Stream.junk s; Stream.junk s; get_buff (number (store (store 0 e) c) s)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 154, characters 24-35:
- 154 | Stream.junk s; Stream.junk s; get_buff (number (store (store 0 e) c) s)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 157, characters 21-33:
- 157 | begin match Stream.npeek 3 s with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 159, characters 12-23:
- 159 | Stream.junk s; Stream.junk s; Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 159, characters 27-38:
- 159 | Stream.junk s; Stream.junk s; Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 159, characters 42-53:
- 159 | Stream.junk s; Stream.junk s; Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 174, characters 17-33:
- 174 | let strm = Stream.of_string (s ^ " ") in
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 176, characters 9-21:
- 176 | if Stream.count strm >= String.length s then Some n else None
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 260, characters 17-33:
- 260 | let strm = Stream.of_string (s ^ " ") in
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 262, characters 18-29:
- 262 | | '-' -> (Stream.junk strm; SMinus)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 263, characters 18-29:
- 263 | | '+' -> (Stream.junk strm; SPlus)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "interp/numTok.ml", line 266, characters 9-21:
- 266 | if Stream.count strm >= String.length s then Some (sign,n) else None
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT lib/acyclicGraph.ml
- OCAMLOPT lib/cProfile.ml
- OCAMLOPT lib/future.ml
- OCAMLOPT lib/spawn.ml
- OCAMLOPT lib/genarg.ml
- OCAMLOPT lib/remoteCounter.ml
- OCAMLOPT kernel/names.ml
- OCAMLOPT stm/vcs.ml
- OCAMLOPT stm/tQueue.ml
- OCAMLOPT stm/workerPool.ml
- OCAMLC engine/namegen.mli
- OCAMLC engine/termops.mli
- OCAMLC engine/proofview.mli
- OCAMLC pretyping/reductionops.mli
- OCAMLC pretyping/pretype_errors.mli
- OCAMLC pretyping/inductiveops.mli
- OCAMLC pretyping/retyping.mli
- OCAMLC pretyping/vnorm.mli
- OCAMLC pretyping/nativenorm.mli
- OCAMLC pretyping/cbv.mli
- OCAMLC pretyping/typing.mli
- OCAMLC pretyping/evardefine.mli
- OCAMLC pretyping/typeclasses_errors.mli
- OCAMLC pretyping/typeclasses.mli
- OCAMLC pretyping/coercionops.mli
- OCAMLC pretyping/program.mli
- OCAMLC proofs/goal.mli
- OCAMLC tactics/btermdn.mli
- OCAMLC tactics/hipattern.mli
- OCAMLC tactics/cbn.mli
- OCAMLOPT lib/cWarnings.ml
- OCAMLOPT lib/explore.ml
- OCAMLOPT lib/aux_file.ml
- OCAMLOPT ide/coqide/protocol/interface.ml
- OCAMLOPT engine/logic_monad.ml
- OCAMLOPT gramlib/.pack/gramlib__Grammar.ml
- OCAMLOPT ide/coqide/minilib.ml
- File "stm/tQueue.ml", line 36, characters 11-42:
- 36 | let push ({ contents = (xs, rel) } as t) x =
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 68 [match-on-mutable-state-prevent-uncurry]: This pattern depends on mutable state.
- It prevents the remaining arguments from being uncurried, which will cause additional closure allocations.
- File "stm/workerPool.ml", line 35, characters 2-21:
- 35 | manager : Thread.t;
- ^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field manager is never read.
- (However, this field is used to build or mutate values.)
- File "stm/workerPool.ml", line 36, characters 2-26:
- 36 | process : Model.process;
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field process is never read.
- (However, this field is used to build or mutate values.)
- File "stm/tQueue.ml", line 91, characters 9-51:
- 91 | let push { queue = q; lock = m; cond = c; release } x =
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 68 [match-on-mutable-state-prevent-uncurry]: This pattern depends on mutable state.
- It prevents the remaining arguments from being uncurried, which will cause additional closure allocations.
- File "lib/spawn.ml", line 160, characters 2-24:
- 160 | gchan : ML.async_chan;
- ^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field gchan is never read.
- (However, this field is used to build or mutate values.)
- OCAMLC engine/evarutil.mli
- OCAMLC pretyping/glob_term.ml
- OCAMLC proofs/tactypes.ml
- OCAMLC pretyping/find_subterm.mli
- OCAMLC pretyping/evarsolve.mli
- File "lib/cWarnings.ml", line 16, characters 2-20:
- 16 | category : string;
- ^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field category is never read.
- (However, this field is used to build or mutate values.)
- OCAMLC engine/ftactic.mli
- OCAMLC proofs/refine.mli
- OCAMLC proofs/logic.mli
- OCAMLC proofs/tacmach.mli
- File "ide/coqide/protocol/interface.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC tactics/ind_tables.mli
- OCAMLC tactics/abstract.mli
- OCAMLC tactics/eqdecide.mli
- OCAMLC vernac/retrieveObl.mli
- OCAMLOPT parsing/tok.ml
- OCAMLC pretyping/recordops.mli
- OCAMLOPT ide/coqide/protocol/xmlprotocol.ml
- File "lib/cProfile.ml", line 288, characters 25-40:
- 288 | let l = List.sort (fun (_,{tottime=p}) (_,{tottime=p'}) -> p' - p) table in
- ^^^^^^^^^^^^^^^
- Warning 68 [match-on-mutable-state-prevent-uncurry]: This pattern depends on mutable state.
- It prevents the remaining arguments from being uncurried, which will cause additional closure allocations.
- File "proofs/tactypes.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "pretyping/glob_term.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC proofs/miscprint.mli
- OCAMLC tactics/tacticals.mli
- OCAMLC tactics/elim.mli
- File "gramlib/grammar.ml", line 20, characters 34-42:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 32, characters 63-71:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC tactics/contradiction.mli
- File "gramlib/grammar.ml", line 33, characters 40-48:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC tactics/inv.mli
- OCAMLOPT ide/coqide/configwin_ihm.ml
- File "gramlib/grammar.ml", line 117, characters 24-32:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC pretyping/geninterp.mli
- OCAMLOPT interp/deprecation.ml
- OCAMLC interp/constrexpr.ml
- OCAMLC proofs/proof.mli
- OCAMLOPT stm/spawned.ml
- OCAMLOPT lib/system.ml
- OCAMLOPT library/summary.ml
- OCAMLC pretyping/evarconv.mli
- OCAMLC tactics/eqschemes.mli
- OCAMLC tactics/elimschemes.mli
- OCAMLC vernac/auto_ind_decl.mli
- OCAMLC vernac/himsg.mli
- File "parsing/tok.ml", line 124, characters 21-35:
- 124 | let err () = raise Stream.Failure in
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC pretyping/ltac_pretype.ml
- OCAMLC pretyping/coercion.mli
- File "interp/constrexpr.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC proofs/proof_bullet.mli
- OCAMLC interp/notation_term.ml
- OCAMLC interp/smartlocate.mli
- OCAMLC interp/constrexpr_ops.mli
- OCAMLC interp/impargs.mli
- OCAMLC interp/modintern.mli
- OCAMLC parsing/pcoq.mli
- OCAMLC printing/genprint.mli
- OCAMLC printing/pputils.mli
- OCAMLC printing/ppconstr.mli
- OCAMLC vernac/declaremods.mli
- OCAMLC vernac/declareUniv.mli
- OCAMLC vernac/comPrimitive.mli
- OCAMLC vernac/prettyp.mli
- OCAMLOPT parsing/cLexer.ml
- File "pretyping/ltac_pretype.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC pretyping/glob_ops.mli
- OCAMLC pretyping/patternops.mli
- OCAMLC pretyping/constr_matching.mli
- OCAMLC pretyping/tacred.mli
- OCAMLC pretyping/detyping.mli
- OCAMLC pretyping/globEnv.mli
- OCAMLC proofs/evar_refiner.mli
- File "interp/notation_term.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC interp/implicit_quantifiers.mli
- OCAMLC vernac/declareInd.mli
- OCAMLC interp/genintern.mli
- OCAMLC interp/notation_ops.mli
- OCAMLC interp/notation.mli
- OCAMLC interp/syntax_def.mli
- OCAMLC interp/reserve.mli
- OCAMLC parsing/extend.mli
- OCAMLC printing/proof_diffs.mli
- OCAMLC printing/printer.mli
- OCAMLC parsing/g_constr.ml
- OCAMLC parsing/g_prim.ml
- OCAMLOPT lib/objFile.ml
- File "parsing/cLexer.ml", line 163, characters 11-23:
- 163 | let bp = Stream.count cs in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 164, characters 2-13:
- 164 | Stream.junk cs; (* consume the char to avoid read it and fail again *)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 176, characters 28-39:
- 176 | let njunk n = Util.repeat n Stream.junk
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 189, characters 12-24:
- 189 | match Stream.npeek 2 cs with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 195, characters 12-24:
- 195 | match Stream.npeek 3 cs with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 202, characters 17-29:
- 202 | else match Stream.npeek 4 cs with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC interp/stdarg.mli
- OCAMLC tactics/genredexpr.ml
- OCAMLC pretyping/cases.mli
- OCAMLC pretyping/pretyping.mli
- File "parsing/cLexer.ml", line 214, characters 8-19:
- 214 | match Stream.peek cs with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC parsing/ppextend.mli
- File "gramlib/grammar.ml", line 1076, characters 15-29:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1085, characters 15-29:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1094, characters 27-41:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1094, characters 61-75:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1097, characters 5-17:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1098, characters 13-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1100, characters 45-53:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1104, characters 6-20:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1104, characters 31-43:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1109, characters 16-24:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1111, characters 4-18:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1113, characters 42-50:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1113, characters 61-75:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1115, characters 11-25:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 224, characters 30-41:
- 224 | let rec loop_symb s = match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 226, characters 8-19:
- 226 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 231, characters 23-34:
- 231 | | AsciiChar -> Stream.junk s; loop_symb s
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1125, characters 13-25:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 234, characters 13-29:
- 234 | loop_symb (Stream.of_string str)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1126, characters 17-29:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 237, characters 35-46:
- 237 | let rec loop_id intail s = match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 239, characters 8-19:
- 239 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 242, characters 8-19:
- 242 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 253, characters 17-33:
- 253 | loop_id false (Stream.of_string str)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1149, characters 32-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1149, characters 51-65:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1150, characters 40-48:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1152, characters 23-31:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1156, characters 23-31:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1158, characters 53-67:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1173, characters 27-35:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1174, characters 22-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1178, characters 17-31:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1179, characters 26-38:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 295, characters 39-50:
- 295 | if n>0 then nstore (n-1) (store len (Stream.next cs)) cs else len
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1200, characters 25-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1201, characters 22-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1202, characters 43-57:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1205, characters 49-63:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1208, characters 34-46:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1219, characters 26-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1220, characters 31-45:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1223, characters 50-58:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1225, characters 4-18:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1238, characters 29-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1239, characters 22-36:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1241, characters 18-26:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1242, characters 15-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1244, characters 41-55:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1246, characters 23-35:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 307, characters 37-48:
- 307 | let rec ident_tail loc len s = match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1256, characters 25-39:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1258, characters 33-41:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 309, characters 6-17:
- 309 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1268, characters 34-42:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1269, characters 43-57:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1273, characters 23-31:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1278, characters 34-42:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1279, characters 40-54:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1283, characters 16-30:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1284, characters 25-37:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1289, characters 23-31:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1290, characters 44-58:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1296, characters 34-42:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1297, characters 40-54:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1300, characters 44-58:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "tactics/genredexpr.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "gramlib/grammar.ml", line 1307, characters 23-31:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1308, characters 44-58:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1313, characters 34-42:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1314, characters 43-57:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1318, characters 23-31:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/g_prim.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "gramlib/grammar.ml", line 1324, characters 34-42:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1325, characters 40-54:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1329, characters 16-30:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1332, characters 22-36:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1333, characters 31-43:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 317, characters 62-74:
- 317 | let u = String.concat "" (List.map (String.make 1) (Stream.npeek n s)) in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1340, characters 23-31:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1346, characters 34-42:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1347, characters 40-54:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1350, characters 44-58:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 331, characters 48-59:
- 331 | let rec string loc ~comm_level bp len s = match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1356, characters 20-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1363, characters 23-31:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 333, characters 6-17:
- 333 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 335, characters 14-25:
- 335 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1368, characters 23-31:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1369, characters 41-55:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 336, characters 22-33:
- 336 | Some '"' -> Stream.junk s; true
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1374, characters 23-31:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1375, characters 18-30:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 341, characters 6-17:
- 341 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 342, characters 22-33:
- 342 | (fun s -> match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 344, characters 8-19:
- 344 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC tactics/redops.mli
- OCAMLC tactics/redexpr.mli
- File "gramlib/grammar.ml", line 1377, characters 18-30:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1379, characters 33-41:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1381, characters 23-31:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 352, characters 6-17:
- 352 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC tactics/ppred.mli
- File "gramlib/grammar.ml", line 1382, characters 30-38:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 353, characters 22-33:
- 353 | (fun s -> match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1383, characters 30-38:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 355, characters 12-23:
- 355 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1390, characters 10-21:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1391, characters 35-46:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1392, characters 20-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1399, characters 32-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1399, characters 51-65:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 366, characters 4-15:
- 366 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 367, characters 13-25:
- 367 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1421, characters 33-41:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1422, characters 26-38:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1424, characters 26-38:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 377, characters 6-17:
- 377 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1431, characters 34-42:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1432, characters 27-39:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 380, characters 14-26:
- 380 | let _ = Stream.empty s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1433, characters 50-64:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1435, characters 31-43:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 381, characters 15-27:
- 381 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1442, characters 37-45:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1442, characters 56-70:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1457, characters 30-38:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1459, characters 16-30:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1461, characters 27-39:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC vernac/assumptions.mli
- File "gramlib/grammar.ml", line 1469, characters 33-41:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1470, characters 37-51:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1471, characters 43-51:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1471, characters 62-76:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1474, characters 9-21:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC interp/dumpglob.mli
- File "gramlib/grammar.ml", line 1519, characters 25-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1520, characters 25-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 434, characters 12-24:
- 434 | let bp2 = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC interp/constrextern.mli
- File "gramlib/grammar.ml", line 1536, characters 18-30:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1539, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC parsing/notation_gram.ml
- File "gramlib/grammar.ml", line 1543, characters 43-55:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1543, characters 60-72:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1548, characters 6-20:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1552, characters 6-18:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 435, characters 8-19:
- 435 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1551, characters 22-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/g_constr.mlg", line 46, characters 19-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1557, characters 16-28:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 437, characters 6-17:
- 437 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT -a -o lib/lib.cmxa
- File "gramlib/grammar.ml", line 1557, characters 33-45:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 440, characters 16-27:
- 440 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 442, characters 14-25:
- 442 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 445, characters 13-27:
- 445 | with Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 445, characters 38-50:
- 445 | with Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 449, characters 6-17:
- 449 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 451, characters 14-25:
- 451 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1594, characters 31-39:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 452, characters 22-33:
- 452 | Some ')' -> Stream.junk s; push_string "*)"; loc
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1594, characters 50-64:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1602, characters 55-63:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 454, characters 11-25:
- 454 | with Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1606, characters 31-39:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 454, characters 36-48:
- 454 | with Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1606, characters 50-64:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 457, characters 6-17:
- 457 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 462, characters 20-32:
- 462 | match try Some (Stream.empty s) with Stream.Failure -> None with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC interp/constrintern.mli
- OCAMLC pretyping/unification.mli
- File "parsing/cLexer.ml", line 462, characters 41-55:
- 462 | match try Some (Stream.empty s) with Stream.Failure -> None with
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 464, characters 15-27:
- 464 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 468, characters 16-27:
- 468 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 470, characters 14-25:
- 470 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 471, characters 23-35:
- 471 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 474, characters 14-25:
- 474 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 476, characters 23-37:
- 476 | | _ -> raise Stream.Failure
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 483, characters 54-66:
- 483 | try progress_from_byte loc last nj tt cs (List.nth (Stream.npeek (nj+1) cs) nj)
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1688, characters 35-43:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1688, characters 54-68:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1689, characters 42-50:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 1689, characters 61-75:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 502, characters 36-48:
- 502 | match Util.List.skipn (nj+1) (Stream.npeek (nj+n) cs) with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 516, characters 8-19:
- 516 | match Stream.peek cs with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 527, characters 16-30:
- 527 | | exception Stream.Failure -> n, List.make n b, List.make n e
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 530, characters 24-38:
- 530 | if len = 0 then raise Stream.Failure
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 539, characters 17-31:
- 539 | | _ -> raise Stream.Failure
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 544, characters 14-25:
- 544 | let c = Stream.next s in
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 547, characters 10-24:
- 547 | Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 547, characters 35-47:
- 547 | Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 549, characters 40-52:
- 549 | get_buff len, set_loc_pos loc bp (Stream.count s)
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 557, characters 43-54:
- 557 | let commit1 c = Buffer.add_char b c; Stream.junk s in
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 560, characters 14-26:
- 560 | match Stream.npeek lenmarker s with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 569, characters 48-60:
- 569 | let loc = bump_loc_line_last loc (Stream.count s) in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 573, characters 63-77:
- 573 | if not dot_gobbling && blank_or_eof s then raise Stream.Failure;
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 578, characters 22-36:
- 578 | | [] -> raise Stream.Failure
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 581, characters 45-57:
- 581 | Buffer.contents b, set_loc_pos loc bp (Stream.count s)
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 588, characters 15-27:
- 588 | let l' = Stream.npeek (i + 1) s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 598, characters 6-17:
- 598 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 607, characters 15-27:
- 607 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 615, characters 10-21:
- 615 | match Stream.peek cs with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 616, characters 30-41:
- 616 | | Some c' when c == c' -> Stream.junk cs; aux (n+1) cs
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 617, characters 57-69:
- 617 | | _ -> BULLET (String.make n c), set_loc_pos loc bp (Stream.count cs)
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 624, characters 11-23:
- 624 | let ep = Stream.count cs in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/notation_gram.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "parsing/cLexer.ml", line 645, characters 50-61:
- 645 | let parse_after_dot ~diff_mode loc c bp s = match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 647, characters 6-17:
- 647 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 650, characters 10-24:
- 650 | Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC toplevel/coqcargs.mli
- File "parsing/cLexer.ml", line 650, characters 35-47:
- 650 | Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC parsing/notgram_ops.mli
- File "parsing/cLexer.ml", line 655, characters 17-29:
- 655 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 664, characters 21-33:
- 664 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC vernac/egramcoq.mli
- File "parsing/cLexer.ml", line 672, characters 8-19:
- 672 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 684, characters 11-23:
- 684 | let bp = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 685, characters 8-19:
- 685 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 687, characters 6-17:
- 687 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 688, characters 15-27:
- 688 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 691, characters 6-17:
- 691 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 694, characters 6-17:
- 694 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 697, characters 10-24:
- 697 | Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 697, characters 35-47:
- 697 | Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 705, characters 21-33:
- 705 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 713, characters 6-17:
- 713 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 720, characters 6-17:
- 720 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 721, characters 15-27:
- 721 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 725, characters 6-17:
- 725 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 728, characters 10-24:
- 728 | Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 728, characters 35-47:
- 728 | Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 734, characters 17-29:
- 734 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 738, characters 15-27:
- 738 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 742, characters 6-17:
- 742 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC proofs/clenv.mli
- File "parsing/cLexer.ml", line 745, characters 10-24:
- 745 | Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 745, characters 35-47:
- 745 | Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 747, characters 15-27:
- 747 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 751, characters 6-17:
- 751 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 753, characters 14-25:
- 753 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 755, characters 12-23:
- 755 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 756, characters 21-33:
- 756 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 759, characters 12-23:
- 759 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 764, characters 11-25:
- 764 | with Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 764, characters 36-48:
- 764 | with Stream.Failure -> raise (Stream.Error "")
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 767, characters 6-17:
- 767 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 768, characters 15-27:
- 768 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 782, characters 23-35:
- 782 | let ep = Stream.count s in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 785, characters 53-64:
- 785 | let t = process_chars ~diff_mode loc bp (Stream.next s) s in
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/cLexer.ml", line 844, characters 4-15:
- 844 | Stream.from
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC tactics/tactics.mli
- OCAMLC tactics/hints.mli
- OCAMLOPT -a -o ide/coqide/protocol/ideprotocol.cmxa
- OCAMLOPT -a -o ide/coqide/ide_common.cmxa
- OCAMLC tactics/auto.mli
- OCAMLC tactics/eauto.mli
- OCAMLC tactics/class_tactics.mli
- OCAMLC vernac/vernacexpr.ml
- OCAMLOPT kernel/transparentState.ml
- File "parsing/g_constr.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT kernel/univ.ml
- OCAMLOPT library/libnames.ml
- OCAMLOPT engine/evar_kinds.ml
- OCAMLOPT pretyping/locus.ml
- OCAMLC tactics/equality.mli
- OCAMLOPT kernel/conv_oracle.ml
- OCAMLOPT pretyping/locusops.ml
- OCAMLC tactics/autorewrite.mli
- File "vernac/vernacexpr.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC vernac/pvernac.mli
- OCAMLC vernac/vernacprop.mli
- OCAMLC vernac/locality.mli
- OCAMLC vernac/egramml.mli
- OCAMLC vernac/ppvernac.mli
- OCAMLC vernac/proof_using.mli
- OCAMLC vernac/metasyntax.mli
- OCAMLC vernac/comHints.mli
- OCAMLC vernac/indschemes.mli
- OCAMLC vernac/search.mli
- OCAMLC vernac/comSearch.mli
- OCAMLC vernac/comInductive.mli
- OCAMLC vernac/record.mli
- OCAMLC vernac/mltop.mli
- OCAMLC vernac/topfmt.mli
- OCAMLC vernac/comArguments.mli
- OCAMLC vernac/declare.mli
- OCAMLC vernac/comAssumption.mli
- OCAMLC vernac/g_vernac.ml
- OCAMLC toplevel/g_toplevel.ml
- File "toplevel/g_toplevel.mlg", line 34, characters 19-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "toplevel/g_toplevel.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC vernac/vernacextend.mli
- OCAMLC vernac/recLemmas.mli
- OCAMLC vernac/comCoercion.mli
- OCAMLC vernac/comDefinition.mli
- OCAMLC vernac/classes.mli
- OCAMLC vernac/comFixpoint.mli
- OCAMLC vernac/comProgramFixpoint.mli
- OCAMLC vernac/vernacstate.mli
- OCAMLC vernac/comTactic.mli
- OCAMLOPT ide/coqide/configwin.ml
- OCAMLC vernac/vernacinterp.mli
- OCAMLC vernac/vernacentries.mli
- OCAMLC stm/vernac_classifier.mli
- OCAMLC stm/stm.mli
- OCAMLC stm/proofBlockDelimiter.mli
- OCAMLC toplevel/vernac.mli
- OCAMLC toplevel/coqargs.mli
- cd kernel/byterun/ && \
- "/home/opam/.opam/4.14/bin/ocamlfind" ocamlmklib -oc coqrun coq_fix_code.o coq_float64.o coq_memory.o coq_values.o coq_interp.o
- OCAMLOPT -a -o gramlib/.pack/gramlib.cmxa
- OCAMLOPT ide/coqide/preferences.ml
- OCAMLC toplevel/coqinit.mli
- OCAMLC toplevel/coqloop.mli
- OCAMLC toplevel/ccompile.mli
- OCAMLC toplevel/coqtop.mli
- OCAMLOPT kernel/uGraph.ml
- OCAMLOPT kernel/sorts.ml
- OCAMLOPT kernel/context.ml
- OCAMLOPT kernel/vmvalues.ml
- OCAMLOPT kernel/constr.ml
- OCAMLOPT engine/nameops.ml
- File "vernac/g_vernac.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC vernac/g_proofs.ml
- OCAMLOPT ide/coqide/ideutils.ml
- OCAMLOPT ide/coqide/wg_Segment.ml
- OCAMLOPT ide/coqide/coqide_ui.ml
- File "vernac/g_proofs.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT kernel/vars.ml
- OCAMLOPT kernel/cPrimitives.ml
- OCAMLOPT kernel/nativevalues.ml
- OCAMLOPT engine/univSubst.ml
- OCAMLOPT pretyping/pattern.ml
- OCAMLOPT ide/coqide/unicode_bindings.ml
- OCAMLOPT ide/coqide/coq.ml
- OCAMLOPT ide/coqide/wg_MessageView.ml
- OCAMLOPT ide/coqide/wg_Find.ml
- OCAMLOPT ide/coqide/fileOps.ml
- OCAMLOPT kernel/retroknowledge.ml
- OCAMLOPT kernel/vmbytecodes.ml
- OCAMLOPT engine/univProblem.ml
- OCAMLOPT kernel/term.ml
- OCAMLOPT kernel/mod_subst.ml
- OCAMLOPT ide/coqide/wg_RoutedMessageViews.ml
- OCAMLOPT kernel/vmemitcodes.ml
- OCAMLOPT kernel/opaqueproof.ml
- OCAMLOPT library/globnames.ml
- OCAMLOPT ide/coqide/wg_ProofView.ml
- OCAMLOPT ide/coqide/wg_Completion.ml
- OCAMLOPT ide/coqide/wg_Command.ml
- OCAMLOPT library/libobject.ml
- OCAMLOPT library/nametab.ml
- OCAMLOPT kernel/declarations.ml
- OCAMLOPT kernel/entries.ml
- OCAMLOPT kernel/cooking.ml
- OCAMLOPT ide/coqide/wg_ScriptView.ml
- OCAMLOPT engine/univNames.ml
- OCAMLOPT kernel/declareops.ml
- OCAMLOPT kernel/environ.ml
- OCAMLOPT ide/coqide/coqOps.ml
- OCAMLOPT kernel/primred.ml
- OCAMLOPT kernel/section.ml
- OCAMLOPT kernel/cClosure.ml
- OCAMLOPT ide/coqide/session.ml
- OCAMLOPT kernel/relevanceops.ml
- OCAMLOPT kernel/reduction.ml
- OCAMLOPT ide/coqide/microPG.ml
- OCAMLOPT kernel/vmlambda.ml
- OCAMLOPT kernel/nativelambda.ml
- OCAMLOPT kernel/type_errors.ml
- OCAMLOPT pretyping/heads.ml
- OCAMLOPT kernel/inductive.ml
- OCAMLOPT kernel/inferCumulativity.ml
- OCAMLOPT kernel/vmbytegen.ml
- OCAMLOPT kernel/nativecode.ml
- OCAMLOPT ide/coqide/coqide.ml
- OCAMLOPT kernel/vmsymtable.ml
- OCAMLOPT kernel/modops.ml
- OCAMLOPT kernel/vm.ml
- OCAMLOPT kernel/vconv.ml
- OCAMLOPT kernel/subtyping.ml
- OCAMLOPT kernel/nativelib.ml
- OCAMLOPT kernel/nativelibrary.ml
- OCAMLOPT -a -o ide/coqide/ide.cmxa
- OCAMLOPT -o bin/coqide
- OCAMLOPT kernel/nativeconv.ml
- OCAMLOPT kernel/typeops.ml
- OCAMLOPT kernel/indTyping.ml
- OCAMLOPT kernel/term_typing.ml
- OCAMLOPT kernel/mod_typing.ml
- OCAMLOPT kernel/indtypes.ml
- OCAMLOPT kernel/safe_typing.ml
- OCAMLOPT -a -o kernel/kernel.cmxa
- OCAMLOPT library/global.ml
- OCAMLOPT library/lib.ml
- OCAMLOPT engine/univGen.ml
- OCAMLOPT tactics/declareUctx.ml
- OCAMLOPT stm/asyncTaskQueue.ml
- File "stm/asyncTaskQueue.ml", line 268, characters 4-30:
- 268 | cleaner : Thread.t option;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field cleaner is never read.
- (However, this field is used to build or mutate values.)
- OCAMLOPT library/goptions.ml
- OCAMLOPT library/coqlib.ml
- OCAMLOPT pretyping/keys.ml
- OCAMLOPT interp/decls.ml
- OCAMLOPT tactics/declareScheme.ml
- OCAMLOPT -a -o library/library.cmxa
- OCAMLOPT engine/univMinim.ml
- OCAMLOPT proofs/goal_select.ml
- OCAMLOPT vernac/attributes.ml
- OCAMLOPT engine/uState.ml
- OCAMLOPT engine/univops.ml
- OCAMLOPT engine/evd.ml
- OCAMLOPT engine/eConstr.ml
- OCAMLOPT engine/proofview_monad.ml
- OCAMLOPT engine/namegen.ml
- OCAMLOPT pretyping/typeclasses_errors.ml
- OCAMLOPT engine/termops.ml
- OCAMLOPT pretyping/glob_term.ml
- OCAMLOPT proofs/tactypes.ml
- OCAMLOPT proofs/miscprint.ml
- OCAMLOPT interp/constrexpr.ml
- OCAMLOPT interp/notation_term.ml
- OCAMLOPT parsing/extend.ml
- OCAMLOPT engine/evarutil.ml
- OCAMLOPT pretyping/typeclasses.ml
- OCAMLOPT tactics/term_dnet.ml
- File "engine/evarutil.ml", line 131, characters 10-18:
- 131 | let m = E.create () in
- ^^^^^^^^
- Alert old_ephemeron_api: E.create
- This function won't be available in 5.0
- File "engine/evarutil.ml", line 132, characters 19-29:
- 132 | fun x y -> match E.get_key1 m, E.get_key2 m with
- ^^^^^^^^^^
- Alert old_ephemeron_api: E.get_key1
- This function won't be available in 5.0
- File "engine/evarutil.ml", line 132, characters 33-43:
- 132 | fun x y -> match E.get_key1 m, E.get_key2 m with
- ^^^^^^^^^^
- Alert old_ephemeron_api: E.get_key2
- This function won't be available in 5.0
- OCAMLOPT interp/dumpglob.ml
- File "engine/evarutil.ml", line 133, characters 60-70:
- 133 | | Some x', Some y' when x == x' && y == y' -> Option.get (E.get_data m)
- ^^^^^^^^^^
- Alert old_ephemeron_api: E.get_data
- This function won't be available in 5.0
- File "engine/evarutil.ml", line 134, characters 26-36:
- 134 | | _ -> let r = f x y in E.set_key1 m x; E.set_key2 m y; E.set_data m r; r
- ^^^^^^^^^^
- Alert old_ephemeron_api: E.set_key1
- This function won't be available in 5.0
- File "engine/evarutil.ml", line 134, characters 42-52:
- 134 | | _ -> let r = f x y in E.set_key1 m x; E.set_key2 m y; E.set_data m r; r
- ^^^^^^^^^^
- Alert old_ephemeron_api: E.set_key2
- This function won't be available in 5.0
- File "engine/evarutil.ml", line 134, characters 58-68:
- 134 | | _ -> let r = f x y in E.set_key1 m x; E.set_key2 m y; E.set_data m r; r
- ^^^^^^^^^^
- Alert old_ephemeron_api: E.set_data
- This function won't be available in 5.0
- OCAMLOPT engine/proofview.ml
- OCAMLOPT pretyping/reductionops.ml
- OCAMLOPT pretyping/program.ml
- OCAMLOPT engine/ftactic.ml
- OCAMLOPT tactics/ind_tables.ml
- OCAMLOPT -a -o engine/engine.cmxa
- OCAMLOPT pretyping/geninterp.ml
- OCAMLOPT pretyping/ltac_pretype.ml
- OCAMLOPT interp/stdarg.ml
- OCAMLOPT printing/genprint.ml
- OCAMLOPT pretyping/pretype_errors.ml
- OCAMLOPT pretyping/inductiveops.ml
- OCAMLOPT pretyping/cbv.ml
- OCAMLOPT pretyping/recordops.ml
- OCAMLOPT tactics/cbn.ml
- OCAMLOPT printing/pputils.ml
- OCAMLOPT parsing/pcoq.ml
- File "parsing/pcoq.ml", line 22, characters 21-35:
- 22 | let err () = raise Stream.Failure
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/pcoq.ml", line 24, characters 61-69:
- 24 | type t = Gramlib.Plexing.location_function -> int -> Tok.t Stream.t -> int option
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/pcoq.ml", line 33, characters 12-24:
- 33 | let n = Stream.count strm in
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "parsing/pcoq.ml", line 202, characters 13-29:
- 202 | let strm = Stream.of_string x in
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT pretyping/find_subterm.ml
- OCAMLOPT pretyping/evardefine.ml
- OCAMLOPT proofs/goal.ml
- OCAMLOPT vernac/retrieveObl.ml
- OCAMLOPT vernac/canonical.ml
- OCAMLOPT parsing/g_prim.ml
- OCAMLOPT pretyping/arguments_renaming.ml
- OCAMLOPT pretyping/nativenorm.ml
- OCAMLOPT pretyping/glob_ops.ml
- OCAMLOPT pretyping/retyping.ml
- OCAMLOPT interp/impargs.ml
- OCAMLOPT pretyping/vnorm.ml
- OCAMLOPT pretyping/evarsolve.ml
- OCAMLOPT pretyping/indrec.ml
- OCAMLOPT pretyping/globEnv.ml
- OCAMLOPT pretyping/patternops.ml
- OCAMLOPT tactics/eqschemes.ml
- OCAMLOPT tactics/elimschemes.ml
- OCAMLOPT pretyping/constr_matching.ml
- OCAMLOPT tactics/btermdn.ml
- OCAMLOPT pretyping/evarconv.ml
- OCAMLOPT pretyping/detyping.ml
- OCAMLOPT tactics/hipattern.ml
- OCAMLOPT interp/genintern.ml
- OCAMLOPT interp/notation_ops.ml
- OCAMLOPT tactics/genredexpr.ml
- OCAMLOPT tactics/redops.ml
- OCAMLOPT tactics/ppred.ml
- OCAMLOPT pretyping/typing.ml
- OCAMLOPT pretyping/tacred.ml
- OCAMLOPT proofs/refine.ml
- OCAMLOPT interp/reserve.ml
- OCAMLOPT pretyping/coercionops.ml
- OCAMLOPT proofs/logic.ml
- OCAMLOPT tactics/redexpr.ml
- OCAMLOPT proofs/tacmach.ml
- OCAMLOPT pretyping/coercion.ml
- OCAMLOPT interp/notation.ml
- OCAMLOPT tactics/tacticals.ml
- OCAMLOPT pretyping/cases.ml
- OCAMLOPT interp/syntax_def.ml
- OCAMLOPT parsing/notation_gram.ml
- OCAMLOPT parsing/notgram_ops.ml
- OCAMLOPT parsing/ppextend.ml
- OCAMLOPT vernac/egramcoq.ml
- OCAMLOPT interp/smartlocate.ml
- OCAMLOPT interp/constrexpr_ops.ml
- File "interp/constrexpr_ops.ml", line 569, characters 24-36:
- 569 | Loc.raise ?loc (Stream.Error "pattern with quote not allowed after fix")
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT pretyping/pretyping.ml
- OCAMLOPT interp/implicit_quantifiers.ml
- OCAMLOPT parsing/g_constr.ml
- File "parsing/g_constr.mlg", line 46, characters 19-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT pretyping/unification.ml
- OCAMLOPT interp/constrintern.ml
- OCAMLOPT proofs/evar_refiner.ml
- OCAMLOPT proofs/proof.ml
- File "interp/constrintern.ml", line 580, characters 22-34:
- 580 | Loc.raise ?loc (Stream.Error "pattern with quote not allowed here")
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT -a -o parsing/parsing.cmxa
- OCAMLOPT proofs/proof_bullet.ml
- OCAMLOPT -a -o pretyping/pretyping.cmxa
- OCAMLOPT proofs/clenv.ml
- OCAMLOPT interp/modintern.ml
- OCAMLOPT interp/constrextern.ml
- OCAMLOPT vernac/declareUniv.ml
- File "interp/constrextern.ml", line 198, characters 30-35:
- 198 | let toggle_notation_printing ?scope ~notation ~activate =
- ^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- OCAMLOPT vernac/declaremods.ml
- OCAMLOPT -a -o proofs/proofs.cmxa
- OCAMLOPT vernac/library.ml
- OCAMLOPT -a -o interp/interp.cmxa
- OCAMLOPT printing/ppconstr.ml
- OCAMLOPT printing/proof_diffs.ml
- File "printing/proof_diffs.ml", line 94, characters 12-23:
- 94 | let e = Stream.next str in
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "printing/proof_diffs.ml", line 102, characters 15-31:
- 102 | let istr = Stream.of_string s in
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "printing/proof_diffs.ml", line 218, characters 25-38:
- 218 | type 'a reified_goal = { name: string; ty: 'a; hyps: 'a hyp list; env : Environ.env; sigma: Evd.evar_map }
- ^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field name is never read.
- (However, this field is used to build or mutate values.)
- File "printing/proof_diffs.ml", line 218, characters 85-104:
- 218 | type 'a reified_goal = { name: string; ty: 'a; hyps: 'a hyp list; env : Environ.env; sigma: Evd.evar_map }
- ^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field sigma is never read.
- (However, this field is used to build or mutate values.)
- OCAMLOPT printing/printer.ml
- OCAMLOPT -a -o printing/printing.cmxa
- OCAMLOPT tactics/tactics.ml
- OCAMLOPT tactics/hints.ml
- OCAMLOPT vernac/himsg.ml
- OCAMLOPT vernac/assumptions.ml
- File "vernac/himsg.ml", line 1394, characters 4-16:
- 1394 | | Stream.Error txt -> hov 0 (str "Syntax error: " ++ str txt ++ str ".")
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT vernac/vernacexpr.ml
- OCAMLOPT vernac/pvernac.ml
- OCAMLOPT vernac/vernacprop.ml
- OCAMLOPT vernac/locality.ml
- OCAMLOPT vernac/mltop.ml
- OCAMLOPT vernac/comArguments.ml
- OCAMLOPT vernac/g_vernac.ml
- OCAMLOPT vernac/egramml.ml
- OCAMLOPT toplevel/g_toplevel.ml
- OCAMLOPT vernac/loadpath.ml
- File "toplevel/g_toplevel.mlg", line 34, characters 19-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT vernac/ppvernac.ml
- OCAMLOPT vernac/metasyntax.ml
- OCAMLOPT vernac/topfmt.ml
- OCAMLOPT toplevel/coqcargs.ml
- OCAMLOPT tactics/abstract.ml
- OCAMLOPT tactics/elim.ml
- OCAMLOPT tactics/equality.ml
- OCAMLOPT tactics/contradiction.ml
- OCAMLOPT tactics/auto.ml
- File "tactics/elim.ml", line 25, characters 2-19:
- 25 | branchnum : int; (* the branch number *)
- ^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field branchnum is never read.
- (However, this field is used to build or mutate values.)
- OCAMLOPT tactics/eauto.ml
- OCAMLOPT vernac/g_proofs.ml
- OCAMLOPT vernac/proof_using.ml
- File "vernac/proof_using.ml", line 171, characters 94-110:
- 171 | let using_from_string us = Pcoq.Entry.parse G_vernac.section_subset_expr (Pcoq.Parsable.make (Stream.of_string us))
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT vernac/declare.ml
- OCAMLOPT tactics/class_tactics.ml
- OCAMLOPT tactics/inv.ml
- OCAMLOPT tactics/eqdecide.ml
- OCAMLOPT tactics/autorewrite.ml
- File "tactics/class_tactics.ml", line 512, characters 6-29:
- 512 | last_tac : Pp.t Lazy.t;
- ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field last_tac is never read.
- (However, this field is used to build or mutate values.)
- OCAMLOPT -a -o tactics/tactics.cmxa
- OCAMLOPT vernac/vernacextend.ml
- OCAMLOPT vernac/comHints.ml
- OCAMLOPT vernac/recLemmas.ml
- OCAMLOPT vernac/comCoercion.ml
- OCAMLOPT vernac/auto_ind_decl.ml
- OCAMLOPT vernac/comDefinition.ml
- OCAMLOPT vernac/classes.ml
- OCAMLOPT vernac/comPrimitive.ml
- OCAMLOPT vernac/comFixpoint.ml
- OCAMLOPT vernac/vernacstate.ml
- File "vernac/comCoercion.ml", line 265, characters 28-41:
- 265 | let declare_coercion coef ?(local = false) ~isid ~src:cls ~target:clt ~params:ps =
- ^^^^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- OCAMLOPT vernac/printmod.ml
- OCAMLOPT vernac/comProgramFixpoint.ml
- OCAMLOPT vernac/comAssumption.ml
- OCAMLOPT vernac/indschemes.ml
- OCAMLOPT vernac/declareInd.ml
- OCAMLOPT vernac/search.ml
- OCAMLOPT vernac/comInductive.ml
- OCAMLOPT vernac/prettyp.ml
- File "vernac/comInductive.ml", line 365, characters 20-32:
- 365 | Loc.raise ?loc (Stream.Error "pattern with quote not allowed here")
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT vernac/comSearch.ml
- OCAMLOPT vernac/record.ml
- File "vernac/record.ml", line 119, characters 20-32:
- 119 | Loc.raise ?loc (Stream.Error "pattern with quote not allowed in record parameters")
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT vernac/vernacentries.ml
- File "vernac/vernacentries.ml", line 58, characters 4-38:
- 58 | deprecated : Deprecation.t option;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field deprecated is never read.
- (However, this field is used to build or mutate values.)
- OCAMLOPT vernac/comTactic.ml
- OCAMLOPT vernac/vernacinterp.ml
- File "vernac/vernacinterp.ml", line 187, characters 66-83:
- 187 | Pcoq.Parsable.make ~loc:(Loc.initial (Loc.InFile longfname)) (Stream.of_channel in_chan) in
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT stm/partac.ml
- OCAMLOPT -a -o vernac/vernac.cmxa
- OCAMLOPT stm/vernac_classifier.ml
- OCAMLOPT stm/stm.ml
- File "stm/stm.ml", line 1736, characters 24-27:
- 1736 | let build_proof ~doc ?loc ~drop_pt ~exn_info ~block_start ~block_stop ~name:pname =
- ^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- File "stm/stm.ml", line 210, characters 2-49:
- 210 | mutable proof_mode : Pvernac.proof_mode option;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field proof_mode is never mutated.
- OCAMLOPT stm/proofBlockDelimiter.ml
- OCAMLOPT stm/vio_checking.ml
- OCAMLOPT toplevel/vernac.ml
- File "toplevel/vernac.ml", line 92, characters 7-24:
- 92 | (Stream.of_channel in_chan) in
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT toplevel/coqinit.ml
- OCAMLOPT -a -o stm/stm.cmxa
- OCAMLOPT toplevel/coqargs.ml
- OCAMLOPT toplevel/coqloop.ml
- OCAMLOPT toplevel/ccompile.ml
- File "toplevel/coqloop.ml", line 79, characters 37-48:
- 79 | ibuf.tokens <- Pcoq.Parsable.make (Stream.from (prompt_char doc ic ibuf));
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "toplevel/coqloop.ml", line 233, characters 33-47:
- 233 | tokens = Pcoq.Parsable.make (Stream.of_list []);
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "toplevel/coqloop.ml", line 245, characters 29-40:
- 245 | let rec dot tok st = match Stream.next st with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLOPT toplevel/coqtop.ml
- OCAMLOPT toplevel/workerLoop.ml
- OCAMLOPT toplevel/coqc.ml
- OCAMLOPT -a -o toplevel/toplevel.cmxa
- COQMKTOP -o bin/coqidetop.opt
- File "ide/coqide/idetop.ml", line 94, characters 31-47:
- 94 | let pa = Pcoq.Parsable.make (Stream.of_string s) in
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "ide/coqide/idetop.ml", line 130, characters 31-47:
- 130 | let pa = Pcoq.Parsable.make (Stream.of_string s) in
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "ide/coqide/idetop.ml", line 136, characters 31-47:
- 136 | let pa = Pcoq.Parsable.make (Stream.of_string phrase) in
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "ide/coqide/idetop.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- rm -f bin/coqidetop && cp bin/coqidetop.opt bin/coqidetop
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/coqide.8.13.2'
-> compiled coqide.8.13.2
-> removed coqide.8.13.2
Processing 4/4: [coqide: make install-ide-bin]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "COQ_USE_DUNE=" "install-ide-bin" "install-ide-files" "install-ide-info" "install-ide-devfiles" (CWD=/home/opam/.opam/4.14/.opam-switch/build/coqide.8.13.2)
- rm -f
- make --warn-undefined-variable --no-builtin-rules -f Makefile.build install-ide-bin install-ide-files install-ide-info install-ide-devfiles
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/coqide.8.13.2'
- make[1]: Circular coqpp/coqpp_parse.cmi <- coqpp/coqpp_parse.cmo dependency dropped.
- install -d "/home/opam/.opam/4.14/bin"
- install bin/coqide "/home/opam/.opam/4.14/bin"
- install -d "/home/opam/.opam/4.14/share/coq"
- install -m 644 ide/coqide/coq.png ide/coqide/*.lang ide/coqide/coq_style.xml ide/coqide/default.bindings "/home/opam/.opam/4.14/share/coq"
- install -d "/home/opam/.opam/4.14/lib/coq/config"
- install -d "/home/opam/.opam/4.14/doc"
- install -m 644 ide/coqide/FAQ "/home/opam/.opam/4.14/doc"/FAQ-CoqIde
- install -d "/home/opam/.opam/4.14/lib/coq"
- ./install.sh "/home/opam/.opam/4.14/lib/coq" \
- ide/coqide/minilib.cmi ide/coqide/configwin_messages.cmi ide/coqide/configwin_ihm.cmi ide/coqide/configwin.cmi ide/coqide/tags.cmi ide/coqide/wg_Notebook.cmi ide/coqide/config_lexer.cmi ide/coqide/utf8_convert.cmi ide/coqide/preferences.cmi ide/coqide/ideutils.cmi ide/coqide/unicode_bindings.cmi ide/coqide/coq.cmi ide/coqide/coq_lex.cmi ide/coqide/sentence.cmi ide/coqide/gtk_parsing.cmi ide/coqide/wg_Segment.cmi ide/coqide/wg_ProofView.cmi ide/coqide/wg_MessageView.cmi ide/coqide/wg_RoutedMessageViews.cmi ide/coqide/wg_Detachable.cmi ide/coqide/wg_Find.cmi ide/coqide/wg_Completion.cmi ide/coqide/wg_ScriptView.cmi ide/coqide/coq_commands.cmi ide/coqide/fileOps.cmi ide/coqide/document.cmi ide/coqide/coqOps.cmi ide/coqide/wg_Command.cmi ide/coqide/session.cmi ide/coqide/coqide_ui.cmi ide/coqide/microPG.cmi ide/coqide/coqide.cmi
- ./install.sh "/home/opam/.opam/4.14/lib/coq" ide/coqide/ide.cmxa ide/coqide/ide.a
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/coqide.8.13.2'
- make: 'install-ide-files' is up to date.
- make: 'install-ide-info' is up to date.
- make: 'install-ide-devfiles' is up to date.
-> installed coqide.8.13.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:56.49 ---> saved as "bd266812e3c4bc38c1cf283a104b8e660130151755b7b2e9a3f6b55ac39f2983"
Job succeeded
2026-04-11 03:56.55: Job succeeded