(for PR #28275)
2025-07-30 12:38.04: New job: test rocqide.9.1+rc1, using opam 2.3 from https://github.com/ocaml/opam-repository.git#refs/pull/28275/head (66e60293e0f8ab4582472efcfcea76dc9977ca83) on opensuse-tumbleweed-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/28275/head" && git reset --hard 66e60293 git fetch origin master git merge --no-edit f6368c68f94811eb2e5f105c731f2494a6e6fe04 cat > ../Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:583e4e7acfac3107e978a91d69df8ce078c4bfdb6f5f5fbe83df100ae19fdd7f USER 1000:1000 WORKDIR /home/opam RUN sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam RUN opam init --reinit -ni RUN opam option solver=builtin-0install && opam config report ENV OPAMDOWNLOADJOBS="1" ENV OPAMERRLOGLEN="0" ENV OPAMPRECISETRACKING="1" ENV CI="true" ENV OPAM_REPO_CI="true" RUN rm -rf opam-repository/ COPY --chown=1000:1000 . opam-repository/ RUN opam repository set-url --strict default opam-repository/ RUN opam update --depexts || true RUN opam pin add -k version -yn rocqide.9.1+rc1 9.1+rc1 RUN opam reinstall rocqide.9.1+rc1; \ 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 "\"opensuse-tumbleweed\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'rocqide.9.1+rc1' && partial_fails="$partial_fails $pkg"; \ done; \ test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \ exit 1 RUN (opam reinstall --with-test rocqide.9.1+rc1) || true RUN opam reinstall --with-test --verbose rocqide.9.1+rc1; \ 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 "\"opensuse-tumbleweed\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'rocqide.9.1+rc1' && partial_fails="$partial_fails $pkg"; \ done; \ test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \ exit 1 END-OF-DOCKERFILE docker build -f ../Dockerfile . 2025-07-30 12:38.04: Using cache hint "ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:583e4e7acfac3107e978a91d69df8ce078c4bfdb6f5f5fbe83df100ae19fdd7f-rocqide.9.1+rc1-66e60293e0f8ab4582472efcfcea76dc9977ca83" 2025-07-30 12:38.04: Using OBuilder spec: ((from ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:583e4e7acfac3107e978a91d69df8ce078c4bfdb6f5f5fbe83df100ae19fdd7f) (user (uid 1000) (gid 1000)) (workdir /home/opam) (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) (run (network host) (shell "opam init --reinit --config .opamrc-sandbox -ni")) (run (shell "opam option solver=builtin-0install && opam config report")) (env OPAMDOWNLOADJOBS 1) (env OPAMERRLOGLEN 0) (env OPAMPRECISETRACKING 1) (env CI true) (env OPAM_REPO_CI true) (run (shell "rm -rf opam-repository/")) (copy (src .) (dst opam-repository/)) (run (shell "opam repository set-url --strict default opam-repository/")) (run (network host) (shell "opam update --depexts || true")) (run (shell "opam pin add -k version -yn rocqide.9.1+rc1 9.1+rc1")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall rocqide.9.1+rc1;\ \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 \"\\\"opensuse-tumbleweed\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'rocqide.9.1+rc1' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) (run (network host) (shell "(opam reinstall --with-test rocqide.9.1+rc1) || true")) (run (shell "opam reinstall --with-test --verbose rocqide.9.1+rc1;\ \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 \"\\\"opensuse-tumbleweed\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'rocqide.9.1+rc1' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) ) 2025-07-30 12:38.04: Waiting for resource in pool OCluster 2025-07-30 12:38.14: Waiting for worker… 2025-07-30 12:41.28: Got resource from pool OCluster Building on doris.caelum.ci.dev All commits already cached HEAD is now at f6368c68f9 Merge pull request #28271 from jmid/qcheck-lin-ocaml-bound Updating f6368c68f9..66e60293e0 Fast-forward packages/coq-core/coq-core.9.1+rc1/opam | 50 +++++++++++++++++ packages/coq-lsp/coq-lsp.0.2.3+9.0/opam | 3 +- packages/coq/coq.9.1+rc1/opam | 14 +++++ packages/coqide-server/coqide-server.9.1+rc1/opam | 42 ++++++++++++++ packages/rocq-core/rocq-core.9.1+rc1/opam | 51 +++++++++++++++++ packages/rocq-devtools/rocq-devtools.9.1+rc1/opam | 48 ++++++++++++++++ packages/rocq-runtime/rocq-runtime.9.1+rc1/opam | 67 +++++++++++++++++++++++ packages/rocqide/rocqide.9.1+rc1/opam | 45 +++++++++++++++ 8 files changed, 319 insertions(+), 1 deletion(-) create mode 100644 packages/coq-core/coq-core.9.1+rc1/opam create mode 100644 packages/coq/coq.9.1+rc1/opam create mode 100644 packages/coqide-server/coqide-server.9.1+rc1/opam create mode 100644 packages/rocq-core/rocq-core.9.1+rc1/opam create mode 100644 packages/rocq-devtools/rocq-devtools.9.1+rc1/opam create mode 100644 packages/rocq-runtime/rocq-runtime.9.1+rc1/opam create mode 100644 packages/rocqide/rocqide.9.1+rc1/opam (from ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:583e4e7acfac3107e978a91d69df8ce078c4bfdb6f5f5fbe83df100ae19fdd7f) Unable to find image 'ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:583e4e7acfac3107e978a91d69df8ce078c4bfdb6f5f5fbe83df100ae19fdd7f' locally docker.io/ocaml/opam@sha256:583e4e7acfac3107e978a91d69df8ce078c4bfdb6f5f5fbe83df100ae19fdd7f: Pulling from ocaml/opam b1905bac8b4a: Pulling fs layer ea1ac892951d: Pulling fs layer 5fc6bc4e1a5e: Pulling fs layer 3f7215e3bae0: Pulling fs layer f34312d89867: Pulling fs layer 5fc6bc4e1a5e: Waiting 3f7215e3bae0: Waiting f34312d89867: Waiting ea1ac892951d: Verifying Checksum ea1ac892951d: Download complete 5fc6bc4e1a5e: Verifying Checksum 5fc6bc4e1a5e: Download complete 3f7215e3bae0: Download complete f34312d89867: Download complete b1905bac8b4a: Verifying Checksum b1905bac8b4a: Download complete b1905bac8b4a: Pull complete ea1ac892951d: Pull complete 5fc6bc4e1a5e: Pull complete 3f7215e3bae0: Pull complete f34312d89867: Pull complete Digest: sha256:583e4e7acfac3107e978a91d69df8ce078c4bfdb6f5f5fbe83df100ae19fdd7f Status: Downloaded newer image for ocaml/opam@sha256:583e4e7acfac3107e978a91d69df8ce078c4bfdb6f5f5fbe83df100ae19fdd7f 2025-07-30 12:42.03 ---> using "db28928054df9ac935fb1388817ade58db5d7e63ccc3656f2c1b75a196cb4746" from cache /: (user (uid 1000) (gid 1000)) /: (workdir /home/opam) /home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) 2025-07-30 12:42.03 ---> using "570451667f7d32d9d7bfb3d0a54832bf167215949c8b9cd6f760639e40a29161" 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 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using: opam option jobs=71 --global Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] Initialised 2025-07-30 12:42.03 ---> using "e439764acf87cc0c29ffd69d1b8d5e77817d6127394ba85a6509ba1b48a3ca70" from cache /home/opam: (run (shell "opam option solver=builtin-0install && opam config report")) Set to 'builtin-0install' the field solver in global configuration # opam config report # opam-version 2.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724) # self-upgrade no # system arch=x86_64 os=linux os-distribution=opensuse-tumbleweed os-version=20250724 # solver builtin-0install # install-criteria -changed,-count[avoid-version,solution] # upgrade-criteria -count[avoid-version,solution] # jobs 255 # repositories 1 (version-controlled) # pinned 1 (version) # current-switch 4.14 # invariant ["ocaml-base-compiler" {= "4.14.2"}] # compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1 # ocaml:native true # ocaml:native-tools true # ocaml:native-dynlink true # ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml # ocaml:preinstalled false # ocaml:compiler 4.14.2 2025-07-30 12:42.03 ---> using "dbbbb7dbd5e4538fc75610315fc41988569a3b4026ace59fbf5dec49cd52fbbd" from cache /home/opam: (env OPAMDOWNLOADJOBS 1) /home/opam: (env OPAMERRLOGLEN 0) /home/opam: (env OPAMPRECISETRACKING 1) /home/opam: (env CI true) /home/opam: (env OPAM_REPO_CI true) /home/opam: (run (shell "rm -rf opam-repository/")) 2025-07-30 12:42.03 ---> using "45ef9cb61f1527e319f5995c29d4fea6966c29f6a4cdb657dfc7d268c3052c2e" from cache /home/opam: (copy (src .) (dst opam-repository/)) 2025-07-30 12:42.11 ---> saved as "3e65e8bb696836adb36a1fc32a1c4d29e5da001459b3e91c56eff9484e331376" /home/opam: (run (shell "opam repository set-url --strict default opam-repository/")) [default] Initialised 2025-07-30 12:42.31 ---> saved as "30e336892e1ce2ba26d2fd11b2180b2d2a950121e235aded49e5e20dc6083001" /home/opam: (run (network host) (shell "opam update --depexts || true")) + /usr/bin/sudo "zypper" "--non-interactive" "refresh" - Repository 'openSUSE-Tumbleweed-Update' is up to date. - Retrieving repository 'openSUSE-Tumbleweed-Non-Oss' metadata [... - Looking for gpg keys in repository openSUSE-Tumbleweed-Non-Oss. - gpgkey=http://download.opensuse.org/tumbleweed/repo/non-oss/repodata/repomd.xml.key - .......done] - Building repository 'openSUSE-Tumbleweed-Non-Oss' cache [....done] - Retrieving repository 'openSUSE-Tumbleweed-Oss' metadata [... - Looking for gpg keys in repository openSUSE-Tumbleweed-Oss. - gpgkey=http://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml.key - ........ - ........... - ......... - .......... - ......... - .......... - ......... - ...done] - Building repository 'openSUSE-Tumbleweed-Oss' cache [.. - ..done] - All repositories have been refreshed. 2025-07-30 12:42.45 ---> saved as "7919309ac186ed2817a15dd72527c18034ca9ee8957fc7c40d961aea50f68e31" /home/opam: (run (shell "opam pin add -k version -yn rocqide.9.1+rc1 9.1+rc1")) rocqide is now pinned to version 9.1+rc1 2025-07-30 12:42.46 ---> saved as "5c66f40a9b2106e5d233f31f6313e73ee6d5f6e5f838ef698445ba92c45e4116" /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall rocqide.9.1+rc1;\ \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 \"\\\"opensuse-tumbleweed\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'rocqide.9.1+rc1' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) rocqide.9.1+rc1 is not installed. Install it? [y/n] y The following actions will be performed: === install 20 packages - install cairo2 0.6.5 [required by rocqide] - install camlp-streams 5.0.1 [required by lablgtk3-sourceview3] - install conf-adwaita-icon-theme 2 [required by rocqide] - install conf-cairo 1 [required by cairo2] - install conf-findutils 1 [required by rocqide] - install conf-gmp 5 [required by zarith] - install conf-gtk3 18 [required by lablgtk3] - install conf-gtksourceview3 0+2 [required by lablgtk3-sourceview3] - install conf-linux-libc-dev 0 [required by rocq-runtime] - install conf-pkg-config 4 [required by conf-adwaita-icon-theme] - install coqide-server 9.1+rc1 [required by rocqide] - install csexp 1.5.2 [required by dune-configurator] - install dune 3.19.1 [required by rocqide] - install dune-configurator 3.19.1 [required by cairo2] - install lablgtk3 3.1.5 [required by lablgtk3-sourceview3] - install lablgtk3-sourceview3 3.1.5 [required by rocqide] - install ocamlfind 1.9.8 [required by rocqide] - install rocq-runtime 9.1+rc1 [required by coqide-server] - install rocqide 9.1+rc1 (pinned) - install zarith 1.14 [required by rocq-runtime] The following system packages will first need to be installed: adwaita-icon-theme cairo-devel gmp-devel gtk3-devel gtksourceview-devel <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> opam believes some required external dependencies are missing. opam can: > 1. Run zypper to install them (may need root/sudo access) 2. Display the recommended zypper 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 "zypper" "--non-interactive" "install" "adwaita-icon-theme" "cairo-devel" "gmp-devel" "gtk3-devel" "gtksourceview-devel" - Loading repository data... - Reading installed packages... - Resolving package dependencies... - - The following 176 NEW packages are going to be installed: - Mesa Mesa-KHR-devel Mesa-dri Mesa-gallium Mesa-libEGL-devel Mesa-libEGL1 Mesa-libGL-devel Mesa-libGL1 Mesa-vulkan-device-select adwaita-icon-theme at-spi2-core at-spi2-core-devel cairo-devel cups-config dbus-1-daemon dbus-1-devel fontconfig fontconfig-devel freetype2-devel fribidi-devel gdk-pixbuf-devel gdk-pixbuf-loader-rsvg gdk-pixbuf-query-loaders gettext-its-gtk4 gio-branding-openSUSE girepository-1_0 glib2-devel glib2-tools gmp-devel graphite2-devel gtk3-data gtk3-devel gtk3-schema gtk3-tools gtksourceview-devel harfbuzz-devel hicolor-icon-theme libLLVM20 libSPIRV-Tools-2025_3_rc1 libXcomposite-devel libXcomposite1 libXcursor-devel libXcursor1 libXdamage-devel libXdamage1 libXext-devel libXext6 libXfixes-devel libXfixes3 libXft-devel libXft2 libXi-devel libXi6 libXinerama-devel libXinerama1 libXrandr-devel libXrandr2 libXrender-devel libXrender1 libXtst-devel libXtst6 libXxf86vm1 libatk-1_0-0 libatk-bridge-2_0-0 libatspi0 libavahi-client3 libavahi-common3 libblkid-devel libbrotli-devel libbrotlienc1 libbz2-devel libcairo-gobject2 libcairo-script-interpreter2 libcairo2 libcolord2 libcups2 libdatrie-devel libdatrie1 libdav1d7 libdrm2 libdrm_amdgpu1 libdrm_intel1 libeconf-devel libelf1 libepoxy-devel libepoxy0 libexpat-devel libffi-devel libfontconfig1 libfreetype6 libfribidi0 libgbm1 libgdk_pixbuf-2_0-0 libgio-2_0-0 libgirepository-1_0-1 libgirepository-2_0-0 libglvnd libglvnd-devel libgmodule-2_0-0 libgmpxx4 libgobject-2_0-0 libgraphite2-3 libgthread-2_0-0 libgtk-3-0 libgtksourceview-3_0-1 libharfbuzz-cairo0 libharfbuzz-gobject0 libharfbuzz-icu0 libharfbuzz-subset0 libharfbuzz0 libicu-devel libicu77 libicu77-ledata libjbig2 libjpeg62 libjpeg62-devel libjpeg8 liblcms2-2 liblzo2-2 libmount-devel libmpdec4 libpango-1_0-0 libpciaccess0 libpcre2-16-0 libpcre2-32-0 libpcre2-posix3 libpixman-1-0 libpixman-1-0-devel libpng16-16 libpng16-compat-devel libpng16-devel libpython3_13-1_0 librsvg-2-2 libselinux-devel libsepol-devel libthai-data libthai-devel libthai0 libtiff-devel libtiff6 libvulkan1 libvulkan_lvp libwayland-client0 libwayland-cursor0 libwayland-egl1 libwayland-server0 libxkbcommon-devel libxkbcommon0 libxml2-devel libxml2-tools libxshmfence1 libzstd-devel lzo-devel pango-devel pcre2-devel python313-base readline-devel shared-mime-info system-user-lp typelib-1_0-Atk-1_0 typelib-1_0-Atspi-2_0 typelib-1_0-GIRepository-3_0 typelib-1_0-GLib-2_0 typelib-1_0-GLibUnix-2_0 typelib-1_0-GModule-2_0 typelib-1_0-GObject-2_0 typelib-1_0-GdkPixbuf-2_0 typelib-1_0-GdkPixdata-2_0 typelib-1_0-Gio-2_0 typelib-1_0-Gtk-3_0 typelib-1_0-GtkSource-3_0 typelib-1_0-HarfBuzz-0_0 typelib-1_0-Pango-1_0 wayland-devel xkeyboard-config xz-devel - - 176 new packages to install. - - Package download size: 114.2 MiB - - Package install size change: - | 520.1 MiB required by packages that will be installed - 520.1 MiB | - 0 B released by packages that will be removed - - Backend: classic_rpmtrans - Continue? [y/n/v/...? shows all options] (y): y - Preloading Packages [.. - Preloading: typelib-1_0-GLibUnix-2_0-2.84.3-1.1.x86_64.rpm [done] - . - Preloading: libselinux-devel-3.9-2.1.x86_64.rpm [done] - . - Preloading: libtiff-devel-4.7.0-6.1.x86_64.rpm [done] - . - Preloading: libvulkan_lvp-25.1.6-420.1.x86_64.rpm [done] - .. - Preloading: libicu-devel-77.1-3.1.x86_64.rpm [done] - . - . - Preloading: libharfbuzz0-11.3.2-1.1.x86_64.rpm [done] - . - Preloading: libfontconfig1-2.16.0-1.3.x86_64.rpm [done] - . - . - Preloading: fontconfig-2.16.0-1.3.x86_64.rpm [done] - .. - Preloading: libthai-devel-0.1.29-1.10.x86_64.rpm [done] - . - . - Preloading: wayland-devel-1.24.0-1.1.x86_64.rpm [done] - .. - Preloading: typelib-1_0-GModule-2_0-2.84.3-1.1.x86_64.rpm [done] - . - . - Preloading: libcolord2-1.4.6-8.3.x86_64.rpm [done] - .. - Preloading: libatspi0-2.56.3-3.1.x86_64.rpm [done] - . - . - Preloading: freetype2-devel-2.13.3-2.1.x86_64.rpm [done] - . - Preloading: gdk-pixbuf-query-loaders-2.42.12-3.1.x86_64.rpm [done] - . - . - Preloading: libcups2-2.4.12-1.1.x86_64.rpm [done] - .. - Preloading: libxkbcommon-devel-1.10.0-1.1.x86_64.rpm [done] - . - . - Preloading: libXtst-devel-1.2.5-1.3.x86_64.rpm [done] - . - Preloading: typelib-1_0-Atk-1_0-2.56.3-3.1.x86_64.rpm [done] - . - . - Preloading: typelib-1_0-Gio-2_0-2.84.3-1.1.x86_64.rpm [done] - .. - Preloading: libharfbuzz-subset0-11.3.2-1.1.x86_64.rpm [done] - . - . - Preloading: glib2-tools-2.84.3-1.1.x86_64.rpm [done] - .. - Preloading: libpng16-devel-1.6.44-1.3.x86_64.rpm [done] - . - . - Preloading: libpng16-compat-devel-1.6.44-1.3.x86_64.rpm [done] - .. - Preloading: libfreetype6-2.13.3-2.1.x86_64.rpm [done] - . - . - Preloading: libpixman-1-0-devel-0.46.2-2.1.x86_64.rpm [done] - .. - Preloading: libthai0-0.1.29-1.10.x86_64.rpm [done] - . - . - Preloading: pcre2-devel-10.45-2.1.x86_64.rpm [done] - . - Preloading: libwayland-cursor0-1.24.0-1.1.x86_64.rpm [done] - . - . - Preloading: Mesa-vulkan-device-select-25.1.6-420.1.x86_64.rpm [done] - .. - Preloading: gio-branding-openSUSE-42.1-2.3.noarch.rpm [done] - . - . - Preloading: libharfbuzz-icu0-11.3.2-1.1.x86_64.rpm [done] - .. - Preloading: cups-config-2.4.12-1.1.x86_64.rpm [done] - . - . - Preloading: libxkbcommon0-1.10.0-1.1.x86_64.rpm [done] - .. - Preloading: libxml2-devel-2.13.8-3.1.x86_64.rpm [done] - . - . - Preloading: libXinerama-devel-1.1.5-1.6.x86_64.rpm [done] - .. - Preloading: libXi-devel-1.8.2-1.3.x86_64.rpm [done] - . - . - Preloading: libXdamage-devel-1.1.6-1.6.x86_64.rpm [done] - .. - Preloading: libXcomposite-devel-0.4.6-1.6.x86_64.rpm [done] - . - . - Preloading: libXrandr-devel-1.5.4-1.5.x86_64.rpm [done] - .. - Preloading: libgio-2_0-0-2.84.3-1.1.x86_64.rpm [done] - . - . - Preloading: libXcursor-devel-1.2.3-1.3.x86_64.rpm [done] - .. - Preloading: typelib-1_0-GObject-2_0-2.84.3-1.1.x86_64.rpm [done] - . - . - Preloading: gdk-pixbuf-devel-2.42.12-3.1.x86_64.rpm [done] - .. - Preloading: typelib-1_0-Pango-1_0-1.56.4-1.1.x86_64.rpm [done] - . - . - Preloading: libglvnd-devel-1.7.0-1.6.x86_64.rpm [done] - .. - Preloading: librsvg-2-2-2.60.0-2.1.x86_64.rpm [done] - . - . - Preloading: typelib-1_0-GdkPixdata-2_0-2.42.12-3.1.x86_64.rpm [done] - .. - Preloading: harfbuzz-devel-11.3.2-1.1.x86_64.rpm [done] - . - . - Preloading: gdk-pixbuf-loader-rsvg-2.60.0-2.1.x86_64.rpm [done] - .. - - Preloading: Mesa-libGL-devel-25.1.6-420.1.x86_64.rpm [done] - .. - Preloading: Mesa-libEGL-devel-25.1.6-420.1.x86_64.rpm [done] - .. - - Preloading: cairo-devel-1.18.4-2.1.x86_64.rpm [done] - .. - Preloading: at-spi2-core-devel-2.56.3-3.1.x86_64.rpm [done] - . - - Preloading: pango-devel-1.56.4-1.1.x86_64.rpm [done] - .. - Preloading: gtk3-tools-3.24.49+14-2.1.x86_64.rpm [done] - . - . - Preloading: adwaita-icon-theme-48.1-1.1.noarch.rpm [done] - .. - Preloading: libepoxy-devel-1.5.10-2.8.x86_64.rpm [done] - . - . - Preloading: typelib-1_0-Gtk-3_0-3.24.49+14-2.1.x86_64.rpm [done] - .. - Preloading: libgtksourceview-3_0-1-3.24.11-6.3.x86_64.rpm [done] - . - . - Preloading: libgtk-3-0-3.24.49+14-2.1.x86_64.rpm [done] - .. - Preloading: typelib-1_0-GtkSource-3_0-3.24.11-6.3.x86_64.rpm [done] - . - . - Preloading: libgdk_pixbuf-2_0-0-2.42.12-3.1.x86_64.rpm [done] - .. - Preloading: gtksourceview-devel-3.24.11-6.3.x86_64.rpm [done] - . - . - Preloading: libharfbuzz-gobject0-11.3.2-1.1.x86_64.rpm [done] - .. - - Preloading: libXft2-2.3.9-1.1.x86_64.rpm [done] - .. - Preloading: libcairo2-1.18.4-2.1.x86_64.rpm [done] - . - Preloading: gtk3-devel-3.24.49+14-2.1.x86_64.rpm [done] - . - . - Preloading: fontconfig-devel-2.16.0-1.3.x86_64.rpm [done] - .. - Preloading: Mesa-25.1.6-420.1.x86_64.rpm [done] - . - . - Preloading: Mesa-gallium-25.1.6-420.1.x86_64.rpm [done] - .. - Preloading: libglvnd-1.7.0-1.6.x86_64.rpm [done] - . - . - Preloading: typelib-1_0-Atspi-2_0-2.56.3-3.1.x86_64.rpm [done] - .. - Preloading: libatk-bridge-2_0-0-2.56.3-3.1.x86_64.rpm [done] - . - . - Preloading: libdrm_intel1-2.4.124-2.3.x86_64.rpm [done] - .. - - Preloading: typelib-1_0-HarfBuzz-0_0-11.3.2-1.1.x86_64.rpm [done] - .. - Preloading: glib2-devel-2.84.3-1.1.x86_64.rpm [done] - .. - Preloading: Mesa-libEGL1-25.1.6-420.1.x86_64.rpm [done] - . - . - Preloading: libharfbuzz-cairo0-11.3.2-1.1.x86_64.rpm [done] - .. - Preloading: libcairo-script-interpreter2-1.18.4-2.1.x86_64.rpm [done] - . - . - Preloading: libcairo-gobject2-1.18.4-2.1.x86_64.rpm [done] - .. - Preloading: libpango-1_0-0-1.56.4-1.1.x86_64.rpm [done] - . - . - Preloading: libXft-devel-2.3.9-1.1.x86_64.rpm [done] - .. - - Preloading: at-spi2-core-2.56.3-3.1.x86_64.rpm [done] - .. - Preloading: typelib-1_0-GdkPixbuf-2_0-2.42.12-3.1.x86_64.rpm [done] - .. - - Preloading: libjpeg62-62.4.0-81.3.x86_64.rpm [done] - .. - Preloading: libexpat-devel-2.7.1-2.1.x86_64.rpm [done] - .. - - Preloading: libffi-devel-3.4.7-1.1.x86_64.rpm [done] - .. - Preloading: Mesa-dri-25.1.6-420.1.x86_64.rpm [done] - . - - Preloading: Mesa-libGL1-25.1.6-420.1.x86_64.rpm [done] - .. - Preloading: libfribidi0-1.0.15-1.3.x86_64.rpm [done] - .. - - Preloading: libgmodule-2_0-0-2.84.3-1.1.x86_64.rpm [done] - .. - Preloading: libgmpxx4-6.3.0-5.1.x86_64.rpm [done] - .. - - Preloading: libgraphite2-3-1.3.14-6.1.x86_64.rpm [done] - . - Preloading: libgthread-2_0-0-2.84.3-1.1.x86_64.rpm [done] - .. - - Preloading: libjbig2-2.1-5.5.x86_64.rpm [done] - .. - Preloading: libepoxy0-1.5.10-2.8.x86_64.rpm [done] - . - . - Preloading: libjpeg8-8.3.2-81.4.x86_64.rpm [done] - . - Preloading: libgobject-2_0-0-2.84.3-1.1.x86_64.rpm [done] - .. - - Preloading: liblcms2-2-2.16-1.5.x86_64.rpm [done] - .. - Preloading: liblzo2-2-2.10-9.3.x86_64.rpm [done] - .. - - Preloading: libmpdec4-4.0.1-2.1.x86_64.rpm [done] - .. - Preloading: libpciaccess0-0.18.1-1.5.x86_64.rpm [done] - .. - - Preloading: libpcre2-16-0-10.45-2.1.x86_64.rpm [done] - .. - Preloading: libpcre2-posix3-10.45-2.1.x86_64.rpm [done] - . - . - Preloading: libpixman-1-0-0.46.2-2.1.x86_64.rpm [done] - .. - Preloading: libpng16-16-1.6.44-1.3.x86_64.rpm [done] - . - . - Preloading: libXext6-1.3.6-1.4.x86_64.rpm [done] - .. - Preloading: dbus-1-daemon-1.14.10-4.4.x86_64.rpm [done] - . - . - Preloading: libpcre2-32-0-10.45-2.1.x86_64.rpm [done] - .. - Preloading: dbus-1-devel-1.14.10-4.4.x86_64.rpm [done] - . - . - Preloading: gettext-its-gtk4-4.18.6-1.1.x86_64.rpm [done] - .. - Preloading: gtk3-data-3.24.49+14-2.1.noarch.rpm [done] - . - . - Preloading: libmount-devel-2.41.1-2.1.x86_64.rpm [done] - .. - Preloading: gtk3-schema-3.24.49+14-2.1.noarch.rpm [done] - . - . - Preloading: hicolor-icon-theme-0.18-1.3.noarch.rpm [done] - .. - Preloading: libicu77-ledata-77.1-3.1.noarch.rpm [done] - . - . - Preloading: libXcomposite1-0.4.6-1.6.x86_64.rpm [done] - .. - Preloading: libXdamage1-1.1.6-1.6.x86_64.rpm [done] - . - - Preloading: libSPIRV-Tools-2025_3_rc1-2025.3~rc1-1.1.x86_64.rpm [done] - .. - Preloading: libsepol-devel-3.9-2.1.x86_64.rpm [done] - . - . - Preloading: libXfixes3-6.0.1-1.5.x86_64.rpm [done] - .. - Preloading: libXrender1-0.9.12-1.2.x86_64.rpm [done] - . - . - Preloading: libavahi-common3-0.8-39.1.x86_64.rpm [done] - . - Preloading: libbz2-devel-1.0.8-5.12.x86_64.rpm [done] - . - . - Preloading: libbrotlienc1-1.1.0-1.6.x86_64.rpm [done] - .. - Preloading: libdatrie1-0.2.13-1.17.x86_64.rpm [done] - . - . - Preloading: libdrm2-2.4.124-2.3.x86_64.rpm [done] - . - Preloading: libdav1d7-1.5.1-1.3.x86_64.rpm [done] - . - . - Preloading: libeconf-devel-0.7.9-1.1.x86_64.rpm [done] - .. - Preloading: libelf1-0.192-2.2.x86_64.rpm [done] - . - . - Preloading: libgirepository-2_0-0-2.84.3-1.1.x86_64.rpm [done] - .. - Preloading: libXcursor1-1.2.3-1.3.x86_64.rpm [done] - . - . - Preloading: libavahi-client3-0.8-39.1.x86_64.rpm [done] - .. - Preloading: libbrotli-devel-1.1.0-1.6.x86_64.rpm [done] - . - . - Preloading: libdatrie-devel-0.2.13-1.17.x86_64.rpm [done] - .. - Preloading: libgbm1-25.1.6-420.1.x86_64.rpm [done] - . - . - Preloading: libdrm_amdgpu1-2.4.124-2.3.x86_64.rpm [done] - .. - Preloading: libblkid-devel-2.41.1-2.1.x86_64.rpm [done] - . - . - Preloading: fribidi-devel-1.0.15-1.3.x86_64.rpm [done] - .. - Preloading: gmp-devel-6.3.0-5.1.x86_64.rpm [done] - . - . - Preloading: typelib-1_0-GLib-2_0-2.84.3-1.1.x86_64.rpm [done] - .. - Preloading: libXrandr2-1.5.4-1.5.x86_64.rpm [done] - . - . - Preloading: libatk-1_0-0-2.56.3-3.1.x86_64.rpm [done] - .. - Preloading: libgirepository-1_0-1-1.84.0-2.1.x86_64.rpm [done] - . - . - Preloading: graphite2-devel-1.3.14-6.1.x86_64.rpm [done] - .. - Preloading: libjpeg62-devel-62.4.0-81.3.x86_64.rpm [done] - . - . - Preloading: libtiff6-4.7.0-6.1.x86_64.rpm [done] - .. - Preloading: lzo-devel-2.10-9.3.x86_64.rpm [done] - . - . - Preloading: libicu77-77.1-3.1.x86_64.rpm [done] - .. - Preloading: system-user-lp-20170617-27.1.noarch.rpm [done] - . - . - Preloading: libthai-data-0.1.29-1.10.x86_64.rpm [done] - .. - - Preloading: libvulkan1-1.4.321-1.1.x86_64.rpm [done] - .. - Preloading: libwayland-client0-1.24.0-1.1.x86_64.rpm [done] - .. - - Preloading: libpython3_13-1_0-3.13.5-3.1.x86_64.rpm [done] - .. - Preloading: libwayland-egl1-1.24.0-1.1.x86_64.rpm [done] - .. - - Preloading: libwayland-server0-1.24.0-1.1.x86_64.rpm [done] - .. - Preloading: libxml2-tools-2.13.8-3.1.x86_64.rpm [done] - .. - - Preloading: libxshmfence1-1.3.3-1.2.x86_64.rpm [done] - .. - Preloading: libLLVM20-20.1.8-2.1.x86_64.rpm [done] - . - - Preloading: libzstd-devel-1.5.7-3.1.x86_64.rpm [done] - .. - Preloading: readline-devel-8.2.13-2.3.x86_64.rpm [done] - .. - - Preloading: Mesa-KHR-devel-25.1.6-420.1.x86_64.rpm [done] - .. - Preloading: typelib-1_0-GIRepository-3_0-2.84.3-1.1.x86_64.rpm [done] - .. - - Preloading: shared-mime-info-2.4-3.4.x86_64.rpm [done] - .. - Preloading: xz-devel-5.8.1-1.1.x86_64.rpm [done] - .. - - Preloading: xkeyboard-config-2.45-2.1.noarch.rpm [done] - .. - Preloading: python313-base-3.13.5-3.1.x86_64.rpm [done] - .. - - Preloading: libXxf86vm1-1.1.6-1.2.x86_64.rpm [done] - . - Preloading: libXtst6-1.2.5-1.3.x86_64.rpm [done] - .. - - Preloading: libXinerama1-1.1.5-1.6.x86_64.rpm [done] - .. - Preloading: libXi6-1.8.2-1.3.x86_64.rpm [done] - . - Preloading: libXext-devel-1.3.6-1.4.x86_64.rpm [done] - .. - - Preloading: libXfixes-devel-6.0.1-1.5.x86_64.rpm [done] - . - Preloading: libXrender-devel-0.9.12-1.2.x86_64.rpm [done] - . - . - Preloading: girepository-1_0-1.84.0-2.1.x86_64.rpm [done] - . - done] - Retrieving: Mesa-KHR-devel-25.1.6-420.1.x86_64 (openSUSE-Tumbleweed-Oss) (1/176), 57.7 KiB - Retrieving: dbus-1-daemon-1.14.10-4.4.x86_64 (openSUSE-Tumbleweed-Oss) (2/176), 138.1 KiB - Retrieving: dbus-1-devel-1.14.10-4.4.x86_64 (openSUSE-Tumbleweed-Oss) (3/176), 47.7 KiB - Retrieving: gettext-its-gtk4-4.18.6-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (4/176), 74.0 KiB - Retrieving: gtk3-data-3.24.49+14-2.1.noarch (openSUSE-Tumbleweed-Oss) (5/176), 22.5 KiB - Retrieving: gtk3-schema-3.24.49+14-2.1.noarch (openSUSE-Tumbleweed-Oss) (6/176), 22.1 KiB - Retrieving: hicolor-icon-theme-0.18-1.3.noarch (openSUSE-Tumbleweed-Oss) (7/176), 76.3 KiB - Retrieving: libLLVM20-20.1.8-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (8/176), 30.0 MiB - Retrieving: libSPIRV-Tools-2025_3_rc1-2025.3~rc1-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (9/176), 1.6 MiB - Retrieving: libXcomposite1-0.4.6-1.6.x86_64 (openSUSE-Tumbleweed-Oss) (10/176), 12.2 KiB - Retrieving: libXdamage1-1.1.6-1.6.x86_64 (openSUSE-Tumbleweed-Oss) (11/176), 12.0 KiB - Retrieving: libXext6-1.3.6-1.4.x86_64 (openSUSE-Tumbleweed-Oss) (12/176), 35.5 KiB - Retrieving: libXfixes3-6.0.1-1.5.x86_64 (openSUSE-Tumbleweed-Oss) (13/176), 18.5 KiB - Retrieving: libXrender1-0.9.12-1.2.x86_64 (openSUSE-Tumbleweed-Oss) (14/176), 26.5 KiB - Retrieving: libavahi-common3-0.8-39.1.x86_64 (openSUSE-Tumbleweed-Oss) (15/176), 32.2 KiB - Retrieving: libbrotlienc1-1.1.0-1.6.x86_64 (openSUSE-Tumbleweed-Oss) (16/176), 264.8 KiB - Retrieving: libbz2-devel-1.0.8-5.12.x86_64 (openSUSE-Tumbleweed-Oss) (17/176), 17.3 KiB - Retrieving: libdatrie1-0.2.13-1.17.x86_64 (openSUSE-Tumbleweed-Oss) (18/176), 48.9 KiB - Retrieving: libdav1d7-1.5.1-1.3.x86_64 (openSUSE-Tumbleweed-Oss) (19/176), 619.4 KiB - Retrieving: libdrm2-2.4.124-2.3.x86_64 (openSUSE-Tumbleweed-Oss) (20/176), 53.8 KiB - Retrieving: libeconf-devel-0.7.9-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (21/176), 34.8 KiB - Retrieving: libelf1-0.192-2.2.x86_64 (openSUSE-Tumbleweed-Oss) (22/176), 58.0 KiB - Retrieving: libepoxy0-1.5.10-2.8.x86_64 (openSUSE-Tumbleweed-Oss) (23/176), 221.5 KiB - Retrieving: libexpat-devel-2.7.1-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (24/176), 45.2 KiB - Retrieving: libffi-devel-3.4.7-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (25/176), 30.1 KiB - Retrieving: libfribidi0-1.0.15-1.3.x86_64 (openSUSE-Tumbleweed-Oss) (26/176), 40.0 KiB - Retrieving: libgmodule-2_0-0-2.84.3-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (27/176), 77.7 KiB - Retrieving: libgmpxx4-6.3.0-5.1.x86_64 (openSUSE-Tumbleweed-Oss) (28/176), 17.7 KiB - Retrieving: libgobject-2_0-0-2.84.3-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (29/176), 210.4 KiB - Retrieving: libgraphite2-3-1.3.14-6.1.x86_64 (openSUSE-Tumbleweed-Oss) (30/176), 68.6 KiB - Retrieving: libgthread-2_0-0-2.84.3-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (31/176), 73.7 KiB - Retrieving: libicu77-ledata-77.1-3.1.noarch (openSUSE-Tumbleweed-Oss) (32/176), 8.5 MiB - Retrieving: libjbig2-2.1-5.5.x86_64 (openSUSE-Tumbleweed-Oss) (33/176), 35.7 KiB - Retrieving: libjpeg62-62.4.0-81.3.x86_64 (openSUSE-Tumbleweed-Oss) (34/176), 240.9 KiB - Retrieving: libjpeg8-8.3.2-81.4.x86_64 (openSUSE-Tumbleweed-Oss) (35/176), 241.3 KiB - Retrieving: liblcms2-2-2.16-1.5.x86_64 (openSUSE-Tumbleweed-Oss) (36/176), 168.5 KiB - Retrieving: liblzo2-2-2.10-9.3.x86_64 (openSUSE-Tumbleweed-Oss) (37/176), 59.9 KiB - Retrieving: libmpdec4-4.0.1-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (38/176), 86.2 KiB - Retrieving: libpciaccess0-0.18.1-1.5.x86_64 (openSUSE-Tumbleweed-Oss) (39/176), 26.0 KiB - Retrieving: libpcre2-16-0-10.45-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (40/176), 266.8 KiB - Retrieving: libpcre2-32-0-10.45-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (41/176), 250.1 KiB - Retrieving: libpcre2-posix3-10.45-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (42/176), 18.9 KiB - Retrieving: libpixman-1-0-0.46.2-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (43/176), 290.6 KiB - Retrieving: libpng16-16-1.6.44-1.3.x86_64 (openSUSE-Tumbleweed-Oss) (44/176), 142.6 KiB - Retrieving: libsepol-devel-3.9-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (45/176), 41.9 KiB - Retrieving: libthai-data-0.1.29-1.10.x86_64 (openSUSE-Tumbleweed-Oss) (46/176), 154.4 KiB - Retrieving: libvulkan1-1.4.321-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (47/176), 146.8 KiB - Retrieving: libwayland-client0-1.24.0-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (48/176), 36.0 KiB - Retrieving: libwayland-egl1-1.24.0-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (49/176), 12.2 KiB - Retrieving: libwayland-server0-1.24.0-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (50/176), 42.4 KiB - Retrieving: libxml2-tools-2.13.8-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (51/176), 80.8 KiB - Retrieving: libxshmfence1-1.3.3-1.2.x86_64 (openSUSE-Tumbleweed-Oss) (52/176), 11.8 KiB - Retrieving: libzstd-devel-1.5.7-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (53/176), 69.4 KiB - Retrieving: readline-devel-8.2.13-2.3.x86_64 (openSUSE-Tumbleweed-Oss) (54/176), 31.6 KiB - Retrieving: shared-mime-info-2.4-3.4.x86_64 (openSUSE-Tumbleweed-Oss) (55/176), 316.2 KiB - Retrieving: system-user-lp-20170617-27.1.noarch (openSUSE-Tumbleweed-Oss) (56/176), 8.8 KiB - Retrieving: typelib-1_0-GIRepository-3_0-2.84.3-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (57/176), 69.7 KiB - Retrieving: xkeyboard-config-2.45-2.1.noarch (openSUSE-Tumbleweed-Oss) (58/176), 429.8 KiB - Retrieving: xz-devel-5.8.1-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (59/176), 90.6 KiB - Retrieving: libXxf86vm1-1.1.6-1.2.x86_64 (openSUSE-Tumbleweed-Oss) (60/176), 16.9 KiB - Retrieving: libXtst6-1.2.5-1.3.x86_64 (openSUSE-Tumbleweed-Oss) (61/176), 17.9 KiB - Retrieving: libXinerama1-1.1.5-1.6.x86_64 (openSUSE-Tumbleweed-Oss) (62/176), 11.2 KiB - Retrieving: libXi6-1.8.2-1.3.x86_64 (openSUSE-Tumbleweed-Oss) (63/176), 38.3 KiB - Retrieving: libXext-devel-1.3.6-1.4.x86_64 (openSUSE-Tumbleweed-Oss) (64/176), 96.5 KiB - Retrieving: libXfixes-devel-6.0.1-1.5.x86_64 (openSUSE-Tumbleweed-Oss) (65/176), 14.9 KiB - Retrieving: libXrender-devel-0.9.12-1.2.x86_64 (openSUSE-Tumbleweed-Oss) (66/176), 21.3 KiB - Retrieving: libXrandr2-1.5.4-1.5.x86_64 (openSUSE-Tumbleweed-Oss) (67/176), 25.3 KiB - Retrieving: libXcursor1-1.2.3-1.3.x86_64 (openSUSE-Tumbleweed-Oss) (68/176), 29.9 KiB - Retrieving: libavahi-client3-0.8-39.1.x86_64 (openSUSE-Tumbleweed-Oss) (69/176), 36.2 KiB - Retrieving: libbrotli-devel-1.1.0-1.6.x86_64 (openSUSE-Tumbleweed-Oss) (70/176), 34.2 KiB - Retrieving: libdatrie-devel-0.2.13-1.17.x86_64 (openSUSE-Tumbleweed-Oss) (71/176), 124.9 KiB - Retrieving: libgbm1-25.1.6-420.1.x86_64 (openSUSE-Tumbleweed-Oss) (72/176), 60.4 KiB - Retrieving: libdrm_amdgpu1-2.4.124-2.3.x86_64 (openSUSE-Tumbleweed-Oss) (73/176), 39.4 KiB - Retrieving: libblkid-devel-2.41.1-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (74/176), 43.7 KiB - Retrieving: fribidi-devel-1.0.15-1.3.x86_64 (openSUSE-Tumbleweed-Oss) (75/176), 99.5 KiB - Retrieving: gmp-devel-6.3.0-5.1.x86_64 (openSUSE-Tumbleweed-Oss) (76/176), 305.9 KiB - Retrieving: typelib-1_0-GLib-2_0-2.84.3-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (77/176), 123.7 KiB - Retrieving: libgirepository-2_0-0-2.84.3-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (78/176), 156.2 KiB - Retrieving: libatk-1_0-0-2.56.3-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (79/176), 63.4 KiB - Retrieving: girepository-1_0-1.84.0-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (80/176), 56.6 KiB - Retrieving: libgirepository-1_0-1-1.84.0-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (81/176), 76.2 KiB - Retrieving: graphite2-devel-1.3.14-6.1.x86_64 (openSUSE-Tumbleweed-Oss) (82/176), 21.7 KiB - Retrieving: libicu77-77.1-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (83/176), 2.2 MiB - Retrieving: libjpeg62-devel-62.4.0-81.3.x86_64 (openSUSE-Tumbleweed-Oss) (84/176), 109.8 KiB - Retrieving: libtiff6-4.7.0-6.1.x86_64 (openSUSE-Tumbleweed-Oss) (85/176), 215.4 KiB - Retrieving: lzo-devel-2.10-9.3.x86_64 (openSUSE-Tumbleweed-Oss) (86/176), 48.9 KiB - Retrieving: python313-base-3.13.5-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (87/176), 9.2 MiB - Retrieving: libpython3_13-1_0-3.13.5-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (88/176), 1.9 MiB - Retrieving: libdrm_intel1-2.4.124-2.3.x86_64 (openSUSE-Tumbleweed-Oss) (89/176), 80.1 KiB - Retrieving: pcre2-devel-10.45-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (90/176), 283.7 KiB - Retrieving: libpixman-1-0-devel-0.46.2-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (91/176), 21.5 KiB - Retrieving: libpng16-devel-1.6.44-1.3.x86_64 (openSUSE-Tumbleweed-Oss) (92/176), 187.1 KiB - Retrieving: libpng16-compat-devel-1.6.44-1.3.x86_64 (openSUSE-Tumbleweed-Oss) (93/176), 89.7 KiB - Retrieving: libfreetype6-2.13.3-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (94/176), 500.7 KiB - Retrieving: libthai0-0.1.29-1.10.x86_64 (openSUSE-Tumbleweed-Oss) (95/176), 24.2 KiB - Retrieving: libwayland-cursor0-1.24.0-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (96/176), 18.9 KiB - Retrieving: Mesa-vulkan-device-select-25.1.6-420.1.x86_64 (openSUSE-Tumbleweed-Oss) (97/176), 83.8 KiB - Retrieving: gio-branding-openSUSE-42.1-2.3.noarch (openSUSE-Tumbleweed-Oss) (98/176), 13.6 KiB - Retrieving: libgio-2_0-0-2.84.3-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (99/176), 731.5 KiB - Retrieving: glib2-tools-2.84.3-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (100/176), 183.6 KiB - Retrieving: cups-config-2.4.12-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (101/176), 289.3 KiB - Retrieving: libxkbcommon0-1.10.0-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (102/176), 153.9 KiB - Retrieving: libxml2-devel-2.13.8-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (103/176), 119.6 KiB - Retrieving: libXinerama-devel-1.1.5-1.6.x86_64 (openSUSE-Tumbleweed-Oss) (104/176), 13.2 KiB - Retrieving: libXi-devel-1.8.2-1.3.x86_64 (openSUSE-Tumbleweed-Oss) (105/176), 138.4 KiB - Retrieving: libXdamage-devel-1.1.6-1.6.x86_64 (openSUSE-Tumbleweed-Oss) (106/176), 10.2 KiB - Retrieving: libXcomposite-devel-0.4.6-1.6.x86_64 (openSUSE-Tumbleweed-Oss) (107/176), 17.1 KiB - Retrieving: libXrandr-devel-1.5.4-1.5.x86_64 (openSUSE-Tumbleweed-Oss) (108/176), 20.7 KiB - Retrieving: libXcursor-devel-1.2.3-1.3.x86_64 (openSUSE-Tumbleweed-Oss) (109/176), 31.8 KiB - Retrieving: typelib-1_0-GObject-2_0-2.84.3-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (110/176), 79.4 KiB - Retrieving: typelib-1_0-GModule-2_0-2.84.3-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (111/176), 63.9 KiB - Retrieving: typelib-1_0-GLibUnix-2_0-2.84.3-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (112/176), 64.0 KiB - Retrieving: libicu-devel-77.1-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (113/176), 714.9 KiB - Retrieving: libtiff-devel-4.7.0-6.1.x86_64 (openSUSE-Tumbleweed-Oss) (114/176), 55.6 KiB - Retrieving: libselinux-devel-3.9-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (115/176), 114.0 KiB - Retrieving: libharfbuzz0-11.3.2-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (116/176), 567.7 KiB - Retrieving: libfontconfig1-2.16.0-1.3.x86_64 (openSUSE-Tumbleweed-Oss) (117/176), 146.2 KiB - Retrieving: fontconfig-2.16.0-1.3.x86_64 (openSUSE-Tumbleweed-Oss) (118/176), 82.0 KiB - Retrieving: freetype2-devel-2.13.3-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (119/176), 808.7 KiB - Retrieving: libthai-devel-0.1.29-1.10.x86_64 (openSUSE-Tumbleweed-Oss) (120/176), 20.2 KiB - Retrieving: wayland-devel-1.24.0-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (121/176), 103.7 KiB - Retrieving: libvulkan_lvp-25.1.6-420.1.x86_64 (openSUSE-Tumbleweed-Oss) (122/176), 2.1 MiB - Retrieving: libcolord2-1.4.6-8.3.x86_64 (openSUSE-Tumbleweed-Oss) (123/176), 148.7 KiB - Retrieving: libatspi0-2.56.3-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (124/176), 95.5 KiB - Retrieving: gdk-pixbuf-query-loaders-2.42.12-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (125/176), 16.7 KiB - Retrieving: libcups2-2.4.12-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (126/176), 307.7 KiB - Retrieving: libxkbcommon-devel-1.10.0-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (127/176), 90.1 KiB - Retrieving: libXtst-devel-1.2.5-1.3.x86_64 (openSUSE-Tumbleweed-Oss) (128/176), 29.0 KiB - Retrieving: typelib-1_0-Atk-1_0-2.56.3-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (129/176), 36.7 KiB - Retrieving: typelib-1_0-Gio-2_0-2.84.3-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (130/176), 151.6 KiB - Retrieving: libmount-devel-2.41.1-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (131/176), 45.0 KiB - Retrieving: libharfbuzz-subset0-11.3.2-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (132/176), 540.2 KiB - Retrieving: libharfbuzz-icu0-11.3.2-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (133/176), 43.0 KiB - Retrieving: libharfbuzz-gobject0-11.3.2-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (134/176), 63.4 KiB - Retrieving: libcairo2-1.18.4-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (135/176), 570.9 KiB - Retrieving: libXft2-2.3.9-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (136/176), 51.2 KiB - Retrieving: fontconfig-devel-2.16.0-1.3.x86_64 (openSUSE-Tumbleweed-Oss) (137/176), 20.8 KiB - Retrieving: Mesa-25.1.6-420.1.x86_64 (openSUSE-Tumbleweed-Oss) (138/176), 58.6 KiB - Retrieving: Mesa-dri-25.1.6-420.1.x86_64 (openSUSE-Tumbleweed-Oss) (139/176), 10.0 MiB - Retrieving: libglvnd-1.7.0-1.6.x86_64 (openSUSE-Tumbleweed-Oss) (140/176), 240.2 KiB - Retrieving: Mesa-libEGL1-25.1.6-420.1.x86_64 (openSUSE-Tumbleweed-Oss) (141/176), 183.6 KiB - Retrieving: typelib-1_0-Atspi-2_0-2.56.3-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (142/176), 34.0 KiB - Retrieving: libatk-bridge-2_0-0-2.56.3-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (143/176), 80.8 KiB - Retrieving: libgdk_pixbuf-2_0-0-2.42.12-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (144/176), 160.5 KiB - Retrieving: glib2-devel-2.84.3-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (145/176), 1.4 MiB - Retrieving: typelib-1_0-HarfBuzz-0_0-11.3.2-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (146/176), 74.9 KiB - Retrieving: libharfbuzz-cairo0-11.3.2-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (147/176), 56.6 KiB - Retrieving: libcairo-script-interpreter2-1.18.4-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (148/176), 65.1 KiB - Retrieving: libcairo-gobject2-1.18.4-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (149/176), 23.1 KiB - Retrieving: libpango-1_0-0-1.56.4-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (150/176), 298.3 KiB - Retrieving: libXft-devel-2.3.9-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (151/176), 37.6 KiB - Retrieving: Mesa-libGL1-25.1.6-420.1.x86_64 (openSUSE-Tumbleweed-Oss) (152/176), 172.9 KiB - Retrieving: at-spi2-core-2.56.3-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (153/176), 69.5 KiB - Retrieving: typelib-1_0-GdkPixbuf-2_0-2.42.12-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (154/176), 16.3 KiB - Retrieving: cairo-devel-1.18.4-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (155/176), 269.0 KiB - Retrieving: typelib-1_0-Pango-1_0-1.56.4-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (156/176), 41.1 KiB - Retrieving: librsvg-2-2-2.60.0-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (157/176), 1.9 MiB - Retrieving: libglvnd-devel-1.7.0-1.6.x86_64 (openSUSE-Tumbleweed-Oss) (158/176), 19.1 KiB - Retrieving: Mesa-gallium-25.1.6-420.1.x86_64 (openSUSE-Tumbleweed-Oss) (159/176), 17.7 MiB - Retrieving: at-spi2-core-devel-2.56.3-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (160/176), 1.6 MiB - Retrieving: typelib-1_0-GdkPixdata-2_0-2.42.12-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (161/176), 11.8 KiB - Retrieving: harfbuzz-devel-11.3.2-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (162/176), 184.1 KiB - Retrieving: gdk-pixbuf-loader-rsvg-2.60.0-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (163/176), 196.9 KiB - Retrieving: Mesa-libGL-devel-25.1.6-420.1.x86_64 (openSUSE-Tumbleweed-Oss) (164/176), 493.9 KiB - Retrieving: Mesa-libEGL-devel-25.1.6-420.1.x86_64 (openSUSE-Tumbleweed-Oss) (165/176), 74.0 KiB - Retrieving: gdk-pixbuf-devel-2.42.12-3.1.x86_64 (openSUSE-Tumbleweed-Oss) (166/176), 65.6 KiB - Retrieving: pango-devel-1.56.4-1.1.x86_64 (openSUSE-Tumbleweed-Oss) (167/176), 159.9 KiB - Retrieving: gtk3-tools-3.24.49+14-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (168/176), 1.4 MiB - Retrieving: libgtk-3-0-3.24.49+14-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (169/176), 2.8 MiB - Retrieving: adwaita-icon-theme-48.1-1.1.noarch (openSUSE-Tumbleweed-Oss) (170/176), 653.2 KiB - Retrieving: libepoxy-devel-1.5.10-2.8.x86_64 (openSUSE-Tumbleweed-Oss) (171/176), 137.5 KiB - Retrieving: typelib-1_0-Gtk-3_0-3.24.49+14-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (172/176), 236.2 KiB - Retrieving: libgtksourceview-3_0-1-3.24.11-6.3.x86_64 (openSUSE-Tumbleweed-Oss) (173/176), 455.8 KiB - Retrieving: gtk3-devel-3.24.49+14-2.1.x86_64 (openSUSE-Tumbleweed-Oss) (174/176), 1.8 MiB - Retrieving: typelib-1_0-GtkSource-3_0-3.24.11-6.3.x86_64 (openSUSE-Tumbleweed-Oss) (175/176), 27.5 KiB - Retrieving: gtksourceview-devel-3.24.11-6.3.x86_64 (openSUSE-Tumbleweed-Oss) (176/176), 204.7 KiB - - Checking for file conflicts: [.... - . - .done] - ( 1/176) Installing: Mesa-KHR-devel-25.1.6-420.1.x86_64 [..done] - ( 2/176) Installing: dbus-1-daemon-1.14.10-4.4.x86_64 [..done] - ( 3/176) Installing: dbus-1-devel-1.14.10-4.4.x86_64 [..done] - ( 4/176) Installing: gettext-its-gtk4-4.18.6-1.1.x86_64 [. - ..done] - ( 5/176) Installing: gtk3-data-3.24.49+14-2.1.noarch [..done] - ( 6/176) Installing: gtk3-schema-3.24.49+14-2.1.noarch [. - .done] - ( 7/176) Installing: hicolor-icon-theme-0.18-1.3.noarch [..done] - ( 8/176) Installing: libLLVM20-20.1.8-2.1.x86_64 [. - ......done] - ( 9/176) Installing: libSPIRV-Tools-2025_3_rc1-2025.3~rc1-1.1.x86_64 [. - .done] - ( 10/176) Installing: libXcomposite1-0.4.6-1.6.x86_64 [..done] - ( 11/176) Installing: libXdamage1-1.1.6-1.6.x86_64 [. - .done] - ( 12/176) Installing: libXext6-1.3.6-1.4.x86_64 [..done] - ( 13/176) Installing: libXfixes3-6.0.1-1.5.x86_64 [.. - done] - ( 14/176) Installing: libXrender1-0.9.12-1.2.x86_64 [..done] - ( 15/176) Installing: libavahi-common3-0.8-39.1.x86_64 [.. - done] - ( 16/176) Installing: libbrotlienc1-1.1.0-1.6.x86_64 [...done] - ( 17/176) Installing: libbz2-devel-1.0.8-5.12.x86_64 [..done] - ( 18/176) Installing: libdatrie1-0.2.13-1.17.x86_64 [..done] - ( 19/176) Installing: libdav1d7-1.5.1-1.3.x86_64 [..done] - ( 20/176) Installing: libdrm2-2.4.124-2.3.x86_64 [..done] - ( 21/176) Installing: libeconf-devel-0.7.9-1.1.x86_64 [..done] - ( 22/176) Installing: libelf1-0.192-2.2.x86_64 [...done] - ( 23/176) Installing: libepoxy0-1.5.10-2.8.x86_64 [..done] - ( 24/176) Installing: libexpat-devel-2.7.1-2.1.x86_64 [. - ..done] - ( 25/176) Installing: libffi-devel-3.4.7-1.1.x86_64 [..done] - ( 26/176) Installing: libfribidi0-1.0.15-1.3.x86_64 [. - .done] - ( 27/176) Installing: libgmodule-2_0-0-2.84.3-1.1.x86_64 [..done] - ( 28/176) Installing: libgmpxx4-6.3.0-5.1.x86_64 [. - ..done] - ( 29/176) Installing: libgobject-2_0-0-2.84.3-1.1.x86_64 [..done] - ( 30/176) Installing: libgraphite2-3-1.3.14-6.1.x86_64 [. - .done] - ( 31/176) Installing: libgthread-2_0-0-2.84.3-1.1.x86_64 [..done] - ( 32/176) Installing: libicu77-ledata-77.1-3.1.noarch [... - done] - ( 33/176) Installing: libjbig2-2.1-5.5.x86_64 [..done] - ( 34/176) Installing: libjpeg62-62.4.0-81.3.x86_64 [.. - done] - ( 35/176) Installing: libjpeg8-8.3.2-81.4.x86_64 [..done] - ( 36/176) Installing: liblcms2-2-2.16-1.5.x86_64 [.. - done] - ( 37/176) Installing: liblzo2-2-2.10-9.3.x86_64 [..done] - ( 38/176) Installing: libmpdec4-4.0.1-2.1.x86_64 [..done] - ( 39/176) Installing: libpciaccess0-0.18.1-1.5.x86_64 [..done] - ( 40/176) Installing: libpcre2-16-0-10.45-2.1.x86_64 [..done] - ( 41/176) Installing: libpcre2-32-0-10.45-2.1.x86_64 [. - .done] - ( 42/176) Installing: libpcre2-posix3-10.45-2.1.x86_64 [..done] - ( 43/176) Installing: libpixman-1-0-0.46.2-2.1.x86_64 [. - .done] - ( 44/176) Installing: libpng16-16-1.6.44-1.3.x86_64 [..done] - ( 45/176) Installing: libsepol-devel-3.9-2.1.x86_64 [. - .done] - ( 46/176) Installing: libthai-data-0.1.29-1.10.x86_64 [...done] - ( 47/176) Installing: libvulkan1-1.4.321-1.1.x86_64 [. - .done] - ( 48/176) Installing: libwayland-client0-1.24.0-1.1.x86_64 [...done] - ( 49/176) Installing: libwayland-egl1-1.24.0-1.1.x86_64 [.. - done] - ( 50/176) Installing: libwayland-server0-1.24.0-1.1.x86_64 [..done] - ( 51/176) Installing: libxml2-tools-2.13.8-3.1.x86_64 [.. - done] - ( 52/176) Installing: libxshmfence1-1.3.3-1.2.x86_64 [..done] - ( 53/176) Installing: libzstd-devel-1.5.7-3.1.x86_64 [..done] - ( 54/176) Installing: readline-devel-8.2.13-2.3.x86_64 [..done] - ( 55/176) Installing: shared-mime-info-2.4-3.4.x86_64 [.. - .done] - ( 56/176) Installing: system-user-lp-20170617-27.1.noarch [.. - /usr/bin/systemd-sysusers --replace=/usr/lib/sysusers.d/system-user-lp.conf - - Creating group 'systemd-journal' with GID 497. - Creating group 'lp' with GID 496. - Creating user 'lp' (Printing daemon) with UID 496 and GID 496. - Creating group 'systemd-coredump' with GID 495. - Creating user 'systemd-coredump' (systemd Core Dumper) with UID 495 and GID 495. - done] - ( 57/176) Installing: typelib-1_0-GIRepository-3_0-2.84.3-1.1.x86_64 [..done] - ( 58/176) Installing: xkeyboard-config-2.45-2.1.noarch [...done] - ( 59/176) Installing: xz-devel-5.8.1-1.1.x86_64 [. - .done] - ( 60/176) Installing: libXxf86vm1-1.1.6-1.2.x86_64 [...done] - ( 61/176) Installing: libXtst6-1.2.5-1.3.x86_64 [. - .done] - ( 62/176) Installing: libXinerama1-1.1.5-1.6.x86_64 [..done] - ( 63/176) Installing: libXi6-1.8.2-1.3.x86_64 [. - .done] - ( 64/176) Installing: libXext-devel-1.3.6-1.4.x86_64 [..done] - ( 65/176) Installing: libXfixes-devel-6.0.1-1.5.x86_64 [. - .done] - ( 66/176) Installing: libXrender-devel-0.9.12-1.2.x86_64 [...done] - ( 67/176) Installing: libXrandr2-1.5.4-1.5.x86_64 [.. - done] - ( 68/176) Installing: libXcursor1-1.2.3-1.3.x86_64 [..done] - ( 69/176) Installing: libavahi-client3-0.8-39.1.x86_64 [.. - done] - ( 70/176) Installing: libbrotli-devel-1.1.0-1.6.x86_64 [...done] - ( 71/176) Installing: libdatrie-devel-0.2.13-1.17.x86_64 [..done] - ( 72/176) Installing: libgbm1-25.1.6-420.1.x86_64 [..done] - ( 73/176) Installing: libdrm_amdgpu1-2.4.124-2.3.x86_64 [..done] - ( 74/176) Installing: libblkid-devel-2.41.1-2.1.x86_64 [..done] - ( 75/176) Installing: fribidi-devel-1.0.15-1.3.x86_64 [..done] - ( 76/176) Installing: gmp-devel-6.3.0-5.1.x86_64 [..done] - ( 77/176) Installing: typelib-1_0-GLib-2_0-2.84.3-1.1.x86_64 [..done] - ( 78/176) Installing: libgirepository-2_0-0-2.84.3-1.1.x86_64 [..done] - ( 79/176) Installing: libatk-1_0-0-2.56.3-3.1.x86_64 [..done] - ( 80/176) Installing: girepository-1_0-1.84.0-2.1.x86_64 [. - .done] - ( 81/176) Installing: libgirepository-1_0-1-1.84.0-2.1.x86_64 [..done] - ( 82/176) Installing: graphite2-devel-1.3.14-6.1.x86_64 [. - .done] - ( 83/176) Installing: libicu77-77.1-3.1.x86_64 [..done] - ( 84/176) Installing: libjpeg62-devel-62.4.0-81.3.x86_64 [. - .done] - ( 85/176) Installing: libtiff6-4.7.0-6.1.x86_64 [..done] - ( 86/176) Installing: lzo-devel-2.10-9.3.x86_64 [.. - done] - ( 87/176) Installing: python313-base-3.13.5-3.1.x86_64 [....done] - ( 88/176) Installing: libpython3_13-1_0-3.13.5-3.1.x86_64 [...done] - ( 89/176) Installing: libdrm_intel1-2.4.124-2.3.x86_64 [..done] - ( 90/176) Installing: pcre2-devel-10.45-2.1.x86_64 [. - ..done] - ( 91/176) Installing: libpixman-1-0-devel-0.46.2-2.1.x86_64 [..done] - ( 92/176) Installing: libpng16-devel-1.6.44-1.3.x86_64 [. - .done] - ( 93/176) Installing: libpng16-compat-devel-1.6.44-1.3.x86_64 [..done] - ( 94/176) Installing: libfreetype6-2.13.3-2.1.x86_64 [. - .done] - ( 95/176) Installing: libthai0-0.1.29-1.10.x86_64 [..done] - ( 96/176) Installing: libwayland-cursor0-1.24.0-1.1.x86_64 [. - .done] - ( 97/176) Installing: Mesa-vulkan-device-select-25.1.6-420.1.x86_64 [..done] - ( 98/176) Installing: gio-branding-openSUSE-42.1-2.3.noarch [... - done] - ( 99/176) Installing: libgio-2_0-0-2.84.3-1.1.x86_64 [..done] - (100/176) Installing: glib2-tools-2.84.3-1.1.x86_64 [.. - done] - (101/176) Installing: cups-config-2.4.12-1.1.x86_64 [..done] - (102/176) Installing: libxkbcommon0-1.10.0-1.1.x86_64 [..done] - (103/176) Installing: libxml2-devel-2.13.8-3.1.x86_64 [..done] - (104/176) Installing: libXinerama-devel-1.1.5-1.6.x86_64 [..done] - (105/176) Installing: libXi-devel-1.8.2-1.3.x86_64 [. - .done] - (106/176) Installing: libXdamage-devel-1.1.6-1.6.x86_64 [..done] - (107/176) Installing: libXcomposite-devel-0.4.6-1.6.x86_64 [. - .done] - (108/176) Installing: libXrandr-devel-1.5.4-1.5.x86_64 [..done] - (109/176) Installing: libXcursor-devel-1.2.3-1.3.x86_64 [. - .done] - (110/176) Installing: typelib-1_0-GObject-2_0-2.84.3-1.1.x86_64 [..done] - (111/176) Installing: typelib-1_0-GModule-2_0-2.84.3-1.1.x86_64 [. - .done] - (112/176) Installing: typelib-1_0-GLibUnix-2_0-2.84.3-1.1.x86_64 [..done] - (113/176) Installing: libicu-devel-77.1-3.1.x86_64 [.. - done] - (114/176) Installing: libtiff-devel-4.7.0-6.1.x86_64 [...done] - (115/176) Installing: libselinux-devel-3.9-2.1.x86_64 [.. - done] - (116/176) Installing: libharfbuzz0-11.3.2-1.1.x86_64 [...done] - (117/176) Installing: libfontconfig1-2.16.0-1.3.x86_64 [..done] - (118/176) Installing: fontconfig-2.16.0-1.3.x86_64 [...done] - (119/176) Installing: freetype2-devel-2.13.3-2.1.x86_64 [..done] - (120/176) Installing: libthai-devel-0.1.29-1.10.x86_64 [..done] - (121/176) Installing: wayland-devel-1.24.0-1.1.x86_64 [..done] - (122/176) Installing: libvulkan_lvp-25.1.6-420.1.x86_64 [...done] - (123/176) Installing: libcolord2-1.4.6-8.3.x86_64 [..done] - (124/176) Installing: libatspi0-2.56.3-3.1.x86_64 [. - .done] - (125/176) Installing: gdk-pixbuf-query-loaders-2.42.12-3.1.x86_64 [..done] - (126/176) Installing: libcups2-2.4.12-1.1.x86_64 [. - .done] - (127/176) Installing: libxkbcommon-devel-1.10.0-1.1.x86_64 [..done] - (128/176) Installing: libXtst-devel-1.2.5-1.3.x86_64 [. - ..done] - (129/176) Installing: typelib-1_0-Atk-1_0-2.56.3-3.1.x86_64 [..done] - (130/176) Installing: typelib-1_0-Gio-2_0-2.84.3-1.1.x86_64 [. - .done] - (131/176) Installing: libmount-devel-2.41.1-2.1.x86_64 [..done] - (132/176) Installing: libharfbuzz-subset0-11.3.2-1.1.x86_64 [. - .done] - (133/176) Installing: libharfbuzz-icu0-11.3.2-1.1.x86_64 [..done] - (134/176) Installing: libharfbuzz-gobject0-11.3.2-1.1.x86_64 [.. - done] - (135/176) Installing: libcairo2-1.18.4-2.1.x86_64 [..done] - (136/176) Installing: libXft2-2.3.9-1.1.x86_64 [..done] - (137/176) Installing: fontconfig-devel-2.16.0-1.3.x86_64 [..done] - (138/176) Installing: Mesa-25.1.6-420.1.x86_64 [..done] - (139/176) Installing: Mesa-dri-25.1.6-420.1.x86_64 [...done] - (140/176) Installing: libglvnd-1.7.0-1.6.x86_64 [.. - done] - (141/176) Installing: Mesa-libEGL1-25.1.6-420.1.x86_64 [..done] - (142/176) Installing: typelib-1_0-Atspi-2_0-2.56.3-3.1.x86_64 [..done] - (143/176) Installing: libatk-bridge-2_0-0-2.56.3-3.1.x86_64 [..done] - (144/176) Installing: libgdk_pixbuf-2_0-0-2.42.12-3.1.x86_64 [..done] - (145/176) Installing: glib2-devel-2.84.3-1.1.x86_64 [. - .done] - (146/176) Installing: typelib-1_0-HarfBuzz-0_0-11.3.2-1.1.x86_64 [..done] - (147/176) Installing: libharfbuzz-cairo0-11.3.2-1.1.x86_64 [. - .done] - (148/176) Installing: libcairo-script-interpreter2-1.18.4-2.1.x86_64 [...done] - (149/176) Installing: libcairo-gobject2-1.18.4-2.1.x86_64 [. - .done] - (150/176) Installing: libpango-1_0-0-1.56.4-1.1.x86_64 [...done] - (151/176) Installing: libXft-devel-2.3.9-1.1.x86_64 [. - .done] - (152/176) Installing: Mesa-libGL1-25.1.6-420.1.x86_64 [..done] - (153/176) Installing: at-spi2-core-2.56.3-3.1.x86_64 [.. - done] - (154/176) Installing: typelib-1_0-GdkPixbuf-2_0-2.42.12-3.1.x86_64 [..done] - (155/176) Installing: cairo-devel-1.18.4-2.1.x86_64 [.. - done] - (156/176) Installing: typelib-1_0-Pango-1_0-1.56.4-1.1.x86_64 [..done] - (157/176) Installing: librsvg-2-2-2.60.0-2.1.x86_64 [..done] - (158/176) Installing: libglvnd-devel-1.7.0-1.6.x86_64 [...done] - (159/176) Installing: Mesa-gallium-25.1.6-420.1.x86_64 [... - .done] - (160/176) Installing: at-spi2-core-devel-2.56.3-3.1.x86_64 [...done] - (161/176) Installing: typelib-1_0-GdkPixdata-2_0-2.42.12-3.1.x86_64 [. - .done] - (162/176) Installing: harfbuzz-devel-11.3.2-1.1.x86_64 [...done] - (163/176) Installing: gdk-pixbuf-loader-rsvg-2.60.0-2.1.x86_64 [. - .done] - (164/176) Installing: Mesa-libGL-devel-25.1.6-420.1.x86_64 [...done] - (165/176) Installing: Mesa-libEGL-devel-25.1.6-420.1.x86_64 [.. - done] - (166/176) Installing: gdk-pixbuf-devel-2.42.12-3.1.x86_64 [...done] - (167/176) Installing: pango-devel-1.56.4-1.1.x86_64 [.. - done] - (168/176) Installing: gtk3-tools-3.24.49+14-2.1.x86_64 [...done] - (169/176) Installing: libgtk-3-0-3.24.49+14-2.1.x86_64 [..done] - (170/176) Installing: adwaita-icon-theme-48.1-1.1.noarch [...done] - (171/176) Installing: libepoxy-devel-1.5.10-2.8.x86_64 [..done] - (172/176) Installing: typelib-1_0-Gtk-3_0-3.24.49+14-2.1.x86_64 [..done] - (173/176) Installing: libgtksourceview-3_0-1-3.24.11-6.3.x86_64 [..done] - (174/176) Installing: gtk3-devel-3.24.49+14-2.1.x86_64 [...done] - (175/176) Installing: typelib-1_0-GtkSource-3_0-3.24.11-6.3.x86_64 [..done] - (176/176) Installing: gtksourceview-devel-3.24.11-6.3.x86_64 [..done] - Running post-transaction scripts [....done] <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved cairo2.0.6.5 (cached) -> retrieved camlp-streams.5.0.1 (cached) -> retrieved conf-gmp.5 (cached) -> installed conf-findutils.1 -> installed conf-pkg-config.4 -> installed conf-gmp.5 -> installed conf-linux-libc-dev.0 -> installed conf-cairo.1 -> installed conf-gtk3.18 -> installed conf-adwaita-icon-theme.2 -> installed conf-gtksourceview3.0+2 -> retrieved coqide-server.9.1+rc1, rocq-runtime.9.1+rc1, rocqide.9.1+rc1 (cached) -> retrieved csexp.1.5.2 (cached) -> retrieved dune.3.19.1, dune-configurator.3.19.1 (cached) -> retrieved lablgtk3.3.1.5, lablgtk3-sourceview3.3.1.5 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved zarith.1.14 (cached) -> installed ocamlfind.1.9.8 -> installed zarith.1.14 -> installed dune.3.19.1 -> installed camlp-streams.5.0.1 -> installed csexp.1.5.2 -> installed dune-configurator.3.19.1 -> installed cairo2.0.6.5 -> installed lablgtk3.3.1.5 -> installed lablgtk3-sourceview3.3.1.5 -> installed rocq-runtime.9.1+rc1 -> installed coqide-server.9.1+rc1 -> installed rocqide.9.1+rc1 Done. # To update the current shell environment, run: eval $(opam env) 2025-07-30 12:49.55 ---> saved as "91b0658336c7877e8c14c7d4fe597f182d689cdccd11982e004bf0d8307cd2cc" /home/opam: (run (network host) (shell "(opam reinstall --with-test rocqide.9.1+rc1) || true")) The following actions will be performed: === recompile 1 package - recompile rocqide 9.1+rc1 (pinned) <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved rocqide.9.1+rc1 (https://github.com/rocq-prover/rocq/releases/download/V9.1%2Brc1/rocq-9.1-rc1.tar.gz) -> removed rocqide.9.1+rc1 -> installed rocqide.9.1+rc1 Done. # To update the current shell environment, run: eval $(opam env) 2025-07-30 12:50.09 ---> saved as "55062dd1f8bb2c4c92130a8c6f207dd0753854ff87c887f8c9ced4427fa7a453" /home/opam: (run (shell "opam reinstall --with-test --verbose rocqide.9.1+rc1;\ \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 \"\\\"opensuse-tumbleweed\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'rocqide.9.1+rc1' && 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 rocqide 9.1+rc1 (pinned) <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 1/4: [rocqide.9.1+rc1: extract] -> retrieved rocqide.9.1+rc1 (cached) Processing 2/4: [rocqide: dune build] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "rocqide" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/rocqide.9.1+rc1) -> compiled rocqide.9.1+rc1 -> removed rocqide.9.1+rc1 -> installed rocqide.9.1+rc1 Done. # To update the current shell environment, run: eval $(opam env) 2025-07-30 12:50.20 ---> saved as "6cc140304e2c2c79d028ba600d10a65bad728335887a5c54c12ddaaac946effd" Job succeeded 2025-07-30 12:50.33: Job succeeded