Build:
  1. 0
2026-03-10 10:16.36: New job: test 0install-gtk.2.15.2 with lwt_log.1.1.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (3af7d0a25910b3d20c909e559efb484eb6a78128)
                              on debian-13-ocaml-5.4/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/29530/head" && git reset --hard 3af7d0a2
git fetch origin master
git merge --no-edit 3c70647a78a7fd22066fca4f17f7ca4514500663
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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 lwt_log.1.1.2 1.1.2
RUN opam reinstall lwt_log.1.1.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" != 'lwt_log.1.1.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall 0install-gtk.2.15.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" != '0install-gtk.2.15.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test 0install-gtk.2.15.2) || true
RUN opam reinstall --with-test --verbose 0install-gtk.2.15.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" != '0install-gtk.2.15.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-03-10 10:16.36: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-lwt_log.1.1.2-0install-gtk.2.15.2-3af7d0a25910b3d20c909e559efb484eb6a78128"
2026-03-10 10:16.36: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
 (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 lwt_log.1.1.2 1.1.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall lwt_log.1.1.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\" != 'lwt_log.1.1.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 0install-gtk.2.15.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\" != '0install-gtk.2.15.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test 0install-gtk.2.15.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose 0install-gtk.2.15.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\" != '0install-gtk.2.15.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-10 10:16.36: Waiting for resource in pool OCluster
2026-03-10 12:49.46: Waiting for worker…
2026-03-10 12:52.20: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 3c70647a78 Merge pull request #29507 from NathanReb/release-ppxlib-0-38-0-5-5-preview
Updating 3c70647a78..3af7d0a259
Fast-forward
 packages/bimage-lwt/bimage-lwt.0.3.0/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.3.1/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.4.0/opam    | 6 +++++-
 packages/caqti-lwt/caqti-lwt.0.11.0/opam     | 4 +++-
 packages/caqti-lwt/caqti-lwt.1.0.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.2.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.3.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.6.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.7.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.8.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.9.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.0.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.1.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.2.4/opam      | 6 +++++-
 packages/fuseau-lwt/fuseau-lwt.0.1/opam      | 6 +++++-
 packages/lambda-term/lambda-term.1.13/opam   | 6 +++++-
 packages/lambda-term/lambda-term.2.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.2/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.3/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0/opam    | 6 +++++-
 packages/lambda-term/lambda-term.3.0.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.1.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.2.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.2/opam  | 6 +++++-
 packages/lwt_domain/lwt_domain.0.1.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.2.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.3.0/opam    | 6 +++++-
 packages/lwt_eio/lwt_eio.0.1/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.2/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.3/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.4/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.5.1/opam          | 6 +++++-
 packages/lwt_eio/lwt_eio.0.5/opam            | 6 +++++-
 packages/lwt_glib/lwt_glib.1.0.1/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.0/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.1/opam        | 6 +++++-
 packages/lwt_log/lwt_log.1.1.0/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.1/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.4/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.3/opam          | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.10/opam | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.6/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.7/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.8/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.9/opam  | 6 +++++-
 packages/mwt/mwt.0.1.0/opam                  | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-1/opam      | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-2/opam      | 6 +++++-
 packages/ocluster/ocluster.0.1/opam          | 4 +++-
 packages/ocluster/ocluster.0.2.1/opam        | 6 +++++-
 packages/ocluster/ocluster.0.2/opam          | 4 +++-
 packages/ocluster/ocluster.0.3.0/opam        | 6 +++++-
 packages/picos/picos.0.3.0/opam              | 6 +++++-
 packages/picos/picos.0.4.0/opam              | 6 +++++-
 packages/picos_lwt/picos_lwt.0.5.0/opam      | 6 +++++-
 packages/picos_lwt/picos_lwt.0.6.0/opam      | 6 +++++-
 packages/tezt/tezt.2.0.0/opam                | 6 +++++-
 packages/tezt/tezt.3.0.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.1/opam                | 4 +++-
 packages/tezt/tezt.4.0.0/opam                | 4 +++-
 packages/tezt/tezt.4.1.0/opam                | 4 +++-
 packages/tezt/tezt.4.2.0/opam                | 4 +++-
 packages/tezt/tezt.4.3.0/opam                | 4 +++-
 84 files changed, 400 insertions(+), 84 deletions(-)

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6' locally
docker.io/ocaml/opam@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6: Pulling from ocaml/opam
866771c43bf5: Already exists
1e49bea09367: Already exists
e793768537e6: Already exists
ed323d3d481a: Already exists
7df34a5cd5f1: Already exists
fd712d3eb935: Already exists
4b9fb8c99118: Already exists
9d9a01948b94: Already exists
0f1514f90b32: Already exists
e1ec5a753447: Already exists
03cc323e2f71: Already exists
c09c08ea9749: Already exists
b36b619f8e6b: Already exists
195344ca5274: Already exists
228ee78582a6: Already exists
504bde1c25b3: Already exists
9d8b1356c89f: Already exists
9d8b1356c89f: Already exists
568fb6dda155: Already exists
c499c9198aea: Already exists
048e5e358118: Already exists
871ca48eb45d: Already exists
4f4fb700ef54: Already exists
a5a2568b9df9: Already exists
068cf3106ac8: Already exists
559f54ec9b29: Already exists
798ffd96fde5: Already exists
e9a891bf80d7: Already exists
d720cfe12674: Already exists
c81c932f4a91: Already exists
79f24fa3bb11: Already exists
8c1debcd8c20: Already exists
1bb2cfea7250: Already exists
2b3d3ca75e4c: Already exists
557cacaf263c: Already exists
d10483022eef: Already exists
7b62a90d8223: Already exists
28ce8ea66e72: Already exists
d975909ea717: Already exists
5c215c69c247: Already exists
e7c082452a54: Already exists
f6cbd774d654: Pulling fs layer
b40777a84cca: Pulling fs layer
7bb5edb9c889: Pulling fs layer
020670bcefab: Pulling fs layer
46df05d0db83: Pulling fs layer
45bde7b38933: Pulling fs layer
b4d63fa01ada: Pulling fs layer
45bde7b38933: Waiting
020670bcefab: Waiting
b4d63fa01ada: Waiting
46df05d0db83: Waiting
b40777a84cca: Download complete
f6cbd774d654: Verifying Checksum
f6cbd774d654: Download complete
f6cbd774d654: Pull complete
7bb5edb9c889: Download complete
b40777a84cca: Pull complete
7bb5edb9c889: Pull complete
46df05d0db83: Download complete
45bde7b38933: Verifying Checksum
45bde7b38933: Download complete
b4d63fa01ada: Download complete
020670bcefab: Verifying Checksum
020670bcefab: Download complete
020670bcefab: Pull complete
46df05d0db83: Pull complete
45bde7b38933: Pull complete
b4d63fa01ada: Pull complete
Digest: sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
Status: Downloaded newer image for ocaml/opam@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
2026-03-10 12:52.22 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" 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-03-10 12:52.22 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-10 12:52.22 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" 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                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-03-10 12:52.22 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" 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-03-10 12:52.22 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-10 12:52.23 ---> using "52c89b29daf8dc8e652ea23e71ba1b962711acadbba3c2e62eb03840d2cdb33c" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-10 12:52.23 ---> using "698f7b9a59f3e94d594e9578cc0eddb97fcdde9249380c5eb42b65e7f6a5510d" 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 [108 kB]
- Fetched 199 kB in 0s (1151 kB/s)
- Reading package lists...
2026-03-10 12:52.23 ---> using "e3387ad80b9389081828964916f6a471c22f68cf0c6e7026ffa02d6472d41c9a" from cache

/home/opam: (run (shell "opam pin add -k version -yn lwt_log.1.1.2 1.1.2"))
lwt_log is now pinned to version 1.1.2
2026-03-10 12:52.23 ---> using "d18dc29d564b43715b188abda86b7dad1f584a6d6922e43310c7f372cc88e350" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lwt_log.1.1.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\" != 'lwt_log.1.1.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
lwt_log.1.1.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
  - install base-bytes        base           [required by ocplib-endian]
  - install cppo              1.8.0          [required by lwt]
  - install csexp             1.5.2          [required by dune-configurator]
  - install dune              3.21.1         [required by lwt_log]
  - install dune-configurator 3.21.1         [required by lwt]
  - install lwt               5.9.2          [required by lwt_log]
  - install lwt_log           1.1.2 (pinned)
  - install ocamlfind         1.9.8          [required by base-bytes]
  - install ocplib-endian     1.2            [required by lwt]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved lwt_log.1.1.2  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.21.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.21.1
-> installed lwt.5.9.2
-> installed lwt_log.1.1.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 12:52.23 ---> using "c7b2ad9bb34fca16dd75bb828c5e9b4064f837c8b46432baa022e8676699246d" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall 0install-gtk.2.15.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\" != '0install-gtk.2.15.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
0install-gtk.2.15.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 31 packages
  - install 0install            2.15.2   [required by 0install-gtk]
  - install 0install-gtk        2.15.2
  - install biniou              1.2.2    [required by yojson]
  - install camlp-streams       5.0.1    [required by lablgtk]
  - install conf-glib-2         1        [required by lwt_glib]
  - install conf-gtk2           1        [required by lablgtk]
  - install conf-libcurl        2        [required by ocurl]
  - install conf-pkg-config     4        [required by lwt_glib]
  - install easy-format         1.3.4    [required by yojson]
  - install lablgtk             2.18.14  [required by 0install-gtk]
  - install lwt_glib            1.1.1    [required by 0install-gtk]
  - install lwt_ppx             5.9.3    [required by obus, ocurl]
  - install lwt_react           1.2.0    [required by 0install]
  - install menhir              20260209 [required by obus]
  - install menhirCST           20260209 [required by menhir]
  - install menhirGLR           20260209 [required by menhir]
  - install menhirLib           20260209 [required by menhir]
  - install menhirSdk           20260209 [required by menhir]
  - install obus                1.2.5    [required by 0install]
  - install ocaml-compiler-libs v0.17.0  [required by ppxlib]
  - install ocamlbuild          0.16.1   [required by react, xmlm]
  - install ocurl               0.9.2    [required by 0install]
  - install ppx_derivers        1.2.1    [required by ppxlib]
  - install ppxlib              0.37.0   [required by obus]
  - install react               1.2.2    [required by lwt_react]
  - install sexplib0            v0.17.0  [required by ppxlib]
  - install sha                 1.15.4   [required by 0install]
  - install stdlib-shims        0.3.0    [required by sha]
  - install topkg               1.1.1    [required by react, xmlm]
  - install xmlm                1.4.0    [required by 0install]
  - install yojson              1.7.0    [required by 0install]

The following system packages will first need to be installed:
    gnupg libcurl4-gnutls-dev libexpat1-dev libglib2.0-dev libgtk2.0-dev pkg-config

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

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

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "gnupg" "libcurl4-gnutls-dev" "libexpat1-dev" "libglib2.0-dev" "libgtk2.0-dev" "pkg-config"
- Preconfiguring packages ...
- Selecting previously unselected package libdbus-1-3:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
- (Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20654 files and directories currently installed.)
- Preparing to unpack .../0-libdbus-1-3_1.16.2-2_amd64.deb ...
- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...
- Selecting previously unselected package dbus-bin.
- Preparing to unpack .../1-dbus-bin_1.16.2-2_amd64.deb ...
- Unpacking dbus-bin (1.16.2-2) ...
- Selecting previously unselected package dbus-session-bus-common.
- Preparing to unpack .../2-dbus-session-bus-common_1.16.2-2_all.deb ...
- Unpacking dbus-session-bus-common (1.16.2-2) ...
- Selecting previously unselected package dbus-daemon.
- Preparing to unpack .../3-dbus-daemon_1.16.2-2_amd64.deb ...
- Unpacking dbus-daemon (1.16.2-2) ...
- Selecting previously unselected package dbus-system-bus-common.
- Preparing to unpack .../4-dbus-system-bus-common_1.16.2-2_all.deb ...
- Unpacking dbus-system-bus-common (1.16.2-2) ...
- Selecting previously unselected package dbus.
- Preparing to unpack .../5-dbus_1.16.2-2_amd64.deb ...
- Unpacking dbus (1.16.2-2) ...
- Selecting previously unselected package libpython3.13-minimal:amd64.
- Preparing to unpack .../6-libpython3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-minimal:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13-minimal.
- Preparing to unpack .../7-python3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking python3.13-minimal (3.13.5-2) ...
- Setting up libpython3.13-minimal:amd64 (3.13.5-2) ...
- Setting up python3.13-minimal (3.13.5-2) ...
- Selecting previously unselected package python3-minimal.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21060 files and directories currently installed.)
- Preparing to unpack .../0-python3-minimal_3.13.5-1_amd64.deb ...
- Unpacking python3-minimal (3.13.5-1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../1-media-types_13.0.0_all.deb ...
- Unpacking media-types (13.0.0) ...
- Selecting previously unselected package readline-common.
- Preparing to unpack .../2-readline-common_8.2-6_all.deb ...
- Unpacking readline-common (8.2-6) ...
- Selecting previously unselected package libreadline8t64:amd64.
- Preparing to unpack .../3-libreadline8t64_8.2-6_amd64.deb ...
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
- Unpacking libreadline8t64:amd64 (8.2-6) ...
- Selecting previously unselected package libpython3.13-stdlib:amd64.
- Preparing to unpack .../4-libpython3.13-stdlib_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13.
- Preparing to unpack .../5-python3.13_3.13.5-2_amd64.deb ...
- Unpacking python3.13 (3.13.5-2) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../6-libpython3-stdlib_3.13.5-1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up python3-minimal (3.13.5-1) ...
- Selecting previously unselected package python3.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21546 files and directories currently installed.)
- Preparing to unpack .../000-python3_3.13.5-1_amd64.deb ...
- Unpacking python3 (3.13.5-1) ...
- Selecting previously unselected package sensible-utils.
- Preparing to unpack .../001-sensible-utils_0.0.25_all.deb ...
- Unpacking sensible-utils (0.0.25) ...
- Selecting previously unselected package libmagic-mgc.
- Preparing to unpack .../002-libmagic-mgc_1%3a5.46-5_amd64.deb ...
- Unpacking libmagic-mgc (1:5.46-5) ...
- Selecting previously unselected package libmagic1t64:amd64.
- Preparing to unpack .../003-libmagic1t64_1%3a5.46-5_amd64.deb ...
- Unpacking libmagic1t64:amd64 (1:5.46-5) ...
- Selecting previously unselected package file.
- Preparing to unpack .../004-file_1%3a5.46-5_amd64.deb ...
- Unpacking file (1:5.46-5) ...
- Selecting previously unselected package gettext-base.
- Preparing to unpack .../005-gettext-base_0.23.1-2_amd64.deb ...
- Unpacking gettext-base (0.23.1-2) ...
- Selecting previously unselected package libuchardet0:amd64.
- Preparing to unpack .../006-libuchardet0_0.0.8-1+b2_amd64.deb ...
- Unpacking libuchardet0:amd64 (0.0.8-1+b2) ...
- Selecting previously unselected package groff-base.
- Preparing to unpack .../007-groff-base_1.23.0-9_amd64.deb ...
- Unpacking groff-base (1.23.0-9) ...
- Selecting previously unselected package bsdextrautils.
- Preparing to unpack .../008-bsdextrautils_2.41-5_amd64.deb ...
- Unpacking bsdextrautils (2.41-5) ...
- Selecting previously unselected package libpipeline1:amd64.
- Preparing to unpack .../009-libpipeline1_1.5.8-1_amd64.deb ...
- Unpacking libpipeline1:amd64 (1.5.8-1) ...
- Selecting previously unselected package man-db.
- Preparing to unpack .../010-man-db_2.13.1-1_amd64.deb ...
- Unpacking man-db (2.13.1-1) ...
- Selecting previously unselected package libgdk-pixbuf2.0-common.
- Preparing to unpack .../011-libgdk-pixbuf2.0-common_2.42.12+dfsg-4_all.deb ...
- Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-4) ...
- Selecting previously unselected package libglib2.0-0t64:amd64.
- Preparing to unpack .../012-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../013-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../014-shared-mime-info_2.4-5+b2_amd64.deb ...
- Unpacking shared-mime-info (2.4-5+b2) ...
- Selecting previously unselected package libjpeg62-turbo:amd64.
- Preparing to unpack .../015-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libpng16-16t64:amd64.
- Preparing to unpack .../016-libpng16-16t64_1.6.48-1+deb13u3_amd64.deb ...
- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u3) ...
- Selecting previously unselected package libdeflate0:amd64.
- Preparing to unpack .../017-libdeflate0_1.23-2_amd64.deb ...
- Unpacking libdeflate0:amd64 (1.23-2) ...
- Selecting previously unselected package libjbig0:amd64.
- Preparing to unpack .../018-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 .../019-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 .../020-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 .../021-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 .../022-libtiff6_4.7.0-3+deb13u1_amd64.deb ...
- Unpacking libtiff6:amd64 (4.7.0-3+deb13u1) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64.
- Preparing to unpack .../023-libgdk-pixbuf-2.0-0_2.42.12+dfsg-4_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4) ...
- Selecting previously unselected package gtk-update-icon-cache.
- Preparing to unpack .../024-gtk-update-icon-cache_4.18.6+ds-2_amd64.deb ...
- No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed.
- No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed.
- Unpacking gtk-update-icon-cache (4.18.6+ds-2) ...
- Selecting previously unselected package hicolor-icon-theme.
- Preparing to unpack .../025-hicolor-icon-theme_0.18-2_all.deb ...
- Unpacking hicolor-icon-theme (0.18-2) ...
- Selecting previously unselected package adwaita-icon-theme.
- Preparing to unpack .../026-adwaita-icon-theme_48.1-1_all.deb ...
- Unpacking adwaita-icon-theme (48.1-1) ...
- Selecting previously unselected package at-spi2-common.
- Preparing to unpack .../027-at-spi2-common_2.56.2-1+deb13u1_all.deb ...
- Unpacking at-spi2-common (2.56.2-1+deb13u1) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../028-m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../029-autoconf_2.72-3.1_all.deb ...
- Unpacking autoconf (2.72-3.1) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../030-autotools-dev_20240727.1_all.deb ...
- Unpacking autotools-dev (20240727.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../031-automake_1%3a1.17-4_all.deb ...
- Unpacking automake (1:1.17-4) ...
- Selecting previously unselected package autopoint.
- Preparing to unpack .../032-autopoint_0.23.1-2_all.deb ...
- Unpacking autopoint (0.23.1-2) ...
- Selecting previously unselected package bzip2-doc.
- Preparing to unpack .../033-bzip2-doc_1.0.8-6_all.deb ...
- Unpacking bzip2-doc (1.0.8-6) ...
- Selecting previously unselected package comerr-dev:amd64.
- Preparing to unpack .../034-comerr-dev_2.1-1.47.2-3+b7_amd64.deb ...
- Unpacking comerr-dev:amd64 (2.1-1.47.2-3+b7) ...
- Selecting previously unselected package libdebhelper-perl.
- Preparing to unpack .../035-libdebhelper-perl_13.24.2_all.deb ...
- Unpacking libdebhelper-perl (13.24.2) ...
- Selecting previously unselected package libtool.
- Preparing to unpack .../036-libtool_2.5.4-4_all.deb ...
- Unpacking libtool (2.5.4-4) ...
- Selecting previously unselected package dh-autoreconf.
- Preparing to unpack .../037-dh-autoreconf_20_all.deb ...
- Unpacking dh-autoreconf (20) ...
- Selecting previously unselected package libarchive-zip-perl.
- Preparing to unpack .../038-libarchive-zip-perl_1.68-1_all.deb ...
- Unpacking libarchive-zip-perl (1.68-1) ...
- Selecting previously unselected package libfile-stripnondeterminism-perl.
- Preparing to unpack .../039-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ...
- Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ...
- Selecting previously unselected package dh-strip-nondeterminism.
- Preparing to unpack .../040-dh-strip-nondeterminism_1.14.1-2_all.deb ...
- Unpacking dh-strip-nondeterminism (1.14.1-2) ...
- Selecting previously unselected package libelf1t64:amd64.
- Preparing to unpack .../041-libelf1t64_0.192-4_amd64.deb ...
- Unpacking libelf1t64:amd64 (0.192-4) ...
- Selecting previously unselected package dwz.
- Preparing to unpack .../042-dwz_0.15-1+b1_amd64.deb ...
- Unpacking dwz (0.15-1+b1) ...
- Selecting previously unselected package gettext.
- Preparing to unpack .../043-gettext_0.23.1-2_amd64.deb ...
- Unpacking gettext (0.23.1-2) ...
- Selecting previously unselected package intltool-debian.
- Preparing to unpack .../044-intltool-debian_0.35.0+20060710.6_all.deb ...
- Unpacking intltool-debian (0.35.0+20060710.6) ...
- Selecting previously unselected package po-debconf.
- Preparing to unpack .../045-po-debconf_1.0.21+nmu1_all.deb ...
- Unpacking po-debconf (1.0.21+nmu1) ...
- Selecting previously unselected package debhelper.
- Preparing to unpack .../046-debhelper_13.24.2_all.deb ...
- Unpacking debhelper (13.24.2) ...
- Selecting previously unselected package libgpg-error0:amd64.
- Preparing to unpack .../047-libgpg-error0_1.51-4_amd64.deb ...
- Unpacking libgpg-error0:amd64 (1.51-4) ...
- Selecting previously unselected package libassuan9:amd64.
- Preparing to unpack .../048-libassuan9_3.0.2-2_amd64.deb ...
- Unpacking libassuan9:amd64 (3.0.2-2) ...
- Selecting previously unselected package libgcrypt20:amd64.
- Preparing to unpack .../049-libgcrypt20_1.11.0-7_amd64.deb ...
- Unpacking libgcrypt20:amd64 (1.11.0-7) ...
- Selecting previously unselected package gpgconf.
- Preparing to unpack .../050-gpgconf_2.4.7-21+deb13u1+b1_amd64.deb ...
- Unpacking gpgconf (2.4.7-21+deb13u1+b1) ...
- Selecting previously unselected package libksba8:amd64.
- Preparing to unpack .../051-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 .../052-libnpth0t64_1.8-3_amd64.deb ...
- Unpacking libnpth0t64:amd64 (1.8-3) ...
- Selecting previously unselected package dirmngr.
- Preparing to unpack .../053-dirmngr_2.4.7-21+deb13u1+b1_amd64.deb ...
- Unpacking dirmngr (2.4.7-21+deb13u1+b1) ...
- Selecting previously unselected package libfreetype6:amd64.
- Preparing to unpack .../054-libfreetype6_2.13.3+dfsg-1_amd64.deb ...
- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1) ...
- Selecting previously unselected package fonts-dejavu-mono.
- Preparing to unpack .../055-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 .../056-fonts-dejavu-core_2.37-8_all.deb ...
- Unpacking fonts-dejavu-core (2.37-8) ...
- Selecting previously unselected package fontconfig-config.
- Preparing to unpack .../057-fontconfig-config_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig-config (2.15.0-2.3) ...
- Selecting previously unselected package libfontconfig1:amd64.
- Preparing to unpack .../058-libfontconfig1_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package fontconfig.
- Preparing to unpack .../059-fontconfig_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig (2.15.0-2.3) ...
- Selecting previously unselected package gir1.2-glib-2.0:amd64.
- Preparing to unpack .../060-gir1.2-glib-2.0_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking gir1.2-glib-2.0:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libatk1.0-0t64:amd64.
- Preparing to unpack .../061-libatk1.0-0t64_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatk1.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package gir1.2-atk-1.0:amd64.
- Preparing to unpack .../062-gir1.2-atk-1.0_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking gir1.2-atk-1.0:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../063-libpixman-1-0_0.44.0-3_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...
- Selecting previously unselected package libxcb-render0:amd64.
- Preparing to unpack .../064-libxcb-render0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../065-libxcb-shm0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../066-libxrender1_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libcairo2:amd64.
- Preparing to unpack .../067-libcairo2_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package libcairo-gobject2:amd64.
- Preparing to unpack .../068-libcairo-gobject2_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo-gobject2:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package gir1.2-freedesktop:amd64.
- Preparing to unpack .../069-gir1.2-freedesktop_1.84.0-1_amd64.deb ...
- Unpacking gir1.2-freedesktop:amd64 (1.84.0-1) ...
- Selecting previously unselected package gir1.2-glib-2.0-dev:amd64.
- Preparing to unpack .../070-gir1.2-glib-2.0-dev_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking gir1.2-glib-2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package gir1.2-freedesktop-dev:amd64.
- Preparing to unpack .../071-gir1.2-freedesktop-dev_1.84.0-1_amd64.deb ...
- Unpacking gir1.2-freedesktop-dev:amd64 (1.84.0-1) ...
- Selecting previously unselected package gir1.2-gdkpixbuf-2.0:amd64.
- Preparing to unpack .../072-gir1.2-gdkpixbuf-2.0_2.42.12+dfsg-4_amd64.deb ...
- Unpacking gir1.2-gdkpixbuf-2.0:amd64 (2.42.12+dfsg-4) ...
- Selecting previously unselected package libgtk2.0-common.
- Preparing to unpack .../073-libgtk2.0-common_2.24.33-7_all.deb ...
- Unpacking libgtk2.0-common (2.24.33-7) ...
- Selecting previously unselected package libgraphite2-3:amd64.
- Preparing to unpack .../074-libgraphite2-3_1.3.14-2+b1_amd64.deb ...
- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...
- Selecting previously unselected package libharfbuzz0b:amd64.
- Preparing to unpack .../075-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libharfbuzz-gobject0:amd64.
- Preparing to unpack .../076-libharfbuzz-gobject0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-gobject0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package gir1.2-harfbuzz-0.0:amd64.
- Preparing to unpack .../077-gir1.2-harfbuzz-0.0_10.2.0-1+b1_amd64.deb ...
- Unpacking gir1.2-harfbuzz-0.0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libfribidi0:amd64.
- Preparing to unpack .../078-libfribidi0_1.0.16-1_amd64.deb ...
- Unpacking libfribidi0:amd64 (1.0.16-1) ...
- Selecting previously unselected package libthai-data.
- Preparing to unpack .../079-libthai-data_0.1.29-2_all.deb ...
- Unpacking libthai-data (0.1.29-2) ...
- Selecting previously unselected package libdatrie1:amd64.
- Preparing to unpack .../080-libdatrie1_0.2.13-3+b1_amd64.deb ...
- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...
- Selecting previously unselected package libthai0:amd64.
- Preparing to unpack .../081-libthai0_0.1.29-2+b1_amd64.deb ...
- Unpacking libthai0:amd64 (0.1.29-2+b1) ...
- Selecting previously unselected package libpango-1.0-0:amd64.
- Preparing to unpack .../082-libpango-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libpangoft2-1.0-0:amd64.
- Preparing to unpack .../083-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libpangocairo-1.0-0:amd64.
- Preparing to unpack .../084-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libxft2:amd64.
- Preparing to unpack .../085-libxft2_2.3.6-1+b4_amd64.deb ...
- Unpacking libxft2:amd64 (2.3.6-1+b4) ...
- Selecting previously unselected package libpangoxft-1.0-0:amd64.
- Preparing to unpack .../086-libpangoxft-1.0-0_1.56.3-1_amd64.deb ...
- Unpacking libpangoxft-1.0-0:amd64 (1.56.3-1) ...
- Selecting previously unselected package gir1.2-pango-1.0:amd64.
- Preparing to unpack .../087-gir1.2-pango-1.0_1.56.3-1_amd64.deb ...
- Unpacking gir1.2-pango-1.0:amd64 (1.56.3-1) ...
- Selecting previously unselected package libavahi-common-data:amd64.
- Preparing to unpack .../088-libavahi-common-data_0.8-16_amd64.deb ...
- Unpacking libavahi-common-data:amd64 (0.8-16) ...
- Selecting previously unselected package libavahi-common3:amd64.
- Preparing to unpack .../089-libavahi-common3_0.8-16_amd64.deb ...
- Unpacking libavahi-common3:amd64 (0.8-16) ...
- Selecting previously unselected package libavahi-client3:amd64.
- Preparing to unpack .../090-libavahi-client3_0.8-16_amd64.deb ...
- Unpacking libavahi-client3:amd64 (0.8-16) ...
- Selecting previously unselected package libcups2t64:amd64.
- Preparing to unpack .../091-libcups2t64_2.4.10-3+deb13u2_amd64.deb ...
- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u2) ...
- Selecting previously unselected package libxcomposite1:amd64.
- Preparing to unpack .../092-libxcomposite1_1%3a0.4.6-1_amd64.deb ...
- Unpacking libxcomposite1:amd64 (1:0.4.6-1) ...
- Selecting previously unselected package libxfixes3:amd64.
- Preparing to unpack .../093-libxfixes3_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxcursor1:amd64.
- Preparing to unpack .../094-libxcursor1_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxcursor1:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libxdamage1:amd64.
- Preparing to unpack .../095-libxdamage1_1%3a1.1.6-1+b2_amd64.deb ...
- Unpacking libxdamage1:amd64 (1:1.1.6-1+b2) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../096-libxi6_2%3a1.8.2-1_amd64.deb ...
- Unpacking libxi6:amd64 (2:1.8.2-1) ...
- Selecting previously unselected package libxinerama1:amd64.
- Preparing to unpack .../097-libxinerama1_2%3a1.1.4-3+b4_amd64.deb ...
- Unpacking libxinerama1:amd64 (2:1.1.4-3+b4) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../098-libxrandr2_2%3a1.5.4-1+b3_amd64.deb ...
- Unpacking libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Selecting previously unselected package libgtk2.0-0t64:amd64.
- Preparing to unpack .../099-libgtk2.0-0t64_2.24.33-7_amd64.deb ...
- Unpacking libgtk2.0-0t64:amd64 (2.24.33-7) ...
- Selecting previously unselected package gir1.2-gtk-2.0:amd64.
- Preparing to unpack .../100-gir1.2-gtk-2.0_2.24.33-7_amd64.deb ...
- Unpacking gir1.2-gtk-2.0:amd64 (2.24.33-7) ...
- Selecting previously unselected package native-architecture.
- Preparing to unpack .../101-native-architecture_0.2.6_all.deb ...
- Unpacking native-architecture (0.2.6) ...
- Selecting previously unselected package libgirepository-2.0-0:amd64.
- Preparing to unpack .../102-libgirepository-2.0-0_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libgirepository-2.0-0:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package girepository-tools:amd64.
- Preparing to unpack .../103-girepository-tools_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking girepository-tools:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package gnome-accessibility-themes.
- Preparing to unpack .../104-gnome-accessibility-themes_3.28-4_all.deb ...
- Unpacking gnome-accessibility-themes (3.28-4) ...
- Selecting previously unselected package gnome-themes-extra-data.
- Preparing to unpack .../105-gnome-themes-extra-data_3.28-4_all.deb ...
- Unpacking gnome-themes-extra-data (3.28-4) ...
- Selecting previously unselected package gtk2-engines-pixbuf:amd64.
- Preparing to unpack .../106-gtk2-engines-pixbuf_2.24.33-7_amd64.deb ...
- Unpacking gtk2-engines-pixbuf:amd64 (2.24.33-7) ...
- Selecting previously unselected package gnome-themes-extra:amd64.
- Preparing to unpack .../107-gnome-themes-extra_3.28-4_amd64.deb ...
- Unpacking gnome-themes-extra:amd64 (3.28-4) ...
- Selecting previously unselected package gnupg-l10n.
- Preparing to unpack .../108-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 .../109-gpg_2.4.7-21+deb13u1+b1_amd64.deb ...
- Unpacking gpg (2.4.7-21+deb13u1+b1) ...
- Selecting previously unselected package pinentry-curses.
- Preparing to unpack .../110-pinentry-curses_1.3.1-2_amd64.deb ...
- Unpacking pinentry-curses (1.3.1-2) ...
- Selecting previously unselected package gpg-agent.
- Preparing to unpack .../111-gpg-agent_2.4.7-21+deb13u1+b1_amd64.deb ...
- Unpacking gpg-agent (2.4.7-21+deb13u1+b1) ...
- Selecting previously unselected package gpgsm.
- Preparing to unpack .../112-gpgsm_2.4.7-21+deb13u1+b1_amd64.deb ...
- Unpacking gpgsm (2.4.7-21+deb13u1+b1) ...
- Selecting previously unselected package gnupg.
- Preparing to unpack .../113-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 .../114-gpg-wks-client_2.4.7-21+deb13u1+b1_amd64.deb ...
- Unpacking gpg-wks-client (2.4.7-21+deb13u1+b1) ...
- Selecting previously unselected package gpgv.
- Preparing to unpack .../115-gpgv_2.4.7-21+deb13u1+b1_amd64.deb ...
- Unpacking gpgv (2.4.7-21+deb13u1+b1) ...
- Selecting previously unselected package libicu76:amd64.
- Preparing to unpack .../116-libicu76_76.1-4_amd64.deb ...
- Unpacking libicu76:amd64 (76.1-4) ...
- Selecting previously unselected package icu-devtools.
- Preparing to unpack .../117-icu-devtools_76.1-4_amd64.deb ...
- Unpacking icu-devtools (76.1-4) ...
- Selecting previously unselected package libgssrpc4t64:amd64.
- Preparing to unpack .../118-libgssrpc4t64_1.21.3-5_amd64.deb ...
- Unpacking libgssrpc4t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5clnt-mit12:amd64.
- Preparing to unpack .../119-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 .../120-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 .../121-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 .../122-krb5-multidev_1.21.3-5_amd64.deb ...
- Unpacking krb5-multidev:amd64 (1.21.3-5) ...
- Selecting previously unselected package libarchive-cpio-perl.
- Preparing to unpack .../123-libarchive-cpio-perl_0.10-3_all.deb ...
- Unpacking libarchive-cpio-perl (0.10-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../124-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../125-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../126-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../127-libffi-dev_3.4.8-2_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.8-2) ...
- Selecting previously unselected package uuid-dev:amd64.
- Preparing to unpack .../128-uuid-dev_2.41-5_amd64.deb ...
- Unpacking uuid-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libblkid-dev:amd64.
- Preparing to unpack .../129-libblkid-dev_2.41-5_amd64.deb ...
- Unpacking libblkid-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libsepol-dev:amd64.
- Preparing to unpack .../130-libsepol-dev_3.8.1-1_amd64.deb ...
- Unpacking libsepol-dev:amd64 (3.8.1-1) ...
- Selecting previously unselected package libpcre2-16-0:amd64.
- Preparing to unpack .../131-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 .../132-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 .../133-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 .../134-libpcre2-dev_10.46-1~deb13u1_amd64.deb ...
- Unpacking libpcre2-dev:amd64 (10.46-1~deb13u1) ...
- Selecting previously unselected package libselinux1-dev:amd64.
- Preparing to unpack .../135-libselinux1-dev_3.8.1-1_amd64.deb ...
- Unpacking libselinux1-dev:amd64 (3.8.1-1) ...
- Selecting previously unselected package libmount-dev:amd64.
- Preparing to unpack .../136-libmount-dev_2.41-5_amd64.deb ...
- Unpacking libmount-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libsysprof-capture-4-dev:amd64.
- Preparing to unpack .../137-libsysprof-capture-4-dev_48.0-2_amd64.deb ...
- Unpacking libsysprof-capture-4-dev:amd64 (48.0-2) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../138-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package libgio-2.0-dev:amd64.
- Preparing to unpack .../139-libgio-2.0-dev_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libgio-2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../140-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...
- Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libglib2.0-bin.
- Preparing to unpack .../141-libglib2.0-bin_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libglib2.0-bin (2.84.4-3~deb13u2) ...
- Selecting previously unselected package python3-packaging.
- Preparing to unpack .../142-python3-packaging_25.0-1_all.deb ...
- Unpacking python3-packaging (25.0-1) ...
- Selecting previously unselected package libgio-2.0-dev-bin.
- Preparing to unpack .../143-libgio-2.0-dev-bin_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libgio-2.0-dev-bin (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libglib2.0-dev-bin.
- Preparing to unpack .../144-libglib2.0-dev-bin_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libglib2.0-dev-bin (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libglib2.0-dev:amd64.
- Preparing to unpack .../145-libglib2.0-dev_2.84.4-3~deb13u2_amd64.deb ...
- Unpacking libglib2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Selecting previously unselected package libatk1.0-dev:amd64.
- Preparing to unpack .../146-libatk1.0-dev_2.56.2-1+deb13u1_amd64.deb ...
- Unpacking libatk1.0-dev:amd64 (2.56.2-1+deb13u1) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../147-libbrotli-dev_1.1.0-2+b7_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Selecting previously unselected package libbz2-dev:amd64.
- Preparing to unpack .../148-libbz2-dev_1.0.8-6_amd64.deb ...
- Unpacking libbz2-dev:amd64 (1.0.8-6) ...
- Selecting previously unselected package liblzo2-2:amd64.
- Preparing to unpack .../149-liblzo2-2_2.10-3+b1_amd64.deb ...
- Unpacking liblzo2-2:amd64 (2.10-3+b1) ...
- Selecting previously unselected package libcairo-script-interpreter2:amd64.
- Preparing to unpack .../150-libcairo-script-interpreter2_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo-script-interpreter2:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package libexpat1-dev:amd64.
- Preparing to unpack .../151-libexpat1-dev_2.7.1-2_amd64.deb ...
- Unpacking libexpat1-dev:amd64 (2.7.1-2) ...
- Selecting previously unselected package libpng-dev:amd64.
- Preparing to unpack .../152-libpng-dev_1.6.48-1+deb13u3_amd64.deb ...
- Unpacking libpng-dev:amd64 (1.6.48-1+deb13u3) ...
- Selecting previously unselected package libfreetype-dev:amd64.
- Preparing to unpack .../153-libfreetype-dev_2.13.3+dfsg-1_amd64.deb ...
- Unpacking libfreetype-dev:amd64 (2.13.3+dfsg-1) ...
- Selecting previously unselected package libfontconfig-dev:amd64.
- Preparing to unpack .../154-libfontconfig-dev_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig-dev:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package libpixman-1-dev:amd64.
- Preparing to unpack .../155-libpixman-1-dev_0.44.0-3_amd64.deb ...
- Unpacking libpixman-1-dev:amd64 (0.44.0-3) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../156-x11-common_1%3a7.7+24+deb13u1_all.deb ...
- Unpacking x11-common (1:7.7+24+deb13u1) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../157-libice6_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice6:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../158-libsm6_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libice-dev:amd64.
- Preparing to unpack .../159-libice-dev_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice-dev:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package libsm-dev:amd64.
- Preparing to unpack .../160-libsm-dev_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm-dev:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libxcb-render0-dev:amd64.
- Preparing to unpack .../161-libxcb-render0-dev_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-render0-dev:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-shm0-dev:amd64.
- Preparing to unpack .../162-libxcb-shm0-dev_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-shm0-dev:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxext-dev:amd64.
- Preparing to unpack .../163-libxext-dev_2%3a1.3.4-1+b3_amd64.deb ...
- Unpacking libxext-dev:amd64 (2:1.3.4-1+b3) ...
- Selecting previously unselected package libxrender-dev:amd64.
- Preparing to unpack .../164-libxrender-dev_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender-dev:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libcairo2-dev:amd64.
- Preparing to unpack .../165-libcairo2-dev_1.18.4-1+b1_amd64.deb ...
- Unpacking libcairo2-dev:amd64 (1.18.4-1+b1) ...
- Selecting previously unselected package libevent-2.1-7t64:amd64.
- Preparing to unpack .../166-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 .../167-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 .../168-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 .../169-libgnutls-openssl27t64_3.8.9-3+deb13u2_amd64.deb ...
- Unpacking libgnutls-openssl27t64:amd64 (3.8.9-3+deb13u2) ...
- Selecting previously unselected package libidn2-dev:amd64.
- Preparing to unpack .../170-libidn2-dev_2.3.8-2_amd64.deb ...
- Unpacking libidn2-dev:amd64 (2.3.8-2) ...
- Selecting previously unselected package libp11-kit-dev:amd64.
- Preparing to unpack .../171-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 .../172-libtasn1-6-dev_4.20.0-2_amd64.deb ...
- Unpacking libtasn1-6-dev:amd64 (4.20.0-2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../173-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 .../174-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package nettle-dev:amd64.
- Preparing to unpack .../175-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 .../176-libgnutls28-dev_3.8.9-3+deb13u2_amd64.deb ...
- Unpacking libgnutls28-dev:amd64 (3.8.9-3+deb13u2) ...
- Selecting previously unselected package libkrb5-dev:amd64.
- Preparing to unpack .../177-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 .../178-libldap-dev_2.6.10+dfsg-1_amd64.deb ...
- Unpacking libldap-dev:amd64 (2.6.10+dfsg-1) ...
- Selecting previously unselected package libnghttp2-dev:amd64.
- Preparing to unpack .../179-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 .../180-libnghttp3-dev_1.8.0-1_amd64.deb ...
- Unpacking libnghttp3-dev:amd64 (1.8.0-1) ...
- Selecting previously unselected package libngtcp2-crypto-gnutls-dev:amd64.
- Preparing to unpack .../181-libngtcp2-crypto-gnutls-dev_1.11.0-1_amd64.deb ...
- Unpacking libngtcp2-crypto-gnutls-dev:amd64 (1.11.0-1) ...
- Selecting previously unselected package libngtcp2-dev:amd64.
- Preparing to unpack .../182-libngtcp2-dev_1.11.0-1_amd64.deb ...
- Unpacking libngtcp2-dev:amd64 (1.11.0-1) ...
- Selecting previously unselected package libpsl-dev:amd64.
- Preparing to unpack .../183-libpsl-dev_0.21.2-1.1+b1_amd64.deb ...
- Unpacking libpsl-dev:amd64 (0.21.2-1.1+b1) ...
- Selecting previously unselected package librtmp-dev:amd64.
- Preparing to unpack .../184-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 libssl-dev:amd64.
- Preparing to unpack .../185-libssl-dev_3.5.4-1~deb13u2_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.5.4-1~deb13u2) ...
- Selecting previously unselected package libssh2-1-dev:amd64.
- Preparing to unpack .../186-libssh2-1-dev_1.11.1-1_amd64.deb ...
- Unpacking libssh2-1-dev:amd64 (1.11.1-1) ...
- Selecting previously unselected package libcurl4-gnutls-dev:amd64.
- Preparing to unpack .../187-libcurl4-gnutls-dev_8.14.1-2+deb13u2_amd64.deb ...
- Unpacking libcurl4-gnutls-dev:amd64 (8.14.1-2+deb13u2) ...
- Selecting previously unselected package libdatrie-dev:amd64.
- Preparing to unpack .../188-libdatrie-dev_0.2.13-3+b1_amd64.deb ...
- Unpacking libdatrie-dev:amd64 (0.2.13-3+b1) ...
- Selecting previously unselected package libdav1d7:amd64.
- Preparing to unpack .../189-libdav1d7_1.5.1-1_amd64.deb ...
- Unpacking libdav1d7:amd64 (1.5.1-1) ...
- Selecting previously unselected package libdeflate-dev:amd64.
- Preparing to unpack .../190-libdeflate-dev_1.23-2_amd64.deb ...
- Unpacking libdeflate-dev:amd64 (1.23-2) ...
- Selecting previously unselected package libfribidi-dev:amd64.
- Preparing to unpack .../191-libfribidi-dev_1.0.16-1_amd64.deb ...
- Unpacking libfribidi-dev:amd64 (1.0.16-1) ...
- Selecting previously unselected package libgail18t64:amd64.
- Preparing to unpack .../192-libgail18t64_2.24.33-7_amd64.deb ...
- Unpacking libgail18t64:amd64 (2.24.33-7) ...
- Selecting previously unselected package libgail-common:amd64.
- Preparing to unpack .../193-libgail-common_2.24.33-7_amd64.deb ...
- Unpacking libgail-common:amd64 (2.24.33-7) ...
- Selecting previously unselected package libgdk-pixbuf2.0-bin.
- Preparing to unpack .../194-libgdk-pixbuf2.0-bin_2.42.12+dfsg-4_amd64.deb ...
- Unpacking libgdk-pixbuf2.0-bin (2.42.12+dfsg-4) ...
- Selecting previously unselected package libjpeg62-turbo-dev:amd64.
- Preparing to unpack .../195-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 .../196-libjpeg-dev_1%3a2.1.5-4_amd64.deb ...
- Unpacking libjpeg-dev:amd64 (1:2.1.5-4) ...
- Selecting previously unselected package libjbig-dev:amd64.
- Preparing to unpack .../197-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 .../198-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 .../199-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 .../200-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 .../201-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 .../202-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 .../203-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 .../204-libtiffxx6_4.7.0-3+deb13u1_amd64.deb ...
- Unpacking libtiffxx6:amd64 (4.7.0-3+deb13u1) ...
- Selecting previously unselected package liblerc-dev:amd64.
- Preparing to unpack .../205-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 .../206-libtiff-dev_4.7.0-3+deb13u1_amd64.deb ...
- Unpacking libtiff-dev:amd64 (4.7.0-3+deb13u1) ...
- Selecting previously unselected package libgdk-pixbuf-2.0-dev:amd64.
- Preparing to unpack .../207-libgdk-pixbuf-2.0-dev_2.42.12+dfsg-4_amd64.deb ...
- Unpacking libgdk-pixbuf-2.0-dev:amd64 (2.42.12+dfsg-4) ...
- Selecting previously unselected package libgpg-error-l10n.
- Preparing to unpack .../208-libgpg-error-l10n_1.51-4_all.deb ...
- Unpacking libgpg-error-l10n (1.51-4) ...
- Selecting previously unselected package libgraphite2-dev:amd64.
- Preparing to unpack .../209-libgraphite2-dev_1.3.14-2+b1_amd64.deb ...
- Unpacking libgraphite2-dev:amd64 (1.3.14-2+b1) ...
- Selecting previously unselected package libgtk2.0-bin.
- Preparing to unpack .../210-libgtk2.0-bin_2.24.33-7_amd64.deb ...
- Unpacking libgtk2.0-bin (2.24.33-7) ...
- Selecting previously unselected package libharfbuzz-icu0:amd64.
- Preparing to unpack .../211-libharfbuzz-icu0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-icu0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libharfbuzz-subset0:amd64.
- Preparing to unpack .../212-libharfbuzz-subset0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-subset0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libharfbuzz-cairo0:amd64.
- Preparing to unpack .../213-libharfbuzz-cairo0_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-cairo0:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libicu-dev:amd64.
- Preparing to unpack .../214-libicu-dev_76.1-4_amd64.deb ...
- Unpacking libicu-dev:amd64 (76.1-4) ...
- Selecting previously unselected package libharfbuzz-dev:amd64.
- Preparing to unpack .../215-libharfbuzz-dev_10.2.0-1+b1_amd64.deb ...
- Unpacking libharfbuzz-dev:amd64 (10.2.0-1+b1) ...
- Selecting previously unselected package libthai-dev:amd64.
- Preparing to unpack .../216-libthai-dev_0.1.29-2+b1_amd64.deb ...
- Unpacking libthai-dev:amd64 (0.1.29-2+b1) ...
- Selecting previously unselected package libxft-dev:amd64.
- Preparing to unpack .../217-libxft-dev_2.3.6-1+b4_amd64.deb ...
- Unpacking libxft-dev:amd64 (2.3.6-1+b4) ...
- Selecting previously unselected package pango1.0-tools.
- Preparing to unpack .../218-pango1.0-tools_1.56.3-1_amd64.deb ...
- Unpacking pango1.0-tools (1.56.3-1) ...
- Selecting previously unselected package libpango1.0-dev:amd64.
- Preparing to unpack .../219-libpango1.0-dev_1.56.3-1_amd64.deb ...
- Unpacking libpango1.0-dev:amd64 (1.56.3-1) ...
- Selecting previously unselected package libxinerama-dev:amd64.
- Preparing to unpack .../220-libxinerama-dev_2%3a1.1.4-3+b4_amd64.deb ...
- Unpacking libxinerama-dev:amd64 (2:1.1.4-3+b4) ...
- Selecting previously unselected package libxfixes-dev:amd64.
- Preparing to unpack .../221-libxfixes-dev_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes-dev:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxi-dev:amd64.
- Preparing to unpack .../222-libxi-dev_2%3a1.8.2-1_amd64.deb ...
- Unpacking libxi-dev:amd64 (2:1.8.2-1) ...
- Selecting previously unselected package libxrandr-dev:amd64.
- Preparing to unpack .../223-libxrandr-dev_2%3a1.5.4-1+b3_amd64.deb ...
- Unpacking libxrandr-dev:amd64 (2:1.5.4-1+b3) ...
- Selecting previously unselected package libxcursor-dev:amd64.
- Preparing to unpack .../224-libxcursor-dev_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxcursor-dev:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libxcomposite-dev:amd64.
- Preparing to unpack .../225-libxcomposite-dev_1%3a0.4.6-1_amd64.deb ...
- Unpacking libxcomposite-dev:amd64 (1:0.4.6-1) ...
- Selecting previously unselected package libxdamage-dev:amd64.
- Preparing to unpack .../226-libxdamage-dev_1%3a1.1.6-1+b2_amd64.deb ...
- Unpacking libxdamage-dev:amd64 (1:1.1.6-1+b2) ...
- Selecting previously unselected package libxml2-utils.
- Preparing to unpack .../227-libxml2-utils_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2-utils (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libgtk2.0-dev:amd64.
- Preparing to unpack .../228-libgtk2.0-dev_2.24.33-7_amd64.deb ...
- Unpacking libgtk2.0-dev:amd64 (2.24.33-7) ...
- Selecting previously unselected package libltdl7:amd64.
- Preparing to unpack .../229-libltdl7_2.5.4-4_amd64.deb ...
- Unpacking libltdl7:amd64 (2.5.4-4) ...
- Selecting previously unselected package libltdl-dev:amd64.
- Preparing to unpack .../230-libltdl-dev_2.5.4-4_amd64.deb ...
- Unpacking libltdl-dev:amd64 (2.5.4-4) ...
- Selecting previously unselected package libsys-hostname-long-perl.
- Preparing to unpack .../231-libsys-hostname-long-perl_1.5-3_all.deb ...
- Unpacking libsys-hostname-long-perl (1.5-3) ...
- Selecting previously unselected package libmail-sendmail-perl.
- Preparing to unpack .../232-libmail-sendmail-perl_0.80-3_all.deb ...
- Unpacking libmail-sendmail-perl (0.80-3) ...
- Selecting previously unselected package libpng-tools.
- Preparing to unpack .../233-libpng-tools_1.6.48-1+deb13u3_amd64.deb ...
- Unpacking libpng-tools (1.6.48-1+deb13u3) ...
- Selecting previously unselected package librsvg2-2:amd64.
- Preparing to unpack .../234-librsvg2-2_2.60.0+dfsg-1_amd64.deb ...
- Unpacking librsvg2-2:amd64 (2.60.0+dfsg-1) ...
- Selecting previously unselected package librsvg2-common:amd64.
- Preparing to unpack .../235-librsvg2-common_2.60.0+dfsg-1_amd64.deb ...
- Unpacking librsvg2-common:amd64 (2.60.0+dfsg-1) ...
- Selecting previously unselected package libtasn1-doc.
- Preparing to unpack .../236-libtasn1-doc_4.20.0-2_all.deb ...
- Unpacking libtasn1-doc (4.20.0-2) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../237-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../238-xdg-user-dirs_0.18-2_amd64.deb ...
- Unpacking xdg-user-dirs (0.18-2) ...
- Selecting previously unselected package gnupg-utils.
- Preparing to unpack .../239-gnupg-utils_2.4.7-21+deb13u1+b1_amd64.deb ...
- Unpacking gnupg-utils (2.4.7-21+deb13u1+b1) ...
- Setting up media-types (13.0.0) ...
- Setting up libpipeline1:amd64 (1.5.8-1) ...
- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...
- Setting up libgnutls-openssl27t64:amd64 (3.8.9-3+deb13u2) ...
- Setting up libpixman-1-0:amd64 (0.44.0-3) ...
- Setting up bzip2-doc (1.0.8-6) ...
- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...
- Setting up libnpth0t64:amd64 (1.8-3) ...
- Setting up libpixman-1-dev:amd64 (0.44.0-3) ...
- Setting up native-architecture (0.2.6) ...
- Setting up libxdamage1:amd64 (1:1.1.6-1+b2) ...
- Setting up liblerc4:amd64 (4.0.0+ds-5) ...
- Setting up bsdextrautils (2.41-5) ...
- Setting up hicolor-icon-theme (0.18-2) ...
- Setting up libxi6:amd64 (2:1.8.2-1) ...
- Setting up libgpg-error0:amd64 (1.51-4) ...
- Setting up libxrender1:amd64 (1:0.9.12-1) ...
- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...
- Setting up xdg-user-dirs (0.18-2) ...
- Setting up libmagic-mgc (1:5.46-5) ...
- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...
- Setting up libarchive-zip-perl (1.68-1) ...
- Setting up libtasn1-doc (4.20.0-2) ...
- Setting up libdebhelper-perl (13.24.2) ...
- Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-4) ...
- Setting up libmagic1t64:amd64 (1:5.46-5) ...
- Setting up x11-common (1:7.7+24+deb13u1) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libdeflate0:amd64 (1.23-2) ...
- Setting up libwebpdecoder3:amd64 (1.5.0-0.1) ...
- Setting up gnome-themes-extra-data (3.28-4) ...
- Setting up gettext-base (0.23.1-2) ...
- 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 liblzo2-2:amd64 (2.10-3+b1) ...
- Setting up libngtcp2-crypto-gnutls-dev:amd64 (1.11.0-1) ...
- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Setting up file (1:5.46-5) ...
- Setting up libngtcp2-dev:amd64 (1.11.0-1) ...
- 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 libelf1t64:amd64 (0.192-4) ...
- Setting up libpsl-dev:amd64 (0.21.2-1.1+b1) ...
- Setting up libsysprof-capture-4-dev:amd64 (48.0-2) ...
- Setting up libxcb-shm0-dev:amd64 (1.17.0-2+b1) ...
- Setting up libgraphite2-dev:amd64 (1.3.14-2+b1) ...
- Setting up autotools-dev (20240727.1) ...
- Setting up libpcre2-32-0:amd64 (10.46-1~deb13u1) ...
- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...
- No schema files found: doing nothing.
- Setting up libglib2.0-data (2.84.4-3~deb13u2) ...
- 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 gnome-accessibility-themes (3.28-4) ...
- 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 libjpeg62-turbo-dev:amd64 (1:2.1.5-4) ...
- Setting up gnupg-l10n (2.4.7-21+deb13u1) ...
- Setting up libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Setting up libgssrpc4t64:amd64 (1.21.3-5) ...
- Setting up libldap-dev:amd64 (2.6.10+dfsg-1) ...
- Setting up uuid-dev:amd64 (2.41-5) ...
- Setting up libavahi-common-data:amd64 (0.8-16) ...
- Setting up libdbus-1-3:amd64 (1.16.2-2) ...
- Setting up libfribidi0:amd64 (1.0.16-1) ...
- Setting up libxinerama1:amd64 (2:1.1.4-3+b4) ...
- Setting up comerr-dev:amd64 (2.1-1.47.2-3+b7) ...
- Setting up fonts-dejavu-mono (2.37-8) ...
- Setting up libssl-dev:amd64 (3.5.4-1~deb13u2) ...
- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u3) ...
- Setting up libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Setting up autopoint (0.23.1-2) ...
- Setting up fonts-dejavu-core (2.37-8) ...
- Setting up libsepol-dev:amd64 (3.8.1-1) ...
- Setting up libxcb-render0-dev:amd64 (1.17.0-2+b1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up gir1.2-glib-2.0:amd64 (2.84.4-3~deb13u2) ...
- Setting up 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 autoconf (2.72-3.1) ...
- Setting up libwebp7:amd64 (1.5.0-0.1) ...
- Setting up libnghttp3-dev:amd64 (1.8.0-1) ...
- Setting up libxext-dev:amd64 (2:1.3.4-1+b3) ...
- Setting up liblzma-dev:amd64 (5.8.1-1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libpcre2-posix3:amd64 (10.46-1~deb13u1) ...
- Setting up dwz (0.15-1+b1) ...
- Setting up libdav1d7:amd64 (1.5.1-1) ...
- Setting up sensible-utils (0.0.25) ...
- Setting up gir1.2-glib-2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Setting up at-spi2-common (2.56.2-1+deb13u1) ...
- Setting up gpgv (2.4.7-21+deb13u1+b1) ...
- Setting up libtiff6:amd64 (4.7.0-3+deb13u1) ...
- Setting up dbus-session-bus-common (1.16.2-2) ...
- Setting up libarchive-cpio-perl (0.10-3) ...
- Setting up libuchardet0:amd64 (0.0.8-1+b2) ...
- Setting up libassuan9:amd64 (3.0.2-2) ...
- Setting up libthai-data (0.1.29-2) ...
- Setting up libgtk2.0-common (2.24.33-7) ...
- Setting up libicu76:amd64 (76.1-4) ...
- Setting up dbus-system-bus-common (1.16.2-2) ...
- Setting up libsharpyuv-dev:amd64 (1.5.0-0.1) ...
- Setting up libtasn1-6-dev:amd64 (4.20.0-2) ...
- 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+deb13u1) ...
- Setting up libdeflate-dev:amd64 (1.23-2) ...
- Setting up libxcomposite1:amd64 (1:0.4.6-1) ...
- Setting up libsys-hostname-long-perl (1.5-3) ...
- Setting up libxrender-dev:amd64 (1:0.9.12-1) ...
- Setting up readline-common (8.2-6) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up dbus-bin (1.16.2-2) ...
- Setting up libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Setting up libp11-kit-dev:amd64 (0.25.5-3) ...
- Setting up libkadm5clnt-mit12:amd64 (1.21.3-5) ...
- Setting up libbz2-dev:amd64 (1.0.8-6) ...
- 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 libksba8:amd64 (1.6.7-2+b1) ...
- Setting up pinentry-curses (1.3.1-2) ...
- Setting up libfile-stripnondeterminism-perl (1.14.1-2) ...
- Setting up libblkid-dev:amd64 (2.41-5) ...
- Setting up libice6:amd64 (2:1.1.1-1) ...
- Setting up gettext (0.23.1-2) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libatk1.0-0t64:amd64 (2.56.2-1+deb13u1) ...
- Setting up libpcre2-dev:amd64 (10.46-1~deb13u1) ...
- Setting up nettle-dev:amd64 (3.10.1-1) ...
- Setting up libice-dev:amd64 (2:1.1.1-1) ...
- Setting up libkdb5-10t64:amd64 (1.21.3-5) ...
- Setting up libpng-tools (1.6.48-1+deb13u3) ...
- Setting up libtool (2.5.4-4) ...
- Setting up libgirepository-2.0-0:amd64 (2.84.4-3~deb13u2) ...
- Setting up gir1.2-atk-1.0:amd64 (2.56.2-1+deb13u1) ...
- Setting up libselinux1-dev:amd64 (3.8.1-1) ...
- Setting up fontconfig-config (2.15.0-2.3) ...
- Setting up libfribidi-dev:amd64 (1.0.16-1) ...
- Setting up libwebpdemux2:amd64 (1.5.0-0.1) ...
- Setting up libxcursor1:amd64 (1:1.2.3-1) ...
- Setting up libpng-dev:amd64 (1.6.48-1+deb13u3) ...
- Setting up libavahi-common3:amd64 (0.8-16) ...
- Setting up libjpeg-dev:amd64 (1:2.1.5-4) ...
- Setting up libjbig-dev:amd64 (2.1-6.1+b2) ...
- Setting up libglib2.0-bin (2.84.4-3~deb13u2) ...
- Setting up dbus-daemon (1.16.2-2) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up intltool-debian (0.35.0+20060710.6) ...
- Setting up libxfixes-dev:amd64 (1:6.0.0-2+b4) ...
- Setting up dh-autoreconf (20) ...
- Setting up libmail-sendmail-perl (0.80-3) ...
- Setting up libltdl-dev:amd64 (2.5.4-4) ...
- Setting up libthai0:amd64 (0.1.29-2+b1) ...
- Setting up libxrandr-dev:amd64 (2:1.5.4-1+b3) ...
- Setting up libwebp-dev:amd64 (1.5.0-0.1) ...
- Setting up libfreetype6:amd64 (2.13.3+dfsg-1) ...
- Setting up libtiff-dev:amd64 (4.7.0-3+deb13u1) ...
- Setting up dbus (1.16.2-2) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up shared-mime-info (2.4-5+b2) ...
- Setting up icu-devtools (76.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libxinerama-dev:amd64 (2:1.1.4-3+b4) ...
- Setting up libssh2-1-dev:amd64 (1.11.1-1) ...
- Setting up libreadline8t64:amd64 (8.2-6) ...
- Setting up dh-strip-nondeterminism (1.14.1-2) ...
- Setting up libdatrie-dev:amd64 (0.2.13-3+b1) ...
- Setting up groff-base (1.23.0-9) ...
- Setting up libkadm5srv-mit12:amd64 (1.21.3-5) ...
- Setting up gpgconf (2.4.7-21+deb13u1+b1) ...
- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...
- Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4) ...
- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...
- Setting up libxi-dev:amd64 (2:1.8.2-1) ...
- Setting up libxml2-utils (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libsm6:amd64 (2:1.2.6-1) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Setting up libicu-dev:amd64 (76.1-4) ...
- Setting up libavahi-client3:amd64 (0.8-16) ...
- Setting up libmount-dev:amd64 (2.41-5) ...
- Setting up gpg (2.4.7-21+deb13u1+b1) ...
- Setting up libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up gnupg-utils (2.4.7-21+deb13u1+b1) ...
- Setting up krb5-multidev:amd64 (1.21.3-5) ...
- Setting up libxdamage-dev:amd64 (1:1.1.6-1+b2) ...
- Setting up libgnutls28-dev:amd64 (3.8.9-3+deb13u2) ...
- Setting up gtk-update-icon-cache (4.18.6+ds-2) ...
- Setting up libnghttp2-dev:amd64 (1.64.0-1.1) ...
- Setting up fontconfig (2.15.0-2.3) ...
- Regenerating fonts cache... 
- done.
- Setting up libxft2:amd64 (2.3.6-1+b4) ...
- Setting up libgio-2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Setting up libharfbuzz-icu0:amd64 (10.2.0-1+b1) ...
- Setting up girepository-tools:amd64 (2.84.4-3~deb13u2) ...
- Setting up gpg-agent (2.4.7-21+deb13u1+b1) ...
- Setting up gir1.2-gdkpixbuf-2.0:amd64 (2.42.12+dfsg-4) ...
- Setting up python3.13 (3.13.5-2) ...
- Setting up libsm-dev:amd64 (2:1.2.6-1) ...
- Setting up libxcomposite-dev:amd64 (1:0.4.6-1) ...
- Setting up libxcursor-dev:amd64 (1:1.2.3-1) ...
- Setting up po-debconf (1.0.21+nmu1) ...
- Setting up gpgsm (2.4.7-21+deb13u1+b1) ...
- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...
- Setting up python3 (3.13.5-1) ...
- running python rtupdate hooks for python3.13...
- running python post-rtupdate hooks for python3.13...
- Setting up libharfbuzz-gobject0:amd64 (10.2.0-1+b1) ...
- Setting up man-db (2.13.1-1) ...
- Building database of manual pages ...
- Setting up libcairo2:amd64 (1.18.4-1+b1) ...
- Setting up libfreetype-dev:amd64 (2.13.3+dfsg-1) ...
- Setting up libkrb5-dev:amd64 (1.21.3-5) ...
- Setting up dirmngr (2.4.7-21+deb13u1+b1) ...
- Setting up python3-packaging (25.0-1) ...
- Setting up libharfbuzz-cairo0:amd64 (10.2.0-1+b1) ...
- Setting up adwaita-icon-theme (48.1-1) ...
- update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode
- Setting up librtmp-dev:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
- Setting up gtk2-engines-pixbuf:amd64 (2.24.33-7) ...
- Setting up libthai-dev:amd64 (0.1.29-2+b1) ...
- Setting up libgdk-pixbuf2.0-bin (2.42.12+dfsg-4) ...
- Setting up gnupg (2.4.7-21+deb13u1) ...
- Setting up libharfbuzz-subset0:amd64 (10.2.0-1+b1) ...
- Setting up libcairo-gobject2:amd64 (1.18.4-1+b1) ...
- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...
- Setting up libcups2t64:amd64 (2.4.10-3+deb13u2) ...
- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...
- Setting up libcairo-script-interpreter2:amd64 (1.18.4-1+b1) ...
- Setting up libgio-2.0-dev-bin (2.84.4-3~deb13u2) ...
- Setting up gir1.2-freedesktop:amd64 (1.84.0-1) ...
- Setting up libpangoxft-1.0-0:amd64 (1.56.3-1) ...
- Setting up gpg-wks-client (2.4.7-21+deb13u1+b1) ...
- Setting up libfontconfig-dev:amd64 (2.15.0-2.3) ...
- Setting up pango1.0-tools (1.56.3-1) ...
- Setting up debhelper (13.24.2) ...
- Setting up libcurl4-gnutls-dev:amd64 (8.14.1-2+deb13u2) ...
- Setting up gir1.2-harfbuzz-0.0:amd64 (10.2.0-1+b1) ...
- Setting up gnome-themes-extra:amd64 (3.28-4) ...
- Setting up librsvg2-2:amd64 (2.60.0+dfsg-1) ...
- Setting up gir1.2-pango-1.0:amd64 (1.56.3-1) ...
- Setting up gir1.2-freedesktop-dev:amd64 (1.84.0-1) ...
- Setting up libgtk2.0-0t64:amd64 (2.24.33-7) ...
- Setting up librsvg2-common:amd64 (2.60.0+dfsg-1) ...
- Setting up libgail18t64:amd64 (2.24.33-7) ...
- Setting up libgtk2.0-bin (2.24.33-7) ...
- Setting up libxft-dev:amd64 (2.3.6-1+b4) ...
- Setting up libglib2.0-dev-bin (2.84.4-3~deb13u2) ...
- Setting up libgail-common:amd64 (2.24.33-7) ...
- Setting up libglib2.0-dev:amd64 (2.84.4-3~deb13u2) ...
- Setting up gir1.2-gtk-2.0:amd64 (2.24.33-7) ...
- Setting up libcairo2-dev:amd64 (1.18.4-1+b1) ...
- Setting up libatk1.0-dev:amd64 (2.56.2-1+deb13u1) ...
- Setting up libgdk-pixbuf-2.0-dev:amd64 (2.42.12+dfsg-4) ...
- Setting up libharfbuzz-dev:amd64 (10.2.0-1+b1) ...
- Setting up libpango1.0-dev:amd64 (1.56.3-1) ...
- Setting up libgtk2.0-dev:amd64 (2.24.33-7) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
- Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.12+dfsg-4) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved 0install.2.15.2, 0install-gtk.2.15.2  (cached)
-> retrieved biniou.1.2.2  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved easy-format.1.3.4  (cached)
-> retrieved lablgtk.2.18.14  (cached)
-> installed conf-libcurl.2
-> installed conf-pkg-config.4
-> retrieved lwt_glib.1.1.1  (cached)
-> retrieved lwt_ppx.5.9.3  (cached)
-> installed conf-glib-2.1
-> installed conf-gtk2.1
-> retrieved lwt_react.1.2.0  (cached)
-> installed easy-format.1.3.4
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> installed camlp-streams.5.0.1
-> installed lwt_glib.1.1.1
-> retrieved obus.1.2.5  (cached)
-> installed menhirCST.20260209
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocurl.0.9.2  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> retrieved ppxlib.0.37.0  (cached)
-> installed menhirSdk.20260209
-> installed ppx_derivers.1.2.1
-> retrieved react.1.2.2  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved sha.1.15.4  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed biniou.1.2.2
-> retrieved xmlm.1.4.0  (cached)
-> retrieved yojson.1.7.0  (cached)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed sha.1.15.4
-> installed yojson.1.7.0
-> installed ocamlbuild.0.16.1
-> installed menhir.20260209
-> installed topkg.1.1.1
-> installed react.1.2.2
-> installed xmlm.1.4.0
-> installed lwt_react.1.2.0
-> installed ppxlib.0.37.0
-> installed lwt_ppx.5.9.3
-> installed obus.1.2.5
-> installed lablgtk.2.18.14
-> installed ocurl.0.9.2
-> installed 0install.2.15.2
-> installed 0install-gtk.2.15.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 12:54.01 ---> saved as "276ca1d8248410abbe4a2d52c487a38f53d20c1246141411d154e79871671214"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test 0install-gtk.2.15.2) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile 0install-gtk 2.15.2
=== install 3 packages
  - install   ounit        2.2.7  [required by 0install-gtk]
  - install   ounit2       2.2.7  [required by ounit]
  - install   seq          base   [required by ounit2]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved 0install-gtk.2.15.2  (https://opam.ocaml.org/cache)
-> retrieved ounit.2.2.7, ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> removed   0install-gtk.2.15.2
-> installed seq.base
-> installed ounit2.2.2.7
-> installed ounit.2.2.7
-> installed 0install-gtk.2.15.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 12:54.13 ---> saved as "982de675426ae9c8605c1ae80234543d4a3d15550837fef4cabbd2f883cf2883"

/home/opam: (run (shell  "opam reinstall --with-test --verbose 0install-gtk.2.15.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\" != '0install-gtk.2.15.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile 0install-gtk 2.15.2

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [0install-gtk.2.15.2: extract]
-> retrieved 0install-gtk.2.15.2  (cached)
Processing  2/4: [0install-gtk: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "0install-gtk" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/0install-gtk.2.15.2)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/zeroinstall/.zeroinstall.objs/byte -I src/zeroinstall/.zeroinstall.objs/native -I /home/opam/.opam/5.4/lib/biniou -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/camlp-streams -I /home/opam/.opam/5.4/lib/curl -I /home/opam/.opam/5.4/lib/easy-format -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/lwt_log -I /home/opam/.opam/5.4/lib/lwt_log/core -I /home/opam/.opam/5.4/lib/lwt_react -I /home/opam/.opam/5.4/lib/obus -I /home/opam/.opam/5.4/lib/obus/internals -I /home/opam/.opam/5.4/lib/obus/network_manager -I /home/opam/.opam/5.4/lib/obus/notification -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/react -I /home/opam/.opam/5.4/lib/sha -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/xmlm -I /home/opam/.opam/5.4/lib/yojson -I src/solver/.zeroinstall_solver.objs/byte -I src/solver/.zeroinstall_solver.objs/native -I src/support/.support.objs/byte -I src/support/.support.objs/native -cmi-file src/zeroinstall/.zeroinstall.objs/byte/zeroinstall__Downloader.cmi -no-alias-deps -open Zeroinstall -o src/zeroinstall/.zeroinstall.objs/native/zeroinstall__Downloader.cmx -c -impl src/zeroinstall/downloader.ml)
- File "src/zeroinstall/downloader.ml", line 117, characters 25-31:
- 117 | let tmpfile_with_switch ?switch ~prefix ~suffix =
-                                ^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/zeroinstall/.zeroinstall.objs/byte -I src/zeroinstall/.zeroinstall.objs/native -I /home/opam/.opam/5.4/lib/biniou -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/camlp-streams -I /home/opam/.opam/5.4/lib/curl -I /home/opam/.opam/5.4/lib/easy-format -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/lwt_log -I /home/opam/.opam/5.4/lib/lwt_log/core -I /home/opam/.opam/5.4/lib/lwt_react -I /home/opam/.opam/5.4/lib/obus -I /home/opam/.opam/5.4/lib/obus/internals -I /home/opam/.opam/5.4/lib/obus/network_manager -I /home/opam/.opam/5.4/lib/obus/notification -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/react -I /home/opam/.opam/5.4/lib/sha -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/xmlm -I /home/opam/.opam/5.4/lib/yojson -I src/solver/.zeroinstall_solver.objs/byte -I src/solver/.zeroinstall_solver.objs/native -I src/support/.support.objs/byte -I src/support/.support.objs/native -cmi-file src/zeroinstall/.zeroinstall.objs/byte/zeroinstall__Archive.cmi -no-alias-deps -open Zeroinstall -o src/zeroinstall/.zeroinstall.objs/native/zeroinstall__Archive.cmx -c -impl src/zeroinstall/archive.ml)
- File "src/zeroinstall/archive.ml", line 278, characters 34-41:
- 278 | let unpack config tmpfile dstdir ?extract ~mime_type : unit Lwt.t =
-                                         ^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/gui_gtk/.gui_gtk_lib.objs/byte -I /home/opam/.opam/5.4/lib/biniou -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/camlp-streams -I /home/opam/.opam/5.4/lib/curl -I /home/opam/.opam/5.4/lib/easy-format -I /home/opam/.opam/5.4/lib/lablgtk2 -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/lwt_glib -I /home/opam/.opam/5.4/lib/lwt_log -I /home/opam/.opam/5.4/lib/lwt_log/core -I /home/opam/.opam/5.4/lib/lwt_react -I /home/opam/.opam/5.4/lib/obus -I /home/opam/.opam/5.4/lib/obus/internals -I /home/opam/.opam/5.4/lib/obus/network_manager -I /home/opam/.opam/5.4/lib/obus/notification -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/react -I /home/opam/.opam/5.4/lib/sha -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/xmlm -I /home/opam/.opam/5.4/lib/yojson -I src/solver/.zeroinstall_solver.objs/byte -I src/support/.support.objs/byte -I src/zeroinstall/.zeroinstall.objs/byte -no-alias-deps -open Gui_gtk_lib -o src/gui_gtk/.gui_gtk_lib.objs/byte/gui_gtk_lib__Icon_cache.cmo -c -impl src/gui_gtk/icon_cache.ml)
- File "src/gui_gtk/icon_cache.ml", line 57, characters 16-30:
- 57 |                 Lwt_unix.yield () >|= fun () -> (* Make sure we're not already inside update() *)
-                      ^^^^^^^^^^^^^^
- Alert deprecated: Lwt_unix.yield
- Use Lwt.pause instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/gui_gtk/.gui_gtk_lib.objs/byte -I /home/opam/.opam/5.4/lib/biniou -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/camlp-streams -I /home/opam/.opam/5.4/lib/curl -I /home/opam/.opam/5.4/lib/easy-format -I /home/opam/.opam/5.4/lib/lablgtk2 -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/lwt_glib -I /home/opam/.opam/5.4/lib/lwt_log -I /home/opam/.opam/5.4/lib/lwt_log/core -I /home/opam/.opam/5.4/lib/lwt_react -I /home/opam/.opam/5.4/lib/obus -I /home/opam/.opam/5.4/lib/obus/internals -I /home/opam/.opam/5.4/lib/obus/network_manager -I /home/opam/.opam/5.4/lib/obus/notification -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/react -I /home/opam/.opam/5.4/lib/sha -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/xmlm -I /home/opam/.opam/5.4/lib/yojson -I src/solver/.zeroinstall_solver.objs/byte -I src/support/.support.objs/byte -I src/zeroinstall/.zeroinstall.objs/byte -no-alias-deps -open Gui_gtk_lib -o src/gui_gtk/.gui_gtk_lib.objs/byte/gui_gtk_lib__Bug_report_box.cmo -c -impl src/gui_gtk/bug_report_box.ml)
- File "src/gui_gtk/bug_report_box.ml", line 41, characters 29-39:
- 41 | let create config ?run_test ?last_error ~role ~results =
-                                   ^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- 
- File "src/gui_gtk/bug_report_box.ml", line 41, characters 19-27:
- 41 | let create config ?run_test ?last_error ~role ~results =
-                         ^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/zeroinstall/.zeroinstall.objs/byte -I src/zeroinstall/.zeroinstall.objs/native -I /home/opam/.opam/5.4/lib/biniou -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/camlp-streams -I /home/opam/.opam/5.4/lib/curl -I /home/opam/.opam/5.4/lib/easy-format -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/lwt_log -I /home/opam/.opam/5.4/lib/lwt_log/core -I /home/opam/.opam/5.4/lib/lwt_react -I /home/opam/.opam/5.4/lib/obus -I /home/opam/.opam/5.4/lib/obus/internals -I /home/opam/.opam/5.4/lib/obus/network_manager -I /home/opam/.opam/5.4/lib/obus/notification -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/react -I /home/opam/.opam/5.4/lib/sha -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/xmlm -I /home/opam/.opam/5.4/lib/yojson -I src/solver/.zeroinstall_solver.objs/byte -I src/solver/.zeroinstall_solver.objs/native -I src/support/.support.objs/byte -I src/support/.support.objs/native -cmi-file src/zeroinstall/.zeroinstall.objs/byte/zeroinstall__Packagekit.cmi -no-alias-deps -open Zeroinstall -o src/zeroinstall/.zeroinstall.objs/native/zeroinstall__Packagekit.cmx -c -impl src/zeroinstall/packagekit.ml)
- File "src/zeroinstall/packagekit.ml", line 318, characters 14-28:
- 318 |               Lwt_main.yield () >>= fun () ->
-                     ^^^^^^^^^^^^^^
- Alert deprecated: Lwt_main.yield
- Use Lwt.pause instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/gui_gtk/.gui_gtk_lib.objs/byte -I src/gui_gtk/.gui_gtk_lib.objs/native -I /home/opam/.opam/5.4/lib/biniou -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/camlp-streams -I /home/opam/.opam/5.4/lib/curl -I /home/opam/.opam/5.4/lib/easy-format -I /home/opam/.opam/5.4/lib/lablgtk2 -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/lwt_glib -I /home/opam/.opam/5.4/lib/lwt_log -I /home/opam/.opam/5.4/lib/lwt_log/core -I /home/opam/.opam/5.4/lib/lwt_react -I /home/opam/.opam/5.4/lib/obus -I /home/opam/.opam/5.4/lib/obus/internals -I /home/opam/.opam/5.4/lib/obus/network_manager -I /home/opam/.opam/5.4/lib/obus/notification -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/react -I /home/opam/.opam/5.4/lib/sha -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/xmlm -I /home/opam/.opam/5.4/lib/yojson -I src/solver/.zeroinstall_solver.objs/byte -I src/solver/.zeroinstall_solver.objs/native -I src/support/.support.objs/byte -I src/support/.support.objs/native -I src/zeroinstall/.zeroinstall.objs/byte -I src/zeroinstall/.zeroinstall.objs/native -cmi-file src/gui_gtk/.gui_gtk_lib.objs/byte/gui_gtk_lib__Icon_cache.cmi -no-alias-deps -open Gui_gtk_lib -o src/gui_gtk/.gui_gtk_lib.objs/native/gui_gtk_lib__Icon_cache.cmx -c -impl src/gui_gtk/icon_cache.ml)
- File "src/gui_gtk/icon_cache.ml", line 57, characters 16-30:
- 57 |                 Lwt_unix.yield () >|= fun () -> (* Make sure we're not already inside update() *)
-                      ^^^^^^^^^^^^^^
- Alert deprecated: Lwt_unix.yield
- Use Lwt.pause instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/gui_gtk/.gui_gtk_lib.objs/byte -I src/gui_gtk/.gui_gtk_lib.objs/native -I /home/opam/.opam/5.4/lib/biniou -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/camlp-streams -I /home/opam/.opam/5.4/lib/curl -I /home/opam/.opam/5.4/lib/easy-format -I /home/opam/.opam/5.4/lib/lablgtk2 -I /home/opam/.opam/5.4/lib/lwt -I /home/opam/.opam/5.4/lib/lwt/unix -I /home/opam/.opam/5.4/lib/lwt_glib -I /home/opam/.opam/5.4/lib/lwt_log -I /home/opam/.opam/5.4/lib/lwt_log/core -I /home/opam/.opam/5.4/lib/lwt_react -I /home/opam/.opam/5.4/lib/obus -I /home/opam/.opam/5.4/lib/obus/internals -I /home/opam/.opam/5.4/lib/obus/network_manager -I /home/opam/.opam/5.4/lib/obus/notification -I /home/opam/.opam/5.4/lib/ocaml/dynlink -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib-endian -I /home/opam/.opam/5.4/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.4/lib/react -I /home/opam/.opam/5.4/lib/sha -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/xmlm -I /home/opam/.opam/5.4/lib/yojson -I src/solver/.zeroinstall_solver.objs/byte -I src/solver/.zeroinstall_solver.objs/native -I src/support/.support.objs/byte -I src/support/.support.objs/native -I src/zeroinstall/.zeroinstall.objs/byte -I src/zeroinstall/.zeroinstall.objs/native -cmi-file src/gui_gtk/.gui_gtk_lib.objs/byte/gui_gtk_lib__Bug_report_box.cmi -no-alias-deps -open Gui_gtk_lib -o src/gui_gtk/.gui_gtk_lib.objs/native/gui_gtk_lib__Bug_report_box.cmx -c -impl src/gui_gtk/bug_report_box.ml)
- File "src/gui_gtk/bug_report_box.ml", line 41, characters 29-39:
- 41 | let create config ?run_test ?last_error ~role ~results =
-                                   ^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- 
- File "src/gui_gtk/bug_report_box.ml", line 41, characters 19-27:
- 41 | let create config ?run_test ?last_error ~role ~results =
-                         ^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- (cd _build/default/src/test_gtk && ./test.exe)
- .
- Ran: 1 tests in: 0.07 seconds.
- OK
- 
-> compiled  0install-gtk.2.15.2
-> removed   0install-gtk.2.15.2
-> installed 0install-gtk.2.15.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 12:54.21 ---> saved as "e48e988013935adb2a638e1ef95f87bd713315a3d813ded4533e30cf7803513a"
Job succeeded
2026-03-10 12:54.32: Job succeeded