(not at the head of any monitored branch or PR)
2025-08-12 13:23.43: New job: test orpie.1.6.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 orpie.1.6.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" != 'orpie.1.6.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 orpie.1.6.1) || true
RUN opam reinstall --with-test --verbose orpie.1.6.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" != 'orpie.1.6.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.43: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63-dune-configurator.3.20.0~alpha4-orpie.1.6.1-e2e946ed909ce4d2c3e1e35bbaff78b566760128"
2025-08-12 13:23.43: 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 orpie.1.6.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\" != 'orpie.1.6.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 orpie.1.6.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose orpie.1.6.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\" != 'orpie.1.6.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.43: Waiting for resource in pool OCluster
2025-08-12 16:50.03: Waiting for worker…
2025-08-12 16:52.03: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files:  66% (12007/18017)
Updating files:  67% (12072/18017)
Updating files:  68% (12252/18017)
Updating files:  69% (12432/18017)
Updating files:  70% (12612/18017)
Updating files:  71% (12793/18017)
Updating files:  72% (12973/18017)
Updating files:  73% (13153/18017)
Updating files:  74% (13333/18017)
Updating files:  75% (13513/18017)
Updating files:  76% (13693/18017)
Updating files:  77% (13874/18017)
Updating files:  78% (14054/18017)
Updating files:  79% (14234/18017)
Updating files:  80% (14414/18017)
Updating files:  81% (14594/18017)
Updating files:  82% (14774/18017)
Updating files:  83% (14955/18017)
Updating files:  84% (15135/18017)
Updating files:  85% (15315/18017)
Updating files:  86% (15495/18017)
Updating files:  87% (15675/18017)
Updating files:  88% (15855/18017)
Updating files:  89% (16036/18017)
Updating files:  90% (16216/18017)
Updating files:  91% (16396/18017)
Updating files:  92% (16576/18017)
Updating files:  93% (16756/18017)
Updating files:  94% (16936/18017)
Updating files:  95% (17117/18017)
Updating files:  96% (17297/18017)
Updating files:  97% (17477/18017)
Updating files:  98% (17657/18017)
Updating files:  99% (17837/18017)
Updating files: 100% (18017/18017)
Updating files: 100% (18017/18017), done.
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 16:52.15 ---> 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 16:52.15 ---> 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
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-08-12 16:52.15 ---> 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                 71
# 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 16:52.15 ---> 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 16:52.15 ---> using "376e3b49c8c08cb1ff0d45feb403c06e037d8df5800c560fdd8dd472f1e36b9a" from cache

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

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-08-12 16:52.16 ---> 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 (1378 kB/s)
- Reading package lists...
- 
2025-08-12 16:52.16 ---> 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 16:52.16 ---> 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 16:52.16 ---> using "837a20ada99a8ae17c0d31c9ad53cc8002e4210ea99052ee8e18a4fed6c4d643" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall orpie.1.6.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\" != 'orpie.1.6.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
orpie.1.6.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 29 packages
  - install astring             0.8.5   [required by bos]
  - install bos                 0.2.1   [required by camlp5]
  - install camlp-streams       5.0.1   [required by camlp5]
  - install camlp5              8.03.06 [required by orpie]
  - install camlp5-buildscripts 0.06    [required by camlp5]
  - install conf-bash           1       [required by camlp5]
  - install conf-gsl            2       [required by gsl]
  - install conf-libpcre2-8     2       [required by pcre2]
  - install conf-m4             1       [required by not-ocamlfind]
  - install conf-ncurses        1       [required by curses]
  - install conf-perl           2       [required by camlp5]
  - install conf-pkg-config     4       [required by curses, gsl]
  - install conf-which          1       [required by not-ocamlfind]
  - install curses              1.0.11  [required by orpie]
  - install fmt                 0.11.0  [required by camlp5]
  - install fpath               0.7.3   [required by bos]
  - install gsl                 1.25.1  [required by orpie]
  - install logs                0.9.0   [required by bos]
  - install not-ocamlfind       0.14    [required by camlp5-buildscripts]
  - install num                 1.6     [required by orpie]
  - install ocamlbuild          0.16.1  [required by bos]
  - install ocamlfind           1.9.8   [required by camlp5]
  - install ocamlgraph          2.2.0   [required by not-ocamlfind]
  - install orpie               1.6.1
  - install pcre2               8.0.3   [required by camlp5]
  - install re                  1.13.2  [required by camlp5]
  - install rresult             0.7.0   [required by camlp5]
  - install seq                 base    [required by re]
  - install topkg               1.1.0   [required by bos]

The following system packages will first need to be installed:
    libgsl-dev libpcre2-dev m4 ncurses-dev pkg-config xdot

<><> 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" "libgsl-dev" "libpcre2-dev" "m4" "ncurses-dev" "pkg-config" "xdot"
- 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 libnss-systemd:amd64.
- Preparing to unpack .../001-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 .../002-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 .../003-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 .../004-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 .../005-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 .../006-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 .../007-libicu72_72.1-3+deb12u1_amd64.deb ...
- Unpacking libicu72:amd64 (72.1-3+deb12u1) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../008-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 .../009-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 .../010-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 .../011-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 .../012-adwaita-icon-theme_43-1_all.deb ...
- Unpacking adwaita-icon-theme (43-1) ...
- Selecting previously unselected package at-spi2-common.
- Preparing to unpack .../013-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 .../014-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 .../015-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 .../016-x11-common_1%3a7.7+23_all.deb ...
- Unpacking x11-common (1:7.7+23) ...
- Selecting previously unselected package libxtst6:amd64.
- Preparing to unpack .../017-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 .../018-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 .../019-libdconf1_0.40.0-4_amd64.deb ...
- Unpacking libdconf1:amd64 (0.40.0-4) ...
- Selecting previously unselected package dconf-service.
- Preparing to unpack .../020-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 .../021-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 .../022-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 .../023-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 .../024-fontconfig_2.14.1-4_amd64.deb ...
- Unpacking fontconfig (2.14.1-4) ...
- Selecting previously unselected package fonts-liberation2.
- Preparing to unpack .../025-fonts-liberation2_2.1.5-1_all.deb ...
- Unpacking fonts-liberation2 (2.1.5-1) ...
- 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-gdkpixbuf-2.0:amd64.
- Preparing to unpack .../031-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 .../032-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 .../033-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 .../034-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 .../035-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 .../036-libthai-data_0.1.29-1_all.deb ...
- Unpacking libthai-data (0.1.29-1) ...
- Selecting previously unselected package libdatrie1:amd64.
- Preparing to unpack .../037-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 .../038-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 .../039-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 .../040-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 .../041-libxcb-render0_1.15-1_amd64.deb ...
- Unpacking libxcb-render0:amd64 (1.15-1) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../042-libxcb-shm0_1.15-1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.15-1) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../043-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 .../044-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 .../045-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 .../046-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 .../047-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 .../048-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 .../049-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 .../050-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 .../051-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 .../052-liblcms2-2_2.14-2_amd64.deb ...
- Unpacking liblcms2-2:amd64 (2.14-2) ...
- Selecting previously unselected package libcolord2:amd64.
- Preparing to unpack .../053-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 .../054-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 .../055-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 .../056-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 .../057-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 .../058-libepoxy0_1.5.10-1_amd64.deb ...
- Unpacking libepoxy0:amd64 (1.5.10-1) ...
- Selecting previously unselected package libwayland-client0:amd64.
- Preparing to unpack .../059-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 .../060-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 .../061-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 .../062-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 .../063-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 .../064-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 .../065-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 .../066-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 .../067-xkb-data_2.35.1-1_all.deb ...
- Unpacking xkb-data (2.35.1-1) ...
- Selecting previously unselected package libxkbcommon0:amd64.
- Preparing to unpack .../068-libxkbcommon0_1.5.0-1_amd64.deb ...
- Unpacking libxkbcommon0:amd64 (1.5.0-1) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../069-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 .../070-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 .../071-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 .../072-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 libann0.
- Preparing to unpack .../073-libann0_1.1.2+doc-9+b1_amd64.deb ...
- Unpacking libann0 (1.1.2+doc-9+b1) ...
- Selecting previously unselected package libcdt5:amd64.
- Preparing to unpack .../074-libcdt5_2.42.2-7+deb12u1_amd64.deb ...
- Unpacking libcdt5:amd64 (2.42.2-7+deb12u1) ...
- Selecting previously unselected package libcgraph6:amd64.
- Preparing to unpack .../075-libcgraph6_2.42.2-7+deb12u1_amd64.deb ...
- Unpacking libcgraph6:amd64 (2.42.2-7+deb12u1) ...
- Selecting previously unselected package libgts-0.7-5:amd64.
- Preparing to unpack .../076-libgts-0.7-5_0.7.6+darcs121130-5+b1_amd64.deb ...
- Unpacking libgts-0.7-5:amd64 (0.7.6+darcs121130-5+b1) ...
- Selecting previously unselected package libltdl7:amd64.
- Preparing to unpack .../077-libltdl7_2.4.7-7~deb12u1_amd64.deb ...
- Unpacking libltdl7:amd64 (2.4.7-7~deb12u1) ...
- Selecting previously unselected package libpathplan4:amd64.
- Preparing to unpack .../078-libpathplan4_2.42.2-7+deb12u1_amd64.deb ...
- Unpacking libpathplan4:amd64 (2.42.2-7+deb12u1) ...
- Selecting previously unselected package libgvc6.
- Preparing to unpack .../079-libgvc6_2.42.2-7+deb12u1_amd64.deb ...
- Unpacking libgvc6 (2.42.2-7+deb12u1) ...
- Selecting previously unselected package libgvpr2:amd64.
- Preparing to unpack .../080-libgvpr2_2.42.2-7+deb12u1_amd64.deb ...
- Unpacking libgvpr2:amd64 (2.42.2-7+deb12u1) ...
- Selecting previously unselected package liblab-gamut1:amd64.
- Preparing to unpack .../081-liblab-gamut1_2.42.2-7+deb12u1_amd64.deb ...
- Unpacking liblab-gamut1:amd64 (2.42.2-7+deb12u1) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../082-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 .../083-libsm6_2%3a1.2.3-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.3-1) ...
- Selecting previously unselected package libxt6:amd64.
- Preparing to unpack .../084-libxt6_1%3a1.2.1-1.1_amd64.deb ...
- Unpacking libxt6:amd64 (1:1.2.1-1.1) ...
- Selecting previously unselected package libxmu6:amd64.
- Preparing to unpack .../085-libxmu6_2%3a1.1.3-3_amd64.deb ...
- Unpacking libxmu6:amd64 (2:1.1.3-3) ...
- Selecting previously unselected package libxaw7:amd64.
- Preparing to unpack .../086-libxaw7_2%3a1.0.14-1_amd64.deb ...
- Unpacking libxaw7:amd64 (2:1.0.14-1) ...
- Selecting previously unselected package graphviz.
- Preparing to unpack .../087-graphviz_2.42.2-7+deb12u1_amd64.deb ...
- Unpacking graphviz (2.42.2-7+deb12u1) ...
- Selecting previously unselected package libblas3:amd64.
- Preparing to unpack .../088-libblas3_3.11.0-2_amd64.deb ...
- Unpacking libblas3:amd64 (3.11.0-2) ...
- Selecting previously unselected package libgdk-pixbuf2.0-bin.
- Preparing to unpack .../089-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 libgfortran5:amd64.
- Preparing to unpack .../090-libgfortran5_12.2.0-14+deb12u1_amd64.deb ...
- Unpacking libgfortran5:amd64 (12.2.0-14+deb12u1) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../091-libglib2.0-data_2.74.6-2+deb12u6_all.deb ...
- Unpacking libglib2.0-data (2.74.6-2+deb12u6) ...
- Selecting previously unselected package libgslcblas0:amd64.
- Preparing to unpack .../092-libgslcblas0_2.7.1+dfsg-5+deb12u1_amd64.deb ...
- Unpacking libgslcblas0:amd64 (2.7.1+dfsg-5+deb12u1) ...
- Selecting previously unselected package libgsl27:amd64.
- Preparing to unpack .../093-libgsl27_2.7.1+dfsg-5+deb12u1_amd64.deb ...
- Unpacking libgsl27:amd64 (2.7.1+dfsg-5+deb12u1) ...
- Selecting previously unselected package libgsl-dev.
- Preparing to unpack .../094-libgsl-dev_2.7.1+dfsg-5+deb12u1_amd64.deb ...
- Unpacking libgsl-dev (2.7.1+dfsg-5+deb12u1) ...
- Selecting previously unselected package libgtk-3-bin.
- Preparing to unpack .../095-libgtk-3-bin_3.24.38-2~deb12u3_amd64.deb ...
- Unpacking libgtk-3-bin (3.24.38-2~deb12u3) ...
- Selecting previously unselected package libgts-bin.
- Preparing to unpack .../096-libgts-bin_0.7.6+darcs121130-5+b1_amd64.deb ...
- Unpacking libgts-bin (0.7.6+darcs121130-5+b1) ...
- Selecting previously unselected package liblapack3:amd64.
- Preparing to unpack .../097-liblapack3_3.11.0-2_amd64.deb ...
- Unpacking liblapack3:amd64 (3.11.0-2) ...
- Selecting previously unselected package libncurses6:amd64.
- Preparing to unpack .../098-libncurses6_6.4-4_amd64.deb ...
- Unpacking libncurses6:amd64 (6.4-4) ...
- Selecting previously unselected package libncurses-dev:amd64.
- Preparing to unpack .../099-libncurses-dev_6.4-4_amd64.deb ...
- Unpacking libncurses-dev:amd64 (6.4-4) ...
- Selecting previously unselected package libpcre2-16-0:amd64.
- Preparing to unpack .../100-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 .../101-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 .../102-libpcre2-posix3_10.42-1_amd64.deb ...
- Unpacking libpcre2-posix3:amd64 (10.42-1) ...
- Selecting previously unselected package libpcre2-dev:amd64.
- Preparing to unpack .../103-libpcre2-dev_10.42-1_amd64.deb ...
- Unpacking libpcre2-dev:amd64 (10.42-1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../104-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package librsvg2-2:amd64.
- Preparing to unpack .../105-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 .../106-librsvg2-common_2.54.7+dfsg-1~deb12u1_amd64.deb ...
- Unpacking librsvg2-common:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../107-m4_1.4.19-3_amd64.deb ...
- Unpacking m4 (1.4.19-3) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../108-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../109-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../110-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Selecting previously unselected package python3-cairo:amd64.
- Preparing to unpack .../111-python3-cairo_1.20.1-5+b1_amd64.deb ...
- Unpacking python3-cairo:amd64 (1.20.1-5+b1) ...
- Selecting previously unselected package python3-gi.
- Preparing to unpack .../112-python3-gi_3.42.2-3+b1_amd64.deb ...
- Unpacking python3-gi (3.42.2-3+b1) ...
- Selecting previously unselected package python3-gi-cairo.
- Preparing to unpack .../113-python3-gi-cairo_3.42.2-3+b1_amd64.deb ...
- Unpacking python3-gi-cairo (3.42.2-3+b1) ...
- Selecting previously unselected package python3-pkg-resources.
- Preparing to unpack .../114-python3-pkg-resources_66.1.1-1+deb12u1_all.deb ...
- Unpacking python3-pkg-resources (66.1.1-1+deb12u1) ...
- Selecting previously unselected package python3-numpy.
- Preparing to unpack .../115-python3-numpy_1%3a1.24.2-1+deb12u1_amd64.deb ...
- Unpacking python3-numpy (1:1.24.2-1+deb12u1) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../116-xdg-user-dirs_0.18-1_amd64.deb ...
- Unpacking xdg-user-dirs (0.18-1) ...
- Selecting previously unselected package xdot.
- Preparing to unpack .../117-xdot_1.2-3_all.deb ...
- Unpacking xdot (1.2-3) ...
- Setting up media-types (10.0.0) ...
- Setting up libgraphite2-3:amd64 (1.3.14-1) ...
- Setting up liblcms2-2:amd64 (2.14-2) ...
- Setting up libpixman-1-0:amd64 (0.42.2-1) ...
- Setting up fontconfig (2.14.1-4) ...
- Regenerating fonts cache... 
- done.
- Setting up systemd-sysv (252.38-1~deb12u1) ...
- Setting up libxdamage1:amd64 (1:1.1.6-1) ...
- Setting up libicu72:amd64 (72.1-3+deb12u1) ...
- 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 libgslcblas0:amd64 (2.7.1+dfsg-5+deb12u1) ...
- Setting up xdg-user-dirs (0.18-1) ...
- Setting up libxcb-render0:amd64 (1.15-1) ...
- Setting up libglib2.0-0:amd64 (2.74.6-2+deb12u6) ...
- Setting up libpython3.11-stdlib:amd64 (3.11.2-6+deb12u6) ...
- Setting up liblab-gamut1:amd64 (2.42.2-7+deb12u1) ...
- 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 libgsl27:amd64 (2.7.1+dfsg-5+deb12u1) ...
- Setting up m4 (1.4.19-3) ...
- Setting up libnss-systemd:amd64 (252.38-1~deb12u1) ...
- Setting up xkb-data (2.35.1-1) ...
- Setting up libxcb-shm0:amd64 (1.15-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 libdconf1:amd64 (0.40.0-4) ...
- Setting up libgts-0.7-5:amd64 (0.7.6+darcs121130-5+b1) ...
- Setting up libpcre2-32-0:amd64 (10.42-1) ...
- Setting up libblas3:amd64 (3.11.0-2) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
- Setting up libglib2.0-data (2.74.6-2+deb12u6) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libepoxy0:amd64 (1.5.10-1) ...
- Setting up libxfixes3:amd64 (1:6.0.0-2) ...
- Setting up fonts-liberation2 (2.1.5-1) ...
- Setting up libpathplan4:amd64 (2.42.2-7+deb12u1) ...
- Setting up libavahi-common-data:amd64 (0.8-10+deb12u1) ...
- Setting up libann0 (1.1.2+doc-9+b1) ...
- Setting up libncurses6:amd64 (6.4-4) ...
- 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 pkgconf-bin (1.8.1-1) ...
- Setting up libltdl7:amd64 (2.4.7-7~deb12u1) ...
- Setting up libgfortran5:amd64 (12.2.0-14+deb12u1) ...
- Setting up libpcre2-posix3:amd64 (10.42-1) ...
- Setting up at-spi2-common (2.46.0-5) ...
- Setting up dbus-session-bus-common (1.14.10-1~deb12u1) ...
- 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 libcairo-gobject2:amd64 (1.16.0-7) ...
- Setting up libcdt5:amd64 (2.42.2-7+deb12u1) ...
- Setting up libatk1.0-0:amd64 (2.46.0-5) ...
- Setting up libcgraph6:amd64 (2.42.2-7+deb12u1) ...
- Setting up libwayland-egl1:amd64 (1.21.0-1) ...
- Setting up dbus-system-bus-common (1.14.10-1~deb12u1) ...
- Setting up libxcomposite1:amd64 (1:0.4.5-1) ...
- Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u2) ...
- Setting up dbus-bin (1.14.10-1~deb12u1) ...
- 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 libgts-bin (0.7.6+darcs121130-5+b1) ...
- Setting up python3.11 (3.11.2-6+deb12u6) ...
- Setting up libice6:amd64 (2:1.0.10-1) ...
- Setting up liblapack3:amd64 (3.11.0-2) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
- Setting up libxft2:amd64 (2.3.6-1) ...
- Setting up libncurses-dev:amd64 (6.4-4) ...
- Setting up libgsl-dev (2.7.1+dfsg-5+deb12u1) ...
- Setting up libpcre2-dev:amd64 (10.42-1) ...
- Setting up libxtst6:amd64 (2:1.2.3-1.1) ...
- Setting up libxcursor1:amd64 (1:1.2.1-1) ...
- Setting up libavahi-common3:amd64 (0.8-10+deb12u1) ...
- 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 libatspi2.0-0:amd64 (2.46.0-5) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up libatk-bridge2.0-0:amd64 (2.46.0-5) ...
- Setting up libthai0:amd64 (0.1.29-1) ...
- 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 gir1.2-glib-2.0:amd64 (1.74.0-3) ...
- Setting up libgvpr2:amd64 (2.42.2-7+deb12u1) ...
- Setting up libwayland-cursor0:amd64 (1.21.0-1) ...
- Setting up libpam-systemd:amd64 (252.38-1~deb12u1) ...
- Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u2) ...
- Setting up libsm6:amd64 (2:1.2.3-1) ...
- Setting up libavahi-client3:amd64 (0.8-10+deb12u1) ...
- Setting up python3-pkg-resources (66.1.1-1+deb12u1) ...
- Setting up gtk-update-icon-cache (3.24.38-2~deb12u3) ...
- Setting up gir1.2-freedesktop:amd64 (1.74.0-3) ...
- Setting up python3-cairo:amd64 (1.20.1-5+b1) ...
- Setting up gir1.2-gdkpixbuf-2.0:amd64 (2.42.10+dfsg-1+deb12u2) ...
- Setting up gir1.2-atk-1.0:amd64 (2.46.0-5) ...
- Setting up libpango-1.0-0:amd64 (1.50.12+ds-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 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 python3-gi (3.42.2-3+b1) ...
- Setting up libxt6:amd64 (1:1.2.1-1.1) ...
- Setting up python3-numpy (1:1.24.2-1+deb12u1) ...
- Setting up libcups2:amd64 (2.4.2-3+deb12u8) ...
- Setting up libgdk-pixbuf2.0-bin (2.42.10+dfsg-1+deb12u2) ...
- Setting up libpangoft2-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up python3-gi-cairo (3.42.2-3+b1) ...
- Setting up libpangocairo-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up libxmu6:amd64 (2:1.1.3-3) ...
- Setting up libpangoxft-1.0-0:amd64 (1.50.12+ds-1) ...
- Setting up dconf-service (0.40.0-4) ...
- Setting up libxaw7:amd64 (2:1.0.14-1) ...
- 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 libgvc6 (2.42.2-7+deb12u1) ...
- Setting up librsvg2-common:amd64 (2.54.7+dfsg-1~deb12u1) ...
- Setting up graphviz (2.42.2-7+deb12u1) ...
- Setting up dconf-gsettings-backend:amd64 (0.40.0-4) ...
- 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 libgtk-3-bin (3.24.38-2~deb12u3) ...
- Setting up at-spi2-core (2.46.0-5) ...
- Setting up xdot (1.2-3) ...
- Processing triggers for systemd (252.38-1~deb12u1) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...
- Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-1+deb12u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved camlp5.8.03.06  (cached)
-> installed camlp-streams.5.0.1
-> retrieved camlp5-buildscripts.0.06  (cached)
-> retrieved curses.1.0.11  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> installed conf-m4.1
-> installed conf-pkg-config.4
-> installed conf-bash.1
-> installed conf-perl.2
-> installed conf-which.1
-> retrieved gsl.1.25.1  (cached)
-> retrieved logs.0.9.0  (cached)
-> installed conf-gsl.2
-> installed conf-libpcre2-8.2
-> installed conf-ncurses.1
-> retrieved not-ocamlfind.0.14  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved orpie.1.6.1  (cached)
-> retrieved pcre2.8.0.3  (cached)
-> retrieved re.1.13.2  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved topkg.1.1.0  (cached)
-> installed pcre2.8.0.3
-> installed re.1.13.2
-> installed num.1.6
-> installed ocamlgraph.2.2.0
-> installed curses.1.0.11
-> installed ocamlfind.1.9.8
-> installed gsl.1.25.1
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.0
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed logs.0.9.0
-> installed fpath.0.7.3
-> installed not-ocamlfind.0.14
-> installed bos.0.2.1
-> installed camlp5-buildscripts.0.06
-> installed camlp5.8.03.06
-> installed orpie.1.6.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 16:56.19 ---> saved as "25f7965181f27c4b188f40d16c531d44ed107de38f4862f96583f73359e7d5c3"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved orpie.1.6.1  (https://opam.ocaml.org/cache)
-> removed   orpie.1.6.1
-> installed orpie.1.6.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 16:56.34 ---> saved as "9a96ff296d38b9a48e6261bfa5d3b2eaa1a2c11c8e43d68b68c7b68fd6c2eada"

/home/opam: (run (shell  "opam reinstall --with-test --verbose orpie.1.6.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\" != 'orpie.1.6.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 orpie 1.6.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [orpie.1.6.1: extract]
-> retrieved orpie.1.6.1  (cached)
Processing  2/4: [orpie: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "orpie" (CWD=/home/opam/.opam/4.14/.opam-switch/build/orpie.1.6.1)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w -27-35-52 -thread -g -bin-annot -I src/orpie/.main.eobjs/byte -I /home/opam/.opam/4.14/lib/curses -I /home/opam/.opam/4.14/lib/gsl -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ocaml/threads -no-alias-deps -o src/orpie/.main.eobjs/byte/rcfile.cmo -c -impl src/orpie/rcfile.pp.ml)
- File "_none_", line 1:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 588-841, characters 3-59:
- 588 | ...match line_stream with parser
- 589 |    | [< 'Kwd "include" >] ->
- 590 |       begin match line_stream with parser
- 591 |       | [< 'String include_file >] ->
- 592 |          included_rcfiles := include_file :: !included_rcfiles
- ...
- 838 |    | [< 'Kwd "#" >] ->
- 839 |       ()
- 840 |    | [< >] ->
- 841 |       config_failwith "Expected a keyword at start of line"..
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 588-841, characters 3-59:
- 588 | ...match line_stream with parser
- 589 |    | [< 'Kwd "include" >] ->
- 590 |       begin match line_stream with parser
- 591 |       | [< 'String include_file >] ->
- 592 |          included_rcfiles := include_file :: !included_rcfiles
- ...
- 838 |    | [< 'Kwd "#" >] ->
- 839 |       ()
- 840 |    | [< >] ->
- 841 |       config_failwith "Expected a keyword at start of line"..
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 589, characters 8-22:
- 589 |    | [< 'Kwd "include" >] ->
-               ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 590-594, characters 12-73:
- 590 | ............match line_stream with parser
- 591 |       | [< 'String include_file >] ->
- 592 |          included_rcfiles := include_file :: !included_rcfiles
- 593 |       | [< >] ->
- 594 |          config_failwith ("Expected a filename string after \"include\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 590-594, characters 12-73:
- 590 | ............match line_stream with parser
- 591 |       | [< 'String include_file >] ->
- 592 |          included_rcfiles := include_file :: !included_rcfiles
- 593 |       | [< >] ->
- 594 |          config_failwith ("Expected a filename string after \"include\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 591, characters 11-31:
- 591 |       | [< 'String include_file >] ->
-                  ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 596, characters 8-19:
- 596 |    | [< 'Kwd "bind" >] -> 
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 598-603, characters 15-84:
- 598 | ...............match line_stream with parser
- 599 |          | [< 'Ident command_str >] ->
- 600 |             let command = operation_of_string command_str in
- 601 |             register_binding key command
- 602 |          | [< >] ->
- 603 |             config_failwith ("Expected a command name after \"bind \"" ^ key ^ "\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 598-603, characters 15-84:
- 598 | ...............match line_stream with parser
- 599 |          | [< 'Ident command_str >] ->
- 600 |             let command = operation_of_string command_str in
- 601 |             register_binding key command
- 602 |          | [< >] ->
- 603 |             config_failwith ("Expected a command name after \"bind \"" ^ key ^ "\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 599, characters 14-32:
- 599 |          | [< 'Ident command_str >] ->
-                     ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 606-623, characters 12-71:
- 606 | ............match line_stream with parser
- 607 |       | [< 'String k >] -> 
- 608 |          bind_key k
- 609 |       | [< 'Ident "\\" >] ->
- 610 |          begin match line_stream with parser
- ...
- 620 |             config_failwith "Expected octal digits after \"\\\""
- 621 |          end
- 622 |       | [< >] ->
- 623 |          config_failwith "Expected a key string after keyword \"bind\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 606-623, characters 12-71:
- 606 | ............match line_stream with parser
- 607 |       | [< 'String k >] -> 
- 608 |          bind_key k
- 609 |       | [< 'Ident "\\" >] ->
- 610 |          begin match line_stream with parser
- ...
- 620 |             config_failwith "Expected octal digits after \"\\\""
- 621 |          end
- 622 |       | [< >] ->
- 623 |          config_failwith "Expected a key string after keyword \"bind\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 607, characters 11-20:
- 607 |       | [< 'String k >] -> 
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 609, characters 11-22:
- 609 |       | [< 'Ident "\\" >] ->
-                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 610-620, characters 15-64:
- 610 | ...............match line_stream with parser
- 611 |          | [< 'Int octal_int >] ->
- 612 |             begin
- 613 |                try
- 614 |                   let octal_digits = "0o" ^ (string_of_int octal_int) in
- ...
- 617 |                   (Failure "int_of_string") -> config_failwith "Expected octal digits after \"\\\""
- 618 |             end
- 619 |          | [< >]  ->
- 620 |             config_failwith "Expected octal digits after \"\\\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 610-620, characters 15-64:
- 610 | ...............match line_stream with parser
- 611 |          | [< 'Int octal_int >] ->
- 612 |             begin
- 613 |                try
- 614 |                   let octal_digits = "0o" ^ (string_of_int octal_int) in
- ...
- 617 |                   (Failure "int_of_string") -> config_failwith "Expected octal digits after \"\\\""
- 618 |             end
- 619 |          | [< >]  ->
- 620 |             config_failwith "Expected octal digits after \"\\\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 611, characters 14-28:
- 611 |          | [< 'Int octal_int >] ->
-                     ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 625, characters 8-30:
- 625 |    | [< 'Kwd "unbind_function" >] ->
-               ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 626-630, characters 12-84:
- 626 | ............match line_stream with parser
- 627 |       | [< 'String k >] ->
- 628 |          unregister_function_binding k
- 629 |       | [< >] ->
- 630 |          config_failwith ("Expected a key string after keyword \"unbind_function\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 626-630, characters 12-84:
- 626 | ............match line_stream with parser
- 627 |       | [< 'String k >] ->
- 628 |          unregister_function_binding k
- 629 |       | [< >] ->
- 630 |          config_failwith ("Expected a key string after keyword \"unbind_function\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 627, characters 11-20:
- 627 |       | [< 'String k >] ->
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 632, characters 8-29:
- 632 |    | [< 'Kwd "unbind_command" >] ->
-               ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 633-637, characters 12-83:
- 633 | ............match line_stream with parser
- 634 |       | [< 'String k >] ->
- 635 |          unregister_command_binding k
- 636 |       | [< >] ->
- 637 |          config_failwith ("Expected a key string after keyword \"unbind_command\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 633-637, characters 12-83:
- 633 | ............match line_stream with parser
- 634 |       | [< 'String k >] ->
- 635 |          unregister_command_binding k
- 636 |       | [< >] ->
- 637 |          config_failwith ("Expected a key string after keyword \"unbind_command\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 634, characters 11-20:
- 634 |       | [< 'String k >] ->
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 639, characters 8-26:
- 639 |    | [< 'Kwd "unbind_edit" >] ->
-               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 640-644, characters 12-80:
- 640 | ............match line_stream with parser
- 641 |       | [< 'String k >] ->
- 642 |          unregister_edit_binding k
- 643 |       | [< >] ->
- 644 |          config_failwith ("Expected a key string after keyword \"unbind_edit\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 640-644, characters 12-80:
- 640 | ............match line_stream with parser
- 641 |       | [< 'String k >] ->
- 642 |          unregister_edit_binding k
- 643 |       | [< >] ->
- 644 |          config_failwith ("Expected a key string after keyword \"unbind_edit\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 641, characters 11-20:
- 641 |       | [< 'String k >] ->
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 646, characters 8-28:
- 646 |    | [< 'Kwd "unbind_browse" >] ->
-               ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 647-651, characters 12-82:
- 647 | ............match line_stream with parser
- 648 |       | [< 'String k >] ->
- 649 |          unregister_browse_binding k
- 650 |       | [< >] ->
- 651 |          config_failwith ("Expected a key string after keyword \"unbind_browse\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 647-651, characters 12-82:
- 647 | ............match line_stream with parser
- 648 |       | [< 'String k >] ->
- 649 |          unregister_browse_binding k
- 650 |       | [< >] ->
- 651 |          config_failwith ("Expected a key string after keyword \"unbind_browse\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 648, characters 11-20:
- 648 |       | [< 'String k >] ->
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 653, characters 8-28:
- 653 |    | [< 'Kwd "unbind_abbrev" >] ->
-               ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 654-658, characters 12-82:
- 654 | ............match line_stream with parser
- 655 |       | [< 'String k >] ->
- 656 |          unregister_abbrev_binding k
- 657 |       | [< >] ->
- 658 |          config_failwith ("Expected a key string after keyword \"unbind_abbrev\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 654-658, characters 12-82:
- 654 | ............match line_stream with parser
- 655 |       | [< 'String k >] ->
- 656 |          unregister_abbrev_binding k
- 657 |       | [< >] ->
- 658 |          config_failwith ("Expected a key string after keyword \"unbind_abbrev\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 655, characters 11-20:
- 655 |       | [< 'String k >] ->
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 660, characters 8-29:
- 660 |    | [< 'Kwd "unbind_integer" >] ->
-               ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 661-665, characters 12-83:
- 661 | ............match line_stream with parser
- 662 |       | [< 'String k >] ->
- 663 |          unregister_intedit_binding k
- 664 |       | [< >] ->
- 665 |          config_failwith ("Expected a key string after keyword \"unbind_integer\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 661-665, characters 12-83:
- 661 | ............match line_stream with parser
- 662 |       | [< 'String k >] ->
- 663 |          unregister_intedit_binding k
- 664 |       | [< >] ->
- 665 |          config_failwith ("Expected a key string after keyword \"unbind_integer\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 662, characters 11-20:
- 662 |       | [< 'String k >] ->
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 667, characters 8-30:
- 667 |    | [< 'Kwd "unbind_variable" >] ->
-               ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 668-672, characters 12-84:
- 668 | ............match line_stream with parser
- 669 |       | [< 'String k >] ->
- 670 |          unregister_varedit_binding k
- 671 |       | [< >] ->
- 672 |          config_failwith ("Expected a key string after keyword \"unbind_variable\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 668-672, characters 12-84:
- 668 | ............match line_stream with parser
- 669 |       | [< 'String k >] ->
- 670 |          unregister_varedit_binding k
- 671 |       | [< >] ->
- 672 |          config_failwith ("Expected a key string after keyword \"unbind_variable\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 669, characters 11-20:
- 669 |       | [< 'String k >] ->
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 674, characters 8-23:
- 674 |    | [< 'Kwd "autobind" >] ->
-               ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 675-694, characters 12-71:
- 675 | ............match line_stream with parser
- 676 |       | [< 'String k >] -> 
- 677 |          let key, key_string = decode_single_key_string k in
- 678 |          autobind_keys_list := (key, key_string, None, 1) :: !autobind_keys_list
- 679 |       | [< 'Ident "\\" >] ->
- ...
- 691 |             config_failwith "Expected octal digits after \"\\\""
- 692 |          end
- 693 |       | [< >] ->
- 694 |          config_failwith "Expected a key string after keyword \"bind\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 675-694, characters 12-71:
- 675 | ............match line_stream with parser
- 676 |       | [< 'String k >] -> 
- 677 |          let key, key_string = decode_single_key_string k in
- 678 |          autobind_keys_list := (key, key_string, None, 1) :: !autobind_keys_list
- 679 |       | [< 'Ident "\\" >] ->
- ...
- 691 |             config_failwith "Expected octal digits after \"\\\""
- 692 |          end
- 693 |       | [< >] ->
- 694 |          config_failwith "Expected a key string after keyword \"bind\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 676, characters 11-20:
- 676 |       | [< 'String k >] -> 
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 679, characters 11-22:
- 679 |       | [< 'Ident "\\" >] ->
-                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 680-691, characters 15-64:
- 680 | ...............match line_stream with parser
- 681 |          | [< 'Int octal_int >] ->
- 682 |             begin
- 683 |                try
- 684 |                   let octal_digits = "0o" ^ (string_of_int octal_int) in
- ...
- 688 |                   (Failure "int_of_string") -> config_failwith "Expected octal digits after \"\\\""
- 689 |             end
- 690 |          | [< >]  ->
- 691 |             config_failwith "Expected octal digits after \"\\\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 680-691, characters 15-64:
- 680 | ...............match line_stream with parser
- 681 |          | [< 'Int octal_int >] ->
- 682 |             begin
- 683 |                try
- 684 |                   let octal_digits = "0o" ^ (string_of_int octal_int) in
- ...
- 688 |                   (Failure "int_of_string") -> config_failwith "Expected octal digits after \"\\\""
- 689 |             end
- 690 |          | [< >]  ->
- 691 |             config_failwith "Expected octal digits after \"\\\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 681, characters 14-28:
- 681 |          | [< 'Int octal_int >] ->
-                     ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 696, characters 8-20:
- 696 |    | [< 'Kwd "macro" >] ->
-               ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 697-706, characters 12-72:
- 697 | ............match line_stream with parser
- 698 |       | [< 'String key >] ->
- 699 |          begin match line_stream with parser
- 700 |          | [< 'String generated_keys >] ->
- 701 |             register_macro key generated_keys
- 702 |          | [< >] ->
- 703 |             config_failwith ("Expected a key string after \"macro \"" ^ key ^ "\"")
- 704 |          end
- 705 |       | [< >] ->
- 706 |          config_failwith "Expected a key string after keyword \"macro\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 697-706, characters 12-72:
- 697 | ............match line_stream with parser
- 698 |       | [< 'String key >] ->
- 699 |          begin match line_stream with parser
- 700 |          | [< 'String generated_keys >] ->
- 701 |             register_macro key generated_keys
- 702 |          | [< >] ->
- 703 |             config_failwith ("Expected a key string after \"macro \"" ^ key ^ "\"")
- 704 |          end
- 705 |       | [< >] ->
- 706 |          config_failwith "Expected a key string after keyword \"macro\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 698, characters 11-22:
- 698 |       | [< 'String key >] ->
-                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 699-703, characters 15-83:
- 699 | ...............match line_stream with parser
- 700 |          | [< 'String generated_keys >] ->
- 701 |             register_macro key generated_keys
- 702 |          | [< >] ->
- 703 |             config_failwith ("Expected a key string after \"macro \"" ^ key ^ "\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 699-703, characters 15-83:
- 699 | ...............match line_stream with parser
- 700 |          | [< 'String generated_keys >] ->
- 701 |             register_macro key generated_keys
- 702 |          | [< >] ->
- 703 |             config_failwith ("Expected a key string after \"macro \"" ^ key ^ "\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 700, characters 14-36:
- 700 |          | [< 'String generated_keys >] ->
-                     ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 708, characters 8-21:
- 708 |    | [< 'Kwd "abbrev" >] ->
-               ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 709-719, characters 12-77:
- 709 | ............match line_stream with parser
- 710 |       | [< 'String abbr >] ->
- 711 |          begin match line_stream with parser
- 712 |          | [< 'Ident command_str >] ->
- 713 |             let command = operation_of_string command_str in
- ...
- 716 |             config_failwith ("Expected a command name after \"abbrev \"" ^ abbr ^ "\"")
- 717 |          end
- 718 |       | [< >] ->
- 719 |          config_failwith ("Expected an abbreviation string after \"abbrev\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 709-719, characters 12-77:
- 709 | ............match line_stream with parser
- 710 |       | [< 'String abbr >] ->
- 711 |          begin match line_stream with parser
- 712 |          | [< 'Ident command_str >] ->
- 713 |             let command = operation_of_string command_str in
- ...
- 716 |             config_failwith ("Expected a command name after \"abbrev \"" ^ abbr ^ "\"")
- 717 |          end
- 718 |       | [< >] ->
- 719 |          config_failwith ("Expected an abbreviation string after \"abbrev\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 710, characters 11-23:
- 710 |       | [< 'String abbr >] ->
-                  ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 711-716, characters 15-87:
- 711 | ...............match line_stream with parser
- 712 |          | [< 'Ident command_str >] ->
- 713 |             let command = operation_of_string command_str in
- 714 |             register_abbrev abbr command
- 715 |          | [< >] ->
- 716 |             config_failwith ("Expected a command name after \"abbrev \"" ^ abbr ^ "\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 711-716, characters 15-87:
- 711 | ...............match line_stream with parser
- 712 |          | [< 'Ident command_str >] ->
- 713 |             let command = operation_of_string command_str in
- 714 |             register_abbrev abbr command
- 715 |          | [< >] ->
- 716 |             config_failwith ("Expected a command name after \"abbrev \"" ^ abbr ^ "\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 712, characters 14-32:
- 712 |          | [< 'Ident command_str >] ->
-                     ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 721, characters 8-23:
- 721 |    | [< 'Kwd "unabbrev" >] ->
-               ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 722-726, characters 12-79:
- 722 | ............match line_stream with parser
- 723 |       | [< 'String abbr >] ->
- 724 |          unregister_abbrev abbr
- 725 |       | [< >] ->
- 726 |          config_failwith ("Expected an abbreviation string after \"unabbrev\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 722-726, characters 12-79:
- 722 | ............match line_stream with parser
- 723 |       | [< 'String abbr >] ->
- 724 |          unregister_abbrev abbr
- 725 |       | [< >] ->
- 726 |          config_failwith ("Expected an abbreviation string after \"unabbrev\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 723, characters 11-23:
- 723 |       | [< 'String abbr >] ->
-                  ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 728, characters 8-18:
- 728 |    | [< 'Kwd "set" >] ->
-               ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 729-796, characters 12-66:
- 729 | ............match line_stream with parser
- 730 |       | [< 'Ident "datadir" >] ->
- 731 |          begin match line_stream with parser
- 732 |          | [< 'Ident "=" >] ->
- 733 |             begin match line_stream with parser
- ...
- 793 |             config_failwith ("Expected \"=\" after \"set conserve_memory\"")
- 794 |          end
- 795 |       | [< >] ->
- 796 |          config_failwith ("Unmatched variable name after \"set\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 729-796, characters 12-66:
- 729 | ............match line_stream with parser
- 730 |       | [< 'Ident "datadir" >] ->
- 731 |          begin match line_stream with parser
- 732 |          | [< 'Ident "=" >] ->
- 733 |             begin match line_stream with parser
- ...
- 793 |             config_failwith ("Expected \"=\" after \"set conserve_memory\"")
- 794 |          end
- 795 |       | [< >] ->
- 796 |          config_failwith ("Unmatched variable name after \"set\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 730, characters 11-27:
- 730 |       | [< 'Ident "datadir" >] ->
-                  ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 731-741, characters 15-68:
- 731 | ...............match line_stream with parser
- 732 |          | [< 'Ident "=" >] ->
- 733 |             begin match line_stream with parser
- 734 |             | [< 'String dir >] ->
- 735 |                datadir := dir
- ...
- 738 |                "\"set datadir = \"")
- 739 |             end
- 740 |          | [< >] ->
- 741 |             config_failwith ("Expected \"=\" after \"set datadir\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 731-741, characters 15-68:
- 731 | ...............match line_stream with parser
- 732 |          | [< 'Ident "=" >] ->
- 733 |             begin match line_stream with parser
- 734 |             | [< 'String dir >] ->
- 735 |                datadir := dir
- ...
- 738 |                "\"set datadir = \"")
- 739 |             end
- 740 |          | [< >] ->
- 741 |             config_failwith ("Expected \"=\" after \"set datadir\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 732, characters 14-24:
- 732 |          | [< 'Ident "=" >] ->
-                     ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 733-738, characters 18-36:
- 733 | ..................match line_stream with parser
- 734 |             | [< 'String dir >] ->
- 735 |                datadir := dir
- 736 |             | [< >] ->
- 737 |                config_failwith ("Expected a directory string after " ^
- 738 |                "\"set datadir = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 733-738, characters 18-36:
- 733 | ..................match line_stream with parser
- 734 |             | [< 'String dir >] ->
- 735 |                datadir := dir
- 736 |             | [< >] ->
- 737 |                config_failwith ("Expected a directory string after " ^
- 738 |                "\"set datadir = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 734, characters 17-28:
- 734 |             | [< 'String dir >] ->
-                        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 743, characters 11-26:
- 743 |       | [< 'Ident "editor" >] ->
-                  ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 744-755, characters 15-67:
- 744 | ...............match line_stream with parser
- 745 |          | [< 'Ident "=" >] ->
- 746 |             begin match line_stream with parser
- 747 |             | [< 'String executable >] ->
- 748 |                ( (* Printf.fprintf stderr "using editor \"%s\"\n" executable; *)
- ...
- 752 |                "\"set editor = \"")
- 753 |             end
- 754 |          | [< >] ->
- 755 |             config_failwith ("Expected \"=\" after \"set editor\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 744-755, characters 15-67:
- 744 | ...............match line_stream with parser
- 745 |          | [< 'Ident "=" >] ->
- 746 |             begin match line_stream with parser
- 747 |             | [< 'String executable >] ->
- 748 |                ( (* Printf.fprintf stderr "using editor \"%s\"\n" executable; *)
- ...
- 752 |                "\"set editor = \"")
- 753 |             end
- 754 |          | [< >] ->
- 755 |             config_failwith ("Expected \"=\" after \"set editor\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 745, characters 14-24:
- 745 |          | [< 'Ident "=" >] ->
-                     ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 746-752, characters 18-35:
- 746 | ..................match line_stream with parser
- 747 |             | [< 'String executable >] ->
- 748 |                ( (* Printf.fprintf stderr "using editor \"%s\"\n" executable; *)
- 749 |                editor := executable)
- 750 |             | [< >] ->
- 751 |                config_failwith ("Expected an executable filename string after " ^
- 752 |                "\"set editor = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 746-752, characters 18-35:
- 746 | ..................match line_stream with parser
- 747 |             | [< 'String executable >] ->
- 748 |                ( (* Printf.fprintf stderr "using editor \"%s\"\n" executable; *)
- 749 |                editor := executable)
- 750 |             | [< >] ->
- 751 |                config_failwith ("Expected an executable filename string after " ^
- 752 |                "\"set editor = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 747, characters 17-35:
- 747 |             | [< 'String executable >] ->
-                        ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 757, characters 11-29:
- 757 |       | [< 'Ident "hide_help" >] ->
-                  ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 758-774, characters 15-70:
- 758 | ...............match line_stream with parser
- 759 |          | [< 'Ident "=" >] ->
- 760 |             begin match line_stream with parser
- 761 |             | [< 'String setting >] ->
- 762 |                if setting = "true" then
- ...
- 771 |                "\"set hide_help = \"")
- 772 |             end
- 773 |          | [< >] ->
- 774 |             config_failwith ("Expected \"=\" after \"set hide_help\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 758-774, characters 15-70:
- 758 | ...............match line_stream with parser
- 759 |          | [< 'Ident "=" >] ->
- 760 |             begin match line_stream with parser
- 761 |             | [< 'String setting >] ->
- 762 |                if setting = "true" then
- ...
- 771 |                "\"set hide_help = \"")
- 772 |             end
- 773 |          | [< >] ->
- 774 |             config_failwith ("Expected \"=\" after \"set hide_help\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 759, characters 14-24:
- 759 |          | [< 'Ident "=" >] ->
-                     ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 760-771, characters 18-38:
- 760 | ..................match line_stream with parser
- 761 |             | [< 'String setting >] ->
- 762 |                if setting = "true" then
- 763 |                   hide_help := true
- 764 |                else if setting = "false" then
- ...
- 768 |                   "\"set hide_help = \"")
- 769 |             | [< >] ->
- 770 |                config_failwith ("Expected a boolean argument after " ^
- 771 |                "\"set hide_help = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 760-771, characters 18-38:
- 760 | ..................match line_stream with parser
- 761 |             | [< 'String setting >] ->
- 762 |                if setting = "true" then
- 763 |                   hide_help := true
- 764 |                else if setting = "false" then
- ...
- 768 |                   "\"set hide_help = \"")
- 769 |             | [< >] ->
- 770 |                config_failwith ("Expected a boolean argument after " ^
- 771 |                "\"set hide_help = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 761, characters 17-32:
- 761 |             | [< 'String setting >] ->
-                        ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 776, characters 11-35:
- 776 |       | [< 'Ident "conserve_memory" >] ->
-                  ^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 777-793, characters 15-76:
- 777 | ...............match line_stream with parser
- 778 |          | [< 'Ident "=" >] ->
- 779 |             begin match line_stream with parser
- 780 |             | [< 'String setting >] ->
- 781 |                if setting = "true" then
- ...
- 790 |                "\"set conserve_memory = \"")
- 791 |             end
- 792 |          | [< >] ->
- 793 |             config_failwith ("Expected \"=\" after \"set conserve_memory\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 777-793, characters 15-76:
- 777 | ...............match line_stream with parser
- 778 |          | [< 'Ident "=" >] ->
- 779 |             begin match line_stream with parser
- 780 |             | [< 'String setting >] ->
- 781 |                if setting = "true" then
- ...
- 790 |                "\"set conserve_memory = \"")
- 791 |             end
- 792 |          | [< >] ->
- 793 |             config_failwith ("Expected \"=\" after \"set conserve_memory\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 778, characters 14-24:
- 778 |          | [< 'Ident "=" >] ->
-                     ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 779-790, characters 18-44:
- 779 | ..................match line_stream with parser
- 780 |             | [< 'String setting >] ->
- 781 |                if setting = "true" then
- 782 |                   conserve_memory := true
- 783 |                else if setting = "false" then
- ...
- 787 |                   "\"set conserve_memory = \"")
- 788 |             | [< >] ->
- 789 |                config_failwith ("Expected a boolean argument after " ^
- 790 |                "\"set conserve_memory = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 779-790, characters 18-44:
- 779 | ..................match line_stream with parser
- 780 |             | [< 'String setting >] ->
- 781 |                if setting = "true" then
- 782 |                   conserve_memory := true
- 783 |                else if setting = "false" then
- ...
- 787 |                   "\"set conserve_memory = \"")
- 788 |             | [< >] ->
- 789 |                config_failwith ("Expected a boolean argument after " ^
- 790 |                "\"set conserve_memory = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 780, characters 17-32:
- 780 |             | [< 'String setting >] ->
-                        ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 798, characters 8-24:
- 798 |    | [< 'Kwd "base_unit" >] ->
-               ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 799-810, characters 12-89:
- 799 | ............match line_stream with parser
- 800 |       | [< 'String base_u; 'String prefix_s >] ->
- 801 |          begin try
- 802 |             let prefix = Units.prefix_of_string prefix_s in
- 803 |             unit_table := Units.add_base_unit base_u prefix !unit_table
- ...
- 807 |             base_u ^ "\"")
- 808 |          end
- 809 |       | [< >] ->
- 810 |          config_failwith ("Expected a unit string and prefix string after \"base_unit\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 799-810, characters 12-89:
- 799 | ............match line_stream with parser
- 800 |       | [< 'String base_u; 'String prefix_s >] ->
- 801 |          begin try
- 802 |             let prefix = Units.prefix_of_string prefix_s in
- 803 |             unit_table := Units.add_base_unit base_u prefix !unit_table
- ...
- 807 |             base_u ^ "\"")
- 808 |          end
- 809 |       | [< >] ->
- 810 |          config_failwith ("Expected a unit string and prefix string after \"base_unit\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 800, characters 11-25:
- 800 |       | [< 'String base_u; 'String prefix_s >] ->
-                  ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 800, characters 27-43:
- 800 |       | [< 'String base_u; 'String prefix_s >] ->
-                                  ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 800, characters 27-43:
- 800 |       | [< 'String base_u; 'String prefix_s >] ->
-                                  ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 800, characters 11-25:
- 800 |       | [< 'String base_u; 'String prefix_s >] ->
-                  ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 812, characters 8-19:
- 812 |    | [< 'Kwd "unit" >] ->
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 813-823, characters 12-81:
- 813 | ............match line_stream with parser
- 814 |       | [< 'String unit_str; 'String unit_def_str >] ->
- 815 |          begin try
- 816 |             let unit_def = Units.unit_def_of_string unit_def_str !unit_table in
- 817 |             unit_table := Units.add_unit unit_str unit_def !unit_table
- ...
- 820 |             unit_str ^ "\" \"" ^ unit_def_str ^ "\"; " ^ s)
- 821 |          end
- 822 |       | [< >] ->
- 823 |          config_failwith ("Expected a unit string and definition after \"unit\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 813-823, characters 12-81:
- 813 | ............match line_stream with parser
- 814 |       | [< 'String unit_str; 'String unit_def_str >] ->
- 815 |          begin try
- 816 |             let unit_def = Units.unit_def_of_string unit_def_str !unit_table in
- 817 |             unit_table := Units.add_unit unit_str unit_def !unit_table
- ...
- 820 |             unit_str ^ "\" \"" ^ unit_def_str ^ "\"; " ^ s)
- 821 |          end
- 822 |       | [< >] ->
- 823 |          config_failwith ("Expected a unit string and definition after \"unit\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 814, characters 11-27:
- 814 |       | [< 'String unit_str; 'String unit_def_str >] ->
-                  ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 814, characters 29-49:
- 814 |       | [< 'String unit_str; 'String unit_def_str >] ->
-                                    ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 814, characters 29-49:
- 814 |       | [< 'String unit_str; 'String unit_def_str >] ->
-                                    ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 814, characters 11-27:
- 814 |       | [< 'String unit_str; 'String unit_def_str >] ->
-                  ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 825, characters 8-23:
- 825 |    | [< 'Kwd "constant" >] ->
-               ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 826-836, characters 12-87:
- 826 | ............match line_stream with parser
- 827 |       | [< 'String const_str; 'String unit_def_str >] ->
- 828 |          begin try
- 829 |             let unit_def = Units.unit_def_of_string unit_def_str !unit_table in
- 830 |             register_constant const_str unit_def
- ...
- 833 |             const_str ^ "\" \"" ^ unit_def_str ^ "\"; " ^ s)
- 834 |          end
- 835 |       | [< >] ->
- 836 |          config_failwith ("Expected a constant name and definition after \"constant\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 826-836, characters 12-87:
- 826 | ............match line_stream with parser
- 827 |       | [< 'String const_str; 'String unit_def_str >] ->
- 828 |          begin try
- 829 |             let unit_def = Units.unit_def_of_string unit_def_str !unit_table in
- 830 |             register_constant const_str unit_def
- ...
- 833 |             const_str ^ "\" \"" ^ unit_def_str ^ "\"; " ^ s)
- 834 |          end
- 835 |       | [< >] ->
- 836 |          config_failwith ("Expected a constant name and definition after \"constant\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 827, characters 11-28:
- 827 |       | [< 'String const_str; 'String unit_def_str >] ->
-                  ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 827, characters 30-50:
- 827 |       | [< 'String const_str; 'String unit_def_str >] ->
-                                     ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 827, characters 30-50:
- 827 |       | [< 'String const_str; 'String unit_def_str >] ->
-                                     ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 827, characters 11-28:
- 827 |       | [< 'String const_str; 'String unit_def_str >] ->
-                  ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 838, characters 8-16:
- 838 |    | [< 'Kwd "#" >] ->
-               ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 946, characters 7-23:
- 946 |       (Stream.of_string line)
-              ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 976, characters 16-30:
- 976 |                |Stream.Failure ->
-                       ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w -27-35-52 -thread -g -I src/orpie/.main.eobjs/byte -I src/orpie/.main.eobjs/native -I /home/opam/.opam/4.14/lib/curses -I /home/opam/.opam/4.14/lib/gsl -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/ocaml/threads -intf-suffix .ml -no-alias-deps -o src/orpie/.main.eobjs/native/rcfile.cmx -c -impl src/orpie/rcfile.pp.ml)
- File "_none_", line 1:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 588-841, characters 3-59:
- 588 | ...match line_stream with parser
- 589 |    | [< 'Kwd "include" >] ->
- 590 |       begin match line_stream with parser
- 591 |       | [< 'String include_file >] ->
- 592 |          included_rcfiles := include_file :: !included_rcfiles
- ...
- 838 |    | [< 'Kwd "#" >] ->
- 839 |       ()
- 840 |    | [< >] ->
- 841 |       config_failwith "Expected a keyword at start of line"..
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 588-841, characters 3-59:
- 588 | ...match line_stream with parser
- 589 |    | [< 'Kwd "include" >] ->
- 590 |       begin match line_stream with parser
- 591 |       | [< 'String include_file >] ->
- 592 |          included_rcfiles := include_file :: !included_rcfiles
- ...
- 838 |    | [< 'Kwd "#" >] ->
- 839 |       ()
- 840 |    | [< >] ->
- 841 |       config_failwith "Expected a keyword at start of line"..
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 589, characters 8-22:
- 589 |    | [< 'Kwd "include" >] ->
-               ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 590-594, characters 12-73:
- 590 | ............match line_stream with parser
- 591 |       | [< 'String include_file >] ->
- 592 |          included_rcfiles := include_file :: !included_rcfiles
- 593 |       | [< >] ->
- 594 |          config_failwith ("Expected a filename string after \"include\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 590-594, characters 12-73:
- 590 | ............match line_stream with parser
- 591 |       | [< 'String include_file >] ->
- 592 |          included_rcfiles := include_file :: !included_rcfiles
- 593 |       | [< >] ->
- 594 |          config_failwith ("Expected a filename string after \"include\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 591, characters 11-31:
- 591 |       | [< 'String include_file >] ->
-                  ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 596, characters 8-19:
- 596 |    | [< 'Kwd "bind" >] -> 
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 598-603, characters 15-84:
- 598 | ...............match line_stream with parser
- 599 |          | [< 'Ident command_str >] ->
- 600 |             let command = operation_of_string command_str in
- 601 |             register_binding key command
- 602 |          | [< >] ->
- 603 |             config_failwith ("Expected a command name after \"bind \"" ^ key ^ "\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 598-603, characters 15-84:
- 598 | ...............match line_stream with parser
- 599 |          | [< 'Ident command_str >] ->
- 600 |             let command = operation_of_string command_str in
- 601 |             register_binding key command
- 602 |          | [< >] ->
- 603 |             config_failwith ("Expected a command name after \"bind \"" ^ key ^ "\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 599, characters 14-32:
- 599 |          | [< 'Ident command_str >] ->
-                     ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 606-623, characters 12-71:
- 606 | ............match line_stream with parser
- 607 |       | [< 'String k >] -> 
- 608 |          bind_key k
- 609 |       | [< 'Ident "\\" >] ->
- 610 |          begin match line_stream with parser
- ...
- 620 |             config_failwith "Expected octal digits after \"\\\""
- 621 |          end
- 622 |       | [< >] ->
- 623 |          config_failwith "Expected a key string after keyword \"bind\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 606-623, characters 12-71:
- 606 | ............match line_stream with parser
- 607 |       | [< 'String k >] -> 
- 608 |          bind_key k
- 609 |       | [< 'Ident "\\" >] ->
- 610 |          begin match line_stream with parser
- ...
- 620 |             config_failwith "Expected octal digits after \"\\\""
- 621 |          end
- 622 |       | [< >] ->
- 623 |          config_failwith "Expected a key string after keyword \"bind\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 607, characters 11-20:
- 607 |       | [< 'String k >] -> 
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 609, characters 11-22:
- 609 |       | [< 'Ident "\\" >] ->
-                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 610-620, characters 15-64:
- 610 | ...............match line_stream with parser
- 611 |          | [< 'Int octal_int >] ->
- 612 |             begin
- 613 |                try
- 614 |                   let octal_digits = "0o" ^ (string_of_int octal_int) in
- ...
- 617 |                   (Failure "int_of_string") -> config_failwith "Expected octal digits after \"\\\""
- 618 |             end
- 619 |          | [< >]  ->
- 620 |             config_failwith "Expected octal digits after \"\\\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 610-620, characters 15-64:
- 610 | ...............match line_stream with parser
- 611 |          | [< 'Int octal_int >] ->
- 612 |             begin
- 613 |                try
- 614 |                   let octal_digits = "0o" ^ (string_of_int octal_int) in
- ...
- 617 |                   (Failure "int_of_string") -> config_failwith "Expected octal digits after \"\\\""
- 618 |             end
- 619 |          | [< >]  ->
- 620 |             config_failwith "Expected octal digits after \"\\\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 611, characters 14-28:
- 611 |          | [< 'Int octal_int >] ->
-                     ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 625, characters 8-30:
- 625 |    | [< 'Kwd "unbind_function" >] ->
-               ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 626-630, characters 12-84:
- 626 | ............match line_stream with parser
- 627 |       | [< 'String k >] ->
- 628 |          unregister_function_binding k
- 629 |       | [< >] ->
- 630 |          config_failwith ("Expected a key string after keyword \"unbind_function\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 626-630, characters 12-84:
- 626 | ............match line_stream with parser
- 627 |       | [< 'String k >] ->
- 628 |          unregister_function_binding k
- 629 |       | [< >] ->
- 630 |          config_failwith ("Expected a key string after keyword \"unbind_function\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 627, characters 11-20:
- 627 |       | [< 'String k >] ->
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 632, characters 8-29:
- 632 |    | [< 'Kwd "unbind_command" >] ->
-               ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 633-637, characters 12-83:
- 633 | ............match line_stream with parser
- 634 |       | [< 'String k >] ->
- 635 |          unregister_command_binding k
- 636 |       | [< >] ->
- 637 |          config_failwith ("Expected a key string after keyword \"unbind_command\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 633-637, characters 12-83:
- 633 | ............match line_stream with parser
- 634 |       | [< 'String k >] ->
- 635 |          unregister_command_binding k
- 636 |       | [< >] ->
- 637 |          config_failwith ("Expected a key string after keyword \"unbind_command\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 634, characters 11-20:
- 634 |       | [< 'String k >] ->
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 639, characters 8-26:
- 639 |    | [< 'Kwd "unbind_edit" >] ->
-               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 640-644, characters 12-80:
- 640 | ............match line_stream with parser
- 641 |       | [< 'String k >] ->
- 642 |          unregister_edit_binding k
- 643 |       | [< >] ->
- 644 |          config_failwith ("Expected a key string after keyword \"unbind_edit\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 640-644, characters 12-80:
- 640 | ............match line_stream with parser
- 641 |       | [< 'String k >] ->
- 642 |          unregister_edit_binding k
- 643 |       | [< >] ->
- 644 |          config_failwith ("Expected a key string after keyword \"unbind_edit\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 641, characters 11-20:
- 641 |       | [< 'String k >] ->
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 646, characters 8-28:
- 646 |    | [< 'Kwd "unbind_browse" >] ->
-               ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 647-651, characters 12-82:
- 647 | ............match line_stream with parser
- 648 |       | [< 'String k >] ->
- 649 |          unregister_browse_binding k
- 650 |       | [< >] ->
- 651 |          config_failwith ("Expected a key string after keyword \"unbind_browse\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 647-651, characters 12-82:
- 647 | ............match line_stream with parser
- 648 |       | [< 'String k >] ->
- 649 |          unregister_browse_binding k
- 650 |       | [< >] ->
- 651 |          config_failwith ("Expected a key string after keyword \"unbind_browse\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 648, characters 11-20:
- 648 |       | [< 'String k >] ->
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 653, characters 8-28:
- 653 |    | [< 'Kwd "unbind_abbrev" >] ->
-               ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 654-658, characters 12-82:
- 654 | ............match line_stream with parser
- 655 |       | [< 'String k >] ->
- 656 |          unregister_abbrev_binding k
- 657 |       | [< >] ->
- 658 |          config_failwith ("Expected a key string after keyword \"unbind_abbrev\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 654-658, characters 12-82:
- 654 | ............match line_stream with parser
- 655 |       | [< 'String k >] ->
- 656 |          unregister_abbrev_binding k
- 657 |       | [< >] ->
- 658 |          config_failwith ("Expected a key string after keyword \"unbind_abbrev\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 655, characters 11-20:
- 655 |       | [< 'String k >] ->
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 660, characters 8-29:
- 660 |    | [< 'Kwd "unbind_integer" >] ->
-               ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 661-665, characters 12-83:
- 661 | ............match line_stream with parser
- 662 |       | [< 'String k >] ->
- 663 |          unregister_intedit_binding k
- 664 |       | [< >] ->
- 665 |          config_failwith ("Expected a key string after keyword \"unbind_integer\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 661-665, characters 12-83:
- 661 | ............match line_stream with parser
- 662 |       | [< 'String k >] ->
- 663 |          unregister_intedit_binding k
- 664 |       | [< >] ->
- 665 |          config_failwith ("Expected a key string after keyword \"unbind_integer\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 662, characters 11-20:
- 662 |       | [< 'String k >] ->
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 667, characters 8-30:
- 667 |    | [< 'Kwd "unbind_variable" >] ->
-               ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 668-672, characters 12-84:
- 668 | ............match line_stream with parser
- 669 |       | [< 'String k >] ->
- 670 |          unregister_varedit_binding k
- 671 |       | [< >] ->
- 672 |          config_failwith ("Expected a key string after keyword \"unbind_variable\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 668-672, characters 12-84:
- 668 | ............match line_stream with parser
- 669 |       | [< 'String k >] ->
- 670 |          unregister_varedit_binding k
- 671 |       | [< >] ->
- 672 |          config_failwith ("Expected a key string after keyword \"unbind_variable\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 669, characters 11-20:
- 669 |       | [< 'String k >] ->
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 674, characters 8-23:
- 674 |    | [< 'Kwd "autobind" >] ->
-               ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 675-694, characters 12-71:
- 675 | ............match line_stream with parser
- 676 |       | [< 'String k >] -> 
- 677 |          let key, key_string = decode_single_key_string k in
- 678 |          autobind_keys_list := (key, key_string, None, 1) :: !autobind_keys_list
- 679 |       | [< 'Ident "\\" >] ->
- ...
- 691 |             config_failwith "Expected octal digits after \"\\\""
- 692 |          end
- 693 |       | [< >] ->
- 694 |          config_failwith "Expected a key string after keyword \"bind\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 675-694, characters 12-71:
- 675 | ............match line_stream with parser
- 676 |       | [< 'String k >] -> 
- 677 |          let key, key_string = decode_single_key_string k in
- 678 |          autobind_keys_list := (key, key_string, None, 1) :: !autobind_keys_list
- 679 |       | [< 'Ident "\\" >] ->
- ...
- 691 |             config_failwith "Expected octal digits after \"\\\""
- 692 |          end
- 693 |       | [< >] ->
- 694 |          config_failwith "Expected a key string after keyword \"bind\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 676, characters 11-20:
- 676 |       | [< 'String k >] -> 
-                  ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 679, characters 11-22:
- 679 |       | [< 'Ident "\\" >] ->
-                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 680-691, characters 15-64:
- 680 | ...............match line_stream with parser
- 681 |          | [< 'Int octal_int >] ->
- 682 |             begin
- 683 |                try
- 684 |                   let octal_digits = "0o" ^ (string_of_int octal_int) in
- ...
- 688 |                   (Failure "int_of_string") -> config_failwith "Expected octal digits after \"\\\""
- 689 |             end
- 690 |          | [< >]  ->
- 691 |             config_failwith "Expected octal digits after \"\\\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 680-691, characters 15-64:
- 680 | ...............match line_stream with parser
- 681 |          | [< 'Int octal_int >] ->
- 682 |             begin
- 683 |                try
- 684 |                   let octal_digits = "0o" ^ (string_of_int octal_int) in
- ...
- 688 |                   (Failure "int_of_string") -> config_failwith "Expected octal digits after \"\\\""
- 689 |             end
- 690 |          | [< >]  ->
- 691 |             config_failwith "Expected octal digits after \"\\\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 681, characters 14-28:
- 681 |          | [< 'Int octal_int >] ->
-                     ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 696, characters 8-20:
- 696 |    | [< 'Kwd "macro" >] ->
-               ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 697-706, characters 12-72:
- 697 | ............match line_stream with parser
- 698 |       | [< 'String key >] ->
- 699 |          begin match line_stream with parser
- 700 |          | [< 'String generated_keys >] ->
- 701 |             register_macro key generated_keys
- 702 |          | [< >] ->
- 703 |             config_failwith ("Expected a key string after \"macro \"" ^ key ^ "\"")
- 704 |          end
- 705 |       | [< >] ->
- 706 |          config_failwith "Expected a key string after keyword \"macro\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 697-706, characters 12-72:
- 697 | ............match line_stream with parser
- 698 |       | [< 'String key >] ->
- 699 |          begin match line_stream with parser
- 700 |          | [< 'String generated_keys >] ->
- 701 |             register_macro key generated_keys
- 702 |          | [< >] ->
- 703 |             config_failwith ("Expected a key string after \"macro \"" ^ key ^ "\"")
- 704 |          end
- 705 |       | [< >] ->
- 706 |          config_failwith "Expected a key string after keyword \"macro\""
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 698, characters 11-22:
- 698 |       | [< 'String key >] ->
-                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 699-703, characters 15-83:
- 699 | ...............match line_stream with parser
- 700 |          | [< 'String generated_keys >] ->
- 701 |             register_macro key generated_keys
- 702 |          | [< >] ->
- 703 |             config_failwith ("Expected a key string after \"macro \"" ^ key ^ "\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 699-703, characters 15-83:
- 699 | ...............match line_stream with parser
- 700 |          | [< 'String generated_keys >] ->
- 701 |             register_macro key generated_keys
- 702 |          | [< >] ->
- 703 |             config_failwith ("Expected a key string after \"macro \"" ^ key ^ "\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 700, characters 14-36:
- 700 |          | [< 'String generated_keys >] ->
-                     ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 708, characters 8-21:
- 708 |    | [< 'Kwd "abbrev" >] ->
-               ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 709-719, characters 12-77:
- 709 | ............match line_stream with parser
- 710 |       | [< 'String abbr >] ->
- 711 |          begin match line_stream with parser
- 712 |          | [< 'Ident command_str >] ->
- 713 |             let command = operation_of_string command_str in
- ...
- 716 |             config_failwith ("Expected a command name after \"abbrev \"" ^ abbr ^ "\"")
- 717 |          end
- 718 |       | [< >] ->
- 719 |          config_failwith ("Expected an abbreviation string after \"abbrev\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 709-719, characters 12-77:
- 709 | ............match line_stream with parser
- 710 |       | [< 'String abbr >] ->
- 711 |          begin match line_stream with parser
- 712 |          | [< 'Ident command_str >] ->
- 713 |             let command = operation_of_string command_str in
- ...
- 716 |             config_failwith ("Expected a command name after \"abbrev \"" ^ abbr ^ "\"")
- 717 |          end
- 718 |       | [< >] ->
- 719 |          config_failwith ("Expected an abbreviation string after \"abbrev\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 710, characters 11-23:
- 710 |       | [< 'String abbr >] ->
-                  ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 711-716, characters 15-87:
- 711 | ...............match line_stream with parser
- 712 |          | [< 'Ident command_str >] ->
- 713 |             let command = operation_of_string command_str in
- 714 |             register_abbrev abbr command
- 715 |          | [< >] ->
- 716 |             config_failwith ("Expected a command name after \"abbrev \"" ^ abbr ^ "\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 711-716, characters 15-87:
- 711 | ...............match line_stream with parser
- 712 |          | [< 'Ident command_str >] ->
- 713 |             let command = operation_of_string command_str in
- 714 |             register_abbrev abbr command
- 715 |          | [< >] ->
- 716 |             config_failwith ("Expected a command name after \"abbrev \"" ^ abbr ^ "\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 712, characters 14-32:
- 712 |          | [< 'Ident command_str >] ->
-                     ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 721, characters 8-23:
- 721 |    | [< 'Kwd "unabbrev" >] ->
-               ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 722-726, characters 12-79:
- 722 | ............match line_stream with parser
- 723 |       | [< 'String abbr >] ->
- 724 |          unregister_abbrev abbr
- 725 |       | [< >] ->
- 726 |          config_failwith ("Expected an abbreviation string after \"unabbrev\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 722-726, characters 12-79:
- 722 | ............match line_stream with parser
- 723 |       | [< 'String abbr >] ->
- 724 |          unregister_abbrev abbr
- 725 |       | [< >] ->
- 726 |          config_failwith ("Expected an abbreviation string after \"unabbrev\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 723, characters 11-23:
- 723 |       | [< 'String abbr >] ->
-                  ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 728, characters 8-18:
- 728 |    | [< 'Kwd "set" >] ->
-               ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 729-796, characters 12-66:
- 729 | ............match line_stream with parser
- 730 |       | [< 'Ident "datadir" >] ->
- 731 |          begin match line_stream with parser
- 732 |          | [< 'Ident "=" >] ->
- 733 |             begin match line_stream with parser
- ...
- 793 |             config_failwith ("Expected \"=\" after \"set conserve_memory\"")
- 794 |          end
- 795 |       | [< >] ->
- 796 |          config_failwith ("Unmatched variable name after \"set\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 729-796, characters 12-66:
- 729 | ............match line_stream with parser
- 730 |       | [< 'Ident "datadir" >] ->
- 731 |          begin match line_stream with parser
- 732 |          | [< 'Ident "=" >] ->
- 733 |             begin match line_stream with parser
- ...
- 793 |             config_failwith ("Expected \"=\" after \"set conserve_memory\"")
- 794 |          end
- 795 |       | [< >] ->
- 796 |          config_failwith ("Unmatched variable name after \"set\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 730, characters 11-27:
- 730 |       | [< 'Ident "datadir" >] ->
-                  ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 731-741, characters 15-68:
- 731 | ...............match line_stream with parser
- 732 |          | [< 'Ident "=" >] ->
- 733 |             begin match line_stream with parser
- 734 |             | [< 'String dir >] ->
- 735 |                datadir := dir
- ...
- 738 |                "\"set datadir = \"")
- 739 |             end
- 740 |          | [< >] ->
- 741 |             config_failwith ("Expected \"=\" after \"set datadir\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 731-741, characters 15-68:
- 731 | ...............match line_stream with parser
- 732 |          | [< 'Ident "=" >] ->
- 733 |             begin match line_stream with parser
- 734 |             | [< 'String dir >] ->
- 735 |                datadir := dir
- ...
- 738 |                "\"set datadir = \"")
- 739 |             end
- 740 |          | [< >] ->
- 741 |             config_failwith ("Expected \"=\" after \"set datadir\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 732, characters 14-24:
- 732 |          | [< 'Ident "=" >] ->
-                     ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 733-738, characters 18-36:
- 733 | ..................match line_stream with parser
- 734 |             | [< 'String dir >] ->
- 735 |                datadir := dir
- 736 |             | [< >] ->
- 737 |                config_failwith ("Expected a directory string after " ^
- 738 |                "\"set datadir = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 733-738, characters 18-36:
- 733 | ..................match line_stream with parser
- 734 |             | [< 'String dir >] ->
- 735 |                datadir := dir
- 736 |             | [< >] ->
- 737 |                config_failwith ("Expected a directory string after " ^
- 738 |                "\"set datadir = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 734, characters 17-28:
- 734 |             | [< 'String dir >] ->
-                        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 743, characters 11-26:
- 743 |       | [< 'Ident "editor" >] ->
-                  ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 744-755, characters 15-67:
- 744 | ...............match line_stream with parser
- 745 |          | [< 'Ident "=" >] ->
- 746 |             begin match line_stream with parser
- 747 |             | [< 'String executable >] ->
- 748 |                ( (* Printf.fprintf stderr "using editor \"%s\"\n" executable; *)
- ...
- 752 |                "\"set editor = \"")
- 753 |             end
- 754 |          | [< >] ->
- 755 |             config_failwith ("Expected \"=\" after \"set editor\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 744-755, characters 15-67:
- 744 | ...............match line_stream with parser
- 745 |          | [< 'Ident "=" >] ->
- 746 |             begin match line_stream with parser
- 747 |             | [< 'String executable >] ->
- 748 |                ( (* Printf.fprintf stderr "using editor \"%s\"\n" executable; *)
- ...
- 752 |                "\"set editor = \"")
- 753 |             end
- 754 |          | [< >] ->
- 755 |             config_failwith ("Expected \"=\" after \"set editor\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 745, characters 14-24:
- 745 |          | [< 'Ident "=" >] ->
-                     ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 746-752, characters 18-35:
- 746 | ..................match line_stream with parser
- 747 |             | [< 'String executable >] ->
- 748 |                ( (* Printf.fprintf stderr "using editor \"%s\"\n" executable; *)
- 749 |                editor := executable)
- 750 |             | [< >] ->
- 751 |                config_failwith ("Expected an executable filename string after " ^
- 752 |                "\"set editor = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 746-752, characters 18-35:
- 746 | ..................match line_stream with parser
- 747 |             | [< 'String executable >] ->
- 748 |                ( (* Printf.fprintf stderr "using editor \"%s\"\n" executable; *)
- 749 |                editor := executable)
- 750 |             | [< >] ->
- 751 |                config_failwith ("Expected an executable filename string after " ^
- 752 |                "\"set editor = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 747, characters 17-35:
- 747 |             | [< 'String executable >] ->
-                        ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 757, characters 11-29:
- 757 |       | [< 'Ident "hide_help" >] ->
-                  ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 758-774, characters 15-70:
- 758 | ...............match line_stream with parser
- 759 |          | [< 'Ident "=" >] ->
- 760 |             begin match line_stream with parser
- 761 |             | [< 'String setting >] ->
- 762 |                if setting = "true" then
- ...
- 771 |                "\"set hide_help = \"")
- 772 |             end
- 773 |          | [< >] ->
- 774 |             config_failwith ("Expected \"=\" after \"set hide_help\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 758-774, characters 15-70:
- 758 | ...............match line_stream with parser
- 759 |          | [< 'Ident "=" >] ->
- 760 |             begin match line_stream with parser
- 761 |             | [< 'String setting >] ->
- 762 |                if setting = "true" then
- ...
- 771 |                "\"set hide_help = \"")
- 772 |             end
- 773 |          | [< >] ->
- 774 |             config_failwith ("Expected \"=\" after \"set hide_help\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 759, characters 14-24:
- 759 |          | [< 'Ident "=" >] ->
-                     ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 760-771, characters 18-38:
- 760 | ..................match line_stream with parser
- 761 |             | [< 'String setting >] ->
- 762 |                if setting = "true" then
- 763 |                   hide_help := true
- 764 |                else if setting = "false" then
- ...
- 768 |                   "\"set hide_help = \"")
- 769 |             | [< >] ->
- 770 |                config_failwith ("Expected a boolean argument after " ^
- 771 |                "\"set hide_help = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 760-771, characters 18-38:
- 760 | ..................match line_stream with parser
- 761 |             | [< 'String setting >] ->
- 762 |                if setting = "true" then
- 763 |                   hide_help := true
- 764 |                else if setting = "false" then
- ...
- 768 |                   "\"set hide_help = \"")
- 769 |             | [< >] ->
- 770 |                config_failwith ("Expected a boolean argument after " ^
- 771 |                "\"set hide_help = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 761, characters 17-32:
- 761 |             | [< 'String setting >] ->
-                        ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 776, characters 11-35:
- 776 |       | [< 'Ident "conserve_memory" >] ->
-                  ^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 777-793, characters 15-76:
- 777 | ...............match line_stream with parser
- 778 |          | [< 'Ident "=" >] ->
- 779 |             begin match line_stream with parser
- 780 |             | [< 'String setting >] ->
- 781 |                if setting = "true" then
- ...
- 790 |                "\"set conserve_memory = \"")
- 791 |             end
- 792 |          | [< >] ->
- 793 |             config_failwith ("Expected \"=\" after \"set conserve_memory\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 777-793, characters 15-76:
- 777 | ...............match line_stream with parser
- 778 |          | [< 'Ident "=" >] ->
- 779 |             begin match line_stream with parser
- 780 |             | [< 'String setting >] ->
- 781 |                if setting = "true" then
- ...
- 790 |                "\"set conserve_memory = \"")
- 791 |             end
- 792 |          | [< >] ->
- 793 |             config_failwith ("Expected \"=\" after \"set conserve_memory\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 778, characters 14-24:
- 778 |          | [< 'Ident "=" >] ->
-                     ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 779-790, characters 18-44:
- 779 | ..................match line_stream with parser
- 780 |             | [< 'String setting >] ->
- 781 |                if setting = "true" then
- 782 |                   conserve_memory := true
- 783 |                else if setting = "false" then
- ...
- 787 |                   "\"set conserve_memory = \"")
- 788 |             | [< >] ->
- 789 |                config_failwith ("Expected a boolean argument after " ^
- 790 |                "\"set conserve_memory = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 779-790, characters 18-44:
- 779 | ..................match line_stream with parser
- 780 |             | [< 'String setting >] ->
- 781 |                if setting = "true" then
- 782 |                   conserve_memory := true
- 783 |                else if setting = "false" then
- ...
- 787 |                   "\"set conserve_memory = \"")
- 788 |             | [< >] ->
- 789 |                config_failwith ("Expected a boolean argument after " ^
- 790 |                "\"set conserve_memory = \"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 780, characters 17-32:
- 780 |             | [< 'String setting >] ->
-                        ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 798, characters 8-24:
- 798 |    | [< 'Kwd "base_unit" >] ->
-               ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 799-810, characters 12-89:
- 799 | ............match line_stream with parser
- 800 |       | [< 'String base_u; 'String prefix_s >] ->
- 801 |          begin try
- 802 |             let prefix = Units.prefix_of_string prefix_s in
- 803 |             unit_table := Units.add_base_unit base_u prefix !unit_table
- ...
- 807 |             base_u ^ "\"")
- 808 |          end
- 809 |       | [< >] ->
- 810 |          config_failwith ("Expected a unit string and prefix string after \"base_unit\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 799-810, characters 12-89:
- 799 | ............match line_stream with parser
- 800 |       | [< 'String base_u; 'String prefix_s >] ->
- 801 |          begin try
- 802 |             let prefix = Units.prefix_of_string prefix_s in
- 803 |             unit_table := Units.add_base_unit base_u prefix !unit_table
- ...
- 807 |             base_u ^ "\"")
- 808 |          end
- 809 |       | [< >] ->
- 810 |          config_failwith ("Expected a unit string and prefix string after \"base_unit\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 800, characters 11-25:
- 800 |       | [< 'String base_u; 'String prefix_s >] ->
-                  ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 800, characters 27-43:
- 800 |       | [< 'String base_u; 'String prefix_s >] ->
-                                  ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 800, characters 27-43:
- 800 |       | [< 'String base_u; 'String prefix_s >] ->
-                                  ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 800, characters 11-25:
- 800 |       | [< 'String base_u; 'String prefix_s >] ->
-                  ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 812, characters 8-19:
- 812 |    | [< 'Kwd "unit" >] ->
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 813-823, characters 12-81:
- 813 | ............match line_stream with parser
- 814 |       | [< 'String unit_str; 'String unit_def_str >] ->
- 815 |          begin try
- 816 |             let unit_def = Units.unit_def_of_string unit_def_str !unit_table in
- 817 |             unit_table := Units.add_unit unit_str unit_def !unit_table
- ...
- 820 |             unit_str ^ "\" \"" ^ unit_def_str ^ "\"; " ^ s)
- 821 |          end
- 822 |       | [< >] ->
- 823 |          config_failwith ("Expected a unit string and definition after \"unit\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 813-823, characters 12-81:
- 813 | ............match line_stream with parser
- 814 |       | [< 'String unit_str; 'String unit_def_str >] ->
- 815 |          begin try
- 816 |             let unit_def = Units.unit_def_of_string unit_def_str !unit_table in
- 817 |             unit_table := Units.add_unit unit_str unit_def !unit_table
- ...
- 820 |             unit_str ^ "\" \"" ^ unit_def_str ^ "\"; " ^ s)
- 821 |          end
- 822 |       | [< >] ->
- 823 |          config_failwith ("Expected a unit string and definition after \"unit\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 814, characters 11-27:
- 814 |       | [< 'String unit_str; 'String unit_def_str >] ->
-                  ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 814, characters 29-49:
- 814 |       | [< 'String unit_str; 'String unit_def_str >] ->
-                                    ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 814, characters 29-49:
- 814 |       | [< 'String unit_str; 'String unit_def_str >] ->
-                                    ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 814, characters 11-27:
- 814 |       | [< 'String unit_str; 'String unit_def_str >] ->
-                  ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 825, characters 8-23:
- 825 |    | [< 'Kwd "constant" >] ->
-               ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 826-836, characters 12-87:
- 826 | ............match line_stream with parser
- 827 |       | [< 'String const_str; 'String unit_def_str >] ->
- 828 |          begin try
- 829 |             let unit_def = Units.unit_def_of_string unit_def_str !unit_table in
- 830 |             register_constant const_str unit_def
- ...
- 833 |             const_str ^ "\" \"" ^ unit_def_str ^ "\"; " ^ s)
- 834 |          end
- 835 |       | [< >] ->
- 836 |          config_failwith ("Expected a constant name and definition after \"constant\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", lines 826-836, characters 12-87:
- 826 | ............match line_stream with parser
- 827 |       | [< 'String const_str; 'String unit_def_str >] ->
- 828 |          begin try
- 829 |             let unit_def = Units.unit_def_of_string unit_def_str !unit_table in
- 830 |             register_constant const_str unit_def
- ...
- 833 |             const_str ^ "\" \"" ^ unit_def_str ^ "\"; " ^ s)
- 834 |          end
- 835 |       | [< >] ->
- 836 |          config_failwith ("Expected a constant name and definition after \"constant\"")
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 827, characters 11-28:
- 827 |       | [< 'String const_str; 'String unit_def_str >] ->
-                  ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 827, characters 30-50:
- 827 |       | [< 'String const_str; 'String unit_def_str >] ->
-                                     ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 827, characters 30-50:
- 827 |       | [< 'String const_str; 'String unit_def_str >] ->
-                                     ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 827, characters 11-28:
- 827 |       | [< 'String const_str; 'String unit_def_str >] ->
-                  ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 838, characters 8-16:
- 838 |    | [< 'Kwd "#" >] ->
-               ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 946, characters 7-23:
- 946 |       (Stream.of_string line)
-              ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/orpie/rcfile.ml", line 976, characters 16-30:
- 976 |                |Stream.Failure ->
-                       ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
-> compiled  orpie.1.6.1
-> removed   orpie.1.6.1
-> installed orpie.1.6.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-12 16:56.47 ---> saved as "4ea0a8938c2b449afe3ca1e5b57bb7b13ed7c4959392fbfec958dc24b6607a2e"
Job succeeded
2025-08-12 16:57.02: Job succeeded