(for PR #26907)

2024-11-18 13:59.06: New job: test frama-c.27.1 with apron.v0.9.14, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/26907/head (b6229f0d14497cac47fc1ccd0ef31dd6c590ddfe)
                              on debian-12-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/26907/head" && git reset --hard b6229f0d
git fetch origin master
git merge --no-edit a6cd5e92975350b992cb58b4351df6fceefc8144
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:03931233593b8433100f023bc0a49467bfcf5f4d74310a7b3f4504b32db4ddc3
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMSOLVERTIMEOUT="1000"
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 apron.v0.9.14 v0.9.14
RUN opam reinstall apron.v0.9.14; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'apron.v0.9.14' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam option solver=builtin-0install
RUN opam reinstall frama-c.27.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'frama-c.27.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam option solver=builtin-0install
RUN (opam reinstall --with-test frama-c.27.1) || true
RUN opam reinstall --with-test --verbose frama-c.27.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'frama-c.27.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2024-11-18 13:59.06: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:03931233593b8433100f023bc0a49467bfcf5f4d74310a7b3f4504b32db4ddc3-apron.v0.9.14-frama-c.27.1-b6229f0d14497cac47fc1ccd0ef31dd6c590ddfe"
2024-11-18 13:59.06: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:03931233593b8433100f023bc0a49467bfcf5f4d74310a7b3f4504b32db4ddc3)
 (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 "uname -rs && opam exec -- ocaml -version && opam --version"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMSOLVERTIMEOUT 1000)
 (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 apron.v0.9.14 v0.9.14"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall apron.v0.9.14;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'apron.v0.9.14' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (shell "opam option solver=builtin-0install"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall frama-c.27.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'frama-c.27.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (shell "opam option solver=builtin-0install"))
 (run (network host)
      (shell "(opam reinstall --with-test frama-c.27.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose frama-c.27.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'frama-c.27.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2024-11-18 13:59.06: Waiting for resource in pool OCluster
2024-11-18 13:59.06: Waiting for worker…
2024-11-18 14:02.54: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
Updating files:  58% (19257/32679)
Updating files:  59% (19281/32679)
Updating files:  60% (19608/32679)
Updating files:  61% (19935/32679)
Updating files:  62% (20261/32679)
Updating files:  63% (20588/32679)
Updating files:  64% (20915/32679)
Updating files:  65% (21242/32679)
Updating files:  66% (21569/32679)
Updating files:  67% (21895/32679)
Updating files:  68% (22222/32679)
Updating files:  69% (22549/32679)
Updating files:  70% (22876/32679)
Updating files:  71% (23203/32679)
Updating files:  72% (23529/32679)
Updating files:  73% (23856/32679)
Updating files:  74% (24183/32679)
Updating files:  75% (24510/32679)
Updating files:  76% (24837/32679)
Updating files:  77% (25163/32679)
Updating files:  78% (25490/32679)
Updating files:  79% (25817/32679)
Updating files:  80% (26144/32679)
Updating files:  81% (26470/32679)
Updating files:  82% (26797/32679)
Updating files:  83% (27124/32679)
Updating files:  84% (27451/32679)
Updating files:  85% (27778/32679)
Updating files:  86% (28104/32679)
Updating files:  87% (28431/32679)
Updating files:  88% (28758/32679)
Updating files:  89% (29085/32679)
Updating files:  90% (29412/32679)
Updating files:  91% (29738/32679)
Updating files:  92% (30065/32679)
Updating files:  93% (30392/32679)
Updating files:  94% (30719/32679)
Updating files:  95% (31046/32679)
Updating files:  96% (31372/32679)
Updating files:  97% (31699/32679)
Updating files:  98% (32026/32679)
Updating files:  99% (32353/32679)
Updating files: 100% (32679/32679)
Updating files: 100% (32679/32679), done.
HEAD is now at a6cd5e9297 Merge pull request #26892 from recoules/release-bitwuzla-cxx-0.6.1
Merge made by the 'ort' strategy.
 packages/apron/apron.0.9.14/opam  | 5 ++++-
 packages/apron/apron.v0.9.12/opam | 5 ++++-
 packages/apron/apron.v0.9.14/opam | 8 +++++++-
 3 files changed, 15 insertions(+), 3 deletions(-)

(from ocaml/opam:debian-12-ocaml-4.14@sha256:03931233593b8433100f023bc0a49467bfcf5f4d74310a7b3f4504b32db4ddc3)
2024-11-18 14:03.28 ---> using "7865c6821c42776ca70a19318cc19a6071e65fe0e7c3e659c00e7a03ce2b6d64" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2024-11-18 14:03.28 ---> using "ad3e9629360f3a2c8223d5886ac7195207ee1803fcb4aa7b290336801b8943d0" from cache

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

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

Continue? [y/n] y
[NOTE] The 'jobs' option was reset, its value was 39 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=39 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-11-18 14:03.28 ---> using "a1480828f57ce587531365e53376a0f63d7958ebe9ac0f519aa1dec70633d5fb" from cache

/home/opam: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-125-generic
The OCaml toplevel, version 4.14.2
2.4.0~alpha1~dev
2024-11-18 14:03.28 ---> using "4b810995688cec25d712717079f5c0d0bea9418fcf6146699f0e15656c1f450c" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMSOLVERTIMEOUT 1000)

/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/"))
2024-11-18 14:03.28 ---> using "b03bc4d602c48017fed87683a2f42534210f76d9d4239618ddee445f3c2c744c" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2024-11-18 14:03.30 ---> using "be6c1fea46e717f4057e5cd269392b1b16fac1962616f22f0a93d22763529082" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-11-18 14:03.30 ---> using "5cdea1a2aa6aa1022bb602d53339e045c3c0960c4534cb4a46cd1040a0bce71d" 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 bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [204 kB]
- Fetched 307 kB in 0s (870 kB/s)
- Reading package lists...
2024-11-18 14:03.30 ---> using "6c0d1600f5567c078d902a96b20657e9c700d0c433268dca26ea9d8ecf906398" from cache

/home/opam: (run (shell "opam pin add -k version -yn apron.v0.9.14 v0.9.14"))
apron is now pinned to version v0.9.14
2024-11-18 14:03.30 ---> using "db5d836e045e7916f26d7317f410579890f5d4889180200c0551634f24c9c373" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall apron.v0.9.14;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'apron.v0.9.14' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
apron.v0.9.14 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 12 packages
  - install apron           v0.9.14 (pinned)
  - install bigarray-compat 1.1.0            [required by mlgmpidl]
  - install camlidl         1.12             [required by apron]
  - install conf-findutils  1                [required by ez-conf-lib]
  - install conf-gmp-paths  1                [required by mlgmpidl]
  - install conf-mpfr-paths 1                [required by mlgmpidl]
  - install conf-perl       2                [required by apron]
  - install dune            3.16.1           [required by bigarray-compat]
  - install ez-conf-lib     2                [required by conf-gmp-paths, conf-mpfr-paths]
  - install mlgmpidl        1.3.0            [required by apron]
  - install ocamlbuild      0.15.0           [required by apron]
  - install ocamlfind       1.9.6            [required by apron]

The following system packages will first need to be installed:
    libgmp-dev libmpfr-dev

<><> 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" "libgmp-dev" "libmpfr-dev"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libgmpxx4ldbl: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 ... 18745 files and directories currently installed.)
- Preparing to unpack .../libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libmpfr-dev:amd64.
- Preparing to unpack .../libmpfr-dev_4.2.0-1_amd64.deb ...
- Unpacking libmpfr-dev:amd64 (4.2.0-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libmpfr-dev:amd64 (4.2.0-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u9) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved apron.v0.9.14  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved camlidl.1.12  (cached)
-> retrieved conf-gmp-paths.1  (cached)
-> retrieved conf-mpfr-paths.1  (cached)
-> installed conf-findutils.1
-> installed conf-perl.2
-> retrieved dune.3.16.1  (cached)
-> installed camlidl.1.12
-> retrieved ez-conf-lib.2  (cached)
-> retrieved mlgmpidl.1.3.0  (cached)
-> retrieved ocamlbuild.0.15.0  (cached)
-> installed ez-conf-lib.2
-> retrieved ocamlfind.1.9.6  (cached)
-> installed conf-gmp-paths.1
-> installed conf-mpfr-paths.1
-> installed ocamlfind.1.9.6
-> installed ocamlbuild.0.15.0
-> installed dune.3.16.1
-> installed bigarray-compat.1.1.0
-> installed mlgmpidl.1.3.0
-> installed apron.v0.9.14
Done.

<><> conf-mpfr-paths.1 installed successfully <><><><><><><><><><><><><><><><><>
=> header file found in /usr/include
=> library file found in /usr/lib/x86_64-linux-gnu

<><> conf-gmp-paths.1 installed successfully ><><><><><><><><><><><><><><><><><>
=> header file found in /usr/include/x86_64-linux-gnu
=> library file found in /usr/lib/x86_64-linux-gnu
# To update the current shell environment, run: eval $(opam env)
2024-11-18 14:03.32 ---> saved as "1727861f649f649884eec0b0be53985d44ef8466737744513dbcfdd3e6466c64"

/home/opam: (run (shell "opam option solver=builtin-0install"))
Set to 'builtin-0install' the field solver in global configuration
2024-11-18 14:03.33 ---> saved as "13d64335080cc7ee937f47fb981baed36c54821721fb9d4dc1eed47e989120f3"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall frama-c.27.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'frama-c.27.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
frama-c.27.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 55 packages
  - install alt-ergo-free        2.2.0    [required by frama-c]
  - install astring              0.8.5    [required by bos]
  - install bos                  0.2.1    [required by yaml]
  - install cairo2               0.6.5    [required by lablgtk3]
  - install camlp-streams        5.0.1    [required by lablgtk3, lablgtk3-sourceview3]
  - install camlzip              1.13     [required by alt-ergo-free, why3]
  - install conf-autoconf        0.2      [required by alt-ergo-free, why3]
  - install conf-cairo           1        [required by cairo2]
  - install conf-gmp             4        [required by zarith]
  - install conf-graphviz        0.1
  - install conf-gtk3            18       [required by lablgtk3]
  - install conf-gtksourceview3  0+2      [required by frama-c]
  - install conf-pkg-config      3        [required by conf-gtksourceview3]
  - install conf-which           1
  - install conf-zlib            1        [required by camlzip]
  - install cppo                 1.7.0    [required by ppx_deriving]
  - install csexp                1.5.2    [required by dune-configurator]
  - install ctypes               0.23.0   [required by yaml]
  - install dune-configurator    3.16.1   [required by frama-c]
  - install dune-private-libs    3.16.1   [required by dune-site]
  - install dune-site            3.16.1   [required by frama-c]
  - install dyn                  3.16.1   [required by dune-private-libs]
  - install fmt                  0.9.0    [required by bos]
  - install fpath                0.7.3    [required by bos]
  - install frama-c              27.1
  - install integers             0.7.0    [required by ctypes]
  - install lablgtk3             3.1.5    [required by frama-c]
  - install lablgtk3-sourceview3 3.1.5    [required by frama-c]
  - install logs                 0.7.0    [required by bos]
  - install menhir               20211128 [required by frama-c]
  - install menhirLib            20211128 [required by menhir]
  - install menhirSdk            20211128 [required by menhir]
  - install num                  1.5-1    [required by alt-ergo-free, why3]
  - install ocaml-compiler-libs  v0.12.4  [required by ppxlib]
  - install ocamlgraph           2.1.0    [required by frama-c]
  - install ocplib-simplex       0.4.1    [required by alt-ergo-free]
  - install ordering             3.16.1   [required by dyn, stdune]
  - install pp                   1.2.0    [required by dune-private-libs]
  - install ppx_derivers         1.2.1    [required by ppx_deriving]
  - install ppx_deriving         6.0.3    [required by frama-c]
  - install ppx_deriving_yaml    0.3.0    [required by frama-c]
  - install ppx_deriving_yojson  3.9.0    [required by frama-c]
  - install ppx_import           1.11.0   [required by frama-c]
  - install ppxlib               0.33.0   [required by ppx_deriving_yojson, ppx_deriving, ppx_deriving_yaml, ppx_import]
  - install psmt2-frontend       0.1      [required by alt-ergo-free]
  - install rresult              0.7.0    [required by bos]
  - install seq                  base     [required by yojson]
  - install sexplib0             v0.17.0  [required by ppxlib]
  - install stdlib-shims         0.3.0    [required by ocamlgraph]
  - install stdune               3.16.1   [required by dune-private-libs]
  - install topkg                1.0.7    [required by bos]
  - install why3                 1.6.0    [required by frama-c]
  - install yaml                 3.2.0    [required by frama-c]
  - install yojson               2.2.2    [required by frama-c]
  - install zarith               1.14     [required by frama-c]

The following system packages will first need to be installed:
    autoconf graphviz libcairo2-dev libexpat1-dev libgtk-3-dev libgtksourceview-3.0-dev pkg-config zlib1g-dev

<><> 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" "autoconf" "graphviz" "libcairo2-dev" "libexpat1-dev" "libgtk-3-dev" "libgtksourceview-3.0-dev" "pkg-config" "zlib1g-dev"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libargon2-1:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 18781 files and directories currently installed.)
- Preparing to unpack .../00-libargon2-1_0~20171227-0.3+deb12u1_amd64.deb ...
- Unpacking libargon2-1:amd64 (0~20171227-0.3+deb12u1) ...
- Selecting previously unselected package dmsetup.
- Preparing to unpack .../01-dmsetup_2%3a1.02.185-2_amd64.deb ...
- Unpacking dmsetup (2:1.02.185-2) ...
- Selecting previously unselected package libdevmapper1.02.1:amd64.
- Preparing to unpack .../02-libdevmapper1.02.1_2%3a1.02.185-2_amd64.deb ...
- Unpacking libdevmapper1.02.1:amd64 (2:1.02.185-2) ...
- Selecting previously unselected package libjson-c5:amd64.
- Preparing to unpack .../03-libjson-c5_0.16-2_amd64.deb ...
- Unpacking libjson-c5:amd64 (0.16-2) ...
- Selecting previously unselected package libcryptsetup12:amd64.
- Preparing to unpack .../04-libcryptsetup12_2%3a2.6.1-4~deb12u2_amd64.deb ...
- Unpacking libcryptsetup12:amd64 (2:2.6.1-4~deb12u2) ...
- Selecting previously unselected package libfdisk1:amd64.
- Preparing to unpack .../05-libfdisk1_2.38.1-5+deb12u2_amd64.deb ...
- Unpacking libfdisk1:amd64 (2.38.1-5+deb12u2) ...
- Selecting previously unselected package libkmod2:amd64.
- Preparing to unpack .../06-libkmod2_30+20221128-1_amd64.deb ...
- Unpacking libkmod2:amd64 (30+20221128-1) ...
- Selecting previously unselected package libapparmor1:amd64.
- Preparing to unpack .../07-libapparmor1_3.0.8-3_amd64.deb ...
- Unpacking libapparmor1:amd64 (3.0.8-3) ...
- Selecting previously unselected package libip4tc2:amd64.
- Preparing to unpack .../08-libip4tc2_1.8.9-2_amd64.deb ...
- Unpacking libip4tc2:amd64 (1.8.9-2) ...
- Selecting previously unselected package libsystemd-shared:amd64.
- Preparing to unpack .../09-libsystemd-shared_252.31-1~deb12u1_amd64.deb ...
- Unpacking libsystemd-shared:amd64 (252.31-1~deb12u1) ...
- Selecting previously unselected package systemd.
- Preparing to unpack .../10-systemd_252.31-1~deb12u1_amd64.deb ...
- Unpacking systemd (252.31-1~deb12u1) ...
- Setting up libargon2-1:amd64 (0~20171227-0.3+deb12u1) ...
- Setting up libjson-c5:amd64 (0.16-2) ...
- Setting up libfdisk1:amd64 (2.38.1-5+deb12u2) ...
- Setting up libkmod2:amd64 (30+20221128-1) ...
- Setting up libapparmor1:amd64 (3.0.8-3) ...
- Setting up libip4tc2:amd64 (1.8.9-2) ...
- Setting up libsystemd-shared:amd64 (252.31-1~deb12u1) ...
- Setting up libdevmapper1.02.1:amd64 (2:1.02.185-2) ...
- Setting up libcryptsetup12:amd64 (2:2.6.1-4~deb12u2) ...
- Setting up systemd (252.31-1~deb12u1) ...
- Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service.

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

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

- Initializing machine ID from random generator.

- Creating group 'systemd-journal' with GID 999.

- Creating group 'systemd-network' with GID 998.

- Creating user 'systemd-network' (systemd Network Management) with UID 998 and GID 998.

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

- Creating user 'systemd-timesync' (systemd Time Synchronization) with UID 997 and GID 997.

- Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service.

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

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alt-ergo-free.2.2.0  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved cairo2.0.6.5  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved camlzip.1.13  (cached)
-> retrieved conf-gmp.4  (cached)
-> retrieved cppo.1.7.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.3
-> installed conf-which.1
-> retrieved ctypes.0.23.0  (cached)
-> installed conf-autoconf.0.2
-> installed conf-gmp.4
-> installed conf-cairo.1
-> installed conf-gtk3.18
-> installed conf-gtksourceview3.0+2
-> installed conf-zlib.1
-> installed conf-graphviz.0.1
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.16.1, dune-private-libs.3.16.1, dune-site.3.16.1, dyn.3.16.1, ordering.3.16.1, stdune.3.16.1  (cached)
-> installed cppo.1.7.0
-> retrieved fmt.0.9.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> installed camlzip.1.13
-> retrieved frama-c.27.1  (cached)
-> installed ordering.3.16.1
-> installed dune-configurator.3.16.1
-> retrieved integers.0.7.0  (cached)
-> retrieved lablgtk3.3.1.5, lablgtk3-sourceview3.3.1.5  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved menhir.20211128, menhirLib.20211128, menhirSdk.20211128  (cached)
-> retrieved num.1.5-1  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlgraph.2.1.0  (cached)
-> retrieved ocplib-simplex.0.4.1  (cached)
-> retrieved pp.1.2.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.0.3  (cached)
-> installed pp.1.2.0
-> installed cairo2.0.6.5
-> installed menhirLib.20211128
-> installed menhirSdk.20211128
-> installed ocaml-compiler-libs.v0.12.4
-> installed num.1.5-1
-> installed ppx_derivers.1.2.1
-> retrieved ppx_deriving_yaml.0.3.0  (https://github.com/patricoferris/ppx_deriving_yaml/releases/download/v0.3.0/ppx_deriving_yaml-0.3.0.tbz)
-> retrieved ppx_deriving_yojson.3.9.0  (cached)
-> retrieved ppx_import.1.11.0  (cached)
-> retrieved ppxlib.0.33.0  (cached)
-> retrieved psmt2-frontend.0.1  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved why3.1.6.0  (cached)
-> installed dyn.3.16.1
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> retrieved yaml.3.2.0  (cached)
-> retrieved yojson.2.2.2  (cached)
-> retrieved zarith.1.14  (cached)
-> installed integers.0.7.0
-> installed lablgtk3.3.1.5
-> installed yojson.2.2.2
-> installed ocplib-simplex.0.4.1
-> installed ocamlgraph.2.1.0
-> installed topkg.1.0.7
-> installed zarith.1.14
-> installed rresult.0.7.0
-> installed lablgtk3-sourceview3.3.1.5
-> installed stdune.3.16.1
-> installed astring.0.8.5
-> installed fmt.0.9.0
-> installed ctypes.0.23.0
-> installed fpath.0.7.3
-> installed logs.0.7.0
-> installed dune-private-libs.3.16.1
-> installed menhir.20211128
-> installed bos.0.2.1
-> installed dune-site.3.16.1
-> installed yaml.3.2.0
-> installed ppxlib.0.33.0
-> installed psmt2-frontend.0.1
-> installed ppx_import.1.11.0
-> installed ppx_deriving.6.0.3
-> installed ppx_deriving_yojson.3.9.0
-> installed ppx_deriving_yaml.0.3.0
-> installed alt-ergo-free.2.2.0
-> installed why3.1.6.0
-> installed frama-c.27.1
Done.

<><> frama-c.27.1 installed successfully ><><><><><><><><><><><><><><><><><><><>
=> The Frama-C/WP plug-in requires one or more external prover(s).
   Recommended provers are:
   - Alt-Ergo (https://alt-ergo.ocamlpro.com)
   - CVC4     (https://cvc4.github.io)
   - Z3       (https://github.com/Z3Prover/z3)
   Use 'why3 config detect' to configure new provers.
    
=> Ivette is a new GUI for Frama-C, currently in development.
   Run 'ivette' once to finalize installation (requires an internet connection).
   Once finalized, 'ivette' will work offline.
   Finalization also requires Node v16 and Yarn:
   - install NVM (https://github.com/nvm-sh/nvm)
   - run 'nvm use 16'
   - run 'npm install --global yarn'
# To update the current shell environment, run: eval $(opam env)
2024-11-18 14:07.21 ---> saved as "40608a44c5e4e2d2b2bcb913f4b16e683ee756f0c6c9521633be357214241f50"

/home/opam: (run (shell "opam option solver=builtin-0install"))
No modification in global configuration
2024-11-18 14:07.21 ---> saved as "5332ef8070e9ab16647158afd7764d562ff90de03b6f8385de79df3b7cb21219"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test frama-c.27.1) || true"))
The following actions will be performed:
=== remove 1 package
  - remove    alt-ergo-free     2.2.0                [conflicts with frama-c]
=== downgrade 1 package
  - downgrade ocamlgraph        2.1.0 to 2.0.0       [required by frama-c]
=== recompile 7 packages
  - recompile bos               0.2.1                [uses fmt]
  - recompile fmt               0.9.0                [uses cmdliner]
  - recompile frama-c           27.1
  - recompile logs              0.7.0                [uses cmdliner]
  - recompile ppx_deriving_yaml 0.3.0                [uses yaml]
  - recompile why3              1.6.0                [uses menhir]
  - recompile yaml              3.2.0                [uses bos]
=== upgrade 5 packages
  - upgrade   menhir            20211128 to 20240715 [required by frama-c]
  - upgrade   menhirLib         20211128 to 20240715 [required by menhir]
  - upgrade   menhirSdk         20211128 to 20240715 [required by menhir]
  - upgrade   ocplib-simplex    0.4.1 to 0.5.1       [upstream or system changes]
  - upgrade   psmt2-frontend    0.1 to 0.4.0         [upstream or system changes]
=== install 16 packages
  - install   alt-ergo          2.6.0                [required by frama-c]
  - install   alt-ergo-lib      2.6.0                [required by alt-ergo]
  - install   alt-ergo-parsers  2.6.0                [required by alt-ergo]
  - install   cmdliner          1.3.0                [required by alt-ergo]
  - install   conf-time         1                    [required by frama-c]
  - install   dolmen            0.10                 [required by alt-ergo-lib]
  - install   dolmen_loop       0.10                 [required by alt-ergo-lib]
  - install   dolmen_type       0.10                 [required by alt-ergo-lib]
  - install   dune-build-info   3.16.1               [required by alt-ergo-lib]
  - install   gen               1.1                  [required by dolmen_loop]
  - install   hmap              0.8.1                [required by dolmen]
  - install   menhirCST         20240715             [required by menhir]
  - install   pp_loc            2.1.0                [required by dolmen_loop]
  - install   ppx_blob          0.9.0                [required by alt-ergo-lib]
  - install   spelll            0.4                  [required by dolmen_type]
  - install   uutf              1.0.3                [required by dolmen_type]

The following system packages will first need to be installed:
    time

<><> 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" "time"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package time.
- (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 ... 33195 files and directories currently installed.)
- Preparing to unpack .../time_1.9-0.2_amd64.deb ...
- Unpacking time (1.9-0.2) ...
- Setting up time (1.9-0.2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alt-ergo.2.6.0, alt-ergo-lib.2.6.0, alt-ergo-parsers.2.6.0  (https://github.com/OCamlPro/alt-ergo/releases/download/v2.6.0/alt-ergo-2.6.0.tbz)
-> retrieved alt-ergo-free.2.2.0  (https://alt-ergo.ocamlpro.com/http/alt-ergo-free-2.2.0/alt-ergo-free-2.2.0.tar.gz)
-> retrieved bos.0.2.1  (https://erratique.ch/software/bos/releases/bos-0.2.1.tbz)
-> retrieved cmdliner.1.3.0  (https://erratique.ch/software/cmdliner/releases/cmdliner-1.3.0.tbz)
-> installed conf-time.1
-> retrieved dolmen.0.10, dolmen_loop.0.10, dolmen_type.0.10  (https://github.com/Gbury/dolmen/releases/download/v0.10/dolmen-0.10.tbz)
-> installed cmdliner.1.3.0
-> retrieved dune-build-info.3.16.1  (https://github.com/ocaml/dune/releases/download/3.16.1/dune-3.16.1.tbz)
-> retrieved fmt.0.9.0  (https://erratique.ch/software/fmt/releases/fmt-0.9.0.tbz)
-> installed dune-build-info.3.16.1
-> retrieved frama-c.27.1  (https://www.frama-c.com/download/frama-c-27.1-Cobalt.tar.gz)
-> retrieved gen.1.1  (https://github.com/c-cube/gen/archive/v1.1.tar.gz)
-> retrieved hmap.0.8.1  (http://erratique.ch/software/hmap/releases/hmap-0.8.1.tbz)
-> retrieved logs.0.7.0  (https://erratique.ch/software/logs/releases/logs-0.7.0.tbz)
-> installed hmap.0.8.1
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715  (https://gitlab.inria.fr/fpottier/menhir/-/archive/20240715/archive.tar.gz)
-> installed gen.1.1
-> retrieved ocamlgraph.2.0.0  (https://github.com/backtracking/ocamlgraph/releases/download/2.0.0/ocamlgraph-2.0.0.tbz)
-> retrieved ocplib-simplex.0.5.1  (https://github.com/OCamlPro/ocplib-simplex/releases/download/v0.5.1/ocplib-simplex-0.5.1.tbz)
-> retrieved pp_loc.2.1.0  (https://github.com/Armael/pp_loc/releases/download/v2.1.0/pp_loc-2.1.0.tbz)
-> retrieved ppx_blob.0.9.0  (https://github.com/johnwhitington/ppx_blob/releases/download/0.9.0/ppx_blob-0.9.0.tbz)
-> installed pp_loc.2.1.0
-> retrieved ppx_deriving_yaml.0.3.0  (https://github.com/patricoferris/ppx_deriving_yaml/releases/download/v0.3.0/ppx_deriving_yaml-0.3.0.tbz)
-> retrieved psmt2-frontend.0.4.0  (https://github.com/OCamlPro-Coquera/psmt2-frontend/archive/0.4.0.tar.gz)
-> retrieved spelll.0.4  (https://github.com/c-cube/spelll/archive/v0.4.tar.gz)
-> retrieved uutf.1.0.3  (https://erratique.ch/software/uutf/releases/uutf-1.0.3.tbz)
-> installed spelll.0.4
-> removed   frama-c.27.1
-> retrieved why3.1.6.0  (https://why3.gitlabpages.inria.fr/releases/why3-1.6.0.tar.gz)
-> retrieved yaml.3.2.0  (https://github.com/avsm/ocaml-yaml/releases/download/v3.2.0/yaml-3.2.0.tbz)
-> removed   alt-ergo-free.2.2.0
-> removed   ocplib-simplex.0.4.1
-> removed   ppx_deriving_yaml.0.3.0
-> removed   psmt2-frontend.0.1
-> removed   why3.1.6.0
-> removed   menhir.20211128
-> removed   menhirLib.20211128
-> removed   menhirSdk.20211128
-> removed   ocamlgraph.2.1.0
-> removed   yaml.3.2.0
-> removed   bos.0.2.1
-> removed   logs.0.7.0
-> removed   fmt.0.9.0
-> installed fmt.0.9.0
-> installed ocamlgraph.2.0.0
-> installed ppx_blob.0.9.0
-> installed uutf.1.0.3
-> installed menhirCST.20240715
-> installed menhirSdk.20240715
-> installed menhirLib.20240715
-> installed logs.0.7.0
-> installed ocplib-simplex.0.5.1
-> installed bos.0.2.1
-> installed yaml.3.2.0
-> installed ppx_deriving_yaml.0.3.0
-> installed menhir.20240715
-> installed psmt2-frontend.0.4.0
-> installed dolmen.0.10
-> installed dolmen_type.0.10
-> installed dolmen_loop.0.10
-> installed alt-ergo-lib.2.6.0
-> installed alt-ergo-parsers.2.6.0
-> installed alt-ergo.2.6.0
-> installed why3.1.6.0
-> installed frama-c.27.1
Done.

<><> frama-c.27.1 installed successfully ><><><><><><><><><><><><><><><><><><><>
=> The Frama-C/WP plug-in requires one or more external prover(s).
   Recommended provers are:
   - Alt-Ergo (https://alt-ergo.ocamlpro.com)
   - CVC4     (https://cvc4.github.io)
   - Z3       (https://github.com/Z3Prover/z3)
   Use 'why3 config detect' to configure new provers.
    
=> Ivette is a new GUI for Frama-C, currently in development.
   Run 'ivette' once to finalize installation (requires an internet connection).
   Once finalized, 'ivette' will work offline.
   Finalization also requires Node v16 and Yarn:
   - install NVM (https://github.com/nvm-sh/nvm)
   - run 'nvm use 16'
   - run 'npm install --global yarn'
# To update the current shell environment, run: eval $(opam env)
2024-11-18 14:13.24 ---> saved as "dfea64c9269602eb27201a7d05dac96359ec73b6edc02b051956ae5939525bce"

/home/opam: (run (shell  "opam reinstall --with-test --verbose frama-c.27.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'frama-c.27.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile frama-c 27.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [frama-c.27.1: extract]
-> retrieved frama-c.27.1  (cached)
Processing  2/4: [frama-c: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-j255" "--release" "--promote-install-files=false" "@install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/frama-c.27.1)
- (cd _build/default/src/plugins/e-acsl/contrib/libdlmalloc && /usr/bin/make)
- CC           dlmalloc.c
- AR           libeacsl-dlmalloc.a
- RANLIB       libeacsl-dlmalloc.a
- ar: `u' modifier ignored since `D' is the default (see `U')
Processing  2/4: [frama-c: dune exec]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "exec" "--" "frama-c-ptests" "tests" "src/plugins/*/tests" (CWD=/home/opam/.opam/4.14/.opam-switch/build/frama-c.27.1)
- Test directory: src/plugins/*/tests
- Cannot find configuration file src/plugins/*/tests/ptests_config. (CWD=/home/opam/.opam/4.14/.opam-switch/build/frama-c.27.1).
- Test directory: tests
- Total number of generated dune files: 114
Processing  2/4: [frama-c: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-j255" "@ptests_config" (CWD=/home/opam/.opam/4.14/.opam-switch/build/frama-c.27.1)
- WARNING: Enabling conditions of some tests are false for @tests/spec/ptests_config
- - %{bin-available:unix2dos}:  false 
- - %{lib-available:frama-c-eva.core}:  true 
- - %{lib-available:frama-c-from.core}:  true 
- - %{lib-available:frama-c-inout.core}:  true 
- - %{lib-available:frama-c-scope.core}:  true 
- - %{lib-available:frama-c-variadic.core}:  true 
- WARNING: Enabling conditions of some tests are false for @tests/syntax/ptests_config
- - %{bin-available:clang}:  false 
- - %{lib-available:frama-c-eva.core}:  true 
- - %{lib-available:frama-c-from.core}:  true 
- - %{lib-available:frama-c-inout.core}:  true 
- - %{lib-available:frama-c-report.core}:  true 
- - %{lib-available:frama-c-rtegen.core}:  true 
- - %{lib-available:frama-c-scope.core}:  true 
- - %{lib-available:frama-c-variadic.core}:  true 
- WARNING: Enabling conditions of some tests are false for @tests/value/numerors/ptests_config
- - %{lib-available:frama-c-eva.core}:  true 
- - %{lib-available:frama-c-eva.numerors.core}:  false 
- - %{lib-available:frama-c-from.core}:  true 
- - %{lib-available:frama-c-inout.core}:  true 
- - %{lib-available:frama-c-scope.core}:  true 
- - %{lib-available:frama-c-variadic.core}:  true 
- WARNING: Enabling conditions of some tests are false for @tests/fc_script/ptests_config
- - %{lib-available:frama-c-eva.core}:  true 
- - %{lib-available:frama-c-from.core}:  true 
- - %{lib-available:frama-c-inout.core}:  true 
- - %{lib-available:frama-c-instantiate.core}:  true 
- - %{lib-available:frama-c-metrics.core}:  true 
- - %{lib-available:frama-c-nonterm.core}:  true 
- - %{lib-available:frama-c-report.core}:  true 
- - %{lib-available:frama-c-scope.core}:  true 
- - %{lib-available:frama-c-variadic.core}:  true 
- - %{read:../../../python-3.7-available}:  true 
- - and %{bin-available:clang} %{bin-available:yq}:  and false false 
-> compiled  frama-c.27.1
Processing  3/4: [frama-c: make uninstall]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "make" "PREFIX=/home/opam/.opam/4.14" "-f" "ivette/Makefile.installation" "uninstall" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/frama-c.27.1)
- Removing Ivette
-> removed   frama-c.27.1
Processing  4/4: [frama-c: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "RELEASE=yes" "PREFIX=/home/opam/.opam/4.14" "MANDIR=/home/opam/.opam/4.14/man" "install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/frama-c.27.1)
- Installing Frama-C to current Opam switch
-   Copying and relocating files...
-  (done)
- Installing Ivette to /home/opam/.opam/4.14
-> installed frama-c.27.1
Done.

<><> frama-c.27.1 installed successfully ><><><><><><><><><><><><><><><><><><><>
=> The Frama-C/WP plug-in requires one or more external prover(s).
   Recommended provers are:
   - Alt-Ergo (https://alt-ergo.ocamlpro.com)
   - CVC4     (https://cvc4.github.io)
   - Z3       (https://github.com/Z3Prover/z3)
   Use 'why3 config detect' to configure new provers.
    
=> Ivette is a new GUI for Frama-C, currently in development.
   Run 'ivette' once to finalize installation (requires an internet connection).
   Once finalized, 'ivette' will work offline.
   Finalization also requires Node v16 and Yarn:
   - install NVM (https://github.com/nvm-sh/nvm)
   - run 'nvm use 16'
   - run 'npm install --global yarn'
# To update the current shell environment, run: eval $(opam env)
2024-11-18 14:17.59 ---> saved as "822e58de62db014f8ab6dde8d316edbb06dde1146482bb931049026b95dc9209"
Job succeeded
2024-11-18 14:18.14: Job succeeded