- github
- ocaml
- opam-repository
- 3e0c39
- compilers,4.14,dune.3.22.2,revdeps,orpie.1.6.1
(not at the head of any monitored branch or PR)
2026-04-10 17:57.36: New job: test orpie.1.6.1 with dune.3.22.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.22.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall 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-13\""; 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-13\""; 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 .
2026-04-10 17:57.36: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-orpie.1.6.1-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.36: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall 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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != '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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != '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"))
)
2026-04-10 17:57.36: Waiting for resource in pool OCluster
2026-04-11 02:39.36: Waiting for worker…
2026-04-11 02:41.41: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files: 71% (13445/18686)
Updating files: 72% (13454/18686)
Updating files: 73% (13641/18686)
Updating files: 74% (13828/18686)
Updating files: 75% (14015/18686)
Updating files: 76% (14202/18686)
Updating files: 77% (14389/18686)
Updating files: 78% (14576/18686)
Updating files: 79% (14762/18686)
Updating files: 80% (14949/18686)
Updating files: 81% (15136/18686)
Updating files: 82% (15323/18686)
Updating files: 83% (15510/18686)
Updating files: 84% (15697/18686)
Updating files: 85% (15884/18686)
Updating files: 86% (16070/18686)
Updating files: 87% (16257/18686)
Updating files: 88% (16444/18686)
Updating files: 89% (16631/18686)
Updating files: 90% (16818/18686)
Updating files: 91% (17005/18686)
Updating files: 92% (17192/18686)
Updating files: 93% (17378/18686)
Updating files: 94% (17565/18686)
Updating files: 95% (17752/18686)
Updating files: 96% (17939/18686)
Updating files: 97% (18126/18686)
Updating files: 98% (18313/18686)
Updating files: 99% (18500/18686)
Updating files: 100% (18686/18686)
Updating files: 100% (18686/18686), done.
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
packages/chrome-trace/chrome-trace.3.22.2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.2/opam | 39 +++++++++++
.../dune-build-info/dune-build-info.3.22.2/opam | 45 +++++++++++++
.../dune-configurator.3.22.2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.2/opam | 50 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.2/opam | 37 +++++++++++
packages/dune/dune.3.22.2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.2/opam | 46 +++++++++++++
packages/top-closure/top-closure.3.22.2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
create mode 100644 packages/dune-site/dune-site.3.22.2/opam
create mode 100644 packages/dune/dune.3.22.2/opam
create mode 100644 packages/dyn/dyn.3.22.2/opam
create mode 100644 packages/fs-io/fs-io.3.22.2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
create mode 100644 packages/ordering/ordering.3.22.2/opam
create mode 100644 packages/stdune/stdune.3.22.2/opam
create mode 100644 packages/top-closure/top-closure.3.22.2/opam
create mode 100644 packages/xdg/xdg.3.22.2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 02:42.32 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-11 02:42.32 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-11 02:42.32 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.3
2026-04-11 02:42.32 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-11 02:42.32 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 02:42.34 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 02:42.34 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (1545 kB/s)
- Reading package lists...
-
2026-04-11 02:42.34 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 02:42.34 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2 (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:42.34 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" 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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != '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 39 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.04.00 [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 csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by hex]
- install curses 1.0.12 [required by orpie]
- install dune-compiledb 0.6.0 [required by pcre2]
- install dune-configurator 3.22.2 [required by curses, gsl]
- install ezjsonm 1.3.0 [required by dune-compiledb]
- 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 hex 1.5.0 [required by ezjsonm]
- install jsonm 1.0.2 [required by ezjsonm]
- install logs 0.10.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 parsexp v0.16.0 [required by sexplib]
- install pcre2 8.0.4 [required by camlp5]
- install re 1.14.0 [required by camlp5]
- install rresult 0.7.0 [required by camlp5]
- install sexplib v0.16.0 [required by dune-compiledb]
- install sexplib0 v0.16.0 [required by dune-compiledb]
- install topkg 1.1.1 [required by bos]
- install uutf 1.0.4 [required by ezjsonm]
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"
- Preconfiguring packages ...
- Selecting previously unselected package libsystemd-shared:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../libsystemd-shared_257.9-1~deb13u1_amd64.deb ...
- Unpacking libsystemd-shared:amd64 (257.9-1~deb13u1) ...
- Setting up libsystemd-shared:amd64 (257.9-1~deb13u1) ...
- Selecting previously unselected package systemd.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20631 files and directories currently installed.)
- Preparing to unpack .../systemd_257.9-1~deb13u1_amd64.deb ...
- Unpacking systemd (257.9-1~deb13u1) ...
- Setting up systemd (257.9-1~deb13u1) ...
- Created symlink '/etc/systemd/system/getty.target.wants/getty@tty1.service' → '/usr/lib/systemd/system/getty@.service'.
- Created symlink '/etc/systemd/system/multi-user.target.wants/remote-fs.target' → '/usr/lib/systemd/system/remote-fs.target'.
- Created symlink '/etc/systemd/system/sysinit.target.wants/systemd-pstore.service' → '/usr/lib/systemd/system/systemd-pstore.service'.
- Initializing machine ID from random generator.
- Creating group 'systemd-journal' with GID 999.
- Creating group 'systemd-network' with GID 998.
- Creating user 'systemd-network' (systemd Network Management) with UID 998 and GID 998.
- /usr/lib/tmpfiles.d/legacy.conf:14: Duplicate line for path "/run/lock", ignoring.
- Selecting previously unselected package systemd-sysv.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21564 files and directories currently installed.)
- Preparing to unpack .../0-systemd-sysv_257.9-1~deb13u1_amd64.deb ...
- Unpacking systemd-sysv (257.9-1~deb13u1) ...
- Selecting previously unselected package libdbus-1-3:amd64.
- Preparing to unpack .../1-libdbus-1-3_1.16.2-2_amd64.deb ...
- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...
- Selecting previously unselected package dbus-bin.
- Preparing to unpack .../2-dbus-bin_1.16.2-2_amd64.deb ...
- Unpacking dbus-bin (1.16.2-2) ...
- Selecting previously unselected package dbus-session-bus-common.
- Preparing to unpack .../3-dbus-session-bus-common_1.16.2-2_all.deb ...
- Unpacking dbus-session-bus-common (1.16.2-2) ...
- Selecting previously unselected package dbus-daemon.
- Preparing to unpack .../4-dbus-daemon_1.16.2-2_amd64.deb ...
- Unpacking dbus-daemon (1.16.2-2) ...
- Selecting previously unselected package dbus-system-bus-common.
- Preparing to unpack .../5-dbus-system-bus-common_1.16.2-2_all.deb ...
- Unpacking dbus-system-bus-common (1.16.2-2) ...
- Selecting previously unselected package dbus.
- Preparing to unpack .../6-dbus_1.16.2-2_amd64.deb ...
- Unpacking dbus (1.16.2-2) ...
- Selecting previously unselected package libpython3.13-minimal:amd64.
- Preparing to unpack .../7-libpython3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-minimal:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13-minimal.
- Preparing to unpack .../8-python3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking python3.13-minimal (3.13.5-2) ...
- Setting up libpython3.13-minimal:amd64 (3.13.5-2) ...
- Setting up python3.13-minimal (3.13.5-2) ...
- Selecting previously unselected package python3-minimal.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
- (Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21981 files and directories currently installed.)
- Preparing to unpack .../0-python3-minimal_3.13.5-1_amd64.deb ...
- Unpacking python3-minimal (3.13.5-1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../1-media-types_13.0.0_all.deb ...
- Unpacking media-types (13.0.0) ...
- Selecting previously unselected package readline-common.
- Preparing to unpack .../2-readline-common_8.2-6_all.deb ...
- Unpacking readline-common (8.2-6) ...
- Selecting previously unselected package libreadline8t64:amd64.
- Preparing to unpack .../3-libreadline8t64_8.2-6_amd64.deb ...
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
- Unpacking libreadline8t64:amd64 (8.2-6) ...
- Selecting previously unselected package libpython3.13-stdlib:amd64.
- Preparing to unpack .../4-libpython3.13-stdlib_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13.
- Preparing to unpack .../5-python3.13_3.13.5-2_amd64.deb ...
- Unpacking python3.13 (3.13.5-2) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../6-libpython3-stdlib_3.13.5-1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up python3-minimal (3.13.5-1) ...
- Selecting previously unselected package python3.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 22467 files and directories currently installed.)
- Preparing to unpack .../000-python3_3.13.5-1_amd64.deb ...
- Unpacking python3 (3.13.5-1) ...
- Selecting previously unselected package python3-numpy-dev:amd64.
- Preparing to unpack .../001-python3-numpy-dev_1%3a2.2.4+ds-1_amd64.deb ...
- Unpacking python3-numpy-dev:amd64 (1:2.2.4+ds-1) ...
- Selecting previously unselected package libblas3:amd64.
- Preparing to unpack .../002-libblas3_3.12.1-6_amd64.deb ...
- Unpacking libblas3:amd64 (3.12.1-6) ...
- Selecting previously unselected package libgfortran5:amd64.
- Preparing to unpack .../003-libgfortran5_14.2.0-19_amd64.deb ...
- Unpacking libgfortran5:amd64 (14.2.0-19) ...
- Selecting previously unselected package liblapack3:amd64.
- Preparing to unpack .../004-liblapack3_3.12.1-6_amd64.deb ...
- Unpacking liblapack3:amd64 (3.12.1-6) ...
- Selecting previously unselected package python3-numpy.
- Preparing to unpack .../005-python3-numpy_1%3a2.2.4+ds-1_amd64.deb ...
- Unpacking python3-numpy (1:2.2.4+ds-1) ...
- Selecting previously unselected package libnss-systemd:amd64.
- Preparing to unpack .../006-libnss-systemd_257.9-1~deb13u1_amd64.deb ...
- Unpacking libnss-systemd:amd64 (257.9-1~deb13u1) ...
- Selecting previously unselected package libpam-systemd:amd64.
- Preparing to unpack .../007-libpam-systemd_257.9-1~deb13u1_amd64.deb ...
- Unpacking libpam-systemd:amd64 (257.9-1~deb13u1) ...
- Selecting previously unselected package systemd-timesyncd.
- Preparing to unpack .../008-systemd-timesyncd_257.9-1~deb13u1_amd64.deb ...
- Unpacking systemd-timesyncd (257.9-1~deb13u1) ...
- Selecting previously unselected package libgdk-pixbuf2.0-common.
- Preparing to unpack .../009-libgdk-pixbuf2.0-common_2.42.12+dfsg-4_all.deb ...
- Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-4) ...
- Selecting previously unselected package libglib2.0-0t64:amd64.
- Preparing to unpack .../010-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../011-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../012-shared-mime-info_2.4-5+b2_amd64.deb ...
- Unpacking shared-mime-info (2.4-5+b2) ...
- Selecting previously unselected package libjpeg62-turbo:amd64.
- Preparing to unpack .../013-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libpng16-16t64:amd64.
- Preparing to unpack .../014-libpng16-16t64_1.6.48-1+deb13u4_amd64.deb ...
- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u4) ...
- Selecting previously unselected package libdeflate0:amd64.
- Preparing to unpack .../015-libdeflate0_1.23-2_amd64.deb ...
- Unpacking libdeflate0:amd64 (1.23-2) ...
- Selecting previously unselected package libjbig0:amd64.
- Preparing to unpack .../016-libjbig0_2.1-6.1+b2_amd64.deb ...
- Unpacking libjbig0:amd64 (2.1-6.1+b2) ...
- Selecting previously unselected package liblerc4:amd64.
- Preparing to unpack .../017-liblerc4_4.0.0+ds-5_amd64.deb ...
- Unpacking liblerc4:amd64 (4.0.0+ds-5) ...
- Selecting previously unselected package libsharpyuv0:amd64.
- Preparing to unpack .../018-libsharpyuv0_1.5.0-0.1_amd64.deb ...
- Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebp7:amd64.
- Preparing to unpack .../019-libwebp7_1.5.0-0.1_amd64.deb ...
- Unpacking libwebp7:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libtiff6:amd64.
- Preparing to unpack .../020-libtiff6_4.7.0-3+deb13u2_amd64.deb ...
- Unpacking libtiff6:amd64 (4.7.0-3+deb13u2) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64.
- Preparing to unpack .../021-libgdk-pixbuf-2.0-0_2.42.12+dfsg-4_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4) ...
- Selecting previously unselected package gtk-update-icon-cache.
- Preparing to unpack .../022-gtk-update-icon-cache_4.18.6+ds-2_amd64.deb ...
- No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed.
- No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed.
- Unpacking gtk-update-icon-cache (4.18.6+ds-2) ...
- Selecting previously unselected package hicolor-icon-theme.
- Preparing to unpack .../023-hicolor-icon-theme_0.18-2_all.deb ...
- Unpacking hicolor-icon-theme (0.18-2) ...
- Selecting previously unselected package adwaita-icon-theme.
- Preparing to unpack .../024-adwaita-icon-theme_48.1-1_all.deb ...
- Unpacking adwaita-icon-theme (48.1-1) ...
- Selecting previously unselected package at-spi2-common.
- Preparing to unpack .../025-at-spi2-common_2.56.2-1+deb13u1_all.deb ...
- Unpacking at-spi2-common (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../026-libxi6_2%3a1.8.2-1_amd64.deb ...
- Unpacking libxi6:amd64 (2:1.8.2-1) ...
- Selecting previously unselected package libatspi2.0-0t64:amd64.
- Preparing to unpack .../027-libatspi2.0-0t64_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatspi2.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../028-x11-common_1%3a7.7+24+deb13u1_all.deb ...
- Unpacking x11-common (1:7.7+24+deb13u1) ...
- Selecting previously unselected package libxtst6:amd64.
- Preparing to unpack .../029-libxtst6_2%3a1.2.5-1_amd64.deb ...
- Unpacking libxtst6:amd64 (2:1.2.5-1) ...
- Selecting previously unselected package dbus-user-session.
- Preparing to unpack .../030-dbus-user-session_1.16.2-2_amd64.deb ...
- Unpacking dbus-user-session (1.16.2-2) ...
- Selecting previously unselected package libdconf1:amd64.
- Preparing to unpack .../031-libdconf1_0.40.0-5_amd64.deb ...
- Unpacking libdconf1:amd64 (0.40.0-5) ...
- Selecting previously unselected package dconf-service.
- Preparing to unpack .../032-dconf-service_0.40.0-5_amd64.deb ...
- Unpacking dconf-service (0.40.0-5) ...
- Selecting previously unselected package dconf-gsettings-backend:amd64.
- Preparing to unpack .../033-dconf-gsettings-backend_0.40.0-5_amd64.deb ...
- Unpacking dconf-gsettings-backend:amd64 (0.40.0-5) ...
- Selecting previously unselected package gsettings-desktop-schemas.
- Preparing to unpack .../034-gsettings-desktop-schemas_48.0-1_all.deb ...
- Unpacking gsettings-desktop-schemas (48.0-1) ...
- Selecting previously unselected package at-spi2-core.
- Preparing to unpack .../035-at-spi2-core_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking at-spi2-core (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libdevmapper1.02.1:amd64.
- Preparing to unpack .../036-libdevmapper1.02.1_2%3a1.02.205-2_amd64.deb ...
- Unpacking libdevmapper1.02.1:amd64 (2:1.02.205-2) ...
- Selecting previously unselected package dmsetup.
- Preparing to unpack .../037-dmsetup_2%3a1.02.205-2_amd64.deb ...
- Unpacking dmsetup (2:1.02.205-2) ...
- Selecting previously unselected package libfreetype6:amd64.
- Preparing to unpack .../038-libfreetype6_2.13.3+dfsg-1+deb13u1_amd64.deb ...
- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Selecting previously unselected package fonts-dejavu-mono.
- Preparing to unpack .../039-fonts-dejavu-mono_2.37-8_all.deb ...
- Unpacking fonts-dejavu-mono (2.37-8) ...
- Selecting previously unselected package fonts-dejavu-core.
- Preparing to unpack .../040-fonts-dejavu-core_2.37-8_all.deb ...
- Unpacking fonts-dejavu-core (2.37-8) ...
- Selecting previously unselected package fonts-liberation.
- Preparing to unpack .../041-fonts-liberation_1%3a2.1.5-3_all.deb ...
- Unpacking fonts-liberation (1:2.1.5-3) ...
- Selecting previously unselected package fontconfig-config.
- Preparing to unpack .../042-fontconfig-config_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig-config (2.15.0-2.3) ...
- Selecting previously unselected package libfontconfig1:amd64.
- Preparing to unpack .../043-libfontconfig1_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package fontconfig.
- Preparing to unpack .../044-fontconfig_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig (2.15.0-2.3) ...
- Selecting previously unselected package fonts-liberation-sans-narrow.
- Preparing to unpack .../045-fonts-liberation-sans-narrow_1%3a1.07.6-4_all.deb ...
- Unpacking fonts-liberation-sans-narrow (1:1.07.6-4) ...
- Selecting previously unselected package gir1.2-glib-2.0:amd64.
- Preparing to unpack .../046-gir1.2-glib-2.0_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking gir1.2-glib-2.0:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libatk1.0-0t64:amd64.
- Preparing to unpack .../047-libatk1.0-0t64_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatk1.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package gir1.2-atk-1.0:amd64.
- Preparing to unpack .../048-gir1.2-atk-1.0_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking gir1.2-atk-1.0:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../049-libpixman-1-0_0.44.0-3_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...
- Selecting previously unselected package libxcb-render0:amd64.
- Preparing to unpack .../050-libxcb-render0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../051-libxcb-shm0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../052-libxrender1_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libcairo2:amd64.
- Preparing to unpack .../053-libcairo2_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package libcairo-gobject2:amd64.
- Preparing to unpack .../054-libcairo-gobject2_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo-gobject2:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package gir1.2-freedesktop:amd64.
- Preparing to unpack .../055-gir1.2-freedesktop_1.84.0-1_amd64.deb ...
- Unpacking gir1.2-freedesktop:amd64 (1.84.0-1) ...
- Selecting previously unselected package gir1.2-gdkpixbuf-2.0:amd64.
- Preparing to unpack .../056-gir1.2-gdkpixbuf-2.0_2.42.12+dfsg-4_amd64.deb ...
- Unpacking gir1.2-gdkpixbuf-2.0:amd64 (2.42.12+dfsg-4) ...
- Selecting previously unselected package libgirepository-1.0-1:amd64.
- Preparing to unpack .../057-libgirepository-1.0-1_1.84.0-1_amd64.deb ...
- Unpacking libgirepository-1.0-1:amd64 (1.84.0-1) ...
- Selecting previously unselected package gir1.2-girepository-2.0:amd64.
- Preparing to unpack .../058-gir1.2-girepository-2.0_1.84.0-1_amd64.deb ...
- Unpacking gir1.2-girepository-2.0:amd64 (1.84.0-1) ...
- Selecting previously unselected package libgraphite2-3:amd64.
- Preparing to unpack .../059-libgraphite2-3_1.3.14-2+b1_amd64.deb ...
- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...
- Selecting previously unselected package libharfbuzz0b:amd64.
- Preparing to unpack .../060-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libharfbuzz-gobject0:amd64.
- Preparing to unpack .../061-libharfbuzz-gobject0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-gobject0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package gir1.2-harfbuzz-0.0:amd64.
- Preparing to unpack .../062-gir1.2-harfbuzz-0.0_10.2.0-1+b1_amd64.deb ...
- Unpacking gir1.2-harfbuzz-0.0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libfribidi0:amd64.
- Preparing to unpack .../063-libfribidi0_1.0.16-1_amd64.deb ...
- Unpacking libfribidi0:amd64 (1.0.16-1) ...
- Selecting previously unselected package libthai-data.
- Preparing to unpack .../064-libthai-data_0.1.29-2_all.deb ...
- Unpacking libthai-data (0.1.29-2) ...
- Selecting previously unselected package libdatrie1:amd64.
- Preparing to unpack .../065-libdatrie1_0.2.13-3+b1_amd64.deb ...
- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...
- Selecting previously unselected package libthai0:amd64.
- Preparing to unpack .../066-libthai0_0.1.29-2+b1_amd64.deb ...
- Unpacking libthai0:amd64 (0.1.29-2+b1) ...
- Selecting previously unselected package libpango-1.0-0:amd64.
- Preparing to unpack .../067-libpango-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libpangoft2-1.0-0:amd64.
- Preparing to unpack .../068-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libpangocairo-1.0-0:amd64.
- Preparing to unpack .../069-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libxft2:amd64.
- Preparing to unpack .../070-libxft2_2.3.6-1+b4_amd64.deb ...
- Unpacking libxft2:amd64 (2.3.6-1+b4) ...
- Selecting previously unselected package libpangoxft-1.0-0:amd64.
- Preparing to unpack .../071-libpangoxft-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangoxft-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package gir1.2-pango-1.0:amd64.
- Preparing to unpack .../072-gir1.2-pango-1.0_1.56.3-1_amd64.deb ...
- Unpacking gir1.2-pango-1.0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libatk-bridge2.0-0t64:amd64.
- Preparing to unpack .../073-libatk-bridge2.0-0t64_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatk-bridge2.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libcloudproviders0:amd64.
- Preparing to unpack .../074-libcloudproviders0_0.3.6-2_amd64.deb ...
- Unpacking libcloudproviders0:amd64 (0.3.6-2) ...
- Selecting previously unselected package liblcms2-2:amd64.
- Preparing to unpack .../075-liblcms2-2_2.16-2_amd64.deb ...
- Unpacking liblcms2-2:amd64 (2.16-2) ...
- Selecting previously unselected package libcolord2:amd64.
- Preparing to unpack .../076-libcolord2_1.4.7-3_amd64.deb ...
- Unpacking libcolord2:amd64 (1.4.7-3) ...
- Selecting previously unselected package libavahi-common-data:amd64.
- Preparing to unpack .../077-libavahi-common-data_0.8-16_amd64.deb ...
- Unpacking libavahi-common-data:amd64 (0.8-16) ...
- Selecting previously unselected package libavahi-common3:amd64.
- Preparing to unpack .../078-libavahi-common3_0.8-16_amd64.deb ...
- Unpacking libavahi-common3:amd64 (0.8-16) ...
- Selecting previously unselected package libavahi-client3:amd64.
- Preparing to unpack .../079-libavahi-client3_0.8-16_amd64.deb ...
- Unpacking libavahi-client3:amd64 (0.8-16) ...
- Selecting previously unselected package libcups2t64:amd64.
- Preparing to unpack .../080-libcups2t64_2.4.10-3+deb13u2_amd64.deb ...
- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u2) ...
- Selecting previously unselected package libepoxy0:amd64.
- Preparing to unpack .../081-libepoxy0_1.5.10-2_amd64.deb ...
- Unpacking libepoxy0:amd64 (1.5.10-2) ...
- Selecting previously unselected package libwayland-client0:amd64.
- Preparing to unpack .../082-libwayland-client0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-client0:amd64 (1.23.1-3) ...
- Selecting previously unselected package libwayland-cursor0:amd64.
- Preparing to unpack .../083-libwayland-cursor0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-cursor0:amd64 (1.23.1-3) ...
- Selecting previously unselected package libwayland-egl1:amd64.
- Preparing to unpack .../084-libwayland-egl1_1.23.1-3_amd64.deb ...
- Unpacking libwayland-egl1:amd64 (1.23.1-3) ...
- Selecting previously unselected package libxcomposite1:amd64.
- Preparing to unpack .../085-libxcomposite1_1%3a0.4.6-1_amd64.deb ...
- Unpacking libxcomposite1:amd64 (1:0.4.6-1) ...
- Selecting previously unselected package libxfixes3:amd64.
- Preparing to unpack .../086-libxfixes3_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxcursor1:amd64.
- Preparing to unpack .../087-libxcursor1_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxcursor1:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libxdamage1:amd64.
- Preparing to unpack .../088-libxdamage1_1%3a1.1.6-1+b2_amd64.deb ...
- Unpacking libxdamage1:amd64 (1:1.1.6-1+b2) ...
- Selecting previously unselected package libxinerama1:amd64.
- Preparing to unpack .../089-libxinerama1_2%3a1.1.4-3+b4_amd64.deb ...
- Unpacking libxinerama1:amd64 (2:1.1.4-3+b4) ...
- Selecting previously unselected package xkb-data.
- Preparing to unpack .../090-xkb-data_2.42-1_all.deb ...
- Unpacking xkb-data (2.42-1) ...
- Selecting previously unselected package libxkbcommon0:amd64.
- Preparing to unpack .../091-libxkbcommon0_1.7.0-2_amd64.deb ...
- Unpacking libxkbcommon0:amd64 (1.7.0-2) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../092-libxrandr2_2%3a1.5.4-1+b3_amd64.deb ...
- Unpacking libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Selecting previously unselected package libgtk-3-common.
- Preparing to unpack .../093-libgtk-3-common_3.24.49-3_all.deb ...
- Unpacking libgtk-3-common (3.24.49-3) ...
- Selecting previously unselected package libgtk-3-0t64:amd64.
- Preparing to unpack .../094-libgtk-3-0t64_3.24.49-3_amd64.deb ...
- Unpacking libgtk-3-0t64:amd64 (3.24.49-3) ...
- Selecting previously unselected package gir1.2-gtk-3.0:amd64.
- Preparing to unpack .../095-gir1.2-gtk-3.0_3.24.49-3_amd64.deb ...
- Unpacking gir1.2-gtk-3.0:amd64 (3.24.49-3) ...
- Selecting previously unselected package libann0.
- Preparing to unpack .../096-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 .../097-libcdt5_2.42.4-3_amd64.deb ...
- Unpacking libcdt5:amd64 (2.42.4-3) ...
- Selecting previously unselected package libcgraph6:amd64.
- Preparing to unpack .../098-libcgraph6_2.42.4-3_amd64.deb ...
- Unpacking libcgraph6:amd64 (2.42.4-3) ...
- Selecting previously unselected package libaom3:amd64.
- Preparing to unpack .../099-libaom3_3.12.1-1_amd64.deb ...
- Unpacking libaom3:amd64 (3.12.1-1) ...
- Selecting previously unselected package libdav1d7:amd64.
- Preparing to unpack .../100-libdav1d7_1.5.1-1_amd64.deb ...
- Unpacking libdav1d7:amd64 (1.5.1-1) ...
- Selecting previously unselected package libabsl20240722:amd64.
- Preparing to unpack .../101-libabsl20240722_20240722.0-4_amd64.deb ...
- Unpacking libabsl20240722:amd64 (20240722.0-4) ...
- Selecting previously unselected package libgav1-1:amd64.
- Preparing to unpack .../102-libgav1-1_0.19.0-3+b1_amd64.deb ...
- Unpacking libgav1-1:amd64 (0.19.0-3+b1) ...
- Selecting previously unselected package librav1e0.7:amd64.
- Preparing to unpack .../103-librav1e0.7_0.7.1-9+b2_amd64.deb ...
- Unpacking librav1e0.7:amd64 (0.7.1-9+b2) ...
- Selecting previously unselected package libsvtav1enc2:amd64.
- Preparing to unpack .../104-libsvtav1enc2_2.3.0+dfsg-1_amd64.deb ...
- Unpacking libsvtav1enc2:amd64 (2.3.0+dfsg-1) ...
- Selecting previously unselected package libyuv0:amd64.
- Preparing to unpack .../105-libyuv0_0.0.1904.20250204-1_amd64.deb ...
- Unpacking libyuv0:amd64 (0.0.1904.20250204-1) ...
- Selecting previously unselected package libavif16:amd64.
- Preparing to unpack .../106-libavif16_1.2.1-1.2_amd64.deb ...
- Unpacking libavif16:amd64 (1.2.1-1.2) ...
- Selecting previously unselected package libheif-plugin-dav1d:amd64.
- Preparing to unpack .../107-libheif-plugin-dav1d_1.19.8-1_amd64.deb ...
- Unpacking libheif-plugin-dav1d:amd64 (1.19.8-1) ...
- Selecting previously unselected package libde265-0:amd64.
- Preparing to unpack .../108-libde265-0_1.0.15-1+b3_amd64.deb ...
- Unpacking libde265-0:amd64 (1.0.15-1+b3) ...
- Selecting previously unselected package libheif-plugin-libde265:amd64.
- Preparing to unpack .../109-libheif-plugin-libde265_1.19.8-1_amd64.deb ...
- Unpacking libheif-plugin-libde265:amd64 (1.19.8-1) ...
- Selecting previously unselected package libheif1:amd64.
- Preparing to unpack .../110-libheif1_1.19.8-1_amd64.deb ...
- Unpacking libheif1:amd64 (1.19.8-1) ...
- Selecting previously unselected package libimagequant0:amd64.
- Preparing to unpack .../111-libimagequant0_2.18.0-1+b2_amd64.deb ...
- Unpacking libimagequant0:amd64 (2.18.0-1+b2) ...
- Selecting previously unselected package libxpm4:amd64.
- Preparing to unpack .../112-libxpm4_1%3a3.5.17-1+b3_amd64.deb ...
- Unpacking libxpm4:amd64 (1:3.5.17-1+b3) ...
- Selecting previously unselected package libgd3:amd64.
- Preparing to unpack .../113-libgd3_2.3.3-13_amd64.deb ...
- Unpacking libgd3:amd64 (2.3.3-13) ...
- Selecting previously unselected package libgts-0.7-5t64:amd64.
- Preparing to unpack .../114-libgts-0.7-5t64_0.7.6+darcs121130-5.2+b1_amd64.deb ...
- Unpacking libgts-0.7-5t64:amd64 (0.7.6+darcs121130-5.2+b1) ...
- Selecting previously unselected package libltdl7:amd64.
- Preparing to unpack .../115-libltdl7_2.5.4-4_amd64.deb ...
- Unpacking libltdl7:amd64 (2.5.4-4) ...
- Selecting previously unselected package libpathplan4:amd64.
- Preparing to unpack .../116-libpathplan4_2.42.4-3_amd64.deb ...
- Unpacking libpathplan4:amd64 (2.42.4-3) ...
- Selecting previously unselected package libgvc6.
- Preparing to unpack .../117-libgvc6_2.42.4-3_amd64.deb ...
- Unpacking libgvc6 (2.42.4-3) ...
- Selecting previously unselected package libgvpr2:amd64.
- Preparing to unpack .../118-libgvpr2_2.42.4-3_amd64.deb ...
- Unpacking libgvpr2:amd64 (2.42.4-3) ...
- Selecting previously unselected package liblab-gamut1:amd64.
- Preparing to unpack .../119-liblab-gamut1_2.42.4-3_amd64.deb ...
- Unpacking liblab-gamut1:amd64 (2.42.4-3) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../120-libice6_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice6:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../121-libsm6_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libxt6t64:amd64.
- Preparing to unpack .../122-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...
- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...
- Selecting previously unselected package libxmu6:amd64.
- Preparing to unpack .../123-libxmu6_2%3a1.1.3-3+b4_amd64.deb ...
- Unpacking libxmu6:amd64 (2:1.1.3-3+b4) ...
- Selecting previously unselected package libxaw7:amd64.
- Preparing to unpack .../124-libxaw7_2%3a1.0.16-1_amd64.deb ...
- Unpacking libxaw7:amd64 (2:1.0.16-1) ...
- Selecting previously unselected package graphviz.
- Preparing to unpack .../125-graphviz_2.42.4-3_amd64.deb ...
- Unpacking graphviz (2.42.4-3) ...
- Selecting previously unselected package libjson-c5:amd64.
- Preparing to unpack .../126-libjson-c5_0.18+ds-1_amd64.deb ...
- Unpacking libjson-c5:amd64 (0.18+ds-1) ...
- Selecting previously unselected package libcryptsetup12:amd64.
- Preparing to unpack .../127-libcryptsetup12_2%3a2.7.5-2_amd64.deb ...
- Unpacking libcryptsetup12:amd64 (2:2.7.5-2) ...
- Selecting previously unselected package libgdk-pixbuf2.0-bin.
- Preparing to unpack .../128-libgdk-pixbuf2.0-bin_2.42.12+dfsg-4_amd64.deb ...
- Unpacking libgdk-pixbuf2.0-bin (2.42.12+dfsg-4) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../129-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...
- Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libgslcblas0:amd64.
- Preparing to unpack .../130-libgslcblas0_2.8+dfsg-5_amd64.deb ...
- Unpacking libgslcblas0:amd64 (2.8+dfsg-5) ...
- Selecting previously unselected package libgsl28:amd64.
- Preparing to unpack .../131-libgsl28_2.8+dfsg-5_amd64.deb ...
- Unpacking libgsl28:amd64 (2.8+dfsg-5) ...
- Selecting previously unselected package libgsl-dev.
- Preparing to unpack .../132-libgsl-dev_2.8+dfsg-5_amd64.deb ...
- Unpacking libgsl-dev (2.8+dfsg-5) ...
- Selecting previously unselected package libgtk-3-bin.
- Preparing to unpack .../133-libgtk-3-bin_3.24.49-3_amd64.deb ...
- Unpacking libgtk-3-bin (3.24.49-3) ...
- Selecting previously unselected package libgts-bin.
- Preparing to unpack .../134-libgts-bin_0.7.6+darcs121130-5.2+b1_amd64.deb ...
- Unpacking libgts-bin (0.7.6+darcs121130-5.2+b1) ...
- Selecting previously unselected package libheif-plugin-aomenc:amd64.
- Preparing to unpack .../135-libheif-plugin-aomenc_1.19.8-1_amd64.deb ...
- Unpacking libheif-plugin-aomenc:amd64 (1.19.8-1) ...
- Selecting previously unselected package libnuma1:amd64.
- Preparing to unpack .../136-libnuma1_2.0.19-1_amd64.deb ...
- Unpacking libnuma1:amd64 (2.0.19-1) ...
- Selecting previously unselected package libx265-215:amd64.
- Preparing to unpack .../137-libx265-215_4.1-2_amd64.deb ...
- Unpacking libx265-215:amd64 (4.1-2) ...
- Selecting previously unselected package libheif-plugin-x265:amd64.
- Preparing to unpack .../138-libheif-plugin-x265_1.19.8-1_amd64.deb ...
- Unpacking libheif-plugin-x265:amd64 (1.19.8-1) ...
- Selecting previously unselected package libkmod2:amd64.
- Preparing to unpack .../139-libkmod2_34.2-2_amd64.deb ...
- Unpacking libkmod2:amd64 (34.2-2) ...
- Selecting previously unselected package libncurses6:amd64.
- Preparing to unpack .../140-libncurses6_6.5+20250216-2_amd64.deb ...
- Unpacking libncurses6:amd64 (6.5+20250216-2) ...
- Selecting previously unselected package libncurses-dev:amd64.
- Preparing to unpack .../141-libncurses-dev_6.5+20250216-2_amd64.deb ...
- Unpacking libncurses-dev:amd64 (6.5+20250216-2) ...
- Selecting previously unselected package libpcre2-16-0:amd64.
- Preparing to unpack .../142-libpcre2-16-0_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-16-0:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpcre2-32-0:amd64.
- Preparing to unpack .../143-libpcre2-32-0_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-32-0:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpcre2-posix3:amd64.
- Preparing to unpack .../144-libpcre2-posix3_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-posix3:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpcre2-dev:amd64.
- Preparing to unpack .../145-libpcre2-dev_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-dev:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../146-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package librsvg2-2:amd64.
- Preparing to unpack .../147-librsvg2-2_2.60.0+dfsg-1_amd64.deb ...
- Unpacking librsvg2-2:amd64 (2.60.0+dfsg-1) ...
- Selecting previously unselected package librsvg2-common:amd64.
- Preparing to unpack .../148-librsvg2-common_2.60.0+dfsg-1_amd64.deb ...
- Unpacking librsvg2-common:amd64 (2.60.0+dfsg-1) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../149-m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../150-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../151-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../152-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package python3-cairo.
- Preparing to unpack .../153-python3-cairo_1.27.0-2_amd64.deb ...
- Unpacking python3-cairo (1.27.0-2) ...
- Selecting previously unselected package python3-gi.
- Preparing to unpack .../154-python3-gi_3.50.0-4+b1_amd64.deb ...
- Unpacking python3-gi (3.50.0-4+b1) ...
- Selecting previously unselected package python3-gi-cairo.
- Preparing to unpack .../155-python3-gi-cairo_3.50.0-4+b1_amd64.deb ...
- Unpacking python3-gi-cairo (3.50.0-4+b1) ...
- Selecting previously unselected package python3-packaging.
- Preparing to unpack .../156-python3-packaging_25.0-1_all.deb ...
- Unpacking python3-packaging (25.0-1) ...
- Selecting previously unselected package systemd-cryptsetup.
- Preparing to unpack .../157-systemd-cryptsetup_257.9-1~deb13u1_amd64.deb ...
- Unpacking systemd-cryptsetup (257.9-1~deb13u1) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../158-xdg-user-dirs_0.18-2_amd64.deb ...
- Unpacking xdg-user-dirs (0.18-2) ...
- Selecting previously unselected package xdot.
- Preparing to unpack .../159-xdot_1.4-1_all.deb ...
- Unpacking xdot (1.4-1) ...
- Setting up media-types (13.0.0) ...
- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...
- Setting up liblcms2-2:amd64 (2.16-2) ...
- Setting up libpixman-1-0:amd64 (0.44.0-3) ...
- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...
- Setting up libaom3:amd64 (3.12.1-1) ...
- Setting up systemd-sysv (257.9-1~deb13u1) ...
- Setting up libxdamage1:amd64 (1:1.1.6-1+b2) ...
- Setting up liblerc4:amd64 (4.0.0+ds-5) ...
- Setting up libxpm4:amd64 (1:3.5.17-1+b3) ...
- Setting up hicolor-icon-theme (0.18-2) ...
- Setting up libxi6:amd64 (2:1.8.2-1) ...
- Setting up libxrender1:amd64 (1:0.9.12-1) ...
- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...
- Setting up libgslcblas0:amd64 (2.8+dfsg-5) ...
- Setting up xdg-user-dirs (0.18-2) ...
- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...
- Setting up liblab-gamut1:amd64 (2.42.4-3) ...
- Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-4) ...
- Setting up x11-common (1:7.7+24+deb13u1) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libdeflate0:amd64 (1.23-2) ...
- Setting up m4 (1.4.19-8) ...
- Setting up libnss-systemd:amd64 (257.9-1~deb13u1) ...
- Setting up xkb-data (2.42-1) ...
- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Setting up libabsl20240722:amd64 (20240722.0-4) ...
- Setting up libjbig0:amd64 (2.1-6.1+b2) ...
- Setting up libpcre2-16-0:amd64 (10.46-1~deb13u1) ...
- Setting up libpcre2-32-0:amd64 (10.46-1~deb13u1) ...
- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...
- Setting up libblas3:amd64 (3.12.1-6) ...
- 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.84.4-3~deb13u2) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Setting up libsvtav1enc2:amd64 (2.3.0+dfsg-1) ...
- Setting up libepoxy0:amd64 (1.5.10-2) ...
- Setting up libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Setting up libpathplan4:amd64 (2.42.4-3) ...
- Setting up libavahi-common-data:amd64 (0.8-16) ...
- Setting up libann0 (1.1.2+doc-9+b1) ...
- Setting up libncurses6:amd64 (6.5+20250216-2) ...
- Setting up libdbus-1-3:amd64 (1.16.2-2) ...
- Setting up libfribidi0:amd64 (1.0.16-1) ...
- Setting up libxinerama1:amd64 (2:1.1.4-3+b4) ...
- Setting up libimagequant0:amd64 (2.18.0-1+b2) ...
- Setting up fonts-dejavu-mono (2.37-8) ...
- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u4) ...
- Setting up python3-numpy-dev:amd64 (1:2.2.4+ds-1) ...
- Setting up systemd-timesyncd (257.9-1~deb13u1) ...
- Creating group 'systemd-timesync' with GID 997.
- Creating user 'systemd-timesync' (systemd Time Synchronization) with UID 997 and GID 997.
- Created symlink '/etc/systemd/system/dbus-org.freedesktop.timesync1.service' → '/usr/lib/systemd/system/systemd-timesyncd.service'.
- Created symlink '/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service' → '/usr/lib/systemd/system/systemd-timesyncd.service'.
- Setting up libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Setting up fonts-dejavu-core (2.37-8) ...
- Setting up libgav1-1:amd64 (0.19.0-3+b1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up gir1.2-glib-2.0:amd64 (2.84.4-3~deb13u2) ...
- Setting up libltdl7:amd64 (2.5.4-4) ...
- Setting up libgfortran5:amd64 (14.2.0-19) ...
- Setting up libwebp7:amd64 (1.5.0-0.1) ...
- Setting up libnuma1:amd64 (2.0.19-1) ...
- Setting up libpcre2-posix3:amd64 (10.46-1~deb13u1) ...
- Setting up libdav1d7:amd64 (1.5.1-1) ...
- Setting up at-spi2-common (2.56.2-1+deb13u1) ...
- Setting up libtiff6:amd64 (4.7.0-3+deb13u2) ...
- Setting up dbus-session-bus-common (1.16.2-2) ...
- Setting up librav1e0.7:amd64 (0.7.1-9+b2) ...
- Setting up fonts-liberation (1:2.1.5-3) ...
- Setting up libthai-data (0.1.29-2) ...
- Setting up libgirepository-1.0-1:amd64 (1.84.0-1) ...
- Setting up libgts-0.7-5t64:amd64 (0.7.6+darcs121130-5.2+b1) ...
- Setting up libcdt5:amd64 (2.42.4-3) ...
- Setting up libcgraph6:amd64 (2.42.4-3) ...
- Setting up libwayland-egl1:amd64 (1.23.1-3) ...
- Setting up fonts-liberation-sans-narrow (1:1.07.6-4) ...
- Setting up dbus-system-bus-common (1.16.2-2) ...
- Creating group 'messagebus' with GID 996.
- Creating user 'messagebus' (System Message Bus) with UID 996 and GID 996.
- Setting up libgsl28:amd64 (2.8+dfsg-5) ...
- Setting up libde265-0:amd64 (1.0.15-1+b3) ...
- Setting up libx265-215:amd64 (4.1-2) ...
- Setting up libyuv0:amd64 (0.0.1904.20250204-1) ...
- Setting up libxcomposite1:amd64 (1:0.4.6-1) ...
- Setting up libjson-c5:amd64 (0.18+ds-1) ...
- Setting up readline-common (8.2-6) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up dbus-bin (1.16.2-2) ...
- Setting up libkmod2:amd64 (34.2-2) ...
- Setting up libxkbcommon0:amd64 (1.7.0-2) ...
- Setting up libwayland-client0:amd64 (1.23.1-3) ...
- Setting up libgts-bin (0.7.6+darcs121130-5.2+b1) ...
- Setting up libice6:amd64 (2:1.1.1-1) ...
- Setting up libavif16:amd64 (1.2.1-1.2) ...
- Setting up liblapack3:amd64 (3.12.1-6) ...
- 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 libncurses-dev:amd64 (6.5+20250216-2) ...
- Setting up libgsl-dev (2.8+dfsg-5) ...
- Setting up libatk1.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Setting up libpcre2-dev:amd64 (10.46-1~deb13u1) ...
- Setting up gir1.2-atk-1.0:amd64 (2.56.2-1+deb13u1) ...
- Setting up fontconfig-config (2.15.0-2.3) ...
- Setting up libxtst6:amd64 (2:1.2.5-1) ...
- Setting up libxcursor1:amd64 (1:1.2.3-1) ...
- Setting up libavahi-common3:amd64 (0.8-16) ...
- Setting up libcloudproviders0:amd64 (0.3.6-2) ...
- Setting up dbus-daemon (1.16.2-2) ...
- Setting up libcolord2:amd64 (1.4.7-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libdconf1:amd64 (0.40.0-5) ...
- Setting up libthai0:amd64 (0.1.29-2+b1) ...
- Setting up libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Setting up gir1.2-girepository-2.0:amd64 (1.84.0-1) ...
- Setting up libatspi2.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Setting up dbus (1.16.2-2) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up shared-mime-info (2.4-5+b2) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libreadline8t64:amd64 (8.2-6) ...
- Setting up libgvpr2:amd64 (2.42.4-3) ...
- Setting up libwayland-cursor0:amd64 (1.23.1-3) ...
- Setting up libpam-systemd:amd64 (257.9-1~deb13u1) ...
- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...
- Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4) ...
- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...
- Setting up libsm6:amd64 (2:1.2.6-1) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Setting up libavahi-client3:amd64 (0.8-16) ...
- Setting up libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up libatk-bridge2.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Setting up gtk-update-icon-cache (4.18.6+ds-2) ...
- Setting up fontconfig (2.15.0-2.3) ...
- Regenerating fonts cache...
- done.
- Setting up libxft2:amd64 (2.3.6-1+b4) ...
- Setting up gir1.2-gdkpixbuf-2.0:amd64 (2.42.12+dfsg-4) ...
- Setting up python3.13 (3.13.5-2) ...
- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...
- Setting up python3 (3.13.5-1) ...
- running python rtupdate hooks for python3.13...
- running python post-rtupdate hooks for python3.13...
- Setting up libharfbuzz-gobject0:amd64 (10.2.0-1+b1) ...
- Setting up libcairo2:amd64 (1.18.4-1+b1) ...
- Setting up dbus-user-session (1.16.2-2) ...
- Setting up python3-packaging (25.0-1) ...
- Setting up adwaita-icon-theme (48.1-1) ...
- update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode
- Setting up python3-gi (3.50.0-4+b1) ...
- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...
- Setting up python3-numpy (1:2.2.4+ds-1) ...
- Setting up libgdk-pixbuf2.0-bin (2.42.12+dfsg-4) ...
- Setting up libcairo-gobject2:amd64 (1.18.4-1+b1) ...
- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...
- Setting up libcups2t64:amd64 (2.4.10-3+deb13u2) ...
- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...
- Setting up libxmu6:amd64 (2:1.1.3-3+b4) ...
- Setting up gir1.2-freedesktop:amd64 (1.84.0-1) ...
- Setting up python3-cairo (1.27.0-2) ...
- Setting up libpangoxft-1.0-0:amd64 (1.56.3-1) ...
- Setting up dconf-service (0.40.0-5) ...
- Setting up libxaw7:amd64 (2:1.0.16-1) ...
- Setting up gir1.2-harfbuzz-0.0:amd64 (10.2.0-1+b1) ...
- Setting up librsvg2-2:amd64 (2.60.0+dfsg-1) ...
- Setting up gir1.2-pango-1.0:amd64 (1.56.3-1) ...
- Setting up librsvg2-common:amd64 (2.60.0+dfsg-1) ...
- Setting up python3-gi-cairo (3.50.0-4+b1) ...
- Setting up dconf-gsettings-backend:amd64 (0.40.0-5) ...
- Setting up libgtk-3-common (3.24.49-3) ...
- Setting up gsettings-desktop-schemas (48.0-1) ...
- Setting up libgtk-3-0t64:amd64 (3.24.49-3) ...
- Setting up at-spi2-core (2.56.2-1+deb13u1) ...
- Setting up gir1.2-gtk-3.0:amd64 (3.24.49-3) ...
- Setting up libgtk-3-bin (3.24.49-3) ...
- Setting up dmsetup (2:1.02.205-2) ...
- Setting up libheif-plugin-dav1d:amd64 (1.19.8-1) ...
- Setting up libheif-plugin-libde265:amd64 (1.19.8-1) ...
- Setting up libheif1:amd64 (1.19.8-1) ...
- Setting up libgd3:amd64 (2.3.3-13) ...
- Setting up libgvc6 (2.42.4-3) ...
- Setting up libdevmapper1.02.1:amd64 (2:1.02.205-2) ...
- Setting up libcryptsetup12:amd64 (2:2.7.5-2) ...
- Setting up graphviz (2.42.4-3) ...
- Setting up xdot (1.4-1) ...
- Setting up libheif-plugin-x265:amd64 (1.19.8-1) ...
- Setting up libheif-plugin-aomenc:amd64 (1.19.8-1) ...
- Setting up systemd-cryptsetup (257.9-1~deb13u1) ...
- Processing triggers for procps (2:4.0.4-9) ...
- grep: /proc/1/environ: Permission denied
- procps: Applying updated sysctl configuration
- sysctl: permission denied on key "kernel.core_pattern"
- sysctl: permission denied on key "kernel.unprivileged_userns_clone"
- sysctl: permission denied on key "kernel.sysrq"
- sysctl: permission denied on key "kernel.core_uses_pid"
- sysctl: permission denied on key "net.ipv4.conf.default.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.docker0.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f0.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f1.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.lo.rp_filter"
- sysctl: permission denied on key "net.ipv4.conf.default.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.docker0.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f0.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f1.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.lo.accept_source_route"
- sysctl: permission denied on key "net.ipv4.conf.default.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.docker0.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f0.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.enp130s0f1.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.conf.lo.promote_secondaries"
- sysctl: permission denied on key "net.ipv4.ping_group_range", ignoring
- sysctl: permission denied on key "net.core.default_qdisc", ignoring
- sysctl: permission denied on key "fs.protected_hardlinks"
- sysctl: permission denied on key "fs.protected_symlinks"
- sysctl: permission denied on key "fs.protected_regular"
- sysctl: permission denied on key "fs.protected_fifos"
- sysctl: permission denied on key "vm.max_map_count"
- sysctl: permission denied on key "kernel.pid_max"
- Processing triggers for libc-bin (2.41-12+deb13u2) ...
- Processing triggers for systemd (257.9-1~deb13u1) ...
- Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved camlp5.8.04.00 (cached)
-> installed camlp-streams.5.0.1
-> retrieved camlp5-buildscripts.0.06 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-bash.1
-> installed conf-m4.1
-> retrieved cstruct.6.2.0 (cached)
-> installed conf-perl.2
-> installed conf-pkg-config.4
-> installed conf-which.1
-> retrieved curses.1.0.12 (cached)
-> retrieved dune-compiledb.0.6.0 (cached)
-> installed conf-gsl.2
-> installed conf-libpcre2-8.2
-> installed conf-ncurses.1
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.2 (cached)
-> retrieved ezjsonm.1.3.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved gsl.1.25.1 (cached)
-> retrieved hex.1.5.0 (cached)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved logs.0.10.0 (cached)
-> 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 (https://opam.ocaml.org/cache)
-> retrieved parsexp.v0.16.0 (cached)
-> retrieved pcre2.8.0.4 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sexplib.v0.16.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uutf.1.0.4 (cached)
-> installed sexplib0.v0.16.0
-> installed dune-configurator.3.22.2
-> installed num.1.6
-> installed re.1.14.0
-> installed ocamlgraph.2.2.0
-> installed parsexp.v0.16.0
-> installed ocamlfind.1.9.8
-> installed curses.1.0.12
-> installed sexplib.v0.16.0
-> installed gsl.1.25.1
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed cstruct.6.2.0
-> installed astring.0.8.5
-> installed hex.1.5.0
-> installed jsonm.1.0.2
-> installed logs.0.10.0
-> installed ezjsonm.1.3.0
-> installed fpath.0.7.3
-> installed not-ocamlfind.0.14
-> installed dune-compiledb.0.6.0
-> installed pcre2.8.0.4
-> installed bos.0.2.1
-> installed camlp5-buildscripts.0.06
-> installed camlp5.8.04.00
-> installed orpie.1.6.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:46.34 ---> saved as "ffed6aeafffccd826d36962159422123d25e91f755fce8b3fa4e7675b4abc309"
/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)
2026-04-11 02:46.50 ---> saved as "aef71e17b43ff709b475a7185a3f2825ce558e79d0943fc742cb29b74ebdf4a0"
/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-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != '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)
2026-04-11 02:47.05 ---> saved as "8619af64978372f9694894586d84a51c0c687b7c0f8ec558864e515f9d981bba"
Job succeeded
2026-04-11 02:48.11: Job succeeded