(not at the head of any monitored branch or PR)
2026-04-10 17:57.42: New job: test gdal.0.9.0 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 gdal.0.9.0; \
    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" != 'gdal.0.9.0' && 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 gdal.0.9.0) || true
RUN opam reinstall --with-test --verbose gdal.0.9.0; \
    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" != 'gdal.0.9.0' && 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.42: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-gdal.0.9.0-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.42: 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 gdal.0.9.0;\
             \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\" != 'gdal.0.9.0' && 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 gdal.0.9.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose gdal.0.9.0;\
             \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\" != 'gdal.0.9.0' && 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.42: Waiting for resource in pool OCluster
2026-04-11 03:14.56: Waiting for worker…
2026-04-11 03:17.40: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
 packages/chrome-trace/chrome-trace.3.22.2/opam     | 39 +++++++++++
 .../dune-action-plugin.3.22.2/opam                 | 52 +++++++++++++++
 .../dune-action-trace.3.22.2/opam                  | 39 +++++++++++
 .../dune-build-info/dune-build-info.3.22.2/opam    | 45 +++++++++++++
 .../dune-configurator.3.22.2/opam                  | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.2/opam           | 42 ++++++++++++
 .../dune-private-libs.3.22.2/opam                  | 50 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam     | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.2/opam             | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.2/opam           | 37 +++++++++++
 packages/dune/dune.3.22.2/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.2/opam                       | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.2/opam                   | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam         | 43 +++++++++++++
 packages/ordering/ordering.3.22.2/opam             | 38 +++++++++++
 packages/stdune/stdune.3.22.2/opam                 | 46 +++++++++++++
 packages/top-closure/top-closure.3.22.2/opam       | 38 +++++++++++
 packages/xdg/xdg.3.22.2/opam                       | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.2/opam
 create mode 100644 packages/dune/dune.3.22.2/opam
 create mode 100644 packages/dyn/dyn.3.22.2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
 create mode 100644 packages/ordering/ordering.3.22.2/opam
 create mode 100644 packages/stdune/stdune.3.22.2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.2/opam
 create mode 100644 packages/xdg/xdg.3.22.2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 03:17.42 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-11 03:17.42 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-11 03:17.42 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.3
2026-04-11 03:17.42 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-11 03:17.42 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 03:17.43 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 03:17.43 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (2107 kB/s)
- Reading package lists...
2026-04-11 03:17.43 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 03:17.43 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.2;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2  (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:17.43 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall gdal.0.9.0;\
                        \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\" != 'gdal.0.9.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
gdal.0.9.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
  - install conf-libffi     2.0.0  [required by ctypes-foreign]
  - install conf-pkg-config 4      [required by ctypes]
  - install ctypes          0.17.1 [required by gdal]
  - install ctypes-foreign  0.18.0 [required by gdal]
  - install gdal            0.9.0
  - install integers        0.7.0  [required by ctypes]
  - install ocamlbuild      0.16.1 [required by gdal]
  - install ocamlfind       1.9.8  [required by gdal]
  - install stdlib-shims    0.3.0  [required by integers]

The following system packages will first need to be installed:
    libffi-dev libgdal-dev pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libffi-dev" "libgdal-dev" "pkg-config"
- Preconfiguring packages ...
- Selecting previously unselected package poppler-data.
- (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 .../poppler-data_0.4.12-1_all.deb ...
- Unpacking poppler-data (0.4.12-1) ...
- Preparing to unpack .../openssl-provider-legacy_3.5.5-1~deb13u2_amd64.deb ...
- Unpacking openssl-provider-legacy (3.5.5-1~deb13u2) over (3.5.5-1~deb13u1) ...
- Setting up openssl-provider-legacy (3.5.5-1~deb13u2) ...
- (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 ... 21156 files and directories currently installed.)
- Preparing to unpack .../libssl3t64_3.5.5-1~deb13u2_amd64.deb ...
- Unpacking libssl3t64:amd64 (3.5.5-1~deb13u2) over (3.5.5-1~deb13u1) ...
- Setting up libssl3t64:amd64 (3.5.5-1~deb13u2) ...
- Selecting previously unselected package readline-common.
- (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 ... 21156 files and directories currently installed.)
- Preparing to unpack .../000-readline-common_8.2-6_all.deb ...
- Unpacking readline-common (8.2-6) ...
- Selecting previously unselected package libmagic-mgc.
- Preparing to unpack .../001-libmagic-mgc_1%3a5.46-5_amd64.deb ...
- Unpacking libmagic-mgc (1:5.46-5) ...
- Selecting previously unselected package libmagic1t64:amd64.
- Preparing to unpack .../002-libmagic1t64_1%3a5.46-5_amd64.deb ...
- Unpacking libmagic1t64:amd64 (1:5.46-5) ...
- Selecting previously unselected package file.
- Preparing to unpack .../003-file_1%3a5.46-5_amd64.deb ...
- Unpacking file (1:5.46-5) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../004-m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../005-autoconf_2.72-3.1_all.deb ...
- Unpacking autoconf (2.72-3.1) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../006-autotools-dev_20240727.1_all.deb ...
- Unpacking autotools-dev (20240727.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../007-automake_1%3a1.17-4_all.deb ...
- Unpacking automake (1:1.17-4) ...
- Selecting previously unselected package cfortran.
- Preparing to unpack .../008-cfortran_20210827-1.1_all.deb ...
- Unpacking cfortran (20210827-1.1) ...
- Selecting previously unselected package comerr-dev:amd64.
- Preparing to unpack .../009-comerr-dev_2.1-1.47.2-3+b10_amd64.deb ...
- Unpacking comerr-dev:amd64 (2.1-1.47.2-3+b10) ...
- Selecting previously unselected package mysql-common.
- Preparing to unpack .../010-mysql-common_5.8+1.1.1_all.deb ...
- Unpacking mysql-common (5.8+1.1.1) ...
- Selecting previously unselected package mariadb-common.
- Preparing to unpack .../011-mariadb-common_1%3a11.8.6-0+deb13u1_all.deb ...
- Unpacking mariadb-common (1:11.8.6-0+deb13u1) ...
- Selecting previously unselected package libmariadb3:amd64.
- Preparing to unpack .../012-libmariadb3_1%3a11.8.6-0+deb13u1_amd64.deb ...
- Unpacking libmariadb3:amd64 (1:11.8.6-0+deb13u1) ...
- Selecting previously unselected package libssl-dev:amd64.
- Preparing to unpack .../013-libssl-dev_3.5.5-1~deb13u2_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.5.5-1~deb13u2) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../014-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package libmariadb-dev.
- Preparing to unpack .../015-libmariadb-dev_1%3a11.8.6-0+deb13u1_amd64.deb ...
- Unpacking libmariadb-dev (1:11.8.6-0+deb13u1) ...
- Selecting previously unselected package libmariadb-dev-compat.
- Preparing to unpack .../016-libmariadb-dev-compat_1%3a11.8.6-0+deb13u1_amd64.deb ...
- Unpacking libmariadb-dev-compat (1:11.8.6-0+deb13u1) ...
- Selecting previously unselected package default-libmysqlclient-dev:amd64.
- Preparing to unpack .../017-default-libmysqlclient-dev_1.1.1_amd64.deb ...
- Unpacking default-libmysqlclient-dev:amd64 (1.1.1) ...
- Selecting previously unselected package libgpg-error0:amd64.
- Preparing to unpack .../018-libgpg-error0_1.51-4_amd64.deb ...
- Unpacking libgpg-error0:amd64 (1.51-4) ...
- Selecting previously unselected package libassuan9:amd64.
- Preparing to unpack .../019-libassuan9_3.0.2-2_amd64.deb ...
- Unpacking libassuan9:amd64 (3.0.2-2) ...
- Selecting previously unselected package libgcrypt20:amd64.
- Preparing to unpack .../020-libgcrypt20_1.11.0-7_amd64.deb ...
- Unpacking libgcrypt20:amd64 (1.11.0-7) ...
- Selecting previously unselected package libreadline8t64:amd64.
- Preparing to unpack .../021-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 gpgconf.
- Preparing to unpack .../022-gpgconf_2.4.7-21+deb13u1+b2_amd64.deb ...
- Unpacking gpgconf (2.4.7-21+deb13u1+b2) ...
- Selecting previously unselected package libksba8:amd64.
- Preparing to unpack .../023-libksba8_1.6.7-2+b1_amd64.deb ...
- Unpacking libksba8:amd64 (1.6.7-2+b1) ...
- Selecting previously unselected package libnpth0t64:amd64.
- Preparing to unpack .../024-libnpth0t64_1.8-3_amd64.deb ...
- Unpacking libnpth0t64:amd64 (1.8-3) ...
- Selecting previously unselected package dirmngr.
- Preparing to unpack .../025-dirmngr_2.4.7-21+deb13u1+b2_amd64.deb ...
- Unpacking dirmngr (2.4.7-21+deb13u1+b2) ...
- Selecting previously unselected package fonts-dejavu-mono.
- Preparing to unpack .../026-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 .../027-fonts-dejavu-core_2.37-8_all.deb ...
- Unpacking fonts-dejavu-core (2.37-8) ...
- Selecting previously unselected package fontconfig-config.
- Preparing to unpack .../028-fontconfig-config_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig-config (2.15.0-2.3) ...
- Selecting previously unselected package gdal-data.
- Preparing to unpack .../029-gdal-data_3.10.3+dfsg-1_all.deb ...
- Unpacking gdal-data (3.10.3+dfsg-1) ...
- Selecting previously unselected package gdal-plugins:amd64.
- Preparing to unpack .../030-gdal-plugins_3.10.3+dfsg-1_amd64.deb ...
- Unpacking gdal-plugins:amd64 (3.10.3+dfsg-1) ...
- Selecting previously unselected package libgfortran5:amd64.
- Preparing to unpack .../031-libgfortran5_14.2.0-19_amd64.deb ...
- Unpacking libgfortran5:amd64 (14.2.0-19) ...
- Selecting previously unselected package libgfortran-14-dev:amd64.
- Preparing to unpack .../032-libgfortran-14-dev_14.2.0-19_amd64.deb ...
- Unpacking libgfortran-14-dev:amd64 (14.2.0-19) ...
- Selecting previously unselected package gfortran-14-x86-64-linux-gnu.
- Preparing to unpack .../033-gfortran-14-x86-64-linux-gnu_14.2.0-19_amd64.deb ...
- Unpacking gfortran-14-x86-64-linux-gnu (14.2.0-19) ...
- Selecting previously unselected package gfortran-14.
- Preparing to unpack .../034-gfortran-14_14.2.0-19_amd64.deb ...
- Unpacking gfortran-14 (14.2.0-19) ...
- Selecting previously unselected package gfortran-x86-64-linux-gnu.
- Preparing to unpack .../035-gfortran-x86-64-linux-gnu_4%3a14.2.0-1_amd64.deb ...
- Unpacking gfortran-x86-64-linux-gnu (4:14.2.0-1) ...
- Selecting previously unselected package gfortran.
- Preparing to unpack .../036-gfortran_4%3a14.2.0-1_amd64.deb ...
- Unpacking gfortran (4:14.2.0-1) ...
- Selecting previously unselected package gnupg-l10n.
- Preparing to unpack .../037-gnupg-l10n_2.4.7-21+deb13u1_all.deb ...
- Unpacking gnupg-l10n (2.4.7-21+deb13u1) ...
- Selecting previously unselected package gpg.
- Preparing to unpack .../038-gpg_2.4.7-21+deb13u1+b2_amd64.deb ...
- Unpacking gpg (2.4.7-21+deb13u1+b2) ...
- Selecting previously unselected package pinentry-curses.
- Preparing to unpack .../039-pinentry-curses_1.3.1-2_amd64.deb ...
- Unpacking pinentry-curses (1.3.1-2) ...
- Selecting previously unselected package gpg-agent.
- Preparing to unpack .../040-gpg-agent_2.4.7-21+deb13u1+b2_amd64.deb ...
- Unpacking gpg-agent (2.4.7-21+deb13u1+b2) ...
- Selecting previously unselected package gpgsm.
- Preparing to unpack .../041-gpgsm_2.4.7-21+deb13u1+b2_amd64.deb ...
- Unpacking gpgsm (2.4.7-21+deb13u1+b2) ...
- Selecting previously unselected package gnupg.
- Preparing to unpack .../042-gnupg_2.4.7-21+deb13u1_all.deb ...
- Unpacking gnupg (2.4.7-21+deb13u1) ...
- Selecting previously unselected package gpg-wks-client.
- Preparing to unpack .../043-gpg-wks-client_2.4.7-21+deb13u1+b2_amd64.deb ...
- Unpacking gpg-wks-client (2.4.7-21+deb13u1+b2) ...
- Selecting previously unselected package gpgv.
- Preparing to unpack .../044-gpgv_2.4.7-21+deb13u1+b2_amd64.deb ...
- Unpacking gpgv (2.4.7-21+deb13u1+b2) ...
- Selecting previously unselected package hdf5-helpers.
- Preparing to unpack .../045-hdf5-helpers_1.14.5+repack-3_amd64.deb ...
- Unpacking hdf5-helpers (1.14.5+repack-3) ...
- Selecting previously unselected package libicu76:amd64.
- Preparing to unpack .../046-libicu76_76.1-4_amd64.deb ...
- Unpacking libicu76:amd64 (76.1-4) ...
- Selecting previously unselected package icu-devtools.
- Preparing to unpack .../047-icu-devtools_76.1-4_amd64.deb ...
- Unpacking icu-devtools (76.1-4) ...
- Selecting previously unselected package libgssrpc4t64:amd64.
- Preparing to unpack .../048-libgssrpc4t64_1.21.3-5_amd64.deb ...
- Unpacking libgssrpc4t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5clnt-mit12:amd64.
- Preparing to unpack .../049-libkadm5clnt-mit12_1.21.3-5_amd64.deb ...
- Unpacking libkadm5clnt-mit12:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkdb5-10t64:amd64.
- Preparing to unpack .../050-libkdb5-10t64_1.21.3-5_amd64.deb ...
- Unpacking libkdb5-10t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5srv-mit12:amd64.
- Preparing to unpack .../051-libkadm5srv-mit12_1.21.3-5_amd64.deb ...
- Unpacking libkadm5srv-mit12:amd64 (1.21.3-5) ...
- Selecting previously unselected package krb5-multidev:amd64.
- Preparing to unpack .../052-krb5-multidev_1.21.3-5_amd64.deb ...
- Unpacking krb5-multidev:amd64 (1.21.3-5) ...
- Selecting previously unselected package libabsl20240722:amd64.
- Preparing to unpack .../053-libabsl20240722_20240722.0-4_amd64.deb ...
- Unpacking libabsl20240722:amd64 (20240722.0-4) ...
- Selecting previously unselected package libaec0:amd64.
- Preparing to unpack .../054-libaec0_1.1.3-1+b1_amd64.deb ...
- Unpacking libaec0:amd64 (1.1.3-1+b1) ...
- Selecting previously unselected package libsz2:amd64.
- Preparing to unpack .../055-libsz2_1.1.3-1+b1_amd64.deb ...
- Unpacking libsz2:amd64 (1.1.3-1+b1) ...
- Selecting previously unselected package libaec-dev:amd64.
- Preparing to unpack .../056-libaec-dev_1.1.3-1+b1_amd64.deb ...
- Unpacking libaec-dev:amd64 (1.1.3-1+b1) ...
- Selecting previously unselected package libaom3:amd64.
- Preparing to unpack .../057-libaom3_3.12.1-1_amd64.deb ...
- Unpacking libaom3:amd64 (3.12.1-1) ...
- Selecting previously unselected package libaom-dev:amd64.
- Preparing to unpack .../058-libaom-dev_3.12.1-1_amd64.deb ...
- Unpacking libaom-dev:amd64 (3.12.1-1) ...
- Selecting previously unselected package libblas3:amd64.
- Preparing to unpack .../059-libblas3_3.12.1-6_amd64.deb ...
- Unpacking libblas3:amd64 (3.12.1-6) ...
- Selecting previously unselected package liblapack3:amd64.
- Preparing to unpack .../060-liblapack3_3.12.1-6_amd64.deb ...
- Unpacking liblapack3:amd64 (3.12.1-6) ...
- Selecting previously unselected package libarpack2t64:amd64.
- Preparing to unpack .../061-libarpack2t64_3.9.1-6_amd64.deb ...
- Unpacking libarpack2t64:amd64 (3.9.1-6) ...
- Selecting previously unselected package libarmadillo14.
- Preparing to unpack .../062-libarmadillo14_1%3a14.2.3+dfsg-1+b1_amd64.deb ...
- Unpacking libarmadillo14 (1:14.2.3+dfsg-1+b1) ...
- Selecting previously unselected package libblas-dev:amd64.
- Preparing to unpack .../063-libblas-dev_3.12.1-6_amd64.deb ...
- Unpacking libblas-dev:amd64 (3.12.1-6) ...
- Selecting previously unselected package liblapack-dev:amd64.
- Preparing to unpack .../064-liblapack-dev_3.12.1-6_amd64.deb ...
- Unpacking liblapack-dev:amd64 (3.12.1-6) ...
- Selecting previously unselected package libarpack2-dev:amd64.
- Preparing to unpack .../065-libarpack2-dev_3.9.1-6_amd64.deb ...
- Unpacking libarpack2-dev:amd64 (3.9.1-6) ...
- Selecting previously unselected package libhdf5-310:amd64.
- Preparing to unpack .../066-libhdf5-310_1.14.5+repack-3_amd64.deb ...
- Unpacking libhdf5-310:amd64 (1.14.5+repack-3) ...
- Selecting previously unselected package libhdf5-fortran-310:amd64.
- Preparing to unpack .../067-libhdf5-fortran-310_1.14.5+repack-3_amd64.deb ...
- Unpacking libhdf5-fortran-310:amd64 (1.14.5+repack-3) ...
- Selecting previously unselected package libhdf5-hl-310:amd64.
- Preparing to unpack .../068-libhdf5-hl-310_1.14.5+repack-3_amd64.deb ...
- Unpacking libhdf5-hl-310:amd64 (1.14.5+repack-3) ...
- Selecting previously unselected package libhdf5-hl-fortran-310:amd64.
- Preparing to unpack .../069-libhdf5-hl-fortran-310_1.14.5+repack-3_amd64.deb ...
- Unpacking libhdf5-hl-fortran-310:amd64 (1.14.5+repack-3) ...
- Selecting previously unselected package libhdf5-cpp-310:amd64.
- Preparing to unpack .../070-libhdf5-cpp-310_1.14.5+repack-3_amd64.deb ...
- Unpacking libhdf5-cpp-310:amd64 (1.14.5+repack-3) ...
- Selecting previously unselected package libhdf5-hl-cpp-310:amd64.
- Preparing to unpack .../071-libhdf5-hl-cpp-310_1.14.5+repack-3_amd64.deb ...
- Unpacking libhdf5-hl-cpp-310:amd64 (1.14.5+repack-3) ...
- Selecting previously unselected package libjpeg62-turbo:amd64.
- Preparing to unpack .../072-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libjpeg62-turbo-dev:amd64.
- Preparing to unpack .../073-libjpeg62-turbo-dev_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg62-turbo-dev:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libjpeg-dev:amd64.
- Preparing to unpack .../074-libjpeg-dev_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg-dev:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../075-libbrotli-dev_1.1.0-2+b7_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Selecting previously unselected package libidn2-dev:amd64.
- Preparing to unpack .../076-libidn2-dev_2.3.8-2_amd64.deb ...
- Unpacking libidn2-dev:amd64 (2.3.8-2) ...
- Selecting previously unselected package libkrb5-dev:amd64.
- Preparing to unpack .../077-libkrb5-dev_1.21.3-5_amd64.deb ...
- Unpacking libkrb5-dev:amd64 (1.21.3-5) ...
- Selecting previously unselected package libldap-dev:amd64.
- Preparing to unpack .../078-libldap-dev_2.6.10+dfsg-1_amd64.deb ...
- Unpacking libldap-dev:amd64 (2.6.10+dfsg-1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../079-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../080-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../081-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package libnghttp2-dev:amd64.
- Preparing to unpack .../082-libnghttp2-dev_1.64.0-1.1_amd64.deb ...
- Unpacking libnghttp2-dev:amd64 (1.64.0-1.1) ...
- Selecting previously unselected package libnghttp3-dev:amd64.
- Preparing to unpack .../083-libnghttp3-dev_1.8.0-1_amd64.deb ...
- Unpacking libnghttp3-dev:amd64 (1.8.0-1) ...
- Selecting previously unselected package libpsl-dev:amd64.
- Preparing to unpack .../084-libpsl-dev_0.21.2-1.1+b1_amd64.deb ...
- Unpacking libpsl-dev:amd64 (0.21.2-1.1+b1) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../085-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../086-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libevent-2.1-7t64:amd64.
- Preparing to unpack .../087-libevent-2.1-7t64_2.1.12-stable-10+b1_amd64.deb ...
- Unpacking libevent-2.1-7t64:amd64 (2.1.12-stable-10+b1) ...
- Selecting previously unselected package libunbound8:amd64.
- Preparing to unpack .../088-libunbound8_1.22.0-2+deb13u1_amd64.deb ...
- Unpacking libunbound8:amd64 (1.22.0-2+deb13u1) ...
- Selecting previously unselected package libgnutls-dane0t64:amd64.
- Preparing to unpack .../089-libgnutls-dane0t64_3.8.9-3+deb13u2_amd64.deb ...
- Unpacking libgnutls-dane0t64:amd64 (3.8.9-3+deb13u2) ...
- Selecting previously unselected package libgnutls-openssl27t64:amd64.
- Preparing to unpack .../090-libgnutls-openssl27t64_3.8.9-3+deb13u2_amd64.deb ...
- Unpacking libgnutls-openssl27t64:amd64 (3.8.9-3+deb13u2) ...
- Selecting previously unselected package libp11-kit-dev:amd64.
- Preparing to unpack .../091-libp11-kit-dev_0.25.5-3_amd64.deb ...
- Unpacking libp11-kit-dev:amd64 (0.25.5-3) ...
- Selecting previously unselected package libtasn1-6-dev:amd64.
- Preparing to unpack .../092-libtasn1-6-dev_4.20.0-2_amd64.deb ...
- Unpacking libtasn1-6-dev:amd64 (4.20.0-2) ...
- Selecting previously unselected package nettle-dev:amd64.
- Preparing to unpack .../093-nettle-dev_3.10.1-1_amd64.deb ...
- Unpacking nettle-dev:amd64 (3.10.1-1) ...
- Selecting previously unselected package libgnutls28-dev:amd64.
- Preparing to unpack .../094-libgnutls28-dev_3.8.9-3+deb13u2_amd64.deb ...
- Unpacking libgnutls28-dev:amd64 (3.8.9-3+deb13u2) ...
- Selecting previously unselected package librtmp-dev:amd64.
- Preparing to unpack .../095-librtmp-dev_2.4+20151223.gitfa8646d.1-2+b5_amd64.deb ...
- Unpacking librtmp-dev:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
- Selecting previously unselected package libssh2-1-dev:amd64.
- Preparing to unpack .../096-libssh2-1-dev_1.11.1-1_amd64.deb ...
- Unpacking libssh2-1-dev:amd64 (1.11.1-1) ...
- Selecting previously unselected package libzstd-dev:amd64.
- Preparing to unpack .../097-libzstd-dev_1.5.7+dfsg-1_amd64.deb ...
- Unpacking libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Selecting previously unselected package libcurl4-openssl-dev:amd64.
- Preparing to unpack .../098-libcurl4-openssl-dev_8.14.1-2+deb13u2_amd64.deb ...
- Unpacking libcurl4-openssl-dev:amd64 (8.14.1-2+deb13u2) ...
- Selecting previously unselected package libhdf5-dev.
- Preparing to unpack .../099-libhdf5-dev_1.14.5+repack-3_amd64.deb ...
- Unpacking libhdf5-dev (1.14.5+repack-3) ...
- Selecting previously unselected package libsuperlu7:amd64.
- Preparing to unpack .../100-libsuperlu7_7.0.1+dfsg1-2_amd64.deb ...
- Unpacking libsuperlu7:amd64 (7.0.1+dfsg1-2) ...
- Selecting previously unselected package libsuperlu-dev:amd64.
- Preparing to unpack .../101-libsuperlu-dev_7.0.1+dfsg1-2_amd64.deb ...
- Unpacking libsuperlu-dev:amd64 (7.0.1+dfsg1-2) ...
- Selecting previously unselected package libarmadillo-dev.
- Preparing to unpack .../102-libarmadillo-dev_1%3a14.2.3+dfsg-1+b1_amd64.deb ...
- Unpacking libarmadillo-dev (1:14.2.3+dfsg-1+b1) ...
- Selecting previously unselected package libdav1d7:amd64.
- Preparing to unpack .../103-libdav1d7_1.5.1-1_amd64.deb ...
- Unpacking libdav1d7:amd64 (1.5.1-1) ...
- Selecting previously unselected package libdav1d-dev:amd64.
- Preparing to unpack .../104-libdav1d-dev_1.5.1-1_amd64.deb ...
- Unpacking libdav1d-dev:amd64 (1.5.1-1) ...
- Selecting previously unselected package librav1e0.7:amd64.
- Preparing to unpack .../105-librav1e0.7_0.7.1-9+b2_amd64.deb ...
- Unpacking librav1e0.7:amd64 (0.7.1-9+b2) ...
- Selecting previously unselected package librav1e-dev:amd64.
- Preparing to unpack .../106-librav1e-dev_0.7.1-9+b2_amd64.deb ...
- Unpacking librav1e-dev:amd64 (0.7.1-9+b2) ...
- Selecting previously unselected package libsvtav1enc2:amd64.
- Preparing to unpack .../107-libsvtav1enc2_2.3.0+dfsg-1_amd64.deb ...
- Unpacking libsvtav1enc2:amd64 (2.3.0+dfsg-1) ...
- Selecting previously unselected package libsvtav1enc-dev:amd64.
- Preparing to unpack .../108-libsvtav1enc-dev_2.3.0+dfsg-1_amd64.deb ...
- Unpacking libsvtav1enc-dev:amd64 (2.3.0+dfsg-1) ...
- Selecting previously unselected package libyuv0:amd64.
- Preparing to unpack .../109-libyuv0_0.0.1904.20250204-1_amd64.deb ...
- Unpacking libyuv0:amd64 (0.0.1904.20250204-1) ...
- Selecting previously unselected package libyuv-dev:amd64.
- Preparing to unpack .../110-libyuv-dev_0.0.1904.20250204-1_amd64.deb ...
- Unpacking libyuv-dev:amd64 (0.0.1904.20250204-1) ...
- Selecting previously unselected package libgav1-1:amd64.
- Preparing to unpack .../111-libgav1-1_0.19.0-3+b1_amd64.deb ...
- Unpacking libgav1-1:amd64 (0.19.0-3+b1) ...
- Selecting previously unselected package libavif16:amd64.
- Preparing to unpack .../112-libavif16_1.2.1-1.2_amd64.deb ...
- Unpacking libavif16:amd64 (1.2.1-1.2) ...
- Selecting previously unselected package libavif-dev:amd64.
- Preparing to unpack .../113-libavif-dev_1.2.1-1.2_amd64.deb ...
- Unpacking libavif-dev:amd64 (1.2.1-1.2) ...
- Selecting previously unselected package libsnappy1v5:amd64.
- Preparing to unpack .../114-libsnappy1v5_1.2.2-1_amd64.deb ...
- Unpacking libsnappy1v5:amd64 (1.2.2-1) ...
- Selecting previously unselected package libblosc1:amd64.
- Preparing to unpack .../115-libblosc1_1.21.5+ds-1+b2_amd64.deb ...
- Unpacking libblosc1:amd64 (1.21.5+ds-1+b2) ...
- Selecting previously unselected package libblosc-dev:amd64.
- Preparing to unpack .../116-libblosc-dev_1.21.5+ds-1+b2_amd64.deb ...
- Unpacking libblosc-dev:amd64 (1.21.5+ds-1+b2) ...
- Selecting previously unselected package libboost1.83-dev:amd64.
- Preparing to unpack .../117-libboost1.83-dev_1.83.0-4.2_amd64.deb ...
- Unpacking libboost1.83-dev:amd64 (1.83.0-4.2) ...
- Selecting previously unselected package libboost-dev:amd64.
- Preparing to unpack .../118-libboost-dev_1.83.0.2+b2_amd64.deb ...
- Unpacking libboost-dev:amd64 (1.83.0.2+b2) ...
- Selecting previously unselected package libcfitsio10t64:amd64.
- Preparing to unpack .../119-libcfitsio10t64_4.6.2-2_amd64.deb ...
- Unpacking libcfitsio10t64:amd64 (4.6.2-2) ...
- Selecting previously unselected package libcfitsio-dev:amd64.
- Preparing to unpack .../120-libcfitsio-dev_4.6.2-2_amd64.deb ...
- Unpacking libcfitsio-dev:amd64 (4.6.2-2) ...
- Selecting previously unselected package libcfitsio-doc.
- Preparing to unpack .../121-libcfitsio-doc_4.6.2-2_all.deb ...
- Unpacking libcfitsio-doc (4.6.2-2) ...
- Selecting previously unselected package libde265-0:amd64.
- Preparing to unpack .../122-libde265-0_1.0.15-1+b3_amd64.deb ...
- Unpacking libde265-0:amd64 (1.0.15-1+b3) ...
- Selecting previously unselected package libdeflate0:amd64.
- Preparing to unpack .../123-libdeflate0_1.23-2_amd64.deb ...
- Unpacking libdeflate0:amd64 (1.23-2) ...
- Selecting previously unselected package libdeflate-dev:amd64.
- Preparing to unpack .../124-libdeflate-dev_1.23-2_amd64.deb ...
- Unpacking libdeflate-dev:amd64 (1.23-2) ...
- Selecting previously unselected package libexpat1-dev:amd64.
- Preparing to unpack .../125-libexpat1-dev_2.7.1-2_amd64.deb ...
- Unpacking libexpat1-dev:amd64 (2.7.1-2) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../126-libffi-dev_3.4.8-2_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.8-2) ...
- Selecting previously unselected package libpng16-16t64:amd64.
- Preparing to unpack .../127-libpng16-16t64_1.6.48-1+deb13u4_amd64.deb ...
- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u4) ...
- Selecting previously unselected package libfreetype6:amd64.
- Preparing to unpack .../128-libfreetype6_2.13.3+dfsg-1+deb13u1_amd64.deb ...
- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Selecting previously unselected package libfontconfig1:amd64.
- Preparing to unpack .../129-libfontconfig1_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package libminizip1t64:amd64.
- Preparing to unpack .../130-libminizip1t64_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking libminizip1t64:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package libfreexl1:amd64.
- Preparing to unpack .../131-libfreexl1_2.0.0-1+b3_amd64.deb ...
- Unpacking libfreexl1:amd64 (2.0.0-1+b3) ...
- Selecting previously unselected package libminizip-dev:amd64.
- Preparing to unpack .../132-libminizip-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking libminizip-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package libfreexl-dev:amd64.
- Preparing to unpack .../133-libfreexl-dev_2.0.0-1+b3_amd64.deb ...
- Unpacking libfreexl-dev:amd64 (2.0.0-1+b3) ...
- Selecting previously unselected package libfyba0t64:amd64.
- Preparing to unpack .../134-libfyba0t64_4.1.1-11+b1_amd64.deb ...
- Unpacking libfyba0t64:amd64 (4.1.1-11+b1) ...
- Selecting previously unselected package libfyba-dev:amd64.
- Preparing to unpack .../135-libfyba-dev_4.1.1-11+b1_amd64.deb ...
- Unpacking libfyba-dev:amd64 (4.1.1-11+b1) ...
- Selecting previously unselected package libgeos3.13.1:amd64.
- Preparing to unpack .../136-libgeos3.13.1_3.13.1-1_amd64.deb ...
- Unpacking libgeos3.13.1:amd64 (3.13.1-1) ...
- Selecting previously unselected package libgeos-c1t64:amd64.
- Preparing to unpack .../137-libgeos-c1t64_3.13.1-1_amd64.deb ...
- Unpacking libgeos-c1t64:amd64 (3.13.1-1) ...
- Selecting previously unselected package proj-data.
- Preparing to unpack .../138-proj-data_9.6.0-1_all.deb ...
- Unpacking proj-data (9.6.0-1) ...
- Selecting previously unselected package libjbig0:amd64.
- Preparing to unpack .../139-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 .../140-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 .../141-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 .../142-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 .../143-libtiff6_4.7.0-3+deb13u2_amd64.deb ...
- Unpacking libtiff6:amd64 (4.7.0-3+deb13u2) ...
- Selecting previously unselected package libproj25:amd64.
- Preparing to unpack .../144-libproj25_9.6.0-1_amd64.deb ...
- Unpacking libproj25:amd64 (9.6.0-1) ...
- Selecting previously unselected package libgeotiff5:amd64.
- Preparing to unpack .../145-libgeotiff5_1.7.4-1_amd64.deb ...
- Unpacking libgeotiff5:amd64 (1.7.4-1) ...
- Selecting previously unselected package libgif7:amd64.
- Preparing to unpack .../146-libgif7_5.2.2-1+b1_amd64.deb ...
- Unpacking libgif7:amd64 (5.2.2-1+b1) ...
- Selecting previously unselected package libhdf4-0-alt:amd64.
- Preparing to unpack .../147-libhdf4-0-alt_4.3.0-1+b1_amd64.deb ...
- Unpacking libhdf4-0-alt:amd64 (4.3.0-1+b1) ...
- Selecting previously unselected package libheif-plugin-dav1d:amd64.
- Preparing to unpack .../148-libheif-plugin-dav1d_1.19.8-1_amd64.deb ...
- Unpacking libheif-plugin-dav1d:amd64 (1.19.8-1) ...
- Selecting previously unselected package libheif-plugin-libde265:amd64.
- Preparing to unpack .../149-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 .../150-libheif1_1.19.8-1_amd64.deb ...
- Unpacking libheif1:amd64 (1.19.8-1) ...
- Selecting previously unselected package libjson-c5:amd64.
- Preparing to unpack .../151-libjson-c5_0.18+ds-1_amd64.deb ...
- Unpacking libjson-c5:amd64 (0.18+ds-1) ...
- Selecting previously unselected package liburiparser1:amd64.
- Preparing to unpack .../152-liburiparser1_0.9.8+dfsg-2_amd64.deb ...
- Unpacking liburiparser1:amd64 (0.9.8+dfsg-2) ...
- Selecting previously unselected package libkmlbase1t64:amd64.
- Preparing to unpack .../153-libkmlbase1t64_1.3.0-12+b2_amd64.deb ...
- Unpacking libkmlbase1t64:amd64 (1.3.0-12+b2) ...
- Selecting previously unselected package libkmldom1t64:amd64.
- Preparing to unpack .../154-libkmldom1t64_1.3.0-12+b2_amd64.deb ...
- Unpacking libkmldom1t64:amd64 (1.3.0-12+b2) ...
- Selecting previously unselected package libkmlengine1t64:amd64.
- Preparing to unpack .../155-libkmlengine1t64_1.3.0-12+b2_amd64.deb ...
- Unpacking libkmlengine1t64:amd64 (1.3.0-12+b2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../156-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 libnetcdf22:amd64.
- Preparing to unpack .../157-libnetcdf22_1%3a4.9.3-1_amd64.deb ...
- Unpacking libnetcdf22:amd64 (1:4.9.3-1) ...
- Selecting previously unselected package libltdl7:amd64.
- Preparing to unpack .../158-libltdl7_2.5.4-4_amd64.deb ...
- Unpacking libltdl7:amd64 (2.5.4-4) ...
- Selecting previously unselected package libodbc2:amd64.
- Preparing to unpack .../159-libodbc2_2.3.12-2_amd64.deb ...
- Unpacking libodbc2:amd64 (2.3.12-2) ...
- Selecting previously unselected package unixodbc-common.
- Preparing to unpack .../160-unixodbc-common_2.3.12-2_all.deb ...
- Unpacking unixodbc-common (2.3.12-2) ...
- Selecting previously unselected package libodbcinst2:amd64.
- Preparing to unpack .../161-libodbcinst2_2.3.12-2_amd64.deb ...
- Unpacking libodbcinst2:amd64 (2.3.12-2) ...
- Selecting previously unselected package libtirpc-common.
- Preparing to unpack .../162-libtirpc-common_1.3.6+ds-1_all.deb ...
- Unpacking libtirpc-common (1.3.6+ds-1) ...
- Selecting previously unselected package libtirpc3t64:amd64.
- Preparing to unpack .../163-libtirpc3t64_1.3.6+ds-1_amd64.deb ...
- Adding 'diversion of /lib/x86_64-linux-gnu/libtirpc.so.3 to /lib/x86_64-linux-gnu/libtirpc.so.3.usr-is-merged by libtirpc3t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libtirpc.so.3.0.0 to /lib/x86_64-linux-gnu/libtirpc.so.3.0.0.usr-is-merged by libtirpc3t64'
- Unpacking libtirpc3t64:amd64 (1.3.6+ds-1) ...
- Selecting previously unselected package libogdi4.1:amd64.
- Preparing to unpack .../164-libogdi4.1_4.1.1+ds-5_amd64.deb ...
- Unpacking libogdi4.1:amd64 (4.1.1+ds-5) ...
- Selecting previously unselected package libopenjp2-7:amd64.
- Preparing to unpack .../165-libopenjp2-7_2.5.3-2.1~deb13u1_amd64.deb ...
- Unpacking libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...
- Selecting previously unselected package libgpgme11t64:amd64.
- Preparing to unpack .../166-libgpgme11t64_1.24.2-3_amd64.deb ...
- Unpacking libgpgme11t64:amd64 (1.24.2-3) ...
- Selecting previously unselected package libgpgmepp6t64:amd64.
- Preparing to unpack .../167-libgpgmepp6t64_1.24.2-3_amd64.deb ...
- Unpacking libgpgmepp6t64:amd64 (1.24.2-3) ...
- Selecting previously unselected package liblcms2-2:amd64.
- Preparing to unpack .../168-liblcms2-2_2.16-2_amd64.deb ...
- Unpacking liblcms2-2:amd64 (2.16-2) ...
- Selecting previously unselected package libnspr4:amd64.
- Preparing to unpack .../169-libnspr4_2%3a4.36-1_amd64.deb ...
- Unpacking libnspr4:amd64 (2:4.36-1) ...
- Selecting previously unselected package libnss3:amd64.
- Preparing to unpack .../170-libnss3_2%3a3.110-1+deb13u1_amd64.deb ...
- Unpacking libnss3:amd64 (2:3.110-1+deb13u1) ...
- Selecting previously unselected package libpoppler147:amd64.
- Preparing to unpack .../171-libpoppler147_25.03.0-5+deb13u2_amd64.deb ...
- Unpacking libpoppler147:amd64 (25.03.0-5+deb13u2) ...
- Selecting previously unselected package libpq5:amd64.
- Preparing to unpack .../172-libpq5_17.9-0+deb13u1_amd64.deb ...
- Unpacking libpq5:amd64 (17.9-0+deb13u1) ...
- Selecting previously unselected package libqhull-r8.0:amd64.
- Preparing to unpack .../173-libqhull-r8.0_2020.2-6+b2_amd64.deb ...
- Unpacking libqhull-r8.0:amd64 (2020.2-6+b2) ...
- Selecting previously unselected package librttopo1:amd64.
- Preparing to unpack .../174-librttopo1_1.1.0-4_amd64.deb ...
- Unpacking librttopo1:amd64 (1.1.0-4) ...
- Selecting previously unselected package libspatialite8t64:amd64.
- Preparing to unpack .../175-libspatialite8t64_5.1.0-3+b2_amd64.deb ...
- Unpacking libspatialite8t64:amd64 (5.1.0-3+b2) ...
- Selecting previously unselected package libxerces-c3.2t64:amd64.
- Preparing to unpack .../176-libxerces-c3.2t64_3.2.4+debian-1.3+b2_amd64.deb ...
- Unpacking libxerces-c3.2t64:amd64 (3.2.4+debian-1.3+b2) ...
- Selecting previously unselected package libgdal36:amd64.
- Preparing to unpack .../177-libgdal36_3.10.3+dfsg-1_amd64.deb ...
- Unpacking libgdal36:amd64 (3.10.3+dfsg-1) ...
- Selecting previously unselected package libgeos-dev.
- Preparing to unpack .../178-libgeos-dev_3.13.1-1_amd64.deb ...
- Unpacking libgeos-dev (3.13.1-1) ...
- Selecting previously unselected package libsqlite3-dev:amd64.
- Preparing to unpack .../179-libsqlite3-dev_3.46.1-7+deb13u1_amd64.deb ...
- Unpacking libsqlite3-dev:amd64 (3.46.1-7+deb13u1) ...
- Selecting previously unselected package libjbig-dev:amd64.
- Preparing to unpack .../180-libjbig-dev_2.1-6.1+b2_amd64.deb ...
- Unpacking libjbig-dev:amd64 (2.1-6.1+b2) ...
- Selecting previously unselected package liblzma-dev:amd64.
- Preparing to unpack .../181-liblzma-dev_5.8.1-1_amd64.deb ...
- Unpacking liblzma-dev:amd64 (5.8.1-1) ...
- Selecting previously unselected package libwebpdemux2:amd64.
- Preparing to unpack .../182-libwebpdemux2_1.5.0-0.1_amd64.deb ...
- Unpacking libwebpdemux2:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebpmux3:amd64.
- Preparing to unpack .../183-libwebpmux3_1.5.0-0.1_amd64.deb ...
- Unpacking libwebpmux3:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebpdecoder3:amd64.
- Preparing to unpack .../184-libwebpdecoder3_1.5.0-0.1_amd64.deb ...
- Unpacking libwebpdecoder3:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libsharpyuv-dev:amd64.
- Preparing to unpack .../185-libsharpyuv-dev_1.5.0-0.1_amd64.deb ...
- Unpacking libsharpyuv-dev:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libwebp-dev:amd64.
- Preparing to unpack .../186-libwebp-dev_1.5.0-0.1_amd64.deb ...
- Unpacking libwebp-dev:amd64 (1.5.0-0.1) ...
- Selecting previously unselected package libtiffxx6:amd64.
- Preparing to unpack .../187-libtiffxx6_4.7.0-3+deb13u2_amd64.deb ...
- Unpacking libtiffxx6:amd64 (4.7.0-3+deb13u2) ...
- Selecting previously unselected package liblerc-dev:amd64.
- Preparing to unpack .../188-liblerc-dev_4.0.0+ds-5_amd64.deb ...
- Unpacking liblerc-dev:amd64 (4.0.0+ds-5) ...
- Selecting previously unselected package libtiff-dev:amd64.
- Preparing to unpack .../189-libtiff-dev_4.7.0-3+deb13u2_amd64.deb ...
- Unpacking libtiff-dev:amd64 (4.7.0-3+deb13u2) ...
- Selecting previously unselected package libproj-dev:amd64.
- Preparing to unpack .../190-libproj-dev_9.6.0-1_amd64.deb ...
- Unpacking libproj-dev:amd64 (9.6.0-1) ...
- Selecting previously unselected package libgeotiff-dev:amd64.
- Preparing to unpack .../191-libgeotiff-dev_1.7.4-1_amd64.deb ...
- Unpacking libgeotiff-dev:amd64 (1.7.4-1) ...
- Selecting previously unselected package libgif-dev:amd64.
- Preparing to unpack .../192-libgif-dev_5.2.2-1+b1_amd64.deb ...
- Unpacking libgif-dev:amd64 (5.2.2-1+b1) ...
- Selecting previously unselected package libxml2-dev:amd64.
- Preparing to unpack .../193-libxml2-dev_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libnetcdf-dev.
- Preparing to unpack .../194-libnetcdf-dev_1%3a4.9.3-1_amd64.deb ...
- Unpacking libnetcdf-dev (1:4.9.3-1) ...
- Selecting previously unselected package libhdf4-alt-dev.
- Preparing to unpack .../195-libhdf4-alt-dev_4.3.0-1+b1_amd64.deb ...
- Unpacking libhdf4-alt-dev (4.3.0-1+b1) ...
- Selecting previously unselected package libheif-dev:amd64.
- Preparing to unpack .../196-libheif-dev_1.19.8-1_amd64.deb ...
- Unpacking libheif-dev:amd64 (1.19.8-1) ...
- Selecting previously unselected package libjson-c-dev:amd64.
- Preparing to unpack .../197-libjson-c-dev_0.18+ds-1_amd64.deb ...
- Unpacking libjson-c-dev:amd64 (0.18+ds-1) ...
- Selecting previously unselected package libkmlconvenience1t64:amd64.
- Preparing to unpack .../198-libkmlconvenience1t64_1.3.0-12+b2_amd64.deb ...
- Unpacking libkmlconvenience1t64:amd64 (1.3.0-12+b2) ...
- Selecting previously unselected package libkmlregionator1t64:amd64.
- Preparing to unpack .../199-libkmlregionator1t64_1.3.0-12+b2_amd64.deb ...
- Unpacking libkmlregionator1t64:amd64 (1.3.0-12+b2) ...
- Selecting previously unselected package libkmlxsd1t64:amd64.
- Preparing to unpack .../200-libkmlxsd1t64_1.3.0-12+b2_amd64.deb ...
- Unpacking libkmlxsd1t64:amd64 (1.3.0-12+b2) ...
- Selecting previously unselected package liburiparser-dev.
- Preparing to unpack .../201-liburiparser-dev_0.9.8+dfsg-2_amd64.deb ...
- Unpacking liburiparser-dev (0.9.8+dfsg-2) ...
- Selecting previously unselected package libkml-dev:amd64.
- Preparing to unpack .../202-libkml-dev_1.3.0-12+b2_amd64.deb ...
- Unpacking libkml-dev:amd64 (1.3.0-12+b2) ...
- Selecting previously unselected package libltdl-dev:amd64.
- Preparing to unpack .../203-libltdl-dev_2.5.4-4_amd64.deb ...
- Unpacking libltdl-dev:amd64 (2.5.4-4) ...
- Selecting previously unselected package libxxhash-dev:amd64.
- Preparing to unpack .../204-libxxhash-dev_0.8.3-2_amd64.deb ...
- Unpacking libxxhash-dev:amd64 (0.8.3-2) ...
- Selecting previously unselected package liblz4-dev:amd64.
- Preparing to unpack .../205-liblz4-dev_1.10.0-4_amd64.deb ...
- Unpacking liblz4-dev:amd64 (1.10.0-4) ...
- Selecting previously unselected package libtirpc-dev:amd64.
- Preparing to unpack .../206-libtirpc-dev_1.3.6+ds-1_amd64.deb ...
- Unpacking libtirpc-dev:amd64 (1.3.6+ds-1) ...
- Selecting previously unselected package libogdi-dev.
- Preparing to unpack .../207-libogdi-dev_4.1.1+ds-5_amd64.deb ...
- Unpacking libogdi-dev (4.1.1+ds-5) ...
- Selecting previously unselected package libopenjp2-7-dev:amd64.
- Preparing to unpack .../208-libopenjp2-7-dev_2.5.3-2.1~deb13u1_amd64.deb ...
- Unpacking libopenjp2-7-dev:amd64 (2.5.3-2.1~deb13u1) ...
- Selecting previously unselected package libpcre2-16-0:amd64.
- Preparing to unpack .../209-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 .../210-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 .../211-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 .../212-libpcre2-dev_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-dev:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libpng-dev:amd64.
- Preparing to unpack .../213-libpng-dev_1.6.48-1+deb13u4_amd64.deb ...
- Unpacking libpng-dev:amd64 (1.6.48-1+deb13u4) ...
- Selecting previously unselected package libpoppler-dev:amd64.
- Preparing to unpack .../214-libpoppler-dev_25.03.0-5+deb13u2_amd64.deb ...
- Unpacking libpoppler-dev:amd64 (25.03.0-5+deb13u2) ...
- Selecting previously unselected package libpoppler-private-dev:amd64.
- Preparing to unpack .../215-libpoppler-private-dev_25.03.0-5+deb13u2_amd64.deb ...
- Unpacking libpoppler-private-dev:amd64 (25.03.0-5+deb13u2) ...
- Selecting previously unselected package libpq-dev.
- Preparing to unpack .../216-libpq-dev_17.9-0+deb13u1_amd64.deb ...
- Unpacking libpq-dev (17.9-0+deb13u1) ...
- Selecting previously unselected package libqhull8.0:amd64.
- Preparing to unpack .../217-libqhull8.0_2020.2-6+b2_amd64.deb ...
- Unpacking libqhull8.0:amd64 (2020.2-6+b2) ...
- Selecting previously unselected package libqhullcpp8.0:amd64.
- Preparing to unpack .../218-libqhullcpp8.0_2020.2-6+b2_amd64.deb ...
- Unpacking libqhullcpp8.0:amd64 (2020.2-6+b2) ...
- Selecting previously unselected package libqhull-dev:amd64.
- Preparing to unpack .../219-libqhull-dev_2020.2-6+b2_amd64.deb ...
- Unpacking libqhull-dev:amd64 (2020.2-6+b2) ...
- Selecting previously unselected package librttopo-dev:amd64.
- Preparing to unpack .../220-librttopo-dev_1.1.0-4_amd64.deb ...
- Unpacking librttopo-dev:amd64 (1.1.0-4) ...
- Selecting previously unselected package libspatialite-dev:amd64.
- Preparing to unpack .../221-libspatialite-dev_5.1.0-3+b2_amd64.deb ...
- Unpacking libspatialite-dev:amd64 (5.1.0-3+b2) ...
- Selecting previously unselected package libicu-dev:amd64.
- Preparing to unpack .../222-libicu-dev_76.1-4_amd64.deb ...
- Unpacking libicu-dev:amd64 (76.1-4) ...
- Selecting previously unselected package libxerces-c-dev:amd64.
- Preparing to unpack .../223-libxerces-c-dev_3.2.4+debian-1.3+b2_amd64.deb ...
- Unpacking libxerces-c-dev:amd64 (3.2.4+debian-1.3+b2) ...
- Selecting previously unselected package libodbccr2:amd64.
- Preparing to unpack .../224-libodbccr2_2.3.12-2_amd64.deb ...
- Unpacking libodbccr2:amd64 (2.3.12-2) ...
- Selecting previously unselected package unixodbc-dev:amd64.
- Preparing to unpack .../225-unixodbc-dev_2.3.12-2_amd64.deb ...
- Unpacking unixodbc-dev:amd64 (2.3.12-2) ...
- Selecting previously unselected package libgdal-dev.
- Preparing to unpack .../226-libgdal-dev_3.10.3+dfsg-1_amd64.deb ...
- Unpacking libgdal-dev (3.10.3+dfsg-1) ...
- Selecting previously unselected package libgpg-error-l10n.
- Preparing to unpack .../227-libgpg-error-l10n_1.51-4_all.deb ...
- Unpacking libgpg-error-l10n (1.51-4) ...
- Selecting previously unselected package libheif-plugin-aomenc:amd64.
- Preparing to unpack .../228-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 .../229-libnuma1_2.0.19-1_amd64.deb ...
- Unpacking libnuma1:amd64 (2.0.19-1) ...
- Selecting previously unselected package libx265-215:amd64.
- Preparing to unpack .../230-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 .../231-libheif-plugin-x265_1.19.8-1_amd64.deb ...
- Unpacking libheif-plugin-x265:amd64 (1.19.8-1) ...
- Selecting previously unselected package libpng-tools.
- Preparing to unpack .../232-libpng-tools_1.6.48-1+deb13u4_amd64.deb ...
- Unpacking libpng-tools (1.6.48-1+deb13u4) ...
- Selecting previously unselected package libtasn1-doc.
- Preparing to unpack .../233-libtasn1-doc_4.20.0-2_all.deb ...
- Unpacking libtasn1-doc (4.20.0-2) ...
- Selecting previously unselected package libtool.
- Preparing to unpack .../234-libtool_2.5.4-4_all.deb ...
- Unpacking libtool (2.5.4-4) ...
- Preparing to unpack .../235-openssl_3.5.5-1~deb13u2_amd64.deb ...
- Unpacking openssl (3.5.5-1~deb13u2) over (3.5.5-1~deb13u1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../236-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package proj-bin.
- Preparing to unpack .../237-proj-bin_9.6.0-1_amd64.deb ...
- Unpacking proj-bin (9.6.0-1) ...
- Selecting previously unselected package gnupg-utils.
- Preparing to unpack .../238-gnupg-utils_2.4.7-21+deb13u1+b2_amd64.deb ...
- Unpacking gnupg-utils (2.4.7-21+deb13u1+b2) ...
- Setting up libgnutls-openssl27t64:amd64 (3.8.9-3+deb13u2) ...
- Setting up liblcms2-2:amd64 (2.16-2) ...
- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...
- Setting up libaom3:amd64 (3.12.1-1) ...
- Setting up mysql-common (5.8+1.1.1) ...
- update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode
- Setting up libnpth0t64:amd64 (1.8-3) ...
- Setting up libboost1.83-dev:amd64 (1.83.0-4.2) ...
- Setting up libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Setting up liblerc4:amd64 (4.0.0+ds-5) ...
- Setting up proj-data (9.6.0-1) ...
- Setting up hdf5-helpers (1.14.5+repack-3) ...
- Setting up libgpg-error0:amd64 (1.51-4) ...
- Setting up libmagic-mgc (1:5.46-5) ...
- Setting up libgeos3.13.1:amd64 (3.13.1-1) ...
- Setting up libqhull8.0:amd64 (2020.2-6+b2) ...
- Setting up libtirpc-common (1.3.6+ds-1) ...
- Setting up libgeos-c1t64:amd64 (3.13.1-1) ...
- Setting up libtasn1-doc (4.20.0-2) ...
- Setting up libmagic1t64:amd64 (1:5.46-5) ...
- Setting up libpq5:amd64 (17.9-0+deb13u1) ...
- Setting up libdeflate0:amd64 (1.23-2) ...
- Setting up libwebpdecoder3:amd64 (1.5.0-0.1) ...
- Setting up m4 (1.4.19-8) ...
- Setting up libevent-2.1-7t64:amd64 (2.1.12-stable-10+b1) ...
- Setting up libgcrypt20:amd64 (1.11.0-7) ...
- Setting up libqhull-r8.0:amd64 (2020.2-6+b2) ...
- Setting up file (1:5.46-5) ...
- Setting up libabsl20240722:amd64 (20240722.0-4) ...
- Setting up libffi-dev:amd64 (3.4.8-2) ...
- Setting up libjbig0:amd64 (2.1-6.1+b2) ...
- Setting up libpcre2-16-0:amd64 (10.46-1~deb13u1) ...
- Setting up libaec0:amd64 (1.1.3-1+b1) ...
- Setting up gdal-data (3.10.3+dfsg-1) ...
- Setting up libpsl-dev:amd64 (0.21.2-1.1+b1) ...
- Setting up libsnappy1v5:amd64 (1.2.2-1) ...
- Setting up poppler-data (0.4.12-1) ...
- Setting up libaom-dev:amd64 (3.12.1-1) ...
- Setting up mariadb-common (1:11.8.6-0+deb13u1) ...
- update-alternatives: using /etc/mysql/mariadb.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode
- Setting up autotools-dev (20240727.1) ...
- Setting up libpcre2-32-0:amd64 (10.46-1~deb13u1) ...
- 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 libunbound8:amd64 (1.22.0-2+deb13u1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libcfitsio10t64:amd64 (4.6.2-2) ...
- Setting up libexpat1-dev:amd64 (2.7.1-2) ...
- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Setting up libgnutls-dane0t64:amd64 (3.8.9-3+deb13u2) ...
- Setting up libsqlite3-dev:amd64 (3.46.1-7+deb13u1) ...
- Setting up libsvtav1enc2:amd64 (2.3.0+dfsg-1) ...
- Setting up libjpeg62-turbo-dev:amd64 (1:2.1.5-4) ...
- Setting up libnspr4:amd64 (2:4.36-1) ...
- Setting up gnupg-l10n (2.4.7-21+deb13u1) ...
- Setting up libgssrpc4t64:amd64 (1.21.3-5) ...
- Setting up libldap-dev:amd64 (2.6.10+dfsg-1) ...
- Setting up libgeos-dev (3.13.1-1) ...
- Setting up comerr-dev:amd64 (2.1-1.47.2-3+b10) ...
- Setting up fonts-dejavu-mono (2.37-8) ...
- Setting up libssl-dev:amd64 (3.5.5-1~deb13u2) ...
- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u4) ...
- Setting up libmariadb3:amd64 (1:11.8.6-0+deb13u1) ...
- Setting up fonts-dejavu-core (2.37-8) ...
- Setting up unixodbc-common (2.3.12-2) ...
- Setting up libqhullcpp8.0:amd64 (2020.2-6+b2) ...
- Setting up libgav1-1:amd64 (0.19.0-3+b1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up liblerc-dev:amd64 (4.0.0+ds-5) ...
- Setting up libltdl7:amd64 (2.5.4-4) ...
- Setting up libidn2-dev:amd64 (2.3.8-2) ...
- Setting up libqhull-dev:amd64 (2020.2-6+b2) ...
- Setting up libgfortran5:amd64 (14.2.0-19) ...
- Setting up autoconf (2.72-3.1) ...
- Setting up libxxhash-dev:amd64 (0.8.3-2) ...
- Setting up libwebp7:amd64 (1.5.0-0.1) ...
- Setting up libnghttp3-dev:amd64 (1.8.0-1) ...
- Setting up liblzma-dev:amd64 (5.8.1-1) ...
- Setting up libgif7:amd64 (5.2.2-1+b1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libodbc2:amd64 (2.3.12-2) ...
- Setting up liburiparser1:amd64 (0.9.8+dfsg-2) ...
- Setting up libnuma1:amd64 (2.0.19-1) ...
- Setting up libpcre2-posix3:amd64 (10.46-1~deb13u1) ...
- Setting up libfyba0t64:amd64 (4.1.1-11+b1) ...
- Setting up librttopo1:amd64 (1.1.0-4) ...
- Setting up libdav1d7:amd64 (1.5.1-1) ...
- Setting up libminizip1t64:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libgif-dev:amd64 (5.2.2-1+b1) ...
- Setting up gpgv (2.4.7-21+deb13u1+b2) ...
- Setting up cfortran (20210827-1.1) ...
- Setting up libtiff6:amd64 (4.7.0-3+deb13u2) ...
- Setting up librav1e0.7:amd64 (0.7.1-9+b2) ...
- Setting up libassuan9:amd64 (3.0.2-2) ...
- Setting up libblosc1:amd64 (1.21.5+ds-1+b2) ...
- Setting up libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...
- Setting up libboost-dev:amd64 (1.83.0.2+b2) ...
- Setting up libicu76:amd64 (76.1-4) ...
- Setting up libde265-0:amd64 (1.0.15-1+b3) ...
- Setting up libsharpyuv-dev:amd64 (1.5.0-0.1) ...
- Setting up libkmlbase1t64:amd64 (1.3.0-12+b2) ...
- Setting up libx265-215:amd64 (4.1-2) ...
- Setting up libtasn1-6-dev:amd64 (4.20.0-2) ...
- Setting up openssl (3.5.5-1~deb13u2) ...
- Setting up libwebpmux3:amd64 (1.5.0-0.1) ...
- Setting up libgpg-error-l10n (1.51-4) ...
- Setting up libtiffxx6:amd64 (4.7.0-3+deb13u2) ...
- Setting up libdeflate-dev:amd64 (1.23-2) ...
- Setting up libyuv0:amd64 (0.0.1904.20250204-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 libcfitsio-doc (4.6.2-2) ...
- Setting up libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Setting up libp11-kit-dev:amd64 (0.25.5-3) ...
- Setting up libblas-dev:amd64 (3.12.1-6) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode
- Setting up libsz2:amd64 (1.1.3-1+b1) ...
- Setting up libkadm5clnt-mit12:amd64 (1.21.3-5) ...
- Setting up libodbccr2:amd64 (2.3.12-2) ...
- Setting up gdal-plugins:amd64 (3.10.3+dfsg-1) ...
- Setting up automake (1:1.17-4) ...
- update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode
- Setting up libgfortran-14-dev:amd64 (14.2.0-19) ...
- Setting up libksba8:amd64 (1.6.7-2+b1) ...
- Setting up pinentry-curses (1.3.1-2) ...
- Setting up librttopo-dev:amd64 (1.1.0-4) ...
- Setting up libodbcinst2:amd64 (2.3.12-2) ...
- 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 libkmlxsd1t64:amd64 (1.3.0-12+b2) ...
- Setting up libarpack2t64:amd64 (3.9.1-6) ...
- Setting up libcfitsio-dev:amd64 (4.6.2-2) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libpcre2-dev:amd64 (10.46-1~deb13u1) ...
- Setting up nettle-dev:amd64 (3.10.1-1) ...
- Setting up libproj25:amd64 (9.6.0-1) ...
- Setting up libkdb5-10t64:amd64 (1.21.3-5) ...
- Setting up libtirpc3t64:amd64 (1.3.6+ds-1) ...
- Setting up libpng-tools (1.6.48-1+deb13u4) ...
- Setting up libtool (2.5.4-4) ...
- Setting up libogdi4.1:amd64 (4.1.1+ds-5) ...
- Setting up libblosc-dev:amd64 (1.21.5+ds-1+b2) ...
- Setting up fontconfig-config (2.15.0-2.3) ...
- Setting up libjson-c-dev:amd64 (0.18+ds-1) ...
- Setting up libfyba-dev:amd64 (4.1.1-11+b1) ...
- Setting up libwebpdemux2:amd64 (1.5.0-0.1) ...
- Setting up libpng-dev:amd64 (1.6.48-1+deb13u4) ...
- Setting up libaec-dev:amd64 (1.1.3-1+b1) ...
- Setting up libjpeg-dev:amd64 (1:2.1.5-4) ...
- Setting up libjbig-dev:amd64 (2.1-6.1+b2) ...
- Setting up proj-bin (9.6.0-1) ...
- Setting up libpq-dev (17.9-0+deb13u1) ...
- Setting up libnss3:amd64 (2:3.110-1+deb13u1) ...
- Setting up libsvtav1enc-dev:amd64 (2.3.0+dfsg-1) ...
- Setting up libxerces-c3.2t64:amd64 (3.2.4+debian-1.3+b2) ...
- Setting up libsuperlu7:amd64 (7.0.1+dfsg1-2) ...
- Setting up libgeotiff5:amd64 (1.7.4-1) ...
- Setting up gfortran-14-x86-64-linux-gnu (14.2.0-19) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up liburiparser-dev (0.9.8+dfsg-2) ...
- Setting up libkmldom1t64:amd64 (1.3.0-12+b2) ...
- Setting up libminizip-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libltdl-dev:amd64 (2.5.4-4) ...
- Setting up libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libwebp-dev:amd64 (1.5.0-0.1) ...
- Setting up libtirpc-dev:amd64 (1.3.6+ds-1) ...
- Setting up libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Setting up libtiff-dev:amd64 (4.7.0-3+deb13u2) ...
- Setting up libopenjp2-7-dev:amd64 (2.5.3-2.1~deb13u1) ...
- Setting up libdav1d-dev:amd64 (1.5.1-1) ...
- Setting up liblapack-dev:amd64 (3.12.1-6) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode
- Setting up icu-devtools (76.1-4) ...
- Setting up liblz4-dev:amd64 (1.10.0-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libssh2-1-dev:amd64 (1.11.1-1) ...
- Setting up libhdf4-0-alt:amd64 (4.3.0-1+b1) ...
- Setting up libmariadb-dev (1:11.8.6-0+deb13u1) ...
- Setting up libreadline8t64:amd64 (8.2-6) ...
- Setting up librav1e-dev:amd64 (0.7.1-9+b2) ...
- Setting up libhdf5-310:amd64 (1.14.5+repack-3) ...
- Setting up libyuv-dev:amd64 (0.0.1904.20250204-1) ...
- Setting up libfreexl1:amd64 (2.0.0-1+b3) ...
- Setting up libkadm5srv-mit12:amd64 (1.21.3-5) ...
- Setting up gpgconf (2.4.7-21+deb13u1+b2) ...
- Setting up libarmadillo14 (1:14.2.3+dfsg-1+b1) ...
- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...
- Setting up gfortran-14 (14.2.0-19) ...
- Setting up libsuperlu-dev:amd64 (7.0.1+dfsg1-2) ...
- Setting up libhdf5-fortran-310:amd64 (1.14.5+repack-3) ...
- Setting up libogdi-dev (4.1.1+ds-5) ...
- Setting up libicu-dev:amd64 (76.1-4) ...
- Setting up unixodbc-dev:amd64 (2.3.12-2) ...
- Setting up gpg (2.4.7-21+deb13u1+b2) ...
- Setting up gnupg-utils (2.4.7-21+deb13u1+b2) ...
- Setting up libspatialite8t64:amd64 (5.1.0-3+b2) ...
- Setting up krb5-multidev:amd64 (1.21.3-5) ...
- Setting up libhdf5-cpp-310:amd64 (1.14.5+repack-3) ...
- Setting up libgnutls28-dev:amd64 (3.8.9-3+deb13u2) ...
- Setting up libmariadb-dev-compat (1:11.8.6-0+deb13u1) ...
- Setting up libnghttp2-dev:amd64 (1.64.0-1.1) ...
- Setting up libhdf5-hl-310:amd64 (1.14.5+repack-3) ...
- Setting up libarpack2-dev:amd64 (3.9.1-6) ...
- Setting up gpg-agent (2.4.7-21+deb13u1+b2) ...
- Setting up libfreexl-dev:amd64 (2.0.0-1+b3) ...
- Setting up gpgsm (2.4.7-21+deb13u1+b2) ...
- Setting up libnetcdf22:amd64 (1:4.9.3-1) ...
- Setting up libkmlengine1t64:amd64 (1.3.0-12+b2) ...
- Setting up gfortran-x86-64-linux-gnu (4:14.2.0-1) ...
- Setting up gfortran (4:14.2.0-1) ...
- update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f95 (f95) in auto mode
- update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f77 (f77) in auto mode
- Setting up libkrb5-dev:amd64 (1.21.3-5) ...
- Setting up dirmngr (2.4.7-21+deb13u1+b2) ...
- Setting up libxerces-c-dev:amd64 (3.2.4+debian-1.3+b2) ...
- Setting up librtmp-dev:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
- Setting up libavif-dev:amd64 (1.2.1-1.2) ...
- Setting up gnupg (2.4.7-21+deb13u1) ...
- Setting up libgpgme11t64:amd64 (1.24.2-3) ...
- Setting up libkmlconvenience1t64:amd64 (1.3.0-12+b2) ...
- Setting up default-libmysqlclient-dev:amd64 (1.1.1) ...
- Setting up libhdf5-hl-cpp-310:amd64 (1.14.5+repack-3) ...
- Setting up libgpgmepp6t64:amd64 (1.24.2-3) ...
- Setting up libhdf5-hl-fortran-310:amd64 (1.14.5+repack-3) ...
- Setting up libkmlregionator1t64:amd64 (1.3.0-12+b2) ...
- Setting up libpoppler147:amd64 (25.03.0-5+deb13u2) ...
- Setting up gpg-wks-client (2.4.7-21+deb13u1+b2) ...
- Setting up libcurl4-openssl-dev:amd64 (8.14.1-2+deb13u2) ...
- Setting up libhdf5-dev (1.14.5+repack-3) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/pkgconfig/hdf5-serial.pc to provide /usr/lib/x86_64-linux-gnu/pkgconfig/hdf5.pc (hdf5.pc) in auto mode
- Setting up libproj-dev:amd64 (9.6.0-1) ...
- Setting up libnetcdf-dev (1:4.9.3-1) ...
- Setting up libspatialite-dev:amd64 (5.1.0-3+b2) ...
- Setting up libpoppler-dev:amd64 (25.03.0-5+deb13u2) ...
- Setting up libkml-dev:amd64 (1.3.0-12+b2) ...
- Setting up libgeotiff-dev:amd64 (1.7.4-1) ...
- Setting up libpoppler-private-dev:amd64 (25.03.0-5+deb13u2) ...
- Setting up libarmadillo-dev (1:14.2.3+dfsg-1+b1) ...
- Setting up libhdf4-alt-dev (4.3.0-1+b1) ...
- Setting up libheif1:amd64 (1.19.8-1) ...
- Setting up libheif-dev:amd64 (1.19.8-1) ...
- Setting up libgdal36:amd64 (3.10.3+dfsg-1) ...
- Setting up libheif-plugin-dav1d:amd64 (1.19.8-1) ...
- Setting up libheif-plugin-libde265:amd64 (1.19.8-1) ...
- Setting up libheif-plugin-x265:amd64 (1.19.8-1) ...
- Setting up libheif-plugin-aomenc:amd64 (1.19.8-1) ...
- Setting up libgdal-dev (3.10.3+dfsg-1) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ctypes.0.17.1  (cached)
-> installed conf-pkg-config.4
-> installed conf-libffi.2.0.0
-> installed ctypes-foreign.0.18.0
-> retrieved gdal.0.9.0  (https://opam.ocaml.org/cache)
-> retrieved integers.0.7.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed stdlib-shims.0.3.0
-> installed integers.0.7.0
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed ctypes.0.17.1
-> installed gdal.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:19.02 ---> saved as "8f09879734ec59f5663574450a477c891edcc61aed146b7c0f05fe3b830bf4d4"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved gdal.0.9.0  (https://opam.ocaml.org/cache)
-> removed   gdal.0.9.0
-> installed gdal.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:19.24 ---> saved as "fd6637e282a3dc6658f15e699cb6f43ee9871338832b31701f704e840607a0fb"

/home/opam: (run (shell  "opam reinstall --with-test --verbose gdal.0.9.0;\
                        \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\" != 'gdal.0.9.0' && 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 gdal 0.9.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [gdal.0.9.0: extract]
-> retrieved gdal.0.9.0  (cached)
Processing  2/4: [gdal: ocaml setup.ml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "setup.ml" "-configure" "--prefix" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/build/gdal.0.9.0)
- File "./setup.ml", line 318, characters 20-36:
- 318 |     String.compare (String.lowercase s1) (String.lowercase s2)
-                           ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 318, characters 42-58:
- 318 |     String.compare (String.lowercase s1) (String.lowercase s2)
-                                                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 14-30:
- 327 |              (String.lowercase s1) = (String.lowercase s2)
-                     ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 38-54:
- 327 |              (String.lowercase s1) = (String.lowercase s2)
-                                             ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 330, characters 25-41:
- 330 |            Hashtbl.hash (String.lowercase s)
-                                ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 368, characters 10-26:
- 368 |           String.lowercase buf
-                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 474, characters 13-29:
- 474 |              String.lowercase
-                    ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 1381, characters 23-41:
- 1381 |          let compare = Pervasives.compare
-                               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "./setup.ml", line 1825, characters 16-33:
- 1825 |     concat dir (String.capitalize base)
-                        ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "./setup.ml", line 1831, characters 16-35:
- 1831 |     concat dir (String.uncapitalize base)
-                        ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 2916, characters 10-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2922, characters 10-21:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2925, characters 23-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2928, characters 20-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2931, characters 10-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2934, characters 16-28:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 15-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 32-42:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 48-61:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2936, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2937, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2938, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3088, characters 4-21:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3107, characters 24-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3109, characters 21-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 41-53:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 41-54:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 50-62:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 50-63:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3118, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3131, characters 15-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3229, characters 16-34:
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "setup.ml", line 5847, characters 11-28:
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "setup.ml", line 5848, characters 11-30:
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 6484, characters 33-42:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 6485, characters 36-45:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- 
- Configuration: 
- ocamlfind: ........................................... /home/opam/.opam/4.14/bin/ocamlfind
- ocamlc: .............................................. /home/opam/.opam/4.14/bin/ocamlc.opt
- ocamlopt: ............................................ /home/opam/.opam/4.14/bin/ocamlopt.opt
- ocamlbuild: .......................................... /home/opam/.opam/4.14/bin/ocamlbuild
- Package name: ........................................ gdal
- Package version: ..................................... 0.8.0
- os_type: ............................................. Unix
- system: .............................................. linux
- architecture: ........................................ amd64
- ccomp_type: .......................................... cc
- ocaml_version: ....................................... 4.14.3
- standard_library_default: ............................ /home/opam/.opam/4.14/lib/ocaml
- standard_library: .................................... /home/opam/.opam/4.14/lib/ocaml
- bytecomp_c_compiler: ................................. gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 
- native_c_compiler: ................................... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 
- model: ............................................... default
- ext_obj: ............................................. .o
- ext_asm: ............................................. .s
- ext_lib: ............................................. .a
- ext_dll: ............................................. .so
- default_executable_name: ............................. a.out
- systhread_supported: ................................. true
- Install architecture-independent files dir: .......... /home/opam/.opam/4.14
- Install architecture-dependent files in dir: ......... $prefix
- User executables: .................................... $exec_prefix/bin
- System admin executables: ............................ $exec_prefix/sbin
- Program executables: ................................. $exec_prefix/libexec
- Read-only single-machine data: ....................... $prefix/etc
- Modifiable architecture-independent data: ............ $prefix/com
- Modifiable single-machine data: ...................... $prefix/var
- Object code libraries: ............................... $exec_prefix/lib
- Read-only arch-independent data root: ................ $prefix/share
- Read-only architecture-independent data: ............. $datarootdir
- Info documentation: .................................. $datarootdir/info
- Locale-dependent data: ............................... $datarootdir/locale
- Man documentation: ................................... $datarootdir/man
- Documentation root: .................................. $datarootdir/doc/$pkg_name
- HTML documentation: .................................. $docdir
- DVI documentation: ................................... $docdir
- PDF documentation: ................................... $docdir
- PS documentation: .................................... $docdir
- findlib_version: ..................................... 1.9.8
- is_native: ........................................... true
- suffix_program: ...................................... 
- Remove a file.: ...................................... rm -f
- Remove a directory.: ................................. rm -rf
- Turn ocaml debug flag on: ............................ true
- Turn ocaml profile flag on: .......................... false
- Compiler support generation of .cmxs.: ............... true
- OCamlbuild additional flags: ......................... 
- Build examples: ...................................... true
- Create documentations: ............................... true
- Compile tests executable and library and run them: ... false
- pkg_ctypes_foreign: .................................. /home/opam/.opam/4.14/lib/ctypes
- pkg_bigarray: ........................................ /home/opam/.opam/4.14/lib/ocaml
- 
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "setup.ml" "-build" (CWD=/home/opam/.opam/4.14/.opam-switch/build/gdal.0.9.0)
- File "./setup.ml", line 318, characters 20-36:
- 318 |     String.compare (String.lowercase s1) (String.lowercase s2)
-                           ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 318, characters 42-58:
- 318 |     String.compare (String.lowercase s1) (String.lowercase s2)
-                                                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 14-30:
- 327 |              (String.lowercase s1) = (String.lowercase s2)
-                     ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 38-54:
- 327 |              (String.lowercase s1) = (String.lowercase s2)
-                                             ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 330, characters 25-41:
- 330 |            Hashtbl.hash (String.lowercase s)
-                                ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 368, characters 10-26:
- 368 |           String.lowercase buf
-                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 474, characters 13-29:
- 474 |              String.lowercase
-                    ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 1381, characters 23-41:
- 1381 |          let compare = Pervasives.compare
-                               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "./setup.ml", line 1825, characters 16-33:
- 1825 |     concat dir (String.capitalize base)
-                        ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "./setup.ml", line 1831, characters 16-35:
- 1831 |     concat dir (String.uncapitalize base)
-                        ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 2916, characters 10-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2922, characters 10-21:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2925, characters 23-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2928, characters 20-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2931, characters 10-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2934, characters 16-28:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 15-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 32-42:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 48-61:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2936, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2937, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2938, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3088, characters 4-21:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3107, characters 24-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3109, characters 21-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 41-53:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 41-54:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 50-62:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 50-63:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3118, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3131, characters 15-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3229, characters 16-34:
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "setup.ml", line 5847, characters 11-28:
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "setup.ml", line 5848, characters 11-30:
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 6484, characters 33-42:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 6485, characters 36-45:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- W: Cannot find source file matching module 'gdal' in library gdal
- + ocamlfind ocamlc -config
- + ocamlfind ocamlopt unix.cmxa -I /home/opam/.opam/4.14/lib/ocamlbuild /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuildlib.cmxa -linkpkg myocamlbuild.ml /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- + ocamlfind ocamlc -config
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/alg.mli > src/alg.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/band.mli > src/band.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/data_set.mli > src/data_set.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/band.cmi src/band.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/driver.mli > src/driver.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/driver.cmi src/driver.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/geometry.mli > src/geometry.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/layer.mli > src/layer.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/feature.mli > src/feature.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/field.mli > src/field.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/geometry.cmi src/geometry.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/field.cmi src/field.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/spatial_reference.mli > src/spatial_reference.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/feature.cmi src/feature.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/spatial_reference.cmi src/spatial_reference.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/transform.mli > src/transform.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/data_set.cmi src/data_set.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/geo_transform.mli > src/geo_transform.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/geo_transform.cmi src/geo_transform.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/layer.cmi src/layer.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/transform.cmi src/transform.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/alg.cmi src/alg.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/alg.ml > src/alg.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/lib.mli > src/lib.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/t.ml > src/t.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/lib.cmi src/lib.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/t.cmo src/t.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/band.ml > src/band.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/data_set.ml > src/data_set.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/data_source.mli > src/data_source.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/data_source.cmi src/data_source.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/data_source.ml > src/data_source.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/driver.ml > src/driver.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/feature.ml > src/feature.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/field.ml > src/field.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/geometry.ml > src/geometry.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/geo_transform.ml > src/geo_transform.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/layer.ml > src/layer.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/lib.ml > src/lib.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/spatial_reference.ml > src/spatial_reference.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/transform.ml > src/transform.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/vsi.mli > src/vsi.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/vsi.cmi src/vsi.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/vsi.ml > src/vsi.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/warp.mli > src/warp.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/warp.cmi src/warp.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules src/warp.ml > src/warp.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/alg.cmo src/alg.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/alg.cmo src/alg.ml
- File "src/alg.ml", line 11, characters 16-28:
- 11 | let proximity ?(options = []) ~src:(sc, _) ~test:(tc, _) =
-                      ^^^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/band.cmo src/band.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/band.cmo src/band.ml
- File "src/band.ml", line 219, characters 11-23:
- 219 | let copy ?(options = []) ~src:(s, _) ~dst:(d, _) =
-                  ^^^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/data_set.cmo src/data_set.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/data_set.cmo src/data_set.ml
- File "src/data_set.ml", line 152, characters 11-23:
- 152 | let copy ?(options = []) ~src ~dst =
-                  ^^^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/data_source.cmo src/data_source.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/driver.cmo src/driver.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/feature.cmo src/feature.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/field.cmo src/field.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/geometry.cmo src/geometry.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/geo_transform.cmo src/geo_transform.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/layer.cmo src/layer.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/lib.cmo src/lib.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/lib.cmo src/lib.ml
- File "src/lib.ml", line 72, characters 19-25:
- 72 | let check_version ?caller ~major ~minor =
-                         ^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/spatial_reference.cmo src/spatial_reference.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/transform.cmo src/transform.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/vsi.cmo src/vsi.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -I src -o src/warp.cmo src/warp.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -pack -g -annot -bin-annot src/lib.cmo src/t.cmo src/band.cmo src/driver.cmo src/data_set.cmo src/geometry.cmo src/field.cmo src/feature.cmo src/spatial_reference.cmo src/layer.cmo src/geo_transform.cmo src/transform.cmo src/alg.cmo src/data_source.cmo src/vsi.cmo src/warp.cmo -o src/gdal.cmo
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -I src src/gdal.cmo -o src/gdal.cma
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/lib.cmx src/lib.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/lib.cmx src/lib.ml
- File "src/lib.ml", line 72, characters 19-25:
- 72 | let check_version ?caller ~major ~minor =
-                         ^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/t.cmx src/t.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/band.cmx src/band.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/band.cmx src/band.ml
- File "src/band.ml", line 219, characters 11-23:
- 219 | let copy ?(options = []) ~src:(s, _) ~dst:(d, _) =
-                  ^^^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/driver.cmx src/driver.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/geometry.cmx src/geometry.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/field.cmx src/field.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/feature.cmx src/feature.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/spatial_reference.cmx src/spatial_reference.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/data_set.cmx src/data_set.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/data_set.cmx src/data_set.ml
- File "src/data_set.ml", line 152, characters 11-23:
- 152 | let copy ?(options = []) ~src ~dst =
-                  ^^^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/geo_transform.cmx src/geo_transform.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/layer.cmx src/layer.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/transform.cmx src/transform.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/alg.cmx src/alg.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/alg.cmx src/alg.ml
- File "src/alg.ml", line 11, characters 16-28:
- 11 | let proximity ?(options = []) ~src:(sc, _) ~test:(tc, _) =
-                      ^^^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/data_source.cmx src/data_source.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/vsi.cmx src/vsi.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package ctypes.foreign -package bigarray -for-pack Gdal -I src -o src/warp.cmx src/warp.ml
- + touch src/gdal.mli  ; if  /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -pack -g -annot -bin-annot -I src src/lib.cmx src/t.cmx src/band.cmx src/driver.cmx src/data_set.cmx src/field.cmx src/geometry.cmx src/feature.cmx src/geo_transform.cmx src/spatial_reference.cmx src/layer.cmx src/transform.cmx src/alg.cmx src/data_source.cmx src/vsi.cmx src/warp.cmx -o src/gdal.cmx  ; then  rm -f src/gdal.mli  ; else  rm -f src/gdal.mli  ; exit 1; fi
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -I src src/gdal.cmx -o src/gdal.cmxa
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -shared -I src src/gdal.cmxa src/gdal.cmx -o src/gdal.cmxs
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules examples/sanity.ml > examples/sanity.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -I src -package ctypes.foreign -package bigarray -I examples -I src -o examples/sanity.cmo examples/sanity.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -I src -package ctypes.foreign -package bigarray -I examples -I src -o examples/sanity.cmx examples/sanity.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -linkpkg -g -linkpkg -package ctypes.foreign -package bigarray -I src -I examples src/gdal.cmxa examples/sanity.cmx -o examples/sanity.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules examples/warptut.ml > examples/warptut.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -I src -package ctypes.foreign -package bigarray -I examples -I src -o examples/warptut.cmo examples/warptut.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -I src -package ctypes.foreign -package bigarray -I examples -I src -o examples/warptut.cmx examples/warptut.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -linkpkg -g -linkpkg -package ctypes.foreign -package bigarray -I src -I examples src/gdal.cmxa examples/warptut.cmx -o examples/warptut.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules examples/warptut1.ml > examples/warptut1.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules examples/warptut1.mli > examples/warptut1.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -I src -package ctypes.foreign -package bigarray -I examples -I src -o examples/warptut1.cmi examples/warptut1.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -I src -package ctypes.foreign -package bigarray -I examples -I src -o examples/warptut1.cmx examples/warptut1.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -linkpkg -g -linkpkg -package ctypes.foreign -package bigarray -I src -I examples src/gdal.cmxa examples/warptut1.cmx -o examples/warptut1.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules examples/band_iter.ml > examples/band_iter.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -I src -package ctypes.foreign -package bigarray -I examples -I src -o examples/band_iter.cmo examples/band_iter.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -I src -package ctypes.foreign -package bigarray -I examples -I src -o examples/band_iter.cmx examples/band_iter.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -linkpkg -g -linkpkg -package ctypes.foreign -package bigarray -I src -I examples src/gdal.cmxa examples/band_iter.cmx -o examples/band_iter.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules examples/alg_test.ml > examples/alg_test.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -I src -package ctypes.foreign -package bigarray -I examples -I src -o examples/alg_test.cmo examples/alg_test.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -I src -package ctypes.foreign -package bigarray -I examples -I src -o examples/alg_test.cmx examples/alg_test.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -linkpkg -g -linkpkg -package ctypes.foreign -package bigarray -I src -I examples src/gdal.cmxa examples/alg_test.cmx -o examples/alg_test.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ctypes.foreign -package bigarray -modules examples/contour.ml > examples/contour.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -I src -package ctypes.foreign -package bigarray -I examples -I src -o examples/contour.cmo examples/contour.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -I src -package ctypes.foreign -package bigarray -I examples -I src -o examples/contour.cmx examples/contour.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -linkpkg -g -linkpkg -package ctypes.foreign -package bigarray -I src -I examples src/gdal.cmxa examples/contour.cmx -o examples/contour.native
- + ocamlfind ocamlopt unix.cmxa -I /home/opam/.opam/4.14/lib/ocamlbuild /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuildlib.cmxa -linkpkg myocamlbuild.ml /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- File "myocamlbuild.ml", line 155, characters 10-27:
- 155 |           Stream.of_channel chn
-                 ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 161, characters 10-21:
- 161 |           Stream.from
-                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 164, characters 23-34:
- 164 |                  match Stream.next st with
-                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 167, characters 20-34:
- 167 |                with Stream.Failure -> None)
-                           ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 170, characters 10-27:
- 170 |           Genlex.make_lexer ["="] st_line
-                 ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 173, characters 16-28:
- 173 |           match Stream.npeek 3 lexer with
-                       ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 174, characters 15-27:
- 174 |             | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
-                      ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 174, characters 32-42:
- 174 |             | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
-                                       ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 174, characters 48-61:
- 174 |             | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
-                                                       ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 175, characters 16-27:
- 175 |                 Stream.junk lexer;
-                       ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 176, characters 16-27:
- 176 |                 Stream.junk lexer;
-                       ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 177, characters 16-27:
- 177 |                 Stream.junk lexer;
-                       ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 518, characters 43-62:
- 518 |                        List.map (fun m -> (String.uncapitalize m) ^ ".cmi")
-                                                  ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Ocamlbuild_plugin.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "myocamlbuild.ml", line 531, characters 51-70:
- 531 |                        List.map (fun m -> dir^"/"^(String.uncapitalize m)^".cmi")
-                                                          ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Ocamlbuild_plugin.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
-> compiled  gdal.0.9.0
Processing  3/4: [gdal: ocamlfind remove]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "ocamlfind" "remove" "gdal" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/gdal.0.9.0)
- Removed /home/opam/.opam/4.14/lib/gdal/META
- Removed /home/opam/.opam/4.14/lib/gdal
-> removed   gdal.0.9.0
Processing  4/4: [gdal: ocaml setup.ml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "ocaml" "setup.ml" "-install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/gdal.0.9.0)
- File "./setup.ml", line 318, characters 20-36:
- 318 |     String.compare (String.lowercase s1) (String.lowercase s2)
-                           ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 318, characters 42-58:
- 318 |     String.compare (String.lowercase s1) (String.lowercase s2)
-                                                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 14-30:
- 327 |              (String.lowercase s1) = (String.lowercase s2)
-                     ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 38-54:
- 327 |              (String.lowercase s1) = (String.lowercase s2)
-                                             ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 330, characters 25-41:
- 330 |            Hashtbl.hash (String.lowercase s)
-                                ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 368, characters 10-26:
- 368 |           String.lowercase buf
-                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 474, characters 13-29:
- 474 |              String.lowercase
-                    ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 1381, characters 23-41:
- 1381 |          let compare = Pervasives.compare
-                               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "./setup.ml", line 1825, characters 16-33:
- 1825 |     concat dir (String.capitalize base)
-                        ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "./setup.ml", line 1831, characters 16-35:
- 1831 |     concat dir (String.uncapitalize base)
-                        ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 2916, characters 10-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2922, characters 10-21:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2925, characters 23-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2928, characters 20-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2931, characters 10-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2934, characters 16-28:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 15-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 32-42:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 48-61:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2936, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2937, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2938, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3088, characters 4-21:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3107, characters 24-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3109, characters 21-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 41-53:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 41-54:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 50-62:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 50-63:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3118, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3131, characters 15-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3229, characters 16-34:
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "setup.ml", line 5847, characters 11-28:
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "setup.ml", line 5848, characters 11-30:
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 6484, characters 33-42:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 6485, characters 36-45:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- Installed /home/opam/.opam/4.14/lib/gdal/alg.mli
- Installed /home/opam/.opam/4.14/lib/gdal/band.mli
- Installed /home/opam/.opam/4.14/lib/gdal/data_set.mli
- Installed /home/opam/.opam/4.14/lib/gdal/data_source.mli
- Installed /home/opam/.opam/4.14/lib/gdal/driver.mli
- Installed /home/opam/.opam/4.14/lib/gdal/feature.mli
- Installed /home/opam/.opam/4.14/lib/gdal/field.mli
- Installed /home/opam/.opam/4.14/lib/gdal/geometry.mli
- Installed /home/opam/.opam/4.14/lib/gdal/geo_transform.mli
- Installed /home/opam/.opam/4.14/lib/gdal/layer.mli
- Installed /home/opam/.opam/4.14/lib/gdal/lib.mli
- Installed /home/opam/.opam/4.14/lib/gdal/spatial_reference.mli
- Installed /home/opam/.opam/4.14/lib/gdal/transform.mli
- Installed /home/opam/.opam/4.14/lib/gdal/vsi.mli
- Installed /home/opam/.opam/4.14/lib/gdal/warp.mli
- Installed /home/opam/.opam/4.14/lib/gdal/gdal.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/gdal.cmi
- Installed /home/opam/.opam/4.14/lib/gdal/gdal.cma
- Installed /home/opam/.opam/4.14/lib/gdal/gdal.cmxa
- Installed /home/opam/.opam/4.14/lib/gdal/gdal.a
- Installed /home/opam/.opam/4.14/lib/gdal/gdal.cmxs
- Installed /home/opam/.opam/4.14/lib/gdal/warp.cmti
- Installed /home/opam/.opam/4.14/lib/gdal/warp.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/warp.annot
- Installed /home/opam/.opam/4.14/lib/gdal/vsi.cmti
- Installed /home/opam/.opam/4.14/lib/gdal/vsi.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/vsi.annot
- Installed /home/opam/.opam/4.14/lib/gdal/transform.cmti
- Installed /home/opam/.opam/4.14/lib/gdal/transform.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/transform.annot
- Installed /home/opam/.opam/4.14/lib/gdal/spatial_reference.cmti
- Installed /home/opam/.opam/4.14/lib/gdal/spatial_reference.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/spatial_reference.annot
- Installed /home/opam/.opam/4.14/lib/gdal/lib.cmti
- Installed /home/opam/.opam/4.14/lib/gdal/lib.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/lib.annot
- Installed /home/opam/.opam/4.14/lib/gdal/layer.cmti
- Installed /home/opam/.opam/4.14/lib/gdal/layer.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/layer.annot
- Installed /home/opam/.opam/4.14/lib/gdal/geo_transform.cmti
- Installed /home/opam/.opam/4.14/lib/gdal/geo_transform.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/geo_transform.annot
- Installed /home/opam/.opam/4.14/lib/gdal/geometry.cmti
- Installed /home/opam/.opam/4.14/lib/gdal/geometry.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/geometry.annot
- Installed /home/opam/.opam/4.14/lib/gdal/field.cmti
- Installed /home/opam/.opam/4.14/lib/gdal/field.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/field.annot
- Installed /home/opam/.opam/4.14/lib/gdal/feature.cmti
- Installed /home/opam/.opam/4.14/lib/gdal/feature.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/feature.annot
- Installed /home/opam/.opam/4.14/lib/gdal/driver.cmti
- Installed /home/opam/.opam/4.14/lib/gdal/driver.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/driver.annot
- Installed /home/opam/.opam/4.14/lib/gdal/data_source.cmti
- Installed /home/opam/.opam/4.14/lib/gdal/data_source.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/data_source.annot
- Installed /home/opam/.opam/4.14/lib/gdal/data_set.cmti
- Installed /home/opam/.opam/4.14/lib/gdal/data_set.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/data_set.annot
- Installed /home/opam/.opam/4.14/lib/gdal/band.cmti
- Installed /home/opam/.opam/4.14/lib/gdal/band.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/band.annot
- Installed /home/opam/.opam/4.14/lib/gdal/alg.cmti
- Installed /home/opam/.opam/4.14/lib/gdal/alg.cmt
- Installed /home/opam/.opam/4.14/lib/gdal/alg.annot
- Installed /home/opam/.opam/4.14/lib/gdal/gdal.cmx
- Installed /home/opam/.opam/4.14/lib/gdal/META
-> installed gdal.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:19.44 ---> saved as "421f05afe78cca101be213bcbd97e0658e955b5a22078c7df9f91f945f10a517"
Job succeeded
2026-04-11 03:19.55: Job succeeded