(not at the head of any monitored branch or PR)
2025-08-12 13:23.47: New job: test coqide.8.13.1 with dune-configurator.3.20.0~alpha4, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28333/head (e2e946ed909ce4d2c3e1e35bbaff78b566760128)
                              on debian-12-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/28333/head" && git reset --hard e2e946ed
git fetch origin master
git merge --no-edit 5b99878077ddf3134c09e188d937954bd33cfa58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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-configurator.3.20.0~alpha4 3.20.0~alpha4
RUN opam reinstall dune-configurator.3.20.0~alpha4; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune-configurator.3.20.0~alpha4' && 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.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'coqide.8.13.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test coqide.8.13.1) || true
RUN opam reinstall --with-test --verbose coqide.8.13.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'coqide.8.13.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2025-08-12 13:23.47: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63-dune-configurator.3.20.0~alpha4-coqide.8.13.1-e2e946ed909ce4d2c3e1e35bbaff78b566760128"
2025-08-12 13:23.47: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.3 /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-configurator.3.20.0~alpha4 3.20.0~alpha4"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune-configurator.3.20.0~alpha4;\
             \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-12\\\"\"; 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-configurator.3.20.0~alpha4' && 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.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; 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.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test coqide.8.13.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose coqide.8.13.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; 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.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-08-12 13:23.47: Waiting for resource in pool OCluster
2025-08-12 17:48.46: Waiting for worker…
2025-08-12 17:50.57: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 5b99878077 Merge pull request #28318 from ocamllibs/metaquot-0.6.0
Updating 5b99878077..e2e946ed90
Fast-forward
 .../chrome-trace/chrome-trace.3.20.0~alpha4/opam   | 41 ++++++++++++
 .../dune-action-plugin.3.20.0~alpha4/opam          | 54 ++++++++++++++++
 .../dune-build-info.3.20.0~alpha4/opam             | 47 ++++++++++++++
 .../dune-configurator.3.20.0~alpha4/opam           | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.20.0~alpha4/opam    | 44 +++++++++++++
 .../dune-private-libs.3.20.0~alpha4/opam           | 52 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha4/opam   | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.20.0~alpha4/opam      | 46 ++++++++++++++
 packages/dune-site/dune-site.3.20.0~alpha4/opam    | 39 ++++++++++++
 packages/dune/dune.3.20.0~alpha4/opam              | 74 ++++++++++++++++++++++
 packages/dyn/dyn.3.20.0~alpha4/opam                | 42 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha4/opam  | 45 +++++++++++++
 packages/ordering/ordering.3.20.0~alpha4/opam      | 40 ++++++++++++
 packages/stdune/stdune.3.20.0~alpha4/opam          | 46 ++++++++++++++
 packages/xdg/xdg.3.20.0~alpha4/opam                | 41 ++++++++++++
 15 files changed, 705 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.20.0~alpha4/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.20.0~alpha4/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.20.0~alpha4/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.20.0~alpha4/opam
 create mode 100644 packages/dune-glob/dune-glob.3.20.0~alpha4/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.20.0~alpha4/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha4/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.20.0~alpha4/opam
 create mode 100644 packages/dune-site/dune-site.3.20.0~alpha4/opam
 create mode 100644 packages/dune/dune.3.20.0~alpha4/opam
 create mode 100644 packages/dyn/dyn.3.20.0~alpha4/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha4/opam
 create mode 100644 packages/ordering/ordering.3.20.0~alpha4/opam
 create mode 100644 packages/stdune/stdune.3.20.0~alpha4/opam
 create mode 100644 packages/xdg/xdg.3.20.0~alpha4/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
2025-08-12 17:51.30 ---> using "7f53aba96fd697ea92c7c7d3f6be48133fa7f3f6538a693606c4cbcecd7917b8" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-08-12 17:51.30 ---> using "e4ec4ab2139d3c4a94c2b5470fe84288e4986c518ff4f4ae2d7c7e30aeac0731" 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 development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-08-12 17:51.30 ---> using "707659fd6393183061072104f3ce800d69d94ba93e0f39ab380130268d0ee81e" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=12
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2025-08-12 17:51.30 ---> using "3ec3067d40f73cc0ec4554b242939c55b0261973e091b54a647662451dc49933" 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/"))
2025-08-12 17:51.30 ---> using "376e3b49c8c08cb1ff0d45feb403c06e037d8df5800c560fdd8dd472f1e36b9a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-08-12 17:51.31 ---> using "e17457918b8520f1cc4845647d0b13a39117eff71b59a3c5352a8dccd3e736a1" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-08-12 17:51.31 ---> using "a9c87a01beb7b470788e26aa155c7a9aa4fe1265c42bbb2e46588f264ba6e313" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [21.8 kB]
- Ign:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6924 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [272 kB]
- Fetched 555 kB in 0s (1863 kB/s)
- Reading package lists...
2025-08-12 17:51.31 ---> using "4f267453f72fd37713de377ca2564e961df391a8a15b228dc4ea0efbc9db6963" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune-configurator.3.20.0~alpha4 3.20.0~alpha4"))
dune-configurator is now pinned to version 3.20.0~alpha4
2025-08-12 17:51.31 ---> using "52e23700be945c805c5e742ab3df27ebd439fcfafba52f271252e3b1b8c11809" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune-configurator.3.20.0~alpha4;\
                        \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-12\\\"\"; 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-configurator.3.20.0~alpha4' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune-configurator.3.20.0~alpha4 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 3 packages
  - install csexp             1.5.2                  [required by dune-configurator]
  - install dune              3.20.0~alpha4          [required by dune-configurator]
  - install dune-configurator 3.20.0~alpha4 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.20.0~alpha4, dune-configurator.3.20.0~alpha4  (cached)
-> installed dune.3.20.0~alpha4
-> installed csexp.1.5.2
-> installed dune-configurator.3.20.0~alpha4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 17:51.31 ---> using "837a20ada99a8ae17c0d31c9ad53cc8002e4210ea99052ee8e18a4fed6c4d643" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall coqide.8.13.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; 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.1' && 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.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 16 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.1 [required by coqide]
  - install coqide                  8.13.1
  - 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"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libargon2-1: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 ... 18747 files and directories currently installed.)
- Preparing to unpack .../00-libargon2-1_0~20171227-0.3+deb12u1_amd64.deb ...
- Unpacking libargon2-1:amd64 (0~20171227-0.3+deb12u1) ...
- Selecting previously unselected package dmsetup.
- Preparing to unpack .../01-dmsetup_2%3a1.02.185-2_amd64.deb ...
- Unpacking dmsetup (2:1.02.185-2) ...
- Selecting previously unselected package libdevmapper1.02.1:amd64.
- Preparing to unpack .../02-libdevmapper1.02.1_2%3a1.02.185-2_amd64.deb ...
- Unpacking libdevmapper1.02.1:amd64 (2:1.02.185-2) ...
- Selecting previously unselected package libjson-c5:amd64.
- Preparing to unpack .../03-libjson-c5_0.16-2_amd64.deb ...
- Unpacking libjson-c5:amd64 (0.16-2) ...
- Selecting previously unselected package libcryptsetup12:amd64.
- Preparing to unpack .../04-libcryptsetup12_2%3a2.6.1-4~deb12u2_amd64.deb ...
- Unpacking libcryptsetup12:amd64 (2:2.6.1-4~deb12u2) ...
- Selecting previously unselected package libfdisk1:amd64.
- Preparing to unpack .../05-libfdisk1_2.38.1-5+deb12u3_amd64.deb ...
- Unpacking libfdisk1:amd64 (2.38.1-5+deb12u3) ...
- Selecting previously unselected package libkmod2:amd64.
- Preparing to unpack .../06-libkmod2_30+20221128-1_amd64.deb ...
- Unpacking libkmod2:amd64 (30+20221128-1) ...
- Selecting previously unselected package libapparmor1:amd64.
- Preparing to unpack .../07-libapparmor1_3.0.8-3_amd64.deb ...
- Unpacking libapparmor1:amd64 (3.0.8-3) ...
- Selecting previously unselected package libip4tc2:amd64.
- Preparing to unpack .../08-libip4tc2_1.8.9-2_amd64.deb ...
- Unpacking libip4tc2:amd64 (1.8.9-2) ...
- Selecting previously unselected package libsystemd-shared:amd64.
- Preparing to unpack .../09-libsystemd-shared_252.38-1~deb12u1_amd64.deb ...
- Unpacking libsystemd-shared:amd64 (252.38-1~deb12u1) ...
- Selecting previously unselected package systemd.
- Preparing to unpack .../10-systemd_252.38-1~deb12u1_amd64.deb ...
- Unpacking systemd (252.38-1~deb12u1) ...
- Setting up libargon2-1:amd64 (0~20171227-0.3+deb12u1) ...
- Setting up libjson-c5:amd64 (0.16-2) ...
- Setting up libfdisk1:amd64 (2.38.1-5+deb12u3) ...
- Setting up libkmod2:amd64 (30+20221128-1) ...
- Setting up libapparmor1:amd64 (3.0.8-3) ...
- Setting up libip4tc2:amd64 (1.8.9-2) ...
- Setting up libsystemd-shared:amd64 (252.38-1~deb12u1) ...
- Setting up libdevmapper1.02.1:amd64 (2:1.02.185-2) ...
- Setting up libcryptsetup12:amd64 (2:2.6.1-4~deb12u2) ...
- Setting up systemd (252.38-1~deb12u1) ...
- Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service.

- Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target.

- Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /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.

- Setting up dmsetup (2:1.02.185-2) ...
- 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 ... 19663 files and directories currently installed.)
- Preparing to unpack .../0-systemd-sysv_252.38-1~deb12u1_amd64.deb ...
- Unpacking systemd-sysv (252.38-1~deb12u1) ...
- Selecting previously unselected package libdbus-1-3:amd64.
- Preparing to unpack .../1-libdbus-1-3_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking libdbus-1-3:amd64 (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-bin.
- Preparing to unpack .../2-dbus-bin_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus-bin (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-session-bus-common.
- Preparing to unpack .../3-dbus-session-bus-common_1.14.10-1~deb12u1_all.deb ...
- Unpacking dbus-session-bus-common (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-daemon.
- Preparing to unpack .../4-dbus-daemon_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus-daemon (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-system-bus-common.
- Preparing to unpack .../5-dbus-system-bus-common_1.14.10-1~deb12u1_all.deb ...
- Unpacking dbus-system-bus-common (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus.
- Preparing to unpack .../6-dbus_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus (1.14.10-1~deb12u1) ...
- Selecting previously unselected package libpython3.11-minimal:amd64.
- Preparing to unpack .../7-libpython3.11-minimal_3.11.2-6+deb12u6_amd64.deb ...
- Unpacking libpython3.11-minimal:amd64 (3.11.2-6+deb12u6) ...
- Selecting previously unselected package python3.11-minimal.
- Preparing to unpack .../8-python3.11-minimal_3.11.2-6+deb12u6_amd64.deb ...
- Unpacking python3.11-minimal (3.11.2-6+deb12u6) ...
- Setting up libpython3.11-minimal:amd64 (3.11.2-6+deb12u6) ...
- Setting up python3.11-minimal (3.11.2-6+deb12u6) ...
- 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 ... 20061 files and directories currently installed.)
- Preparing to unpack .../python3-minimal_3.11.2-1+b1_amd64.deb ...
- Unpacking python3-minimal (3.11.2-1+b1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../media-types_10.0.0_all.deb ...
- Unpacking media-types (10.0.0) ...
- Selecting previously unselected package libpython3.11-stdlib:amd64.
- Preparing to unpack .../libpython3.11-stdlib_3.11.2-6+deb12u6_amd64.deb ...
- Unpacking libpython3.11-stdlib:amd64 (3.11.2-6+deb12u6) ...
- Selecting previously unselected package python3.11.
- Preparing to unpack .../python3.11_3.11.2-6+deb12u6_amd64.deb ...
- Unpacking python3.11 (3.11.2-6+deb12u6) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../libpython3-stdlib_3.11.2-1+b1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.11.2-1+b1) ...
- Setting up python3-minimal (3.11.2-1+b1) ...
- 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 ... 20471 files and directories currently installed.)
- Preparing to unpack .../000-python3_3.11.2-1+b1_amd64.deb ...
- Unpacking python3 (3.11.2-1+b1) ...
- Selecting previously unselected package sgml-base.
- Preparing to unpack .../001-sgml-base_1.31_all.deb ...
- Unpacking sgml-base (1.31) ...
- Selecting previously unselected package libnss-systemd:amd64.
- Preparing to unpack .../002-libnss-systemd_252.38-1~deb12u1_amd64.deb ...
- Unpacking libnss-systemd:amd64 (252.38-1~deb12u1) ...
- Selecting previously unselected package libpam-systemd:amd64.
- Preparing to unpack .../003-libpam-systemd_252.38-1~deb12u1_amd64.deb ...
- Unpacking libpam-systemd:amd64 (252.38-1~deb12u1) ...
- Selecting previously unselected package systemd-timesyncd.
- Preparing to unpack .../004-systemd-timesyncd_252.38-1~deb12u1_amd64.deb ...
- Unpacking systemd-timesyncd (252.38-1~deb12u1) ...
- Selecting previously unselected package hicolor-icon-theme.
- Preparing to unpack .../005-hicolor-icon-theme_0.17-2_all.deb ...
- Unpacking hicolor-icon-theme (0.17-2) ...
- Selecting previously unselected package libgdk-pixbuf2.0-common.
- Preparing to unpack .../006-libgdk-pixbuf2.0-common_2.42.10+dfsg-1+deb12u2_all.deb ...
- Unpacking libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u2) ...
- Selecting previously unselected package libglib2.0-0:amd64.
- Preparing to unpack .../007-libglib2.0-0_2.74.6-2+deb12u6_amd64.deb ...
- Unpacking libglib2.0-0:amd64 (2.74.6-2+deb12u6) ...
- Selecting previously unselected package libicu72:amd64.
- Preparing to unpack .../008-libicu72_72.1-3+deb12u1_amd64.deb ...
- Unpacking libicu72:amd64 (72.1-3+deb12u1) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../009-libxml2_2.9.14+dfsg-1.3~deb12u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u2) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../010-shared-mime-info_2.2-1_amd64.deb ...
- Unpacking shared-mime-info (2.2-1) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64.
- Preparing to unpack .../011-libgdk-pixbuf-2.0-0_2.42.10+dfsg-1+deb12u2_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u2) ...
- Selecting previously unselected package gtk-update-icon-cache.
- Preparing to unpack .../012-gtk-update-icon-cache_3.24.38-2~deb12u3_amd64.deb ...
- Unpacking gtk-update-icon-cache (3.24.38-2~deb12u3) ...
- Selecting previously unselected package adwaita-icon-theme.
- Preparing to unpack .../013-adwaita-icon-theme_43-1_all.deb ...
- Unpacking adwaita-icon-theme (43-1) ...
- Selecting previously unselected package at-spi2-common.
- Preparing to unpack .../014-at-spi2-common_2.46.0-5_all.deb ...
- Unpacking at-spi2-common (2.46.0-5) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../015-libxi6_2%3a1.8-1+b1_amd64.deb ...
- Unpacking libxi6:amd64 (2:1.8-1+b1) ...
- Selecting previously unselected package libatspi2.0-0:amd64.
- Preparing to unpack .../016-libatspi2.0-0_2.46.0-5_amd64.deb ...
- Unpacking libatspi2.0-0:amd64 (2.46.0-5) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../017-x11-common_1%3a7.7+23_all.deb ...
- Unpacking x11-common (1:7.7+23) ...
- Selecting previously unselected package libxtst6:amd64.
- Preparing to unpack .../018-libxtst6_2%3a1.2.3-1.1_amd64.deb ...
- Unpacking libxtst6:amd64 (2:1.2.3-1.1) ...
- Selecting previously unselected package dbus-user-session.
- Preparing to unpack .../019-dbus-user-session_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus-user-session (1.14.10-1~deb12u1) ...
- Selecting previously unselected package libdconf1:amd64.
- Preparing to unpack .../020-libdconf1_0.40.0-4_amd64.deb ...
- Unpacking libdconf1:amd64 (0.40.0-4) ...
- Selecting previously unselected package dconf-service.
- Preparing to unpack .../021-dconf-service_0.40.0-4_amd64.deb ...
- Unpacking dconf-service (0.40.0-4) ...
- Selecting previously unselected package dconf-gsettings-backend:amd64.
- Preparing to unpack .../022-dconf-gsettings-backend_0.40.0-4_amd64.deb ...
- Unpacking dconf-gsettings-backend:amd64 (0.40.0-4) ...
- Selecting previously unselected package gsettings-desktop-schemas.
- Preparing to unpack .../023-gsettings-desktop-schemas_43.0-1_all.deb ...
- Unpacking gsettings-desktop-schemas (43.0-1) ...
- Selecting previously unselected package at-spi2-core.
- Preparing to unpack .../024-at-spi2-core_2.46.0-5_amd64.deb ...
- Unpacking at-spi2-core (2.46.0-5) ...
- Selecting previously unselected package fontconfig.
- Preparing to unpack .../025-fontconfig_2.14.1-4_amd64.deb ...
- Unpacking fontconfig (2.14.1-4) ...
- Selecting previously unselected package libgirepository-1.0-1:amd64.
- Preparing to unpack .../026-libgirepository-1.0-1_1.74.0-3_amd64.deb ...
- Unpacking libgirepository-1.0-1:amd64 (1.74.0-3) ...
- Selecting previously unselected package gir1.2-glib-2.0:amd64.
- Preparing to unpack .../027-gir1.2-glib-2.0_1.74.0-3_amd64.deb ...
- Unpacking gir1.2-glib-2.0:amd64 (1.74.0-3) ...
- Selecting previously unselected package libatk1.0-0:amd64.
- Preparing to unpack .../028-libatk1.0-0_2.46.0-5_amd64.deb ...
- Unpacking libatk1.0-0:amd64 (2.46.0-5) ...
- Selecting previously unselected package gir1.2-atk-1.0:amd64.
- Preparing to unpack .../029-gir1.2-atk-1.0_2.46.0-5_amd64.deb ...
- Unpacking gir1.2-atk-1.0:amd64 (2.46.0-5) ...
- Selecting previously unselected package gir1.2-freedesktop:amd64.
- Preparing to unpack .../030-gir1.2-freedesktop_1.74.0-3_amd64.deb ...
- Unpacking gir1.2-freedesktop:amd64 (1.74.0-3) ...
- Selecting previously unselected package gir1.2-atspi-2.0:amd64.
- Preparing to unpack .../031-gir1.2-atspi-2.0_2.46.0-5_amd64.deb ...
- Unpacking gir1.2-atspi-2.0:amd64 (2.46.0-5) ...
- Selecting previously unselected package gir1.2-gdkpixbuf-2.0:amd64.
- Preparing to unpack .../032-gir1.2-gdkpixbuf-2.0_2.42.10+dfsg-1+deb12u2_amd64.deb ...
- Unpacking gir1.2-gdkpixbuf-2.0:amd64 (2.42.10+dfsg-1+deb12u2) ...
- Selecting previously unselected package gir1.2-harfbuzz-0.0:amd64.
- Preparing to unpack .../033-gir1.2-harfbuzz-0.0_6.0.0+dfsg-3_amd64.deb ...
- Unpacking gir1.2-harfbuzz-0.0:amd64 (6.0.0+dfsg-3) ...
- Selecting previously unselected package libfribidi0:amd64.
- Preparing to unpack .../034-libfribidi0_1.0.8-2.1_amd64.deb ...
- Unpacking libfribidi0:amd64 (1.0.8-2.1) ...
- Selecting previously unselected package libgraphite2-3:amd64.
- Preparing to unpack .../035-libgraphite2-3_1.3.14-1_amd64.deb ...
- Unpacking libgraphite2-3:amd64 (1.3.14-1) ...
- Selecting previously unselected package libharfbuzz0b:amd64.
- Preparing to unpack .../036-libharfbuzz0b_6.0.0+dfsg-3_amd64.deb ...
- Unpacking libharfbuzz0b:amd64 (6.0.0+dfsg-3) ...
- Selecting previously unselected package libthai-data.
- Preparing to unpack .../037-libthai-data_0.1.29-1_all.deb ...
- Unpacking libthai-data (0.1.29-1) ...
- Selecting previously unselected package libdatrie1:amd64.
- Preparing to unpack .../038-libdatrie1_0.2.13-2+b1_amd64.deb ...
- Unpacking libdatrie1:amd64 (0.2.13-2+b1) ...
- Selecting previously unselected package libthai0:amd64.
- Preparing to unpack .../039-libthai0_0.1.29-1_amd64.deb ...
- Unpacking libthai0:amd64 (0.1.29-1) ...
- Selecting previously unselected package libpango-1.0-0:amd64.
- Preparing to unpack .../040-libpango-1.0-0_1.50.12+ds-1_amd64.deb ...
- Unpacking libpango-1.0-0:amd64 (1.50.12+ds-1) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../041-libpixman-1-0_0.42.2-1_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.42.2-1) ...
- Selecting previously unselected package libxcb-render0:amd64.
- Preparing to unpack .../042-libxcb-render0_1.15-1_amd64.deb ...
- Unpacking libxcb-render0:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../043-libxcb-shm0_1.15-1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.15-1) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../044-libxrender1_1%3a0.9.10-1.1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.10-1.1) ...
- Selecting previously unselected package libcairo2:amd64.
- Preparing to unpack .../045-libcairo2_1.16.0-7_amd64.deb ...
- Unpacking libcairo2:amd64 (1.16.0-7) ...
- Selecting previously unselected package libpangoft2-1.0-0:amd64.
- Preparing to unpack .../046-libpangoft2-1.0-0_1.50.12+ds-1_amd64.deb ...
- Unpacking libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ...
- Selecting previously unselected package libpangocairo-1.0-0:amd64.
- Preparing to unpack .../047-libpangocairo-1.0-0_1.50.12+ds-1_amd64.deb ...
- Unpacking libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ...
- Selecting previously unselected package libxft2:amd64.
- Preparing to unpack .../048-libxft2_2.3.6-1_amd64.deb ...
- Unpacking libxft2:amd64 (2.3.6-1) ...
- Selecting previously unselected package libpangoxft-1.0-0:amd64.
- Preparing to unpack .../049-libpangoxft-1.0-0_1.50.12+ds-1_amd64.deb ...
- Unpacking libpangoxft-1.0-0:amd64 (1.50.12+ds-1) ...
- Selecting previously unselected package gir1.2-pango-1.0:amd64.
- Preparing to unpack .../050-gir1.2-pango-1.0_1.50.12+ds-1_amd64.deb ...
- Unpacking gir1.2-pango-1.0:amd64 (1.50.12+ds-1) ...
- Selecting previously unselected package libatk-bridge2.0-0:amd64.
- Preparing to unpack .../051-libatk-bridge2.0-0_2.46.0-5_amd64.deb ...
- Unpacking libatk-bridge2.0-0:amd64 (2.46.0-5) ...
- Selecting previously unselected package libcairo-gobject2:amd64.
- Preparing to unpack .../052-libcairo-gobject2_1.16.0-7_amd64.deb ...
- Unpacking libcairo-gobject2:amd64 (1.16.0-7) ...
- Selecting previously unselected package liblcms2-2:amd64.
- Preparing to unpack .../053-liblcms2-2_2.14-2_amd64.deb ...
- Unpacking liblcms2-2:amd64 (2.14-2) ...
- Selecting previously unselected package libcolord2:amd64.
- Preparing to unpack .../054-libcolord2_1.4.6-2.2_amd64.deb ...
- Unpacking libcolord2:amd64 (1.4.6-2.2) ...
- Selecting previously unselected package libavahi-common-data:amd64.
- Preparing to unpack .../055-libavahi-common-data_0.8-10+deb12u1_amd64.deb ...
- Unpacking libavahi-common-data:amd64 (0.8-10+deb12u1) ...
- Selecting previously unselected package libavahi-common3:amd64.
- Preparing to unpack .../056-libavahi-common3_0.8-10+deb12u1_amd64.deb ...
- Unpacking libavahi-common3:amd64 (0.8-10+deb12u1) ...
- Selecting previously unselected package libavahi-client3:amd64.
- Preparing to unpack .../057-libavahi-client3_0.8-10+deb12u1_amd64.deb ...
- Unpacking libavahi-client3:amd64 (0.8-10+deb12u1) ...
- Selecting previously unselected package libcups2:amd64.
- Preparing to unpack .../058-libcups2_2.4.2-3+deb12u8_amd64.deb ...
- Unpacking libcups2:amd64 (2.4.2-3+deb12u8) ...
- Selecting previously unselected package libepoxy0:amd64.
- Preparing to unpack .../059-libepoxy0_1.5.10-1_amd64.deb ...
- Unpacking libepoxy0:amd64 (1.5.10-1) ...
- Selecting previously unselected package libwayland-client0:amd64.
- Preparing to unpack .../060-libwayland-client0_1.21.0-1_amd64.deb ...
- Unpacking libwayland-client0:amd64 (1.21.0-1) ...
- Selecting previously unselected package libwayland-cursor0:amd64.
- Preparing to unpack .../061-libwayland-cursor0_1.21.0-1_amd64.deb ...
- Unpacking libwayland-cursor0:amd64 (1.21.0-1) ...
- Selecting previously unselected package libwayland-egl1:amd64.
- Preparing to unpack .../062-libwayland-egl1_1.21.0-1_amd64.deb ...
- Unpacking libwayland-egl1:amd64 (1.21.0-1) ...
- Selecting previously unselected package libxcomposite1:amd64.
- Preparing to unpack .../063-libxcomposite1_1%3a0.4.5-1_amd64.deb ...
- Unpacking libxcomposite1:amd64 (1:0.4.5-1) ...
- Selecting previously unselected package libxfixes3:amd64.
- Preparing to unpack .../064-libxfixes3_1%3a6.0.0-2_amd64.deb ...
- Unpacking libxfixes3:amd64 (1:6.0.0-2) ...
- Selecting previously unselected package libxcursor1:amd64.
- Preparing to unpack .../065-libxcursor1_1%3a1.2.1-1_amd64.deb ...
- Unpacking libxcursor1:amd64 (1:1.2.1-1) ...
- Selecting previously unselected package libxdamage1:amd64.
- Preparing to unpack .../066-libxdamage1_1%3a1.1.6-1_amd64.deb ...
- Unpacking libxdamage1:amd64 (1:1.1.6-1) ...
- Selecting previously unselected package libxinerama1:amd64.
- Preparing to unpack .../067-libxinerama1_2%3a1.1.4-3_amd64.deb ...
- Unpacking libxinerama1:amd64 (2:1.1.4-3) ...
- Selecting previously unselected package xkb-data.
- Preparing to unpack .../068-xkb-data_2.35.1-1_all.deb ...
- Unpacking xkb-data (2.35.1-1) ...
- Selecting previously unselected package libxkbcommon0:amd64.
- Preparing to unpack .../069-libxkbcommon0_1.5.0-1_amd64.deb ...
- Unpacking libxkbcommon0:amd64 (1.5.0-1) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../070-libxrandr2_2%3a1.5.2-2+b1_amd64.deb ...
- Unpacking libxrandr2:amd64 (2:1.5.2-2+b1) ...
- Selecting previously unselected package libgtk-3-common.
- Preparing to unpack .../071-libgtk-3-common_3.24.38-2~deb12u3_all.deb ...
- Unpacking libgtk-3-common (3.24.38-2~deb12u3) ...
- Selecting previously unselected package libgtk-3-0:amd64.
- Preparing to unpack .../072-libgtk-3-0_3.24.38-2~deb12u3_amd64.deb ...
- Unpacking libgtk-3-0:amd64 (3.24.38-2~deb12u3) ...
- Selecting previously unselected package gir1.2-gtk-3.0:amd64.
- Preparing to unpack .../073-gir1.2-gtk-3.0_3.24.38-2~deb12u3_amd64.deb ...
- Unpacking gir1.2-gtk-3.0:amd64 (3.24.38-2~deb12u3) ...
- Selecting previously unselected package libgtksourceview-3.0-common.
- Preparing to unpack .../074-libgtksourceview-3.0-common_3.24.11-2_all.deb ...
- Unpacking libgtksourceview-3.0-common (3.24.11-2) ...
- Selecting previously unselected package libgtksourceview-3.0-1:amd64.
- Preparing to unpack .../075-libgtksourceview-3.0-1_3.24.11-2+b1_amd64.deb ...
- Unpacking libgtksourceview-3.0-1:amd64 (3.24.11-2+b1) ...
- Selecting previously unselected package gir1.2-gtksource-3.0:amd64.
- Preparing to unpack .../076-gir1.2-gtksource-3.0_3.24.11-2+b1_amd64.deb ...
- Unpacking gir1.2-gtksource-3.0:amd64 (3.24.11-2+b1) ...
- Selecting previously unselected package icu-devtools.
- Preparing to unpack .../077-icu-devtools_72.1-3+deb12u1_amd64.deb ...
- Unpacking icu-devtools (72.1-3+deb12u1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../078-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../079-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../080-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../081-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../082-libffi-dev_3.4.4-1_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.4-1) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../083-libglib2.0-data_2.74.6-2+deb12u6_all.deb ...
- Unpacking libglib2.0-data (2.74.6-2+deb12u6) ...
- Selecting previously unselected package libelf1:amd64.
- Preparing to unpack .../084-libelf1_0.188-2.1_amd64.deb ...
- Unpacking libelf1:amd64 (0.188-2.1) ...
- Selecting previously unselected package libglib2.0-bin.
- Preparing to unpack .../085-libglib2.0-bin_2.74.6-2+deb12u6_amd64.deb ...
- Unpacking libglib2.0-bin (2.74.6-2+deb12u6) ...
- Selecting previously unselected package python3-lib2to3.
- Preparing to unpack .../086-python3-lib2to3_3.11.2-3_all.deb ...
- Unpacking python3-lib2to3 (3.11.2-3) ...
- Selecting previously unselected package python3-distutils.
- Preparing to unpack .../087-python3-distutils_3.11.2-3_all.deb ...
- Unpacking python3-distutils (3.11.2-3) ...
- Selecting previously unselected package libglib2.0-dev-bin.
- Preparing to unpack .../088-libglib2.0-dev-bin_2.74.6-2+deb12u6_amd64.deb ...
- Unpacking libglib2.0-dev-bin (2.74.6-2+deb12u6) ...
- Selecting previously unselected package uuid-dev:amd64.
- Preparing to unpack .../089-uuid-dev_2.38.1-5+deb12u3_amd64.deb ...
- Unpacking uuid-dev:amd64 (2.38.1-5+deb12u3) ...
- Selecting previously unselected package libblkid-dev:amd64.
- Preparing to unpack .../090-libblkid-dev_2.38.1-5+deb12u3_amd64.deb ...
- Unpacking libblkid-dev:amd64 (2.38.1-5+deb12u3) ...
- Selecting previously unselected package libsepol-dev:amd64.
- Preparing to unpack .../091-libsepol-dev_3.4-2.1_amd64.deb ...
- Unpacking libsepol-dev:amd64 (3.4-2.1) ...
- Selecting previously unselected package libpcre2-16-0:amd64.
- Preparing to unpack .../092-libpcre2-16-0_10.42-1_amd64.deb ...
- Unpacking libpcre2-16-0:amd64 (10.42-1) ...
- Selecting previously unselected package libpcre2-32-0:amd64.
- Preparing to unpack .../093-libpcre2-32-0_10.42-1_amd64.deb ...
- Unpacking libpcre2-32-0:amd64 (10.42-1) ...
- Selecting previously unselected package libpcre2-posix3:amd64.
- Preparing to unpack .../094-libpcre2-posix3_10.42-1_amd64.deb ...
- Unpacking libpcre2-posix3:amd64 (10.42-1) ...
- Selecting previously unselected package libpcre2-dev:amd64.
- Preparing to unpack .../095-libpcre2-dev_10.42-1_amd64.deb ...
- Unpacking libpcre2-dev:amd64 (10.42-1) ...
- Selecting previously unselected package libselinux1-dev:amd64.
- Preparing to unpack .../096-libselinux1-dev_3.4-1+b6_amd64.deb ...
- Unpacking libselinux1-dev:amd64 (3.4-1+b6) ...
- Selecting previously unselected package libmount-dev:amd64.
- Preparing to unpack .../097-libmount-dev_2.38.1-5+deb12u3_amd64.deb ...
- Unpacking libmount-dev:amd64 (2.38.1-5+deb12u3) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../098-zlib1g-dev_1%3a1.2.13.dfsg-1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Selecting previously unselected package libglib2.0-dev:amd64.
- Preparing to unpack .../099-libglib2.0-dev_2.74.6-2+deb12u6_amd64.deb ...
- Unpacking libglib2.0-dev:amd64 (2.74.6-2+deb12u6) ...
- Selecting previously unselected package libatk1.0-dev:amd64.
- Preparing to unpack .../100-libatk1.0-dev_2.46.0-5_amd64.deb ...
- Unpacking libatk1.0-dev:amd64 (2.46.0-5) ...
- Selecting previously unselected package xml-core.
- Preparing to unpack .../101-xml-core_0.18+nmu1_all.deb ...
- Unpacking xml-core (0.18+nmu1) ...
- Selecting previously unselected package libdbus-1-dev:amd64.
- Preparing to unpack .../102-libdbus-1-dev_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking libdbus-1-dev:amd64 (1.14.10-1~deb12u1) ...
- Selecting previously unselected package libxext-dev:amd64.
- Preparing to unpack .../103-libxext-dev_2%3a1.3.4-1+b1_amd64.deb ...
- Unpacking libxext-dev:amd64 (2:1.3.4-1+b1) ...
- Selecting previously unselected package libxfixes-dev:amd64.
- Preparing to unpack .../104-libxfixes-dev_1%3a6.0.0-2_amd64.deb ...
- Unpacking libxfixes-dev:amd64 (1:6.0.0-2) ...
- Selecting previously unselected package libxi-dev:amd64.
- Preparing to unpack .../105-libxi-dev_2%3a1.8-1+b1_amd64.deb ...
- Unpacking libxi-dev:amd64 (2:1.8-1+b1) ...
- Selecting previously unselected package libxtst-dev:amd64.
- Preparing to unpack .../106-libxtst-dev_2%3a1.2.3-1.1_amd64.deb ...
- Unpacking libxtst-dev:amd64 (2:1.2.3-1.1) ...
- Selecting previously unselected package libatspi2.0-dev:amd64.
- Preparing to unpack .../107-libatspi2.0-dev_2.46.0-5_amd64.deb ...
- Unpacking libatspi2.0-dev:amd64 (2.46.0-5) ...
- Selecting previously unselected package libatk-bridge2.0-dev:amd64.
- Preparing to unpack .../108-libatk-bridge2.0-dev_2.46.0-5_amd64.deb ...
- Unpacking libatk-bridge2.0-dev:amd64 (2.46.0-5) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../109-libbrotli-dev_1.0.9-2+b6_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.0.9-2+b6) ...
- Selecting previously unselected package liblzo2-2:amd64.
- Preparing to unpack .../110-liblzo2-2_2.10-2_amd64.deb ...
- Unpacking liblzo2-2:amd64 (2.10-2) ...
- Selecting previously unselected package libcairo-script-interpreter2:amd64.
- Preparing to unpack .../111-libcairo-script-interpreter2_1.16.0-7_amd64.deb ...
- Unpacking libcairo-script-interpreter2:amd64 (1.16.0-7) ...
- Selecting previously unselected package libexpat1-dev:amd64.
- Preparing to unpack .../112-libexpat1-dev_2.5.0-1+deb12u1_amd64.deb ...
- Unpacking libexpat1-dev:amd64 (2.5.0-1+deb12u1) ...
- Selecting previously unselected package libpng-dev:amd64.
- Preparing to unpack .../113-libpng-dev_1.6.39-2_amd64.deb ...
- Unpacking libpng-dev:amd64 (1.6.39-2) ...
- Selecting previously unselected package libfreetype-dev:amd64.
- Preparing to unpack .../114-libfreetype-dev_2.12.1+dfsg-5+deb12u4_amd64.deb ...
- Unpacking libfreetype-dev:amd64 (2.12.1+dfsg-5+deb12u4) ...
- Selecting previously unselected package libfontconfig-dev:amd64.
- Preparing to unpack .../115-libfontconfig-dev_2.14.1-4_amd64.deb ...
- Unpacking libfontconfig-dev:amd64 (2.14.1-4) ...
- Selecting previously unselected package libpixman-1-dev:amd64.
- Preparing to unpack .../116-libpixman-1-dev_0.42.2-1_amd64.deb ...
- Unpacking libpixman-1-dev:amd64 (0.42.2-1) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../117-libice6_2%3a1.0.10-1_amd64.deb ...
- Unpacking libice6:amd64 (2:1.0.10-1) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../118-libsm6_2%3a1.2.3-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.3-1) ...
- Selecting previously unselected package libice-dev:amd64.
- Preparing to unpack .../119-libice-dev_2%3a1.0.10-1_amd64.deb ...
- Unpacking libice-dev:amd64 (2:1.0.10-1) ...
- Selecting previously unselected package libsm-dev:amd64.
- Preparing to unpack .../120-libsm-dev_2%3a1.2.3-1_amd64.deb ...
- Unpacking libsm-dev:amd64 (2:1.2.3-1) ...
- Selecting previously unselected package libxcb-render0-dev:amd64.
- Preparing to unpack .../121-libxcb-render0-dev_1.15-1_amd64.deb ...
- Unpacking libxcb-render0-dev:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-shm0-dev:amd64.
- Preparing to unpack .../122-libxcb-shm0-dev_1.15-1_amd64.deb ...
- Unpacking libxcb-shm0-dev:amd64 (1.15-1) ...
- Selecting previously unselected package libxrender-dev:amd64.
- Preparing to unpack .../123-libxrender-dev_1%3a0.9.10-1.1_amd64.deb ...
- Unpacking libxrender-dev:amd64 (1:0.9.10-1.1) ...
- Selecting previously unselected package libcairo2-dev:amd64.
- Preparing to unpack .../124-libcairo2-dev_1.16.0-7_amd64.deb ...
- Unpacking libcairo2-dev:amd64 (1.16.0-7) ...
- Selecting previously unselected package libdatrie-dev:amd64.
- Preparing to unpack .../125-libdatrie-dev_0.2.13-2+b1_amd64.deb ...
- Unpacking libdatrie-dev:amd64 (0.2.13-2+b1) ...
- Selecting previously unselected package libdeflate-dev:amd64.
- Preparing to unpack .../126-libdeflate-dev_1.14-1_amd64.deb ...
- Unpacking libdeflate-dev:amd64 (1.14-1) ...
- Selecting previously unselected package libdrm-common.
- Preparing to unpack .../127-libdrm-common_2.4.114-1_all.deb ...
- Unpacking libdrm-common (2.4.114-1) ...
- Selecting previously unselected package libdrm2:amd64.
- Preparing to unpack .../128-libdrm2_2.4.114-1+b1_amd64.deb ...
- Unpacking libdrm2:amd64 (2.4.114-1+b1) ...
- Selecting previously unselected package libdrm-amdgpu1:amd64.
- Preparing to unpack .../129-libdrm-amdgpu1_2.4.114-1+b1_amd64.deb ...
- Unpacking libdrm-amdgpu1:amd64 (2.4.114-1+b1) ...
- Selecting previously unselected package libpciaccess0:amd64.
- Preparing to unpack .../130-libpciaccess0_0.17-2_amd64.deb ...
- Unpacking libpciaccess0:amd64 (0.17-2) ...
- Selecting previously unselected package libdrm-intel1:amd64.
- Preparing to unpack .../131-libdrm-intel1_2.4.114-1+b1_amd64.deb ...
- Unpacking libdrm-intel1:amd64 (2.4.114-1+b1) ...
- Selecting previously unselected package libdrm-nouveau2:amd64.
- Preparing to unpack .../132-libdrm-nouveau2_2.4.114-1+b1_amd64.deb ...
- Unpacking libdrm-nouveau2:amd64 (2.4.114-1+b1) ...
- Selecting previously unselected package libdrm-radeon1:amd64.
- Preparing to unpack .../133-libdrm-radeon1_2.4.114-1+b1_amd64.deb ...
- Unpacking libdrm-radeon1:amd64 (2.4.114-1+b1) ...
- Selecting previously unselected package libglvnd0:amd64.
- Preparing to unpack .../134-libglvnd0_1.6.0-1_amd64.deb ...
- Unpacking libglvnd0:amd64 (1.6.0-1) ...
- Selecting previously unselected package libwayland-server0:amd64.
- Preparing to unpack .../135-libwayland-server0_1.21.0-1_amd64.deb ...
- Unpacking libwayland-server0:amd64 (1.21.0-1) ...
- Selecting previously unselected package libgbm1:amd64.
- Preparing to unpack .../136-libgbm1_22.3.6-1+deb12u1_amd64.deb ...
- Unpacking libgbm1:amd64 (22.3.6-1+deb12u1) ...
- Selecting previously unselected package libglapi-mesa:amd64.
- Preparing to unpack .../137-libglapi-mesa_22.3.6-1+deb12u1_amd64.deb ...
- Unpacking libglapi-mesa:amd64 (22.3.6-1+deb12u1) ...
- Selecting previously unselected package libx11-xcb1:amd64.
- Preparing to unpack .../138-libx11-xcb1_2%3a1.8.4-2+deb12u2_amd64.deb ...
- Unpacking libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ...
- Selecting previously unselected package libxcb-dri2-0:amd64.
- Preparing to unpack .../139-libxcb-dri2-0_1.15-1_amd64.deb ...
- Unpacking libxcb-dri2-0:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-dri3-0:amd64.
- Preparing to unpack .../140-libxcb-dri3-0_1.15-1_amd64.deb ...
- Unpacking libxcb-dri3-0:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-present0:amd64.
- Preparing to unpack .../141-libxcb-present0_1.15-1_amd64.deb ...
- Unpacking libxcb-present0:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-randr0:amd64.
- Preparing to unpack .../142-libxcb-randr0_1.15-1_amd64.deb ...
- Unpacking libxcb-randr0:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-sync1:amd64.
- Preparing to unpack .../143-libxcb-sync1_1.15-1_amd64.deb ...
- Unpacking libxcb-sync1:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-xfixes0:amd64.
- Preparing to unpack .../144-libxcb-xfixes0_1.15-1_amd64.deb ...
- Unpacking libxcb-xfixes0:amd64 (1.15-1) ...
- Selecting previously unselected package libxshmfence1:amd64.
- Preparing to unpack .../145-libxshmfence1_1.3-1_amd64.deb ...
- Unpacking libxshmfence1:amd64 (1.3-1) ...
- Selecting previously unselected package libegl-mesa0:amd64.
- Preparing to unpack .../146-libegl-mesa0_22.3.6-1+deb12u1_amd64.deb ...
- Unpacking libegl-mesa0:amd64 (22.3.6-1+deb12u1) ...
- Selecting previously unselected package libegl1:amd64.
- Preparing to unpack .../147-libegl1_1.6.0-1_amd64.deb ...
- Unpacking libegl1:amd64 (1.6.0-1) ...
- Selecting previously unselected package libxcb-glx0:amd64.
- Preparing to unpack .../148-libxcb-glx0_1.15-1_amd64.deb ...
- Unpacking libxcb-glx0:amd64 (1.15-1) ...
- Selecting previously unselected package libxxf86vm1:amd64.
- Preparing to unpack .../149-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ...
- Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../150-libz3-4_4.8.12-3.1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.8.12-3.1) ...
- Selecting previously unselected package libllvm15:amd64.
- Preparing to unpack .../151-libllvm15_1%3a15.0.6-4+b1_amd64.deb ...
- Unpacking libllvm15:amd64 (1:15.0.6-4+b1) ...
- Selecting previously unselected package libsensors-config.
- Preparing to unpack .../152-libsensors-config_1%3a3.6.0-7.1_all.deb ...
- Unpacking libsensors-config (1:3.6.0-7.1) ...
- Selecting previously unselected package libsensors5:amd64.
- Preparing to unpack .../153-libsensors5_1%3a3.6.0-7.1_amd64.deb ...
- Unpacking libsensors5:amd64 (1:3.6.0-7.1) ...
- Selecting previously unselected package libgl1-mesa-dri:amd64.
- Preparing to unpack .../154-libgl1-mesa-dri_22.3.6-1+deb12u1_amd64.deb ...
- Unpacking libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ...
- Selecting previously unselected package libglx-mesa0:amd64.
- Preparing to unpack .../155-libglx-mesa0_22.3.6-1+deb12u1_amd64.deb ...
- Unpacking libglx-mesa0:amd64 (22.3.6-1+deb12u1) ...
- Selecting previously unselected package libglx0:amd64.
- Preparing to unpack .../156-libglx0_1.6.0-1_amd64.deb ...
- Unpacking libglx0:amd64 (1.6.0-1) ...
- Selecting previously unselected package libgl1:amd64.
- Preparing to unpack .../157-libgl1_1.6.0-1_amd64.deb ...
- Unpacking libgl1:amd64 (1.6.0-1) ...
- Selecting previously unselected package libglx-dev:amd64.
- Preparing to unpack .../158-libglx-dev_1.6.0-1_amd64.deb ...
- Unpacking libglx-dev:amd64 (1.6.0-1) ...
- Selecting previously unselected package libgl-dev:amd64.
- Preparing to unpack .../159-libgl-dev_1.6.0-1_amd64.deb ...
- Unpacking libgl-dev:amd64 (1.6.0-1) ...
- Selecting previously unselected package libegl-dev:amd64.
- Preparing to unpack .../160-libegl-dev_1.6.0-1_amd64.deb ...
- Unpacking libegl-dev:amd64 (1.6.0-1) ...
- Selecting previously unselected package libglvnd-core-dev:amd64.
- Preparing to unpack .../161-libglvnd-core-dev_1.6.0-1_amd64.deb ...
- Unpacking libglvnd-core-dev:amd64 (1.6.0-1) ...
- Selecting previously unselected package libgles1:amd64.
- Preparing to unpack .../162-libgles1_1.6.0-1_amd64.deb ...
- Unpacking libgles1:amd64 (1.6.0-1) ...
- Selecting previously unselected package libgles2:amd64.
- Preparing to unpack .../163-libgles2_1.6.0-1_amd64.deb ...
- Unpacking libgles2:amd64 (1.6.0-1) ...
- Selecting previously unselected package libgles-dev:amd64.
- Preparing to unpack .../164-libgles-dev_1.6.0-1_amd64.deb ...
- Unpacking libgles-dev:amd64 (1.6.0-1) ...
- Selecting previously unselected package libopengl0:amd64.
- Preparing to unpack .../165-libopengl0_1.6.0-1_amd64.deb ...
- Unpacking libopengl0:amd64 (1.6.0-1) ...
- Selecting previously unselected package libopengl-dev:amd64.
- Preparing to unpack .../166-libopengl-dev_1.6.0-1_amd64.deb ...
- Unpacking libopengl-dev:amd64 (1.6.0-1) ...
- Selecting previously unselected package libglvnd-dev:amd64.
- Preparing to unpack .../167-libglvnd-dev_1.6.0-1_amd64.deb ...
- Unpacking libglvnd-dev:amd64 (1.6.0-1) ...
- Selecting previously unselected package libegl1-mesa-dev:amd64.
- Preparing to unpack .../168-libegl1-mesa-dev_22.3.6-1+deb12u1_amd64.deb ...
- Unpacking libegl1-mesa-dev:amd64 (22.3.6-1+deb12u1) ...
- Selecting previously unselected package libepoxy-dev:amd64.
- Preparing to unpack .../169-libepoxy-dev_1.5.10-1_amd64.deb ...
- Unpacking libepoxy-dev:amd64 (1.5.10-1) ...
- Selecting previously unselected package libfribidi-dev:amd64.
- Preparing to unpack .../170-libfribidi-dev_1.0.8-2.1_amd64.deb ...
- Unpacking libfribidi-dev:amd64 (1.0.8-2.1) ...
- Selecting previously unselected package libgdk-pixbuf2.0-bin.
- Preparing to unpack .../171-libgdk-pixbuf2.0-bin_2.42.10+dfsg-1+deb12u2_amd64.deb ...
- Unpacking libgdk-pixbuf2.0-bin (2.42.10+dfsg-1+deb12u2) ...
- Selecting previously unselected package libjpeg62-turbo-dev:amd64.
- Preparing to unpack .../172-libjpeg62-turbo-dev_1%3a2.1.5-2_amd64.deb ...
- Unpacking libjpeg62-turbo-dev:amd64 (1:2.1.5-2) ...
- Selecting previously unselected package libjpeg-dev:amd64.
- Preparing to unpack .../173-libjpeg-dev_1%3a2.1.5-2_amd64.deb ...
- Unpacking libjpeg-dev:amd64 (1:2.1.5-2) ...
- Selecting previously unselected package libjbig-dev:amd64.
- Preparing to unpack .../174-libjbig-dev_2.1-6.1_amd64.deb ...
- Unpacking libjbig-dev:amd64 (2.1-6.1) ...
- Selecting previously unselected package liblzma-dev:amd64.
- Preparing to unpack .../175-liblzma-dev_5.4.1-1_amd64.deb ...
- Unpacking liblzma-dev:amd64 (5.4.1-1) ...
- Selecting previously unselected package libzstd-dev:amd64.
- Preparing to unpack .../176-libzstd-dev_1.5.4+dfsg2-5_amd64.deb ...
- Unpacking libzstd-dev:amd64 (1.5.4+dfsg2-5) ...
- Selecting previously unselected package libwebpmux3:amd64.
- Preparing to unpack .../177-libwebpmux3_1.2.4-0.2+deb12u1_amd64.deb ...
- Unpacking libwebpmux3:amd64 (1.2.4-0.2+deb12u1) ...
- Selecting previously unselected package libwebpdemux2:amd64.
- Preparing to unpack .../178-libwebpdemux2_1.2.4-0.2+deb12u1_amd64.deb ...
- Unpacking libwebpdemux2:amd64 (1.2.4-0.2+deb12u1) ...
- Selecting previously unselected package libwebp-dev:amd64.
- Preparing to unpack .../179-libwebp-dev_1.2.4-0.2+deb12u1_amd64.deb ...
- Unpacking libwebp-dev:amd64 (1.2.4-0.2+deb12u1) ...
- Selecting previously unselected package libtiffxx6:amd64.
- Preparing to unpack .../180-libtiffxx6_4.5.0-6+deb12u2_amd64.deb ...
- Unpacking libtiffxx6:amd64 (4.5.0-6+deb12u2) ...
- Selecting previously unselected package liblerc-dev:amd64.
- Preparing to unpack .../181-liblerc-dev_4.0.0+ds-2_amd64.deb ...
- Unpacking liblerc-dev:amd64 (4.0.0+ds-2) ...
- Selecting previously unselected package libtiff-dev:amd64.
- Preparing to unpack .../182-libtiff-dev_4.5.0-6+deb12u2_amd64.deb ...
- Unpacking libtiff-dev:amd64 (4.5.0-6+deb12u2) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-dev:amd64.
- Preparing to unpack .../183-libgdk-pixbuf-2.0-dev_2.42.10+dfsg-1+deb12u2_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-dev:amd64 (2.42.10+dfsg-1+deb12u2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../184-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../185-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgraphite2-dev:amd64.
- Preparing to unpack .../186-libgraphite2-dev_1.3.14-1_amd64.deb ...
- Unpacking libgraphite2-dev:amd64 (1.3.14-1) ...
- Selecting previously unselected package libgtk-3-bin.
- Preparing to unpack .../187-libgtk-3-bin_3.24.38-2~deb12u3_amd64.deb ...
- Unpacking libgtk-3-bin (3.24.38-2~deb12u3) ...
- Selecting previously unselected package libharfbuzz-icu0:amd64.
- Preparing to unpack .../188-libharfbuzz-icu0_6.0.0+dfsg-3_amd64.deb ...
- Unpacking libharfbuzz-icu0:amd64 (6.0.0+dfsg-3) ...
- Selecting previously unselected package libharfbuzz-gobject0:amd64.
- Preparing to unpack .../189-libharfbuzz-gobject0_6.0.0+dfsg-3_amd64.deb ...
- Unpacking libharfbuzz-gobject0:amd64 (6.0.0+dfsg-3) ...
- Selecting previously unselected package libharfbuzz-subset0:amd64.
- Preparing to unpack .../190-libharfbuzz-subset0_6.0.0+dfsg-3_amd64.deb ...
- Unpacking libharfbuzz-subset0:amd64 (6.0.0+dfsg-3) ...
- Selecting previously unselected package libicu-dev:amd64.
- Preparing to unpack .../191-libicu-dev_72.1-3+deb12u1_amd64.deb ...
- Unpacking libicu-dev:amd64 (72.1-3+deb12u1) ...
- Selecting previously unselected package libharfbuzz-dev:amd64.
- Preparing to unpack .../192-libharfbuzz-dev_6.0.0+dfsg-3_amd64.deb ...
- Unpacking libharfbuzz-dev:amd64 (6.0.0+dfsg-3) ...
- Selecting previously unselected package libthai-dev:amd64.
- Preparing to unpack .../193-libthai-dev_0.1.29-1_amd64.deb ...
- Unpacking libthai-dev:amd64 (0.1.29-1) ...
- Selecting previously unselected package libxft-dev:amd64.
- Preparing to unpack .../194-libxft-dev_2.3.6-1_amd64.deb ...
- Unpacking libxft-dev:amd64 (2.3.6-1) ...
- Selecting previously unselected package pango1.0-tools.
- Preparing to unpack .../195-pango1.0-tools_1.50.12+ds-1_amd64.deb ...
- Unpacking pango1.0-tools (1.50.12+ds-1) ...
- Selecting previously unselected package libpango1.0-dev:amd64.
- Preparing to unpack .../196-libpango1.0-dev_1.50.12+ds-1_amd64.deb ...
- Unpacking libpango1.0-dev:amd64 (1.50.12+ds-1) ...
- Selecting previously unselected package libwayland-bin.
- Preparing to unpack .../197-libwayland-bin_1.21.0-1_amd64.deb ...
- Unpacking libwayland-bin (1.21.0-1) ...
- Selecting previously unselected package libwayland-dev:amd64.
- Preparing to unpack .../198-libwayland-dev_1.21.0-1_amd64.deb ...
- Unpacking libwayland-dev:amd64 (1.21.0-1) ...
- Selecting previously unselected package libxcomposite-dev:amd64.
- Preparing to unpack .../199-libxcomposite-dev_1%3a0.4.5-1_amd64.deb ...
- Unpacking libxcomposite-dev:amd64 (1:0.4.5-1) ...
- Selecting previously unselected package libxcursor-dev:amd64.
- Preparing to unpack .../200-libxcursor-dev_1%3a1.2.1-1_amd64.deb ...
- Unpacking libxcursor-dev:amd64 (1:1.2.1-1) ...
- Selecting previously unselected package libxdamage-dev:amd64.
- Preparing to unpack .../201-libxdamage-dev_1%3a1.1.6-1_amd64.deb ...
- Unpacking libxdamage-dev:amd64 (1:1.1.6-1) ...
- Selecting previously unselected package libxinerama-dev:amd64.
- Preparing to unpack .../202-libxinerama-dev_2%3a1.1.4-3_amd64.deb ...
- Unpacking libxinerama-dev:amd64 (2:1.1.4-3) ...
- Selecting previously unselected package libxkbcommon-dev:amd64.
- Preparing to unpack .../203-libxkbcommon-dev_1.5.0-1_amd64.deb ...
- Unpacking libxkbcommon-dev:amd64 (1.5.0-1) ...
- Selecting previously unselected package libxrandr-dev:amd64.
- Preparing to unpack .../204-libxrandr-dev_2%3a1.5.2-2+b1_amd64.deb ...
- Unpacking libxrandr-dev:amd64 (2:1.5.2-2+b1) ...
- Selecting previously unselected package wayland-protocols.
- Preparing to unpack .../205-wayland-protocols_1.31-1_all.deb ...
- Unpacking wayland-protocols (1.31-1) ...
- Selecting previously unselected package libgtk-3-dev:amd64.
- Preparing to unpack .../206-libgtk-3-dev_3.24.38-2~deb12u3_amd64.deb ...
- Unpacking libgtk-3-dev:amd64 (3.24.38-2~deb12u3) ...
- Selecting previously unselected package libxml2-dev:amd64.
- Preparing to unpack .../207-libxml2-dev_2.9.14+dfsg-1.3~deb12u2_amd64.deb ...
- Unpacking libxml2-dev:amd64 (2.9.14+dfsg-1.3~deb12u2) ...
- Selecting previously unselected package libgtksourceview-3.0-dev:amd64.
- Preparing to unpack .../208-libgtksourceview-3.0-dev_3.24.11-2+b1_amd64.deb ...
- Unpacking libgtksourceview-3.0-dev:amd64 (3.24.11-2+b1) ...
- Selecting previously unselected package libpng-tools.
- Preparing to unpack .../209-libpng-tools_1.6.39-2_amd64.deb ...
- Unpacking libpng-tools (1.6.39-2) ...
- Selecting previously unselected package librsvg2-2:amd64.
- Preparing to unpack .../210-librsvg2-2_2.54.7+dfsg-1~deb12u1_amd64.deb ...
- Unpacking librsvg2-2:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Selecting previously unselected package librsvg2-common:amd64.
- Preparing to unpack .../211-librsvg2-common_2.54.7+dfsg-1~deb12u1_amd64.deb ...
- Unpacking librsvg2-common:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../212-xdg-user-dirs_0.18-1_amd64.deb ...
- Unpacking xdg-user-dirs (0.18-1) ...
- Setting up media-types (10.0.0) ...
- Setting up libgraphite2-3:amd64 (1.3.14-1) ...
- Setting up libxcb-dri3-0:amd64 (1.15-1) ...
- Setting up liblcms2-2:amd64 (2.14-2) ...
- Setting up libpixman-1-0:amd64 (0.42.2-1) ...
- Setting up libwayland-server0:amd64 (1.21.0-1) ...
- Setting up libx11-xcb1:amd64 (2:1.8.4-2+deb12u2) ...
- Setting up libpciaccess0:amd64 (0.17-2) ...
- Setting up fontconfig (2.14.1-4) ...
- Regenerating fonts cache... 
- done.
- Setting up systemd-sysv (252.38-1~deb12u1) ...
- Setting up libpixman-1-dev:amd64 (0.42.2-1) ...
- Setting up libxdamage1:amd64 (1:1.1.6-1) ...
- Setting up libicu72:amd64 (72.1-3+deb12u1) ...
- Setting up libxcb-xfixes0:amd64 (1.15-1) ...
- Setting up libzstd-dev:amd64 (1.5.4+dfsg2-5) ...
- Setting up libglvnd-core-dev:amd64 (1.6.0-1) ...
- Setting up hicolor-icon-theme (0.17-2) ...
- Setting up libxi6:amd64 (2:1.8-1+b1) ...
- Setting up libxrender1:amd64 (1:0.9.10-1.1) ...
- Setting up libdatrie1:amd64 (0.2.13-2+b1) ...
- Setting up xdg-user-dirs (0.18-1) ...
- Setting up libpng-tools (1.6.39-2) ...
- Setting up libxcb-render0:amd64 (1.15-1) ...
- Setting up libglib2.0-0:amd64 (2.74.6-2+deb12u6) ...
- Setting up libglvnd0:amd64 (1.6.0-1) ...
- Setting up libxcb-glx0:amd64 (1.15-1) ...
- Setting up libwebpdemux2:amd64 (1.2.4-0.2+deb12u1) ...
- Setting up libpython3.11-stdlib:amd64 (3.11.2-6+deb12u6) ...
- Setting up libgdk-pixbuf2.0-common (2.42.10+dfsg-1+deb12u2) ...
- Setting up x11-common (1:7.7+23) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of restart.
- Setting up libsensors-config (1:3.6.0-7.1) ...
- Setting up libjbig-dev:amd64 (2.1-6.1) ...
- Setting up libnss-systemd:amd64 (252.38-1~deb12u1) ...
- Setting up xkb-data (2.35.1-1) ...
- Setting up liblzo2-2:amd64 (2.10-2) ...
- Setting up libxcb-shm0:amd64 (1.15-1) ...
- Setting up libffi-dev:amd64 (3.4.4-1) ...
- Setting up libcairo2:amd64 (1.16.0-7) ...
- Setting up libpcre2-16-0:amd64 (10.42-1) ...
- Setting up libcolord2:amd64 (1.4.6-2.2) ...
- Setting up libopengl0:amd64 (1.6.0-1) ...
- Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ...
- Setting up libxcb-present0:amd64 (1.15-1) ...
- Setting up libdconf1:amd64 (0.40.0-4) ...
- Setting up libxcb-shm0-dev:amd64 (1.15-1) ...
- Setting up libgraphite2-dev:amd64 (1.3.14-1) ...
- Setting up libz3-4:amd64 (4.8.12-3.1) ...
- Setting up libpcre2-32-0:amd64 (10.42-1) ...
- Setting up libglib2.0-data (2.74.6-2+deb12u6) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libgles2:amd64 (1.6.0-1) ...
- Setting up libexpat1-dev:amd64 (2.5.0-1+deb12u1) ...
- Setting up libjpeg62-turbo-dev:amd64 (1:2.1.5-2) ...
- Setting up libepoxy0:amd64 (1.5.10-1) ...
- Setting up libxfixes3:amd64 (1:6.0.0-2) ...
- Setting up libxcb-sync1:amd64 (1.15-1) ...
- Setting up uuid-dev:amd64 (2.38.1-5+deb12u3) ...
- Setting up libavahi-common-data:amd64 (0.8-10+deb12u1) ...
- Setting up libgles1:amd64 (1.6.0-1) ...
- Setting up libdbus-1-3:amd64 (1.14.10-1~deb12u1) ...
- Setting up libfribidi0:amd64 (1.0.8-2.1) ...
- Setting up libxinerama1:amd64 (2:1.1.4-3) ...
- Setting up systemd-timesyncd (252.38-1~deb12u1) ...
- 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 → /lib/systemd/system/systemd-timesyncd.service.

- Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service.

- Setting up libxrandr2:amd64 (2:1.5.2-2+b1) ...
- Setting up icu-devtools (72.1-3+deb12u1) ...
- Setting up libsepol-dev:amd64 (3.4-2.1) ...
- Setting up libxcb-render0-dev:amd64 (1.15-1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libsensors5:amd64 (1:3.6.0-7.1) ...
- Setting up liblerc-dev:amd64 (4.0.0+ds-2) ...
- Setting up libglapi-mesa:amd64 (22.3.6-1+deb12u1) ...
- Setting up libxext-dev:amd64 (2:1.3.4-1+b1) ...
- Setting up liblzma-dev:amd64 (5.4.1-1) ...
- Setting up libxcb-dri2-0:amd64 (1.15-1) ...
- Setting up zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Setting up libpcre2-posix3:amd64 (10.42-1) ...
- Setting up wayland-protocols (1.31-1) ...
- Setting up libxshmfence1:amd64 (1.3-1) ...
- Setting up at-spi2-common (2.46.0-5) ...
- Setting up libxcb-randr0:amd64 (1.15-1) ...
- Setting up dbus-session-bus-common (1.14.10-1~deb12u1) ...
- Setting up libgtksourceview-3.0-common (3.24.11-2) ...
- Setting up libharfbuzz0b:amd64 (6.0.0+dfsg-3) ...
- Setting up libthai-data (0.1.29-1) ...
- Setting up libgirepository-1.0-1:amd64 (1.74.0-3) ...
- Setting up sgml-base (1.31) ...
- Setting up libcairo-gobject2:amd64 (1.16.0-7) ...
- Setting up libatk1.0-0:amd64 (2.46.0-5) ...
- Setting up libwayland-egl1:amd64 (1.21.0-1) ...
- Setting up libopengl-dev:amd64 (1.6.0-1) ...
- Setting up dbus-system-bus-common (1.14.10-1~deb12u1) ...
- Setting up libwebpmux3:amd64 (1.2.4-0.2+deb12u1) ...
- Setting up libtiffxx6:amd64 (4.5.0-6+deb12u2) ...
- Setting up libdeflate-dev:amd64 (1.14-1) ...
- Setting up libdrm-common (2.4.114-1) ...
- Setting up libelf1:amd64 (0.188-2.1) ...
- Setting up libxcomposite1:amd64 (1:0.4.5-1) ...
- Setting up libxrender-dev:amd64 (1:0.9.10-1.1) ...
- Setting up libicu-dev:amd64 (72.1-3+deb12u1) ...
- Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u2) ...
- Setting up dbus-bin (1.14.10-1~deb12u1) ...
- Setting up libbrotli-dev:amd64 (1.0.9-2+b6) ...
- Setting up libpython3-stdlib:amd64 (3.11.2-1+b1) ...
- Setting up libxkbcommon0:amd64 (1.5.0-1) ...
- Setting up libwayland-client0:amd64 (1.21.0-1) ...
- Setting up libcairo-script-interpreter2:amd64 (1.16.0-7) ...
- Setting up libblkid-dev:amd64 (2.38.1-5+deb12u3) ...
- Setting up python3.11 (3.11.2-6+deb12u6) ...
- Setting up libice6:amd64 (2:1.0.10-1) ...
- Setting up libxft2:amd64 (2.3.6-1) ...
- Setting up libharfbuzz-icu0:amd64 (6.0.0+dfsg-3) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libpcre2-dev:amd64 (10.42-1) ...
- Setting up libice-dev:amd64 (2:1.0.10-1) ...
- Setting up libselinux1-dev:amd64 (3.4-1+b6) ...
- Setting up libxtst6:amd64 (2:1.2.3-1.1) ...
- Setting up libfribidi-dev:amd64 (1.0.8-2.1) ...
- Setting up libxkbcommon-dev:amd64 (1.5.0-1) ...
- Setting up libxcursor1:amd64 (1:1.2.1-1) ...
- Setting up libpng-dev:amd64 (1.6.39-2) ...
- Setting up libavahi-common3:amd64 (0.8-10+deb12u1) ...
- Setting up libjpeg-dev:amd64 (1:2.1.5-2) ...
- Setting up libglib2.0-bin (2.74.6-2+deb12u6) ...
- Setting up python3 (3.11.2-1+b1) ...
- running python rtupdate hooks for python3.11...
- running python post-rtupdate hooks for python3.11...
- Setting up dbus-daemon (1.14.10-1~deb12u1) ...
- Setting up libharfbuzz-gobject0:amd64 (6.0.0+dfsg-3) ...
- Setting up libatspi2.0-0:amd64 (2.46.0-5) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up libfreetype-dev:amd64 (2.12.1+dfsg-5+deb12u4) ...
- Setting up libxfixes-dev:amd64 (1:6.0.0-2) ...
- Setting up libatk-bridge2.0-0:amd64 (2.46.0-5) ...
- Setting up libthai0:amd64 (0.1.29-1) ...
- Setting up libwayland-bin (1.21.0-1) ...
- Setting up libxrandr-dev:amd64 (2:1.5.2-2+b1) ...
- Setting up libxml2-dev:amd64 (2.9.14+dfsg-1.3~deb12u2) ...
- Setting up libwebp-dev:amd64 (1.2.4-0.2+deb12u1) ...
- Setting up libtiff-dev:amd64 (4.5.0-6+deb12u2) ...
- Setting up dbus (1.14.10-1~deb12u1) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up shared-mime-info (2.2-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Setting up libxinerama-dev:amd64 (2:1.1.4-3) ...
- Setting up gir1.2-glib-2.0:amd64 (1.74.0-3) ...
- Setting up libdrm2:amd64 (2.4.114-1+b1) ...
- Setting up libdatrie-dev:amd64 (0.2.13-2+b1) ...
- Setting up libwayland-cursor0:amd64 (1.21.0-1) ...
- Setting up xml-core (0.18+nmu1) ...
- Setting up libllvm15:amd64 (1:15.0.6-4+b1) ...
- Setting up libpam-systemd:amd64 (252.38-1~deb12u1) ...
- Setting up libharfbuzz-subset0:amd64 (6.0.0+dfsg-3) ...
- Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u2) ...
- Setting up libxi-dev:amd64 (2:1.8-1+b1) ...
- Setting up python3-lib2to3 (3.11.2-3) ...
- Setting up libsm6:amd64 (2:1.2.3-1) ...
- Setting up libavahi-client3:amd64 (0.8-10+deb12u1) ...
- Setting up libmount-dev:amd64 (2.38.1-5+deb12u3) ...
- Setting up libdrm-amdgpu1:amd64 (2.4.114-1+b1) ...
- Setting up libxtst-dev:amd64 (2:1.2.3-1.1) ...
- Setting up python3-distutils (3.11.2-3) ...
- Setting up libxdamage-dev:amd64 (1:1.1.6-1) ...
- Setting up libglib2.0-dev-bin (2.74.6-2+deb12u6) ...
- Setting up gtk-update-icon-cache (3.24.38-2~deb12u3) ...
- Setting up libdrm-nouveau2:amd64 (2.4.114-1+b1) ...
- Setting up gir1.2-freedesktop:amd64 (1.74.0-3) ...
- Setting up gir1.2-gdkpixbuf-2.0:amd64 (2.42.10+dfsg-1+deb12u2) ...
- Setting up libgbm1:amd64 (22.3.6-1+deb12u1) ...
- Setting up libfontconfig-dev:amd64 (2.14.1-4) ...
- Setting up gir1.2-atk-1.0:amd64 (2.46.0-5) ...
- Setting up libsm-dev:amd64 (2:1.2.3-1) ...
- Setting up libdrm-radeon1:amd64 (2.4.114-1+b1) ...
- Setting up libxcomposite-dev:amd64 (1:0.4.5-1) ...
- Setting up libxcursor-dev:amd64 (1:1.2.1-1) ...
- Setting up libpango-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up libdrm-intel1:amd64 (2.4.114-1+b1) ...
- Setting up libgl1-mesa-dri:amd64 (22.3.6-1+deb12u1) ...
- Setting up gir1.2-atspi-2.0:amd64 (2.46.0-5) ...
- Setting up libwayland-dev:amd64 (1.21.0-1) ...
- Setting up gir1.2-harfbuzz-0.0:amd64 (6.0.0+dfsg-3) ...
- Setting up dbus-user-session (1.14.10-1~deb12u1) ...
- Setting up libegl-mesa0:amd64 (22.3.6-1+deb12u1) ...
- Setting up libglib2.0-dev:amd64 (2.74.6-2+deb12u6) ...
- Setting up adwaita-icon-theme (43-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-1) ...
- Setting up libcups2:amd64 (2.4.2-3+deb12u8) ...
- Setting up libgdk-pixbuf2.0-bin (2.42.10+dfsg-1+deb12u2) ...
- Setting up libegl1:amd64 (1.6.0-1) ...
- Setting up libcairo2-dev:amd64 (1.16.0-7) ...
- Setting up libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up libatk1.0-dev:amd64 (2.46.0-5) ...
- Setting up libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up libxft-dev:amd64 (2.3.6-1) ...
- Setting up libgdk-pixbuf-2.0-dev:amd64 (2.42.10+dfsg-1+deb12u2) ...
- Setting up libharfbuzz-dev:amd64 (6.0.0+dfsg-3) ...
- Setting up libglx-mesa0:amd64 (22.3.6-1+deb12u1) ...
- Setting up libpangoxft-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up libglx0:amd64 (1.6.0-1) ...
- Setting up pango1.0-tools (1.50.12+ds-1) ...
- Setting up dconf-service (0.40.0-4) ...
- Setting up librsvg2-2:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Setting up gir1.2-pango-1.0:amd64 (1.50.12+ds-1) ...
- Setting up libgl1:amd64 (1.6.0-1) ...
- Setting up libpango1.0-dev:amd64 (1.50.12+ds-1) ...
- Setting up librsvg2-common:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Setting up libglx-dev:amd64 (1.6.0-1) ...
- Setting up libgl-dev:amd64 (1.6.0-1) ...
- Setting up dconf-gsettings-backend:amd64 (0.40.0-4) ...
- Setting up libegl-dev:amd64 (1.6.0-1) ...
- Setting up libepoxy-dev:amd64 (1.5.10-1) ...
- Setting up libgles-dev:amd64 (1.6.0-1) ...
- Setting up libgtk-3-common (3.24.38-2~deb12u3) ...
- Setting up gsettings-desktop-schemas (43.0-1) ...
- Setting up libgtk-3-0:amd64 (3.24.38-2~deb12u3) ...
- Setting up gir1.2-gtk-3.0:amd64 (3.24.38-2~deb12u3) ...
- Setting up libglvnd-dev:amd64 (1.6.0-1) ...
- Setting up libgtk-3-bin (3.24.38-2~deb12u3) ...
- Setting up libgtksourceview-3.0-1:amd64 (3.24.11-2+b1) ...
- Setting up gir1.2-gtksource-3.0:amd64 (3.24.11-2+b1) ...
- Setting up at-spi2-core (2.46.0-5) ...
- Setting up libegl1-mesa-dev:amd64 (22.3.6-1+deb12u1) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...
- Processing triggers for systemd (252.38-1~deb12u1) ...
- Processing triggers for sgml-base (1.31) ...
- Setting up libdbus-1-dev:amd64 (1.14.10-1~deb12u1) ...
- Setting up libatspi2.0-dev:amd64 (2.46.0-5) ...
- Setting up libatk-bridge2.0-dev:amd64 (2.46.0-5) ...
- Setting up libgtk-3-dev:amd64 (3.24.38-2~deb12u3) ...
- Setting up libgtksourceview-3.0-dev:amd64 (3.24.11-2+b1) ...
- Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cairo2.0.6.5  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved conf-gmp.5  (cached)
-> installed conf-findutils.1
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved coq.8.13.1, coqide.8.13.1  (cached)
-> installed camlp-streams.5.0.1
-> installed conf-adwaita-icon-theme.2
-> installed conf-cairo.1
-> installed conf-gtk3.18
-> installed conf-gtksourceview3.0+2
-> 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 num.1.6
-> installed cairo2.0.6.5
-> installed ocamlfind.1.9.8
-> installed lablgtk3.3.1.5
-> installed zarith.1.14
-> installed lablgtk3-sourceview3.3.1.5
-> installed coq.8.13.1
-> installed coqide.8.13.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 17:56.56 ---> saved as "c27b87910c3438702956594763fa14431b0e75ba80a8acac138b98a4f57c2681"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test coqide.8.13.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile coqide 8.13.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved coqide.8.13.1  (https://opam.ocaml.org/cache)
-> removed   coqide.8.13.1
-> installed coqide.8.13.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 17:57.31 ---> saved as "084c94ab24deda8b14818325a653ce54695d9f83e7b5bf5b150ed7b09d835f3e"

/home/opam: (run (shell  "opam reinstall --with-test --verbose coqide.8.13.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; 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.1' && 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.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [coqide.8.13.1: extract]
-> retrieved coqide.8.13.1  (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.1)
- You have OCaml 4.14.2. 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.2
-   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=" "-j255" "coqide-files" (CWD=/home/opam/.opam/4.14/.opam-switch/build/coqide.8.13.1)
- 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.1'
- OCAMLC    clib/segmenttree.mli
- OCAMLC    clib/unicode.mli
- OCAMLC    tools/coqdep_lexer.mli
- OCAMLLEX  tools/coqdep_lexer.mll
- OCAMLC    tools/coqdep_common.mli
- OCAMLC    kernel/genOpcodeFiles.ml
- 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
- 217 states, 2223 transitions, table size 10194 bytes
- OCAMLLEX  tools/coqdoc/cpretty.mll
- OCAMLLEX  ide/coqide/utf8_convert.mll
- OCAMLLEX  ide/coqide/protocol/xml_lexer.mll
- printf '# 1 "%s"\n' gramlib/ploc.ml > gramlib/.pack/gramlib__Ploc.ml
- OCAMLLEX  ide/coqide/coq_lex.mll
- OCAMLLEX  ide/coqide/config_lexer.mll
- printf '# 1 "%s"\n' gramlib/plexing.ml > gramlib/.pack/gramlib__Plexing.ml
- cat gramlib/ploc.ml >> gramlib/.pack/gramlib__Ploc.ml
- 15 states, 827 transitions, table size 3398 bytes
- cat gramlib/plexing.ml >> gramlib/.pack/gramlib__Plexing.ml
- printf '# 1 "%s"\n' 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/gramext.ml >> gramlib/.pack/gramlib__Gramext.ml
- cat gramlib/grammar.ml >> gramlib/.pack/gramlib__Grammar.ml
- 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
- 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
- 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.mli > gramlib/.pack/gramlib__Ploc.mli
- printf '# 1 "%s"\n' gramlib/plexing.mli > gramlib/.pack/gramlib__Plexing.mli
- 30 states, 1657 transitions, table size 6808 bytes
- 6052 additional bytes used for bindings
- printf '# 1 "%s"\n' gramlib/gramext.mli > gramlib/.pack/gramlib__Gramext.mli
- cat gramlib/ploc.mli >> gramlib/.pack/gramlib__Ploc.mli
- 244 states, 858 transitions, table size 4896 bytes
- 124 states, 1808 transitions, table size 7976 bytes
- printf '# 1 "%s"\n' gramlib/grammar.mli > gramlib/.pack/gramlib__Grammar.mli
- File "kernel/genOpcodeFiles.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- 240 states, 15992 transitions, table size 65408 bytes
- cat gramlib/plexing.mli >> gramlib/.pack/gramlib__Plexing.mli
- cat gramlib/gramext.mli >> gramlib/.pack/gramlib__Gramext.mli
- cat gramlib/grammar.mli >> gramlib/.pack/gramlib__Grammar.mli
- OCAMLDEP  checker/MLFILES checker/MLIFILES
- OCAMLOPT  clib/segmenttree.ml
- OCAMLC    clib/segmenttree.ml
- OCAMLC    tools/coqdep_boot.ml
- WRITE kernel/byterun/coq_instruct.h
- WRITE kernel/byterun/coq_jumptbl.h
- OCAMLC    tools/ocamllibdep.ml
- OCAMLC    coqpp/coqpp_parse.mli
- WRITE kernel/vmopcodes.ml
- CCDEP     kernel/byterun/coq_fix_code.c
- CCDEP     kernel/byterun/coq_float64.c
- CCDEP     kernel/byterun/coq_interp.c
- CCDEP     kernel/byterun/coq_memory.c
- CCDEP     kernel/byterun/coq_values.c
- File "tools/coqdep_boot.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC    clib/unicodetable.ml
- OCAMLC    coqpp/coqpp_parse.ml
- File "tools/ocamllibdep.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT  tools/ocamllibdep.ml
- OCAMLC    coqpp/coqpp_lex.ml
- 2719 states, 8742 transitions, table size 51282 bytes
- 17643 additional bytes used for bindings
- File "coqpp/coqpp_lex.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLBEST -o bin/ocamllibdep
- OCAMLC -a bin/coqpp
- File "coqpp/coqpp_main.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "clib/unicodetable.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   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_micromega.mlg
- COQPP   plugins/micromega/g_zify.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/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   parsing/g_prim.mlg
- COQPP   parsing/g_constr.mlg
- COQPP   user-contrib/Ltac2/g_ltac2.mlg
- OCAMLOPT  clib/unicodetable.ml
- OCAMLC    clib/unicode.ml
- OCAMLLIBDEP  checker/MLLIBFILES checker/MLPACKFILES
- OCAMLLIBDEP  user-contrib/MLLIBFILES user-contrib/MLPACKFILES
- OCAMLDEP  user-contrib/MLFILES user-contrib/MLIFILES
- OCAMLLIBDEP  plugins/MLLIBFILES plugins/MLPACKFILES
- OCAMLDEP  plugins/MLFILES plugins/MLIFILES
- OCAMLLIBDEP  MLLIBFILES MLPACKFILES
- OCAMLDEP  MLFILES MLIFILES
- 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
- COQDEP    VFILES
- 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    clib/segmenttree.mli
- OCAMLC    clib/unicode.mli
- OCAMLC    tools/coqdep_lexer.mli
- OCAMLC    tools/coqdep_common.mli
- OCAMLC    tools/ocamllibdep.ml
- OCAMLC    coqpp/coqpp_ast.mli
- OCAMLC    clib/segmenttree.ml
- OCAMLOPT  clib/segmenttree.ml
- OCAMLC    coqpp/coqpp_parse.mli
- OCAMLC    tools/coqdep_boot.ml
- File "tools/ocamllibdep.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT  tools/ocamllibdep.ml
- OCAMLC    clib/unicodetable.ml
- File "tools/coqdep_boot.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC    coqpp/coqpp_parse.ml
- OCAMLC    coqpp/coqpp_lex.ml
- OCAMLBEST -o bin/ocamllibdep
- File "coqpp/coqpp_lex.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC -a bin/coqpp
- File "clib/unicodetable.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- 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   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
- 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   parsing/g_prim.mlg
- COQPP   parsing/g_constr.mlg
- COQPP   user-contrib/Ltac2/g_ltac2.mlg
- OCAMLOPT  clib/unicodetable.ml
- OCAMLC    clib/unicode.ml
- OCAMLDEP  user-contrib/MLFILES user-contrib/MLIFILES
- OCAMLDEP  plugins/MLFILES plugins/MLIFILES
- OCAMLDEP  MLFILES MLIFILES
- 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
- 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.1'
Processing  2/4: [coqide: make coqide-opt]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "COQ_USE_DUNE=" "-j255" "coqide-opt" (CWD=/home/opam/.opam/4.14/.opam-switch/build/coqide.8.13.1)
- 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.1'
- 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
- File "ide/coqide/configwin_types.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC    stm/coqworkmgrApi.mli
- File "kernel/vmopcodes.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC    stm/vio_checking.mli
- OCAMLC    toplevel/usage.mli
- OCAMLC    toplevel/workerLoop.mli
- OCAMLC    toplevel/coqc.mli
- 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.
- OCAMLC    kernel/byterun/coq_fix_code.c
- OCAMLC    kernel/byterun/coq_float64.c
- OCAMLC    kernel/byterun/coq_values.c
- OCAMLC    kernel/byterun/coq_memory.c
- OCAMLC    kernel/byterun/coq_interp.c
- OCAMLOPT  config/coq_config.ml
- OCAMLOPT  clib/cObj.ml
- OCAMLOPT  clib/cEphemeron.ml
- OCAMLC    clib/cMap.mli
- OCAMLC    clib/hashcons.mli
- OCAMLC    clib/cList.mli
- OCAMLOPT  clib/option.ml
- OCAMLOPT  clib/cThread.ml
- OCAMLOPT  clib/trie.ml
- OCAMLOPT  clib/predicate.ml
- OCAMLOPT  clib/heap.ml
- OCAMLOPT  clib/unionfind.ml
- OCAMLC    clib/dyn.mli
- OCAMLOPT  clib/iStream.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/protocol/richpp.mli
- OCAMLC    ide/coqide/minilib.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
- OCAMLOPT  ide/coqide/gtk_parsing.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 ();
-       |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                
- 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/float64.mli
- OCAMLC    kernel/evar.mli
- 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  kernel/vmopcodes.ml
- OCAMLC    library/summary.mli
- OCAMLOPT  gramlib/.pack/gramlib__Gramext.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
- File "ide/coqide/configwin_messages.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC    clib/int.mli
- OCAMLC    clib/cSet.mli
- OCAMLC    clib/cString.mli
- OCAMLC    clib/hMap.mli
- OCAMLC    lib/stateid.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
- OCAMLOPT  ide/coqide/wg_Detachable.ml
- OCAMLC    interp/deprecation.mli
- OCAMLC    gramlib/.pack/gramlib__Ploc.mli
- OCAMLOPT  tactics/dnet.ml
- File "ide/coqide/configwin_types.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC    lib/acyclicGraph.mli
- OCAMLOPT  ide/coqide/coq_lex.ml
- OCAMLC    lib/dAst.mli
- OCAMLC    lib/feedback.mli
- File "ide/coqide/configwin_messages.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT  ide/coqide/protocol/xml_parser.ml
- OCAMLC    ide/coqide/document.mli
- OCAMLC    lib/util.mli
- coq_interp.c: In function 'coq_interprete':
- coq_interp.c:281:20: warning: storing the address of local variable 'coq_lbl_ACC0' in 'coq_instr_base' [-Wdangling-pointer=]
-   281 |     coq_instr_base = coq_Jumptbl_base;
-       |                    ^
- coq_interp.c:74:26: note: 'coq_lbl_ACC0' declared here
-    74 | #  define Instruct(name) coq_lbl_##name:
-       |                          ^~~~~~~~
- coq_interp.c:305:7: note: in expansion of macro 'Instruct'
-   305 |       Instruct(ACC0){
-       |       ^~~~~~~~
- In file included from coq_interp.c:28:
- coq_fix_code.h:20:15: note: 'coq_instr_base' declared here
-    20 | extern char * coq_instr_base;
-       |               ^~~~~~~~~~~~~~
- OCAMLC    lib/objFile.mli
- OCAMLOPT  kernel/float64_common.ml
- OCAMLC    ide/coqide/ideutils.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.
- OCAMLC    stm/asyncTaskQueue.mli
- 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.)
- OCAMLC    ide/coqide/protocol/interface.ml
- OCAMLC    ide/coqide/config_lexer.mli
- OCAMLC    ide/coqide/preferences.mli
- OCAMLC    kernel/names.mli
- OCAMLC    kernel/esubst.mli
- OCAMLC    gramlib/.pack/gramlib__Plexing.mli
- OCAMLC    parsing/tok.mli
- OCAMLOPT  clib/int.ml
- OCAMLOPT  kernel/float64.ml
- OCAMLOPT  ide/coqide/sentence.ml
- OCAMLC    stm/partac.mli
- File "ide/coqide/protocol/interface.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "gramlib/plexing.mli", line 13, characters 41-49:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/plexing.mli", line 13, characters 57-65:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC    ide/coqide/protocol/xmlprotocol.mli
- OCAMLC    ide/coqide/coq.mli
- OCAMLC    ide/coqide/wg_ProofView.mli
- OCAMLC    gramlib/.pack/gramlib__Grammar.mli
- OCAMLC    parsing/cLexer.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
- OCAMLC    kernel/conv_oracle.mli
- File "pretyping/locus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC    library/coqlib.mli
- OCAMLC    interp/decls.mli
- OCAMLC    vernac/loadpath.mli
- OCAMLC    pretyping/locusops.mli
- OCAMLOPT  clib/store.ml
- OCAMLC    kernel/uGraph.mli
- OCAMLC    kernel/sorts.mli
- OCAMLC    engine/univNames.mli
- OCAMLC    tactics/declareUctx.mli
- OCAMLOPT  clib/hashcons.ml
- OCAMLC    ide/coqide/wg_RoutedMessageViews.mli
- 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/context.mli
- OCAMLC    kernel/vmvalues.mli
- OCAMLC    ide/coqide/coqOps.mli
- OCAMLOPT  clib/exninfo.ml
- OCAMLOPT  clib/cSet.ml
- OCAMLC    kernel/vm.mli
- OCAMLC    kernel/constr.mli
- OCAMLC    ide/coqide/wg_Command.mli
- OCAMLOPT  lib/flags.ml
- OCAMLOPT  lib/control.ml
- OCAMLOPT  lib/loc.ml
- OCAMLOPT  clib/cString.ml
- OCAMLOPT  clib/cArray.ml
- OCAMLC    ide/coqide/session.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    kernel/retroknowledge.mli
- OCAMLC    kernel/vmbytecodes.mli
- File "pretyping/pattern.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC    engine/univMinim.mli
- OCAMLOPT  lib/dAst.ml
- OCAMLOPT  clib/cUnix.ml
- OCAMLOPT  ide/coqide/protocol/serialize.ml
- OCAMLC    ide/coqide/microPG.mli
- OCAMLC    kernel/mod_subst.mli
- OCAMLC    kernel/vmemitcodes.mli
- OCAMLC    kernel/opaqueproof.mli
- OCAMLC    library/globnames.mli
- OCAMLC    tactics/term_dnet.mli
- OCAMLOPT  lib/coqProject_file.ml
- OCAMLOPT -a -o clib/clib.cmxa
- OCAMLOPT  lib/util.ml
- OCAMLOPT  lib/pp.ml
- OCAMLOPT  kernel/parray.ml
- OCAMLC    kernel/declarations.ml
- OCAMLC    vernac/library.mli
- OCAMLC    library/libobject.mli
- OCAMLC    library/nametab.mli
- 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.
- 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.
- 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.
- 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.
- OCAMLC    kernel/declareops.mli
- OCAMLOPT  lib/envars.ml
- OCAMLOPT  ide/coqide/wg_Notebook.ml
- OCAMLOPT  ide/coqide/config_lexer.ml
- OCAMLOPT  kernel/esubst.ml
- OCAMLOPT  gramlib/.pack/gramlib__Plexing.ml
- OCAMLOPT  tactics/dn.ml
- 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
- 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.
- 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
- OCAMLOPT  interp/numTok.ml
- OCAMLC    vernac/printmod.mli
- OCAMLOPT  lib/pp_diff.ml
- OCAMLOPT  lib/stateid.ml
- OCAMLOPT  lib/cErrors.ml
- OCAMLOPT  lib/rtree.ml
- OCAMLOPT  ide/coqide/protocol/richpp.ml
- OCAMLOPT  kernel/evar.ml
- OCAMLC    kernel/vconv.mli
- OCAMLC    kernel/nativecode.mli
- OCAMLC    kernel/nativeconv.mli
- OCAMLC    kernel/relevanceops.mli
- OCAMLC    library/lib.mli
- OCAMLC    vernac/attributes.mli
- 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.
- OCAMLOPT  ide/coqide/minilib.ml
- 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/feedback.ml
- OCAMLOPT  ide/coqide/document.ml
- OCAMLC    kernel/nativelib.mli
- OCAMLC    kernel/nativelibrary.mli
- 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
- OCAMLOPT  ide/coqide/configwin_ihm.ml
- OCAMLC    kernel/safe_typing.mli
- OCAMLOPT  parsing/tok.ml
- OCAMLOPT  lib/cWarnings.ml
- OCAMLOPT  lib/explore.ml
- OCAMLOPT  lib/aux_file.ml
- 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 "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.)
- OCAMLOPT  ide/coqide/protocol/interface.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/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.
- OCAMLOPT  engine/logic_monad.ml
- OCAMLOPT  gramlib/.pack/gramlib__Grammar.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 "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    library/global.mli
- OCAMLC    engine/uState.mli
- File "ide/coqide/protocol/interface.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT  stm/spawned.ml
- 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.)
- OCAMLOPT  ide/coqide/protocol/xmlprotocol.ml
- 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.
- File "gramlib/grammar.ml", line 33, characters 40-48:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "gramlib/grammar.ml", line 117, characters 24-32:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC    engine/evd.mli
- OCAMLOPT  lib/system.ml
- OCAMLOPT  library/summary.ml
- OCAMLOPT  interp/deprecation.ml
- OCAMLOPT  parsing/cLexer.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.
- 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    engine/eConstr.mli
- OCAMLC    engine/proofview_monad.mli
- OCAMLC    pretyping/indrec.mli
- 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 "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 "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 "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 "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 "parsing/cLexer.ml", line 309, characters 6-17:
- 309 |       Stream.junk s;
-             ^^^^^^^^^^^
- 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 "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 "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 "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 "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 "gramlib/grammar.ml", line 1076, characters 15-29:
- 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.
- File "parsing/cLexer.ml", line 352, characters 6-17:
- 352 |       Stream.junk s;
-             ^^^^^^^^^^^
- 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 1085, characters 15-29:
- 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 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 "parsing/cLexer.ml", line 366, characters 4-15:
- 366 |     Stream.junk s;
-           ^^^^^^^^^^^
- 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 367, characters 13-25:
- 367 |     let ep = Stream.count s in
-                    ^^^^^^^^^^^^
- 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 "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 1125, characters 13-25:
- 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 1126, characters 17-29:
- 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 "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.
- 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 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 437, characters 6-17:
- 437 |       Stream.junk s;
-             ^^^^^^^^^^^
- 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 "gramlib/grammar.ml", line 1200, characters 25-33:
- 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 "gramlib/grammar.ml", line 1201, characters 22-34:
- 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 "gramlib/grammar.ml", line 1202, characters 43-57:
- 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 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 "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 "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 "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 "parsing/cLexer.ml", line 457, characters 6-17:
- 457 |       Stream.junk s;
-             ^^^^^^^^^^^
- 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 "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.
- 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 "gramlib/grammar.ml", line 1220, characters 31-45:
- 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 "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.
- OCAMLOPT  lib/objFile.ml
- 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 "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 "gramlib/grammar.ml", line 1238, characters 29-40:
- 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 "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 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 "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 "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 "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 "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 "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 "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 "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 560, characters 14-26:
- 560 |         match Stream.npeek lenmarker 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 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 "gramlib/grammar.ml", line 1368, characters 23-31:
- 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 "gramlib/grammar.ml", line 1369, characters 41-55:
- 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 "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 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 "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 "parsing/cLexer.ml", line 598, characters 6-17:
- 598 |       Stream.junk s;
-             ^^^^^^^^^^^
- 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 "gramlib/grammar.ml", line 1382, characters 30-38:
- 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 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 "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 "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 "gramlib/grammar.ml", line 1399, characters 32-40:
- 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.
- 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 650, characters 35-47:
- 650 |           Stream.Failure -> raise (Stream.Error "")
-                                          ^^^^^^^^^^^^
- 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 "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 "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 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.
- 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 "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 "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.
- 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 "gramlib/grammar.ml", line 1469, characters 33-41:
- 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 "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 "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 "gramlib/grammar.ml", line 1474, characters 9-21:
- 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 "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 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.
- 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.
- 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 "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 "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 "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 "gramlib/grammar.ml", line 1551, characters 22-34:
- 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 "gramlib/grammar.ml", line 1557, characters 33-45:
- 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 "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 "gramlib/grammar.ml", line 1606, characters 31-39:
- 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 "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.
- OCAMLC    engine/namegen.mli
- File "parsing/cLexer.ml", line 767, characters 6-17:
- 767 |       Stream.junk s;
-             ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC    engine/termops.mli
- 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.
- OCAMLC    engine/proofview.mli
- 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.
- OCAMLC    pretyping/reductionops.mli
- OCAMLC    pretyping/pretype_errors.mli
- OCAMLC    pretyping/inductiveops.mli
- File "parsing/cLexer.ml", line 844, characters 4-15:
- 844 |     Stream.from
-           ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- OCAMLC    pretyping/retyping.mli
- OCAMLC    pretyping/vnorm.mli
- OCAMLC    pretyping/nativenorm.mli
- OCAMLC    pretyping/cbv.mli
- OCAMLC    pretyping/evardefine.mli
- OCAMLC    pretyping/typing.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 -a -o lib/lib.cmxa
- OCAMLC    engine/evarutil.mli
- OCAMLC    pretyping/glob_term.ml
- OCAMLC    proofs/tactypes.ml
- OCAMLC    pretyping/find_subterm.mli
- OCAMLC    pretyping/evarsolve.mli
- OCAMLC    engine/ftactic.mli
- OCAMLC    proofs/refine.mli
- OCAMLC    proofs/logic.mli
- OCAMLC    proofs/tacmach.mli
- OCAMLC    tactics/ind_tables.mli
- OCAMLC    tactics/abstract.mli
- OCAMLC    tactics/eqdecide.mli
- OCAMLC    vernac/retrieveObl.mli
- File "proofs/tactypes.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT  kernel/transparentState.ml
- OCAMLOPT  kernel/univ.ml
- OCAMLOPT  library/libnames.ml
- OCAMLOPT  engine/evar_kinds.ml
- File "pretyping/glob_term.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT  pretyping/locus.ml
- OCAMLC    pretyping/recordops.mli
- OCAMLC    proofs/miscprint.mli
- OCAMLC    tactics/tacticals.mli
- OCAMLC    tactics/elim.mli
- OCAMLC    tactics/contradiction.mli
- OCAMLC    tactics/inv.mli
- OCAMLC    pretyping/geninterp.mli
- OCAMLC    pretyping/evarconv.mli
- OCAMLC    interp/constrexpr.ml
- OCAMLC    proofs/proof.mli
- OCAMLC    tactics/eqschemes.mli
- OCAMLC    tactics/elimschemes.mli
- OCAMLC    vernac/auto_ind_decl.mli
- OCAMLC    vernac/himsg.mli
- OCAMLOPT -a -o ide/coqide/protocol/ideprotocol.cmxa
- OCAMLOPT -a -o ide/coqide/ide_common.cmxa
- OCAMLOPT  kernel/conv_oracle.ml
- OCAMLOPT  pretyping/locusops.ml
- OCAMLC    pretyping/ltac_pretype.ml
- File "interp/constrexpr.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC    pretyping/coercion.mli
- OCAMLC    interp/notation_term.ml
- OCAMLC    interp/smartlocate.mli
- OCAMLC    interp/constrexpr_ops.mli
- OCAMLC    interp/impargs.mli
- OCAMLC    interp/modintern.mli
- OCAMLC    proofs/proof_bullet.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
- 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
- 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
- File "interp/notation_term.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC    proofs/evar_refiner.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    interp/implicit_quantifiers.mli
- OCAMLC    vernac/declareInd.mli
- OCAMLC    parsing/g_constr.ml
- OCAMLC    parsing/g_prim.ml
- OCAMLC    pretyping/cases.mli
- OCAMLC    pretyping/pretyping.mli
- OCAMLOPT  ide/coqide/configwin.ml
- OCAMLC    interp/stdarg.mli
- OCAMLC    tactics/genredexpr.ml
- OCAMLC    parsing/ppextend.mli
- OCAMLOPT -a -o gramlib/.pack/gramlib.cmxa
- File "parsing/g_prim.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC    interp/dumpglob.mli
- OCAMLC    interp/constrextern.mli
- OCAMLC    parsing/notation_gram.ml
- OCAMLC    vernac/assumptions.mli
- File "parsing/g_constr.mlg", line 46, characters 19-33:
- 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.
- OCAMLC    pretyping/unification.mli
- OCAMLC    interp/constrintern.mli
- OCAMLC    tactics/redops.mli
- OCAMLC    tactics/redexpr.mli
- OCAMLC    tactics/ppred.mli
- File "parsing/notation_gram.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLC    toplevel/coqcargs.mli
- OCAMLC    parsing/notgram_ops.mli
- OCAMLC    vernac/egramcoq.mli
- OCAMLOPT  ide/coqide/preferences.ml
- OCAMLC    proofs/clenv.mli
- OCAMLC    tactics/tactics.mli
- OCAMLC    tactics/hints.mli
- File "parsing/g_constr.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- OCAMLOPT  kernel/uGraph.ml
- OCAMLOPT  kernel/sorts.ml
- OCAMLC    tactics/auto.mli
- OCAMLC    tactics/eauto.mli
- OCAMLC    tactics/class_tactics.mli
- OCAMLC    vernac/vernacexpr.ml
- OCAMLC    tactics/equality.mli
- OCAMLOPT  kernel/context.ml
- OCAMLOPT  kernel/vmvalues.ml
- 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    tactics/autorewrite.mli
- OCAMLC    vernac/declare.mli
- OCAMLC    vernac/comAssumption.mli
- OCAMLC    toplevel/g_toplevel.ml
- OCAMLC    vernac/g_vernac.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.
- OCAMLOPT  kernel/constr.ml
- OCAMLOPT  engine/nameops.ml
- 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
- OCAMLC    vernac/vernacentries.mli
- OCAMLC    stm/vernac_classifier.mli
- OCAMLC    vernac/vernacinterp.mli
- OCAMLC    stm/stm.mli
- OCAMLC    stm/proofBlockDelimiter.mli
- OCAMLC    toplevel/vernac.mli
- OCAMLC    toplevel/coqargs.mli
- OCAMLC    toplevel/coqinit.mli
- OCAMLC    toplevel/coqloop.mli
- OCAMLC    toplevel/ccompile.mli
- OCAMLC    toplevel/coqtop.mli
- OCAMLOPT  ide/coqide/ideutils.ml
- OCAMLOPT  ide/coqide/wg_Segment.ml
- OCAMLOPT  ide/coqide/coqide_ui.ml
- File "vernac/g_vernac.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
- OCAMLC    vernac/g_proofs.ml
- OCAMLOPT  kernel/retroknowledge.ml
- OCAMLOPT  kernel/vmbytecodes.ml
- OCAMLOPT  engine/univProblem.ml
- OCAMLOPT  kernel/term.ml
- File "vernac/g_proofs.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- 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/mod_subst.ml
- OCAMLOPT  kernel/vmemitcodes.ml
- OCAMLOPT  kernel/opaqueproof.ml
- OCAMLOPT  library/globnames.ml
- OCAMLOPT  ide/coqide/wg_RoutedMessageViews.ml
- OCAMLOPT  library/libobject.ml
- OCAMLOPT  library/nametab.ml
- OCAMLOPT  kernel/declarations.ml
- OCAMLOPT  ide/coqide/wg_ProofView.ml
- OCAMLOPT  ide/coqide/wg_Completion.ml
- OCAMLOPT  ide/coqide/wg_Command.ml
- OCAMLOPT  kernel/entries.ml
- OCAMLOPT  kernel/cooking.ml
- OCAMLOPT  engine/univNames.ml
- OCAMLOPT  kernel/declareops.ml
- OCAMLOPT  ide/coqide/wg_ScriptView.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/nativecode.ml
- OCAMLOPT  ide/coqide/coqide.ml
- OCAMLOPT  kernel/vmbytegen.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  kernel/nativeconv.ml
- OCAMLOPT -a -o ide/coqide/ide.cmxa
- OCAMLOPT  kernel/typeops.ml
- OCAMLOPT -o bin/coqide
- 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  interp/constrexpr.ml
- OCAMLOPT  proofs/miscprint.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
- 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  interp/dumpglob.ml
- 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/pretype_errors.ml
- OCAMLOPT  pretyping/inductiveops.ml
- OCAMLOPT  pretyping/cbv.ml
- OCAMLOPT  pretyping/recordops.ml
- OCAMLOPT  tactics/cbn.ml
- OCAMLOPT  pretyping/ltac_pretype.ml
- OCAMLOPT  interp/stdarg.ml
- OCAMLOPT  printing/genprint.ml
- OCAMLOPT  pretyping/find_subterm.ml
- OCAMLOPT  pretyping/evardefine.ml
- OCAMLOPT  proofs/goal.ml
- OCAMLOPT  vernac/retrieveObl.ml
- OCAMLOPT  parsing/pcoq.ml
- OCAMLOPT  printing/pputils.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.
- OCAMLOPT  vernac/canonical.ml
- 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/arguments_renaming.ml
- OCAMLOPT  pretyping/nativenorm.ml
- OCAMLOPT  pretyping/glob_ops.ml
- OCAMLOPT  parsing/g_prim.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  pretyping/constr_matching.ml
- OCAMLOPT  tactics/btermdn.ml
- OCAMLOPT  tactics/eqschemes.ml
- OCAMLOPT  tactics/elimschemes.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  pretyping/coercion.ml
- OCAMLOPT  interp/notation.ml
- OCAMLOPT  proofs/tacmach.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
- OCAMLOPT -a -o parsing/parsing.cmxa
- 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  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
- OCAMLOPT -a -o proofs/proofs.cmxa
- 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  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/assumptions.ml
- OCAMLOPT  vernac/himsg.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/comArguments.ml
- OCAMLOPT  vernac/mltop.ml
- OCAMLOPT  vernac/g_vernac.ml
- OCAMLOPT  vernac/egramml.ml
- OCAMLOPT  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.
- OCAMLOPT  vernac/loadpath.ml
- 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  vernac/g_proofs.ml
- OCAMLOPT  vernac/proof_using.ml
- OCAMLOPT  tactics/eauto.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.1'
-> compiled  coqide.8.13.1
-> removed   coqide.8.13.1
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.1)
- 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.1'
- 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.1'
- 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.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 17:58.04 ---> saved as "eef5d18519ef746730db37f8f0b1e6d67645b2808fd597c6a975291b7a344845"
Job succeeded
2025-08-12 17:58.27: Job succeeded