(for PR #24267)

2025-11-10 11:02.17: New job: test orrandomForest.2.0.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/24267/head (41de505ec8ff3637ab3cb06a41ccbc29683f566c)
                              on centos-10-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/24267/head" && git reset --hard 41de505e
git fetch origin master
git merge --no-edit 21f97b2e6d7c617fc0a79cc8e59b2e10690960e1
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-10-ocaml-4.14@sha256:fbd3acc40df623aa04dc83f78636b758424838e33c013f55a0091d21c5ccabee
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn orrandomForest.2.0.1 2.0.1
RUN opam reinstall orrandomForest.2.0.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 "\"centos-10\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'orrandomForest.2.0.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test orrandomForest.2.0.1) || true
RUN opam reinstall --with-test --verbose orrandomForest.2.0.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 "\"centos-10\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'orrandomForest.2.0.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 .

2025-11-10 11:02.17: Using cache hint "ocaml/opam:centos-10-ocaml-4.14@sha256:fbd3acc40df623aa04dc83f78636b758424838e33c013f55a0091d21c5ccabee-orrandomForest.2.0.1-41de505ec8ff3637ab3cb06a41ccbc29683f566c"
2025-11-10 11:02.17: Using OBuilder spec:
((from ocaml/opam:centos-10-ocaml-4.14@sha256:fbd3acc40df623aa04dc83f78636b758424838e33c013f55a0091d21c5ccabee)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn orrandomForest.2.0.1 2.0.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall orrandomForest.2.0.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 \"\\\"centos-10\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'orrandomForest.2.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test orrandomForest.2.0.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose orrandomForest.2.0.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 \"\\\"centos-10\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'orrandomForest.2.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-11-10 11:02.17: Waiting for resource in pool OCluster
2025-11-10 12:43.49: Waiting for worker…
2025-11-10 12:51.57: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 21f97b2e6d Merge pull request #28836 from dbuenzli/b0-publish-bytesrw.0.3.0
Merge made by the 'ort' strategy.
 packages/odnnr/odnnr.2.0.0/opam                   | 4 +---
 packages/oplsr/oplsr.8.0.1/opam                   | 3 +--
 packages/orrandomForest/orrandomForest.1.0.0/opam | 5 +----
 packages/orrandomForest/orrandomForest.2.0.1/opam | 7 +------
 packages/orrandomForest/orrandomForest.3.0.0/opam | 7 +------
 packages/orsvm_e1071/orsvm_e1071.2.0.0/opam       | 3 ---
 packages/orsvm_e1071/orsvm_e1071.3.0.0/opam       | 5 +----
 packages/orsvm_e1071/orsvm_e1071.3.0.1/opam       | 2 +-
 packages/orsvm_e1071/orsvm_e1071.3.0.2/opam       | 2 +-
 packages/orsvm_e1071/orsvm_e1071.4.0.0/opam       | 2 +-
 packages/orxgboost/orxgboost.1.0.1/opam           | 5 +----
 packages/orxgboost/orxgboost.1.1.0/opam           | 5 +----
 packages/orxgboost/orxgboost.1.2.0/opam           | 5 +----
 13 files changed, 12 insertions(+), 43 deletions(-)

(from ocaml/opam:centos-10-ocaml-4.14@sha256:fbd3acc40df623aa04dc83f78636b758424838e33c013f55a0091d21c5ccabee)
Unable to find image 'ocaml/opam:centos-10-ocaml-4.14@sha256:fbd3acc40df623aa04dc83f78636b758424838e33c013f55a0091d21c5ccabee' locally
docker.io/ocaml/opam@sha256:fbd3acc40df623aa04dc83f78636b758424838e33c013f55a0091d21c5ccabee: Pulling from ocaml/opam
b85efb1ffb0a: Pulling fs layer
b85efb1ffb0a: Verifying Checksum
b85efb1ffb0a: Download complete
b85efb1ffb0a: Pull complete
Digest: sha256:fbd3acc40df623aa04dc83f78636b758424838e33c013f55a0091d21c5ccabee
Status: Downloaded newer image for ocaml/opam@sha256:fbd3acc40df623aa04dc83f78636b758424838e33c013f55a0091d21c5ccabee
2025-11-10 12:52.02 ---> using "678d307669327213b6763ac40b1491a2e7a9cc6da26aa808af111b437f4523f5" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-10 12:52.02 ---> using "8bb645a837c0d3f0550ae1ace6d146fe6111dfb1b58164879ab7b107f0c8c6e5" from cache

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

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

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-10 12:52.02 ---> using "ed80958a0904ff4b783a1724d1854b9c783c42b9df12bf5ce77cf7bdbfcf3e83" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0~alpha1
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=centos os-version=10
# 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-11-10 12:52.02 ---> using "83ce7712ec013bdbb6c67926ff90ed73113d64066faaf67e126818b0f5f688dc" 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-11-10 12:52.02 ---> using "18e737f6f42a4acfe29bc8b92802b570f517f99552e813a8e7eab21c1e3da971" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 12:52.03 ---> using "c4749481c0cf101da7a9b8741feb6f76657878b5d1033acbf36d22d16aeff026" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 12:52.14 ---> saved as "00b8aaa796acf4c336244a8c60442f7c8f68c77a6aab2e79b331a80890675345"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 10 - BaseOS                        88 kB/s |  15 kB     00:00    
- CentOS Stream 10 - AppStream                    156 kB/s |  15 kB     00:00    
- CentOS Stream 10 - CRB                          142 kB/s |  14 kB     00:00    
- CentOS Stream 10 - Extras packages              156 kB/s |  16 kB     00:00    
- Metadata cache created.
2025-11-10 12:52.15 ---> saved as "4179f6664dedda75b09b1d677ca4a918622e66e0b2c91681c26ca6ebb7af99f1"

/home/opam: (run (shell "opam pin add -k version -yn orrandomForest.2.0.1 2.0.1"))
orrandomForest is now pinned to version 2.0.1
2025-11-10 12:52.16 ---> saved as "8aaf4016edd20945538b7c0ad2d8435a9d34e65859a88ccf04adc8d67031573f"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall orrandomForest.2.0.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 \"\\\"centos-10\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'orrandomForest.2.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
orrandomForest.2.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 4 packages
  - install conf-r         1.0.0          [required by orrandomForest]
  - install dolog          6.0.0          [required by orrandomForest]
  - install dune           3.20.2         [required by orrandomForest]
  - install orrandomForest 2.0.1 (pinned)

The following system packages will first need to be installed:
    epel-release R

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

opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
  2. Display the recommended yum 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 "yum" "install" "-y" "epel-release"
- Last metadata expiration check: 0:00:05 ago on Mon Nov 10 12:52:15 2025.
- Dependencies resolved.
- ================================================================================
-  Package               Arch        Version             Repository          Size
- ================================================================================
- Installing:
-  epel-release          noarch      10-5.el10s          extras-common       18 k
- Installing weak dependencies:
-  dnf-plugins-core      noarch      4.7.0-9.el10        baseos              44 k
- 
- Transaction Summary
- ================================================================================
- Install  2 Packages
- 
- Total download size: 62 k
- Installed size: 47 k
- Downloading Packages:
- (1/2): epel-release-10-5.el10s.noarch.rpm       193 kB/s |  18 kB     00:00    
- (2/2): dnf-plugins-core-4.7.0-9.el10.noarch.rpm 351 kB/s |  44 kB     00:00    
- --------------------------------------------------------------------------------
- Total                                           188 kB/s |  62 kB     00:00     
- CentOS Stream 10 - Extras packages              2.1 MB/s | 2.1 kB     00:00    
- Importing GPG key 0x1D997668:
-  Userid     : "CentOS Extras SIG (https://wiki.centos.org/SpecialInterestGroup) <security@centos.org>"
-  Fingerprint: 363F C097 2F64 B699 AED3 968E 1FF6 A217 1D99 7668
-  From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Extras-SHA512
- warning: Certificate 1FF6A2171D997668:
-   Policy rejects subkey 8B5C8111FCA5D0FF: Policy rejected non-revocation signature (PrimaryKeyBinding) requiring second pre-image resistance
- Key imported successfully
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
-   Preparing        :                                                        1/1 
-   Installing       : dnf-plugins-core-4.7.0-9.el10.noarch                   1/2 
-   Installing       : epel-release-10-5.el10s.noarch                         2/2 
-   Running scriptlet: epel-release-10-5.el10s.noarch                         2/2 
- Many EPEL packages require the CodeReady Builder (CRB) repository.
- It is recommended that you run /usr/bin/crb enable to enable the CRB repository.
- 
- 
- Installed:
-   dnf-plugins-core-4.7.0-9.el10.noarch      epel-release-10-5.el10s.noarch     
- 
- Complete!
+ /usr/bin/sudo "yum" "install" "-y" "R"
- Extra Packages for Enterprise Linux 10 - x86_64 731 kB/s | 5.7 MB     00:07    
- Last metadata expiration check: 0:00:01 ago on Mon Nov 10 12:52:29 2025.
- Dependencies resolved.
- ======================================================================================================
-  Package                                   Arch    Version                            Repo        Size
- ======================================================================================================
- Installing:
-  R                                         x86_64  4.5.2-1.el10_2                     epel       9.3 k
- Installing dependencies:
-  ModemManager-glib                         x86_64  1.22.0-7.el10                      baseos     325 k
-  R-core                                    x86_64  4.5.2-1.el10_2                     epel        66 M
-  R-core-devel                              x86_64  4.5.2-1.el10_2                     epel        90 k
-  R-devel                                   x86_64  4.5.2-1.el10_2                     epel       8.7 k
-  R-java                                    x86_64  4.5.2-1.el10_2                     epel       9.3 k
-  R-java-devel                              x86_64  4.5.2-1.el10_2                     epel       8.8 k
-  R-rpm-macros                              noarch  1.2.1-12.el10_1                    epel        11 k
-  adwaita-cursor-theme                      noarch  46.0-3.el10                        appstream  524 k
-  adwaita-icon-theme                        noarch  46.0-3.el10                        appstream  457 k
-  alsa-lib                                  x86_64  1.2.14-1.el10                      appstream  529 k
-  at-spi2-atk                               x86_64  2.56.1-1.el10                      appstream   88 k
-  at-spi2-core                              x86_64  2.56.1-1.el10                      appstream  389 k
-  atk                                       x86_64  2.56.1-1.el10                      appstream   81 k
-  avahi-glib                                x86_64  0.9~rc2-2.el10                     appstream   15 k
-  bluez-libs                                x86_64  5.83-1.el10                        baseos      81 k
-  bzip2-devel                               x86_64  1.0.8-25.el10                      appstream  215 k
-  colord-libs                               x86_64  1.4.7-6.el10                       appstream  233 k
-  desktop-file-utils                        x86_64  0.26-14.el10                       appstream   71 k
-  exempi                                    x86_64  2.6.4-7.el10                       appstream  590 k
-  exiv2-libs                                x86_64  0.28.3-5.el10                      appstream  904 k
-  fdk-aac-free                              x86_64  2.0.0-15.el10                      appstream  339 k
-  fftw-libs-single                          x86_64  3.3.10-15.el10                     appstream  1.1 M
-  flac-libs                                 x86_64  1.4.3-6.el10                       appstream  265 k
-  flexiblas                                 x86_64  3.4.2-3.el10                       appstream   26 k
-  flexiblas-devel                           x86_64  3.4.2-3.el10                       appstream  122 k
-  flexiblas-netlib                          x86_64  3.4.2-3.el10                       appstream  3.2 M
-  flexiblas-netlib64                        x86_64  3.4.2-3.el10                       appstream  3.1 M
-  flexiblas-openblas-openmp                 x86_64  3.4.2-3.el10                       appstream   18 k
-  flexiblas-openblas-openmp64               x86_64  3.4.2-3.el10                       appstream   18 k
-  fuse-common                               x86_64  3.16.2-5.el10                      baseos     9.7 k
-  fuse3                                     x86_64  3.16.2-5.el10                      baseos      59 k
-  fuse3-libs                                x86_64  3.16.2-5.el10                      baseos      95 k
-  gcc-gfortran                              x86_64  14.3.1-2.3.el10                    appstream   14 M
-  gdk-pixbuf2-modules                       x86_64  2.42.12-4.el10                     appstream   29 k
-  geoclue2                                  x86_64  2.7.2-1.el10                       appstream  148 k
-  ghostscript                               x86_64  10.02.1-16.el10                    appstream   37 k
-  ghostscript-tools-fonts                   noarch  10.02.1-16.el10                    appstream   14 k
-  ghostscript-tools-printing                noarch  10.02.1-16.el10                    appstream   15 k
-  giflib                                    x86_64  5.2.1-22.el10                      appstream   53 k
-  gobject-introspection                     x86_64  1.79.1-6.el10                      baseos     109 k
-  graphene                                  x86_64  1.10.6-10.el10                     appstream   62 k
-  gsettings-desktop-schemas                 x86_64  47.1-3.el10                        baseos     784 k
-  gsm                                       x86_64  1.0.22-8.el10                      appstream   37 k
-  gstreamer1                                x86_64  1.24.11-1.el10                     appstream  1.6 M
-  gstreamer1-plugins-base                   x86_64  1.24.11-1.el10                     appstream  2.2 M
-  gtk-update-icon-cache                     x86_64  3.24.43-4.el10                     appstream   34 k
-  hicolor-icon-theme                        noarch  0.17-20.el10                       appstream  219 k
-  hwdata                                    noarch  0.379-10.6.el10                    baseos     1.7 M
-  info                                      x86_64  7.1-6.el10                         baseos     183 k
-  inih                                      x86_64  58-3.el10                          baseos      19 k
-  inih-cpp                                  x86_64  58-3.el10                          appstream   20 k
-  iso-codes                                 noarch  4.16.0-6.el10                      appstream  3.7 M
-  java-21-openjdk                           x86_64  1:21.0.8.0.9-1.el10                appstream  431 k
-  java-21-openjdk-devel                     x86_64  1:21.0.8.0.9-1.el10                appstream  5.0 M
-  java-21-openjdk-headless                  x86_64  1:21.0.8.0.9-1.el10                appstream   47 M
-  json-glib                                 x86_64  1.8.0-5.el10                       baseos     168 k
-  kbd                                       x86_64  2.6.4-7.el10                       baseos     407 k
-  kbd-legacy                                noarch  2.6.4-7.el10                       baseos     592 k
-  kbd-misc                                  noarch  2.6.4-7.el10                       baseos     1.7 M
-  kmod                                      x86_64  31-12.el10                         baseos     136 k
-  lame-libs                                 x86_64  3.100-19.el10                      appstream  339 k
-  libICE                                    x86_64  1.1.1-5.el10                       appstream   75 k
-  libRmath                                  x86_64  4.5.2-1.el10_2                     epel       120 k
-  libRmath-devel                            x86_64  4.5.2-1.el10_2                     epel        15 k
-  libSM                                     x86_64  1.2.4-5.el10                       appstream   44 k
-  libXcomposite                             x86_64  0.4.6-5.el10                       appstream   25 k
-  libXcursor                                x86_64  1.2.1-9.el10                       appstream   31 k
-  libXdamage                                x86_64  1.1.6-5.el10                       appstream   24 k
-  libXfixes                                 x86_64  6.0.1-5.el10                       appstream   20 k
-  libXi                                     x86_64  1.8.1-7.el10                       appstream   41 k
-  libXinerama                               x86_64  1.1.5-8.el10                       appstream   15 k
-  libXmu                                    x86_64  1.1.4-8.el10                       appstream   77 k
-  libXrandr                                 x86_64  1.5.4-5.el10                       appstream   29 k
-  libXt                                     x86_64  1.3.0-5.el10                       appstream  181 k
-  libXtst                                   x86_64  1.2.4-8.el10                       appstream   22 k
-  libXv                                     x86_64  1.0.12-5.el10                      appstream   20 k
-  libXxf86vm                                x86_64  1.1.5-8.el10                       appstream   19 k
-  libasyncns                                x86_64  0.8-30.el10                        appstream   31 k
-  libatomic                                 x86_64  14.3.1-2.3.el10                    baseos      54 k
-  libcamera                                 x86_64  0.3.2-4.el10                       appstream  574 k
-  libcanberra                               x86_64  0.30-37.el10                       appstream   91 k
-  libdeflate                                x86_64  1.24-1.el10_1                      epel        66 k
-  libdeflate-devel                          x86_64  1.24-1.el10_1                      epel        18 k
-  libdex                                    x86_64  0.8.1-1.el10                       appstream   85 k
-  libdrm                                    x86_64  2.4.123-1.el10                     appstream  163 k
-  libepoxy                                  x86_64  1.5.10-9.el10                      appstream  229 k
-  libexif                                   x86_64  0.6.24-9.el10                      appstream  454 k
-  libfontenc                                x86_64  1.1.7-5.el10                       appstream   33 k
-  libgexiv2                                 x86_64  0.14.3-3.el10                      appstream  106 k
-  libgfortran                               x86_64  14.3.1-2.3.el10                    baseos     827 k
-  libglvnd                                  x86_64  1:1.7.0-7.el10                     appstream  116 k
-  libglvnd-egl                              x86_64  1:1.7.0-7.el10                     appstream   37 k
-  libglvnd-glx                              x86_64  1:1.7.0-7.el10                     appstream  132 k
-  libgsf                                    x86_64  1.14.53-2.el10                     appstream  258 k
-  libgudev                                  x86_64  238-7.el10                         baseos      36 k
-  libgusb                                   x86_64  0.4.9-4.el10                       baseos      67 k
-  libgxps                                   x86_64  0.3.2-10.el10                      appstream   78 k
-  libicu-devel                              x86_64  74.2-5.el10                        appstream  966 k
-  libiptcdata                               x86_64  1.0.5-20.el10                      appstream   62 k
-  liblc3                                    x86_64  1.0.4-6.el10                       appstream   83 k
-  libldac                                   x86_64  2.0.2.3-17.el10                    appstream   42 k
-  libnotify                                 x86_64  0.8.6-1.el10                       appstream   53 k
-  libogg                                    x86_64  2:1.3.5-10.el10                    appstream   34 k
-  libosinfo                                 x86_64  1.11.0-8.el10                      appstream  317 k
-  libpciaccess                              x86_64  0.16-16.el10                       baseos      28 k
-  libportal                                 x86_64  0.9.0-2.el10                       appstream   85 k
-  libproxy                                  x86_64  0.5.5-4.el10                       baseos      49 k
-  libpsl                                    x86_64  0.21.5-6.el10                      baseos      65 k
-  libquadmath                               x86_64  14.3.1-2.3.el10                    baseos     215 k
-  libquadmath-devel                         x86_64  14.3.1-2.3.el10                    appstream   56 k
-  libsbc                                    x86_64  2.0-6.el10                         appstream   48 k
-  libsndfile                                x86_64  1.2.2-5.el10                       appstream  216 k
-  libsoup3                                  x86_64  3.6.5-5.el10                       appstream  396 k
-  libtdb                                    x86_64  1.4.14-100.el10                    baseos      54 k
-  libtheora                                 x86_64  1:1.1.1-39.el10                    appstream  170 k
-  libtidy                                   x86_64  5.8.0-9.el10_0                     epel       221 k
-  libtirpc                                  x86_64  1.3.5-1.el10                       baseos      95 k
-  libtirpc-devel                            x86_64  1.3.5-1.el10                       crb        127 k
-  libtracker-sparql                         x86_64  3.7.3-4.el10                       appstream  376 k
-  liburing                                  x86_64  2.12-1.el10                        baseos      43 k
-  libvorbis                                 x86_64  1:1.3.7-12.el10                    appstream  189 k
-  libwayland-client                         x86_64  1.23.1-1.el10                      appstream   34 k
-  libwayland-cursor                         x86_64  1.23.1-1.el10                      appstream   20 k
-  libwayland-egl                            x86_64  1.23.1-1.el10                      appstream   13 k
-  libwayland-server                         x86_64  1.23.1-1.el10                      appstream   42 k
-  libxkbcommon                              x86_64  1.7.0-4.el10                       appstream  145 k
-  libxshmfence                              x86_64  1.3.2-5.el10                       appstream   13 k
-  linux-firmware-whence                     noarch  20250812-19.el10                   baseos     103 k
-  lksctp-tools                              x86_64  1.0.21-1.el10                      baseos      94 k
-  llvm-filesystem                           x86_64  20.1.8-1.el10                      appstream   11 k
-  llvm-libs                                 x86_64  20.1.8-1.el10                      appstream   30 M
-  mesa-dri-drivers                          x86_64  25.0.7-5.el10                      appstream   11 M
-  mesa-filesystem                           x86_64  25.0.7-5.el10                      appstream   13 k
-  mesa-libEGL                               x86_64  25.0.7-5.el10                      appstream  131 k
-  mesa-libGL                                x86_64  25.0.7-5.el10                      appstream  160 k
-  mesa-libgbm                               x86_64  25.0.7-5.el10                      appstream   19 k
-  mkfontscale                               x86_64  1.2.2-8.el10                       appstream   33 k
-  mpg123-libs                               x86_64  1.32.9-1.el10                      appstream  353 k
-  openblas                                  x86_64  0.3.29-2.el10                      appstream   43 k
-  openblas-openmp                           x86_64  0.3.29-2.el10                      appstream  5.3 M
-  openblas-openmp64                         x86_64  0.3.29-2.el10                      appstream  5.2 M
-  opus                                      x86_64  1.4-6.el10                         appstream  211 k
-  orc                                       x86_64  0.4.39-2.el10                      appstream  229 k
-  osinfo-db                                 noarch  20250606-1.el10                    appstream  564 k
-  osinfo-db-tools                           x86_64  1.11.0-8.el10                      appstream   74 k
-  pcre2-devel                               x86_64  10.44-1.el10.3                     appstream  532 k
-  pcre2-utf16                               x86_64  10.44-1.el10.3                     appstream  227 k
-  pcre2-utf32                               x86_64  10.44-1.el10.3                     appstream  215 k
-  perl-Class-Inspector                      noarch  1.36-19.el10                       appstream   31 k
-  perl-Exporter-Tiny                        noarch  1.006002-7.el10                    appstream   54 k
-  perl-Filter                               x86_64  2:1.64-512.el10                    appstream   89 k
-  perl-Lexical-SealRequireHints             x86_64  0.012-1.el10_0                     epel        26 k
-  perl-List-MoreUtils-XS                    x86_64  0.430-18.el10                      appstream   65 k
-  perl-Text-Unidecode                       noarch  1.30-27.el10                       appstream  195 k
-  perl-Unicode-EastAsianWidth               noarch  12.0-16.el10                       crb         20 k
-  perl-Unicode-Normalize                    x86_64  1.32-511.el10                      appstream   75 k
-  perl-XML-XPath                            noarch  1.48-8.el10                        appstream   86 k
-  perl-encoding                             x86_64  4:3.00-511.el10                    appstream   64 k
-  perl-libintl-perl                         x86_64  1.33-11.el10                       appstream  835 k
-  perl-open                                 noarch  1.13-514.el10                      appstream   17 k
-  pipewire-jack-audio-connection-kit-libs   x86_64  1.4.6-1.el10                       appstream  149 k
-  pipewire-libs                             x86_64  1.4.6-1.el10                       appstream  2.5 M
-  publicsuffix-list-dafsa                   noarch  20240107-5.el10                    baseos      59 k
-  pulseaudio-libs                           x86_64  17.0-6.el10                        appstream  706 k
-  rtkit                                     x86_64  0.11-68.el10                       appstream   57 k
-  sound-theme-freedesktop                   noarch  0.8-23.el10                        appstream  383 k
-  spirv-tools-libs                          x86_64  2025.2-1.el10                      appstream  1.5 M
-  systemd-udev                              x86_64  257-16.el10                        baseos     2.3 M
-  tcl                                       x86_64  1:8.6.13-4.el10                    baseos     1.1 M
-  teckit                                    x86_64  2.5.12-4.el10                      appstream  360 k
-  texinfo                                   x86_64  7.1-6.el10                         crb        1.3 M
-  texlive-ae                                noarch  13:20240311-6.el10                 appstream  126 k
-  texlive-algorithms                        noarch  13:20240311-6.el10                 appstream  301 k
-  texlive-alphalph                          noarch  13:20240311-6.el10                 appstream  355 k
-  texlive-amscls                            noarch  13:20240311-6.el10                 appstream  1.1 M
-  texlive-amsfonts                          noarch  13:20240311-6.el10                 appstream  4.8 M
-  texlive-amsmath                           noarch  13:20240311-6.el10                 appstream  2.3 M
-  texlive-anysize                           noarch  13:20240311-6.el10                 appstream   46 k
-  texlive-atbegshi                          noarch  13:20240311-6.el10                 appstream  403 k
-  texlive-attachfile                        noarch  13:20240311-6.el10                 appstream  353 k
-  texlive-attachfile2                       noarch  13:20240311-6.el10                 appstream  465 k
-  texlive-atveryend                         noarch  13:20240311-6.el10                 appstream  379 k
-  texlive-auxhook                           noarch  13:20240311-6.el10                 appstream  289 k
-  texlive-avantgar                          noarch  13:20240311-6.el10                 appstream  327 k
-  texlive-babel                             noarch  13:20240311-6.el10                 appstream  1.7 M
-  texlive-babel-english                     noarch  13:20240311-6.el10                 appstream  142 k
-  texlive-babelbib                          noarch  13:20240311-6.el10                 appstream  1.2 M
-  texlive-base                              noarch  13:20240311-6.el10                 appstream  2.8 M
-  texlive-beamer                            noarch  13:20240311-6.el10                 appstream  2.7 M
-  texlive-bera                              noarch  13:20240311-6.el10                 appstream  382 k
-  texlive-beton                             noarch  13:20240311-6.el10                 appstream   72 k
-  texlive-bibtex                            x86_64  13:20240311-6.el10                 appstream  1.6 M
-  texlive-bidi                              noarch  13:20240311-6.el10                 appstream  4.2 M
-  texlive-bigintcalc                        noarch  13:20240311-6.el10                 appstream  460 k
-  texlive-bitset                            noarch  13:20240311-6.el10                 appstream  614 k
-  texlive-bookman                           noarch  13:20240311-6.el10                 appstream  375 k
-  texlive-bookmark                          noarch  13:20240311-6.el10                 appstream  480 k
-  texlive-booktabs                          noarch  13:20240311-6.el10                 appstream  300 k
-  texlive-breakurl                          noarch  13:20240311-6.el10                 appstream  120 k
-  texlive-breqn                             noarch  13:20240311-6.el10                 appstream  1.0 M
-  texlive-caption                           noarch  13:20240311-6.el10                 appstream  812 k
-  texlive-carlisle                          noarch  13:20240311-6.el10                 appstream   93 k
-  texlive-catchfile                         noarch  13:20240311-6.el10                 appstream  301 k
-  texlive-changepage                        noarch  13:20240311-6.el10                 appstream  283 k
-  texlive-charter                           noarch  13:20240311-6.el10                 appstream  209 k
-  texlive-chngcntr                          noarch  13:20240311-6.el10                 appstream  240 k
-  texlive-cite                              noarch  13:20240311-6.el10                 appstream  245 k
-  texlive-cm                                noarch  13:20240311-6.el10                 appstream  335 k
-  texlive-cm-super                          noarch  13:20240311-6.el10                 appstream   62 M
-  texlive-cmap                              noarch  13:20240311-6.el10                 appstream   20 k
-  texlive-cmextra                           noarch  13:20240311-6.el10                 appstream   48 k
-  texlive-collection-basic                  noarch  13:20240311-6.el10                 appstream  7.6 k
-  texlive-collection-fontsrecommended       noarch  13:20240311-6.el10                 appstream  7.5 k
-  texlive-collection-latex                  noarch  13:20240311-6.el10                 appstream  7.8 k
-  texlive-colorprofiles                     noarch  13:20240311-6.el10                 appstream  141 k
-  texlive-colortbl                          noarch  13:20240311-6.el10                 appstream  641 k
-  texlive-count1to                          noarch  13:20240311-6.el10                 appstream  537 k
-  texlive-courier                           noarch  13:20240311-6.el10                 appstream  529 k
-  texlive-crop                              noarch  13:20240311-6.el10                 appstream  332 k
-  texlive-csquotes                          noarch  13:20240311-6.el10                 appstream  346 k
-  texlive-ctable                            noarch  13:20240311-6.el10                 appstream  701 k
-  texlive-currfile                          noarch  13:20240311-6.el10                 appstream  191 k
-  texlive-dvipdfmx                          x86_64  13:20240311-6.el10                 appstream  3.0 M
-  texlive-dvips                             x86_64  13:20240311-6.el10                 appstream  740 k
-  texlive-ec                                noarch  13:20240311-6.el10                 appstream  788 k
-  texlive-enctex                            noarch  13:20240311-6.el10                 appstream  301 k
-  texlive-enumitem                          noarch  13:20240311-6.el10                 appstream  182 k
-  texlive-epsf                              noarch  13:20240311-6.el10                 appstream  283 k
-  texlive-epstopdf-pkg                      noarch  13:20240311-6.el10                 appstream  358 k
-  texlive-eso-pic                           noarch  13:20240311-6.el10                 appstream  297 k
-  texlive-etex                              noarch  13:20240311-6.el10                 appstream  333 k
-  texlive-etex-pkg                          noarch  13:20240311-6.el10                 appstream   18 k
-  texlive-etexcmds                          noarch  13:20240311-6.el10                 appstream  304 k
-  texlive-etoolbox                          noarch  13:20240311-6.el10                 appstream  251 k
-  texlive-euenc                             noarch  13:20240311-6.el10                 appstream  159 k
-  texlive-euler                             noarch  13:20240311-6.el10                 appstream  245 k
-  texlive-euro                              noarch  13:20240311-6.el10                 appstream  209 k
-  texlive-eurosym                           noarch  13:20240311-6.el10                 appstream  431 k
-  texlive-everysel                          noarch  13:20240311-6.el10                 appstream  443 k
-  texlive-everyshi                          noarch  13:20240311-6.el10                 appstream  141 k
-  texlive-extsizes                          noarch  13:20240311-6.el10                 appstream  214 k
-  texlive-fancybox                          noarch  13:20240311-6.el10                 appstream  289 k
-  texlive-fancyhdr                          noarch  13:20240311-6.el10                 appstream  847 k
-  texlive-fancyref                          noarch  13:20240311-6.el10                 appstream  116 k
-  texlive-fancyvrb                          noarch  13:20240311-6.el10                 appstream  199 k
-  texlive-filecontents                      noarch  13:20240311-6.el10                 appstream  286 k
-  texlive-filehook                          noarch  13:20240311-6.el10                 appstream  317 k
-  texlive-finstrut                          noarch  13:20240311-6.el10                 appstream  185 k
-  texlive-firstaid                          noarch  13:20240311-6.el10                 appstream  281 k
-  texlive-fix2col                           noarch  13:20240311-6.el10                 appstream  220 k
-  texlive-float                             noarch  13:20240311-6.el10                 appstream  124 k
-  texlive-fontspec                          noarch  13:20240311-6.el10                 appstream  1.1 M
-  texlive-footmisc                          noarch  13:20240311-6.el10                 appstream  518 k
-  texlive-footnotehyper                     noarch  13:20240311-6.el10                 appstream   95 k
-  texlive-fp                                noarch  13:20240311-6.el10                 appstream  246 k
-  texlive-fpl                               noarch  13:20240311-6.el10                 appstream  307 k
-  texlive-geometry                          noarch  13:20240311-6.el10                 appstream  857 k
-  texlive-gettitlestring                    noarch  13:20240311-6.el10                 appstream  321 k
-  texlive-glyphlist                         noarch  13:20240311-6.el10                 appstream   37 k
-  texlive-graphics                          noarch  13:20240311-6.el10                 appstream  2.4 M
-  texlive-graphics-cfg                      noarch  13:20240311-6.el10                 appstream   13 k
-  texlive-graphics-def                      noarch  13:20240311-6.el10                 appstream   23 k
-  texlive-grfext                            noarch  13:20240311-6.el10                 appstream  312 k
-  texlive-grffile                           noarch  13:20240311-6.el10                 appstream  354 k
-  texlive-helvetic                          noarch  13:20240311-6.el10                 appstream  670 k
-  texlive-hobsub                            noarch  13:20240311-6.el10                 appstream   72 k
-  texlive-hologo                            noarch  13:20240311-6.el10                 appstream  581 k
-  texlive-hopatch                           noarch  13:20240311-6.el10                 appstream  323 k
-  texlive-hycolor                           noarch  13:20240311-6.el10                 appstream  378 k
-  texlive-hypcap                            noarch  13:20240311-6.el10                 appstream  297 k
-  texlive-hypdoc                            noarch  13:20240311-6.el10                 appstream  331 k
-  texlive-hyperref                          noarch  13:20240311-6.el10                 appstream  3.9 M
-  texlive-hyph-utf8                         noarch  13:20240311-6.el10                 appstream  303 k
-  texlive-hyphen-base                       noarch  13:20240311-6.el10                 appstream   34 k
-  texlive-hyphenex                          noarch  13:20240311-6.el10                 appstream   20 k
-  texlive-ifmtarg                           noarch  13:20240311-6.el10                 appstream   48 k
-  texlive-ifplatform                        noarch  13:20240311-6.el10                 appstream  160 k
-  texlive-iftex                             noarch  13:20240311-6.el10                 appstream  237 k
-  texlive-index                             noarch  13:20240311-6.el10                 appstream  177 k
-  texlive-infwarerr                         noarch  13:20240311-6.el10                 appstream  289 k
-  texlive-intcalc                           noarch  13:20240311-6.el10                 appstream  426 k
-  texlive-jknapltx                          noarch  13:20240311-6.el10                 appstream   27 k
-  texlive-kastrup                           noarch  13:20240311-6.el10                 appstream  148 k
-  texlive-knuth-lib                         noarch  13:20240311-6.el10                 appstream   50 k
-  texlive-knuth-local                       noarch  13:20240311-6.el10                 appstream   43 k
-  texlive-koma-script                       noarch  13:20240311-6.el10                 appstream  6.3 M
-  texlive-kpathsea                          x86_64  13:20240311-6.el10                 appstream  1.1 M
-  texlive-kvdefinekeys                      noarch  13:20240311-6.el10                 appstream  300 k
-  texlive-kvoptions                         noarch  13:20240311-6.el10                 appstream  488 k
-  texlive-kvsetkeys                         noarch  13:20240311-6.el10                 appstream  393 k
-  texlive-l3backend                         noarch  13:20240311-6.el10                 appstream  867 k
-  texlive-l3experimental                    noarch  13:20240311-6.el10                 appstream  2.8 M
-  texlive-l3kernel                          noarch  13:20240311-6.el10                 appstream   12 M
-  texlive-l3packages                        noarch  13:20240311-6.el10                 appstream  1.4 M
-  texlive-latex                             noarch  13:20240311-6.el10                 appstream   34 M
-  texlive-latex-fonts                       noarch  13:20240311-6.el10                 appstream   48 k
-  texlive-latexbug                          noarch  13:20240311-6.el10                 appstream  233 k
-  texlive-latexconfig                       noarch  13:20240311-6.el10                 appstream   14 k
-  texlive-letltxmacro                       noarch  13:20240311-6.el10                 appstream  294 k
-  texlive-lib                               x86_64  13:20240311-6.el10                 appstream  234 k
-  texlive-lineno                            noarch  13:20240311-6.el10                 appstream  879 k
-  texlive-listings                          noarch  13:20240311-6.el10                 appstream  2.8 M
-  texlive-lm                                noarch  13:20240311-6.el10                 appstream   14 M
-  texlive-lm-math                           noarch  13:20240311-6.el10                 appstream  535 k
-  texlive-ltabptch                          noarch  13:20240311-6.el10                 appstream  274 k
-  texlive-ltxcmds                           noarch  13:20240311-6.el10                 appstream  408 k
-  texlive-ltxmisc                           noarch  13:20240311-6.el10                 appstream   28 k
-  texlive-lua-alt-getopt                    noarch  13:20240311-6.el10                 appstream   17 k
-  texlive-lua-uni-algos                     noarch  13:20240311-6.el10                 appstream   91 k
-  texlive-luahbtex                          x86_64  13:20240311-6.el10                 appstream  2.0 M
-  texlive-lualatex-math                     noarch  13:20240311-6.el10                 appstream  210 k
-  texlive-lualibs                           noarch  13:20240311-6.el10                 appstream  241 k
-  texlive-luaotfload                        noarch  13:20240311-6.el10                 appstream  1.2 M
-  texlive-luatex                            x86_64  13:20240311-6.el10                 appstream  3.8 M
-  texlive-luatexbase                        noarch  13:20240311-6.el10                 appstream  272 k
-  texlive-lwarp                             noarch  13:20240311-6.el10                 appstream  3.6 M
-  texlive-makecmds                          noarch  13:20240311-6.el10                 appstream  125 k
-  texlive-makeindex                         x86_64  13:20240311-6.el10                 appstream  436 k
-  texlive-manfnt-font                       noarch  13:20240311-6.el10                 appstream   37 k
-  texlive-marginnote                        noarch  13:20240311-6.el10                 appstream  471 k
-  texlive-marvosym                          noarch  13:20240311-6.el10                 appstream  562 k
-  texlive-mathpazo                          noarch  13:20240311-6.el10                 appstream  449 k
-  texlive-mathspec                          noarch  13:20240311-6.el10                 appstream  188 k
-  texlive-mathtools                         noarch  13:20240311-6.el10                 appstream  1.0 M
-  texlive-mdwtools                          noarch  13:20240311-6.el10                 appstream  1.6 M
-  texlive-memoir                            noarch  13:20240311-6.el10                 appstream  3.1 M
-  texlive-metafont                          x86_64  13:20240311-6.el10                 appstream  263 k
-  texlive-metalogo                          noarch  13:20240311-6.el10                 appstream   90 k
-  texlive-mflogo                            noarch  13:20240311-6.el10                 appstream  246 k
-  texlive-mflogo-font                       noarch  13:20240311-6.el10                 appstream   34 k
-  texlive-mfnfss                            noarch  13:20240311-6.el10                 appstream  449 k
-  texlive-mfware                            x86_64  13:20240311-6.el10                 appstream  103 k
-  texlive-microtype                         noarch  13:20240311-6.el10                 appstream  2.6 M
-  texlive-minitoc                           noarch  13:20240311-6.el10                 appstream  125 k
-  texlive-mnsymbol                          noarch  13:20240311-6.el10                 appstream  4.7 M
-  texlive-modes                             noarch  13:20240311-6.el10                 appstream  306 k
-  texlive-mparhack                          noarch  13:20240311-6.el10                 appstream  312 k
-  texlive-mptopdf                           noarch  13:20240311-6.el10                 appstream   52 k
-  texlive-multido                           noarch  13:20240311-6.el10                 appstream  120 k
-  texlive-multitoc                          noarch  13:20240311-6.el10                 appstream  281 k
-  texlive-natbib                            noarch  13:20240311-6.el10                 appstream  439 k
-  texlive-ncntrsbk                          noarch  13:20240311-6.el10                 appstream  369 k
-  texlive-newfloat                          noarch  13:20240311-6.el10                 appstream  134 k
-  texlive-notoccite                         noarch  13:20240311-6.el10                 appstream  232 k
-  texlive-ntgclass                          noarch  13:20240311-6.el10                 appstream  1.6 M
-  texlive-oberdiek                          noarch  13:20240311-6.el10                 appstream  7.1 M
-  texlive-palatino                          noarch  13:20240311-6.el10                 appstream  436 k
-  texlive-paralist                          noarch  13:20240311-6.el10                 appstream  218 k
-  texlive-parallel                          noarch  13:20240311-6.el10                 appstream  129 k
-  texlive-parskip                           noarch  13:20240311-6.el10                 appstream  317 k
-  texlive-pdfcol                            noarch  13:20240311-6.el10                 appstream  321 k
-  texlive-pdfcolfoot                        noarch  13:20240311-6.el10                 appstream  314 k
-  texlive-pdfcolmk                          noarch  13:20240311-6.el10                 appstream   13 k
-  texlive-pdfescape                         noarch  13:20240311-6.el10                 appstream  347 k
-  texlive-pdflscape                         noarch  13:20240311-6.el10                 appstream  318 k
-  texlive-pdfmanagement-testphase           noarch  13:20240311-6.el10                 appstream  8.2 M
-  texlive-pdfpages                          noarch  13:20240311-6.el10                 appstream  341 k
-  texlive-pdftex                            x86_64  13:20240311-6.el10                 appstream  3.2 M
-  texlive-pdftexcmds                        noarch  13:20240311-6.el10                 appstream  385 k
-  texlive-pgf                               noarch  13:20240311-6.el10                 appstream   10 M
-  texlive-placeins                          noarch  13:20240311-6.el10                 appstream  263 k
-  texlive-plain                             noarch  13:20240311-6.el10                 appstream   45 k
-  texlive-polyglossia                       noarch  13:20240311-6.el10                 appstream  912 k
-  texlive-psfrag                            noarch  13:20240311-6.el10                 appstream   84 k
-  texlive-pslatex                           noarch  13:20240311-6.el10                 appstream   20 k
-  texlive-psnfss                            noarch  13:20240311-6.el10                 appstream  318 k
-  texlive-pspicture                         noarch  13:20240311-6.el10                 appstream   55 k
-  texlive-pst-3d                            noarch  13:20240311-6.el10                 appstream  114 k
-  texlive-pst-arrow                         noarch  13:20240311-6.el10                 appstream  153 k
-  texlive-pst-coil                          noarch  13:20240311-6.el10                 appstream  3.5 M
-  texlive-pst-eps                           noarch  13:20240311-6.el10                 appstream   93 k
-  texlive-pst-fill                          noarch  13:20240311-6.el10                 appstream  840 k
-  texlive-pst-grad                          noarch  13:20240311-6.el10                 appstream  227 k
-  texlive-pst-math                          noarch  13:20240311-6.el10                 appstream  239 k
-  texlive-pst-node                          noarch  13:20240311-6.el10                 appstream  729 k
-  texlive-pst-plot                          noarch  13:20240311-6.el10                 appstream  1.3 M
-  texlive-pst-text                          noarch  13:20240311-6.el10                 appstream  183 k
-  texlive-pst-tools                         noarch  13:20240311-6.el10                 appstream  123 k
-  texlive-pst-tree                          noarch  13:20240311-6.el10                 appstream  218 k
-  texlive-pstricks                          noarch  13:20240311-6.el10                 appstream  7.3 M
-  texlive-pstricks-add                      noarch  13:20240311-6.el10                 appstream   11 M
-  texlive-pxfonts                           noarch  13:20240311-6.el10                 appstream  941 k
-  texlive-ragged2e                          noarch  13:20240311-6.el10                 appstream  722 k
-  texlive-rcs                               noarch  13:20240311-6.el10                 appstream  143 k
-  texlive-realscripts                       noarch  13:20240311-6.el10                 appstream  115 k
-  texlive-refcount                          noarch  13:20240311-6.el10                 appstream  329 k
-  texlive-rerunfilecheck                    noarch  13:20240311-6.el10                 appstream  335 k
-  texlive-rsfs                              noarch  13:20240311-6.el10                 appstream   75 k
-  texlive-sansmath                          noarch  13:20240311-6.el10                 appstream  191 k
-  texlive-sansmathaccent                    noarch  13:20240311-6.el10                 appstream  181 k
-  texlive-sauerj                            noarch  13:20240311-6.el10                 appstream  548 k
-  texlive-section                           noarch  13:20240311-6.el10                 appstream  365 k
-  texlive-seminar                           noarch  13:20240311-6.el10                 appstream  382 k
-  texlive-sepnum                            noarch  13:20240311-6.el10                 appstream  357 k
-  texlive-setspace                          noarch  13:20240311-6.el10                 appstream  210 k
-  texlive-showexpl                          noarch  13:20240311-6.el10                 appstream  602 k
-  texlive-stringenc                         noarch  13:20240311-6.el10                 appstream  695 k
-  texlive-subfig                            noarch  13:20240311-6.el10                 appstream  465 k
-  texlive-symbol                            noarch  13:20240311-6.el10                 appstream   51 k
-  texlive-tex                               x86_64  13:20240311-6.el10                 appstream  206 k
-  texlive-tex-gyre                          noarch  13:20240311-6.el10                 appstream   19 M
-  texlive-tex-gyre-math                     noarch  13:20240311-6.el10                 appstream  1.8 M
-  texlive-tex-ini-files                     noarch  13:20240311-6.el10                 appstream   20 k
-  texlive-texlive-common-doc                noarch  13:20240311-6.el10                 appstream  600 k
-  texlive-texlive-en                        noarch  13:20240311-6.el10                 appstream  1.9 M
-  texlive-texlive-msg-translations          noarch  13:20240311-6.el10                 appstream  163 k
-  texlive-texlive-scripts                   noarch  13:20240311-6.el10                 appstream  122 k
-  texlive-texlive-scripts-extra             noarch  13:20240311-6.el10                 appstream   65 k
-  texlive-texlive.infra                     noarch  13:20240311-6.el10                 appstream  297 k
-  texlive-textcase                          noarch  13:20240311-6.el10                 appstream  232 k
-  texlive-thumbpdf                          noarch  13:20240311-6.el10                 appstream   40 k
-  texlive-times                             noarch  13:20240311-6.el10                 appstream  376 k
-  texlive-tipa                              noarch  13:20240311-6.el10                 appstream  5.1 M
-  texlive-titlesec                          noarch  13:20240311-6.el10                 appstream  693 k
-  texlive-tools                             noarch  13:20240311-6.el10                 appstream  6.1 M
-  texlive-translator                        noarch  13:20240311-6.el10                 appstream  289 k
-  texlive-txfonts                           noarch  13:20240311-6.el10                 appstream  1.4 M
-  texlive-typehtml                          noarch  13:20240311-6.el10                 appstream  169 k
-  texlive-ucharcat                          noarch  13:20240311-6.el10                 appstream  167 k
-  texlive-ucs                               noarch  13:20240311-6.el10                 appstream  1.7 M
-  texlive-underscore                        noarch  13:20240311-6.el10                 appstream  254 k
-  texlive-unicode-data                      noarch  13:20240311-6.el10                 appstream  360 k
-  texlive-unicode-math                      noarch  13:20240311-6.el10                 appstream  3.2 M
-  texlive-uniquecounter                     noarch  13:20240311-6.el10                 appstream  295 k
-  texlive-url                               noarch  13:20240311-6.el10                 appstream  275 k
-  texlive-utopia                            noarch  13:20240311-6.el10                 appstream  244 k
-  texlive-varwidth                          noarch  13:20240311-6.el10                 appstream   41 k
-  texlive-wasy                              noarch  13:20240311-6.el10                 appstream  338 k
-  texlive-wasy-type1                        noarch  13:20240311-6.el10                 appstream  269 k
-  texlive-wasysym                           noarch  13:20240311-6.el10                 appstream  174 k
-  texlive-xcolor                            noarch  13:20240311-6.el10                 appstream  934 k
-  texlive-xetex                             x86_64  13:20240311-6.el10                 appstream  1.9 M
-  texlive-xetexconfig                       noarch  13:20240311-6.el10                 appstream   12 k
-  texlive-xfrac                             noarch  13:20240311-6.el10                 appstream  636 k
-  texlive-xifthen                           noarch  13:20240311-6.el10                 appstream  482 k
-  texlive-xkeyval                           noarch  13:20240311-6.el10                 appstream  443 k
-  texlive-xltxtra                           noarch  13:20240311-6.el10                 appstream  112 k
-  texlive-xunicode                          noarch  13:20240311-6.el10                 appstream   39 k
-  texlive-zapfchan                          noarch  13:20240311-6.el10                 appstream  105 k
-  texlive-zapfding                          noarch  13:20240311-6.el10                 appstream   60 k
-  texlive-zref                              noarch  13:20240311-6.el10                 appstream  680 k
-  tk                                        x86_64  1:8.6.13-5.el10                    appstream  1.6 M
-  tracker                                   x86_64  3.7.3-4.el10                       appstream  644 k
-  tre                                       x86_64  0.8.0-47.20140228gitc2f5d13.el10_1 epel        44 k
-  tre-common                                noarch  0.8.0-47.20140228gitc2f5d13.el10_1 epel        31 k
-  tre-devel                                 x86_64  0.8.0-47.20140228gitc2f5d13.el10_1 epel        12 k
-  ttmkfdir                                  x86_64  3.0.9-72.el10                      appstream   57 k
-  tzdata-java                               noarch  2025b-2.el10                       appstream   46 k
-  upower-libs                               x86_64  1.90.9-1.el10                      appstream   59 k
-  webrtc-audio-processing                   x86_64  1.3-5.el10                         appstream  527 k
-  wireplumber                               x86_64  0.5.10-1.el10                      appstream  121 k
-  wireplumber-libs                          x86_64  0.5.10-1.el10                      appstream  405 k
-  xdg-desktop-portal                        x86_64  1.20.0-2.el10                      appstream  532 k
-  xdg-utils                                 noarch  1.2.0-4.el10                       appstream   80 k
-  xkeyboard-config                          noarch  2.41-3.el10                        appstream  1.0 M
-  xorg-x11-fonts-Type1                      noarch  7.5-40.el10                        appstream  505 k
-  xprop                                     x86_64  1.2.7-3.el10                       appstream   36 k
-  zziplib                                   x86_64  0.13.78-2.el10                     appstream   91 k
- Installing weak dependencies:
-  dconf                                     x86_64  0.40.0-16.el10                     appstream  107 k
-  devscripts-checkbashisms                  noarch  2.25.5-1.el10_1                    epel        28 k
-  exiv2                                     x86_64  0.28.3-5.el10                      appstream  2.1 M
-  glib-networking                           x86_64  2.80.0-3.el10                      baseos     204 k
-  gtk3                                      x86_64  3.24.43-4.el10                     appstream  5.6 M
-  intel-vsc-firmware                        noarch  20250812-19.el10                   baseos     7.8 M
-  libcamera-ipa                             x86_64  0.3.2-4.el10                       appstream  134 k
-  libcanberra-gtk3                          x86_64  0.30-37.el10                       appstream   33 k
-  low-memory-monitor                        x86_64  2.1-12.el10                        appstream   35 k
-  perl-File-ShareDir                        noarch  1.118-14.el10                      appstream   31 k
-  perl-Lexical-Var                          x86_64  0.010-1.el10_0                     epel        33 k
-  perl-List-MoreUtils                       noarch  0.430-15.el10                      appstream   63 k
-  perl-Params-Util                          x86_64  1.102-19.el10                      appstream   34 k
-  pipewire                                  x86_64  1.4.6-1.el10                       appstream  134 k
-  pipewire-alsa                             x86_64  1.4.6-1.el10                       appstream   62 k
-  pipewire-jack-audio-connection-kit        x86_64  1.4.6-1.el10                       appstream   13 k
-  pipewire-plugin-libcamera                 x86_64  1.4.6-1.el10                       appstream   76 k
-  pipewire-pulseaudio                       x86_64  1.4.6-1.el10                       appstream  214 k
-  texinfo-tex                               x86_64  7.1-6.el10                         crb        141 k
-  texlive-collection-latexrecommended       noarch  13:20240311-6.el10                 appstream  8.3 k
-  tidy                                      x86_64  5.8.0-9.el10_0                     epel        36 k
-  tracker-miners                            x86_64  3.7.3-4.el10                       appstream  984 k
-  upower                                    x86_64  1.90.9-1.el10                      appstream  143 k
-  xdg-desktop-portal-gtk                    x86_64  1.15.3-1.el10                      appstream  145 k
- 
- Transaction Summary
- ======================================================================================================
- Install  483 Packages
- 
- Total download size: 609 M
- Installed size: 1.4 G
- Downloading Packages:
- (1/483): fuse-common-3.16.2-5.el10.x86_64.rpm    62 kB/s | 9.7 kB     00:00    
- (2/483): bluez-libs-5.83-1.el10.x86_64.rpm      476 kB/s |  81 kB     00:00    
- (3/483): fuse3-libs-3.16.2-5.el10.x86_64.rpm    544 kB/s |  95 kB     00:00    
- (4/483): fuse3-3.16.2-5.el10.x86_64.rpm         247 kB/s |  59 kB     00:00    
- (5/483): glib-networking-2.80.0-3.el10.x86_64.r 1.1 MB/s | 204 kB     00:00    
- (6/483): gobject-introspection-1.79.1-6.el10.x8 409 kB/s | 109 kB     00:00    
- (7/483): ModemManager-glib-1.22.0-7.el10.x86_64 306 kB/s | 325 kB     00:01    
- (8/483): info-7.1-6.el10.x86_64.rpm             304 kB/s | 183 kB     00:00    
- (9/483): inih-58-3.el10.x86_64.rpm              479 kB/s |  19 kB     00:00    
- (10/483): gsettings-desktop-schemas-47.1-3.el10 591 kB/s | 784 kB     00:01    
- (11/483): json-glib-1.8.0-5.el10.x86_64.rpm     363 kB/s | 168 kB     00:00    
- (12/483): kbd-2.6.4-7.el10.x86_64.rpm           224 kB/s | 407 kB     00:01    
- (13/483): hwdata-0.379-10.6.el10.noarch.rpm     300 kB/s | 1.7 MB     00:05    
- (14/483): kbd-legacy-2.6.4-7.el10.noarch.rpm    169 kB/s | 592 kB     00:03    
- (15/483): kmod-31-12.el10.x86_64.rpm            288 kB/s | 136 kB     00:00    
- (16/483): libatomic-14.3.1-2.3.el10.x86_64.rpm  220 kB/s |  54 kB     00:00    
- (17/483): kbd-misc-2.6.4-7.el10.noarch.rpm      316 kB/s | 1.7 MB     00:05    
- (18/483): libgfortran-14.3.1-2.3.el10.x86_64.rp 231 kB/s | 827 kB     00:03    
- (19/483): libgudev-238-7.el10.x86_64.rpm        239 kB/s |  36 kB     00:00    
- (20/483): libpciaccess-0.16-16.el10.x86_64.rpm  242 kB/s |  28 kB     00:00    
- (21/483): libgusb-0.4.9-4.el10.x86_64.rpm       408 kB/s |  67 kB     00:00    
- (22/483): libpsl-0.21.5-6.el10.x86_64.rpm       381 kB/s |  65 kB     00:00    
- (23/483): libproxy-0.5.5-4.el10.x86_64.rpm      156 kB/s |  49 kB     00:00    
- (24/483): libtdb-1.4.14-100.el10.x86_64.rpm     227 kB/s |  54 kB     00:00    
- (25/483): libquadmath-14.3.1-2.3.el10.x86_64.rp 410 kB/s | 215 kB     00:00    
- (26/483): liburing-2.12-1.el10.x86_64.rpm       402 kB/s |  43 kB     00:00    
- (27/483): libtirpc-1.3.5-1.el10.x86_64.rpm      197 kB/s |  95 kB     00:00    
- (28/483): linux-firmware-whence-20250812-19.el1 312 kB/s | 103 kB     00:00    
- (29/483): publicsuffix-list-dafsa-20240107-5.el 406 kB/s |  59 kB     00:00    
- (30/483): lksctp-tools-1.0.21-1.el10.x86_64.rpm 187 kB/s |  94 kB     00:00    
- (31/483): tcl-8.6.13-4.el10.x86_64.rpm          169 kB/s | 1.1 MB     00:06    
- (32/483): adwaita-cursor-theme-46.0-3.el10.noar 269 kB/s | 524 kB     00:01    
- (33/483): systemd-udev-257-16.el10.x86_64.rpm   247 kB/s | 2.3 MB     00:09    
- (34/483): adwaita-icon-theme-46.0-3.el10.noarch 295 kB/s | 457 kB     00:01    
- (35/483): at-spi2-atk-2.56.1-1.el10.x86_64.rpm  147 kB/s |  88 kB     00:00    
- (36/483): alsa-lib-1.2.14-1.el10.x86_64.rpm     215 kB/s | 529 kB     00:02    
- (37/483): atk-2.56.1-1.el10.x86_64.rpm          298 kB/s |  81 kB     00:00    
- (38/483): avahi-glib-0.9~rc2-2.el10.x86_64.rpm  181 kB/s |  15 kB     00:00    
- (39/483): at-spi2-core-2.56.1-1.el10.x86_64.rpm 240 kB/s | 389 kB     00:01    
- (40/483): bzip2-devel-1.0.8-25.el10.x86_64.rpm  265 kB/s | 215 kB     00:00    
- (41/483): dconf-0.40.0-16.el10.x86_64.rpm       328 kB/s | 107 kB     00:00    
- (42/483): desktop-file-utils-0.26-14.el10.x86_6 236 kB/s |  71 kB     00:00    
- (43/483): colord-libs-1.4.7-6.el10.x86_64.rpm   202 kB/s | 233 kB     00:01    
- (44/483): exempi-2.6.4-7.el10.x86_64.rpm        241 kB/s | 590 kB     00:02    
- (45/483): exiv2-libs-0.28.3-5.el10.x86_64.rpm   156 kB/s | 904 kB     00:05    
- (46/483): fdk-aac-free-2.0.0-15.el10.x86_64.rpm 307 kB/s | 339 kB     00:01    
- (47/483): intel-vsc-firmware-20250812-19.el10.n 224 kB/s | 7.8 MB     00:35    
- (48/483): exiv2-0.28.3-5.el10.x86_64.rpm        183 kB/s | 2.1 MB     00:11    
- (49/483): flexiblas-3.4.2-3.el10.x86_64.rpm     143 kB/s |  26 kB     00:00    
- (50/483): flac-libs-1.4.3-6.el10.x86_64.rpm     107 kB/s | 265 kB     00:02    
- (51/483): flexiblas-devel-3.4.2-3.el10.x86_64.r 119 kB/s | 122 kB     00:01    
- (52/483): fftw-libs-single-3.3.10-15.el10.x86_6 155 kB/s | 1.1 MB     00:07    
- (53/483): flexiblas-openblas-openmp-3.4.2-3.el1  49 kB/s |  18 kB     00:00    
- (54/483): flexiblas-openblas-openmp64-3.4.2-3.e  97 kB/s |  18 kB     00:00    
- (55/483): flexiblas-netlib64-3.4.2-3.el10.x86_6 177 kB/s | 3.1 MB     00:17    
- (56/483): gdk-pixbuf2-modules-2.42.12-4.el10.x8  87 kB/s |  29 kB     00:00    
- (57/483): geoclue2-2.7.2-1.el10.x86_64.rpm       69 kB/s | 148 kB     00:02    
- (58/483): ghostscript-10.02.1-16.el10.x86_64.rp 203 kB/s |  37 kB     00:00    
- (59/483): ghostscript-tools-fonts-10.02.1-16.el  18 kB/s |  14 kB     00:00    
- (60/483): ghostscript-tools-printing-10.02.1-16  94 kB/s |  15 kB     00:00    
- (61/483): giflib-5.2.1-22.el10.x86_64.rpm       111 kB/s |  53 kB     00:00    
- (62/483): graphene-1.10.6-10.el10.x86_64.rpm     66 kB/s |  62 kB     00:00    
- (63/483): gsm-1.0.22-8.el10.x86_64.rpm           69 kB/s |  37 kB     00:00    
- (64/483): flexiblas-netlib-3.4.2-3.el10.x86_64. 132 kB/s | 3.2 MB     00:25    
- (65/483): gstreamer1-1.24.11-1.el10.x86_64.rpm  109 kB/s | 1.6 MB     00:15    
- (66/483): gtk-update-icon-cache-3.24.43-4.el10. 139 kB/s |  34 kB     00:00    
- (67/483): gstreamer1-plugins-base-1.24.11-1.el1 125 kB/s | 2.2 MB     00:18    
- (68/483): hicolor-icon-theme-0.17-20.el10.noarc  95 kB/s | 219 kB     00:02    
- (69/483): inih-cpp-58-3.el10.x86_64.rpm          64 kB/s |  20 kB     00:00    
- (70/483): iso-codes-4.16.0-6.el10.noarch.rpm    136 kB/s | 3.7 MB     00:27    
- (71/483): java-21-openjdk-21.0.8.0.9-1.el10.x86 130 kB/s | 431 kB     00:03    
- (72/483): gtk3-3.24.43-4.el10.x86_64.rpm        120 kB/s | 5.6 MB     00:47    
- (73/483): gcc-gfortran-14.3.1-2.3.el10.x86_64.r 142 kB/s |  14 MB     01:43    
- (74/483): lame-libs-3.100-19.el10.x86_64.rpm    1.3 MB/s | 339 kB     00:00    
- (75/483): libICE-1.1.1-5.el10.x86_64.rpm        8.0 MB/s |  75 kB     00:00    
- (76/483): libSM-1.2.4-5.el10.x86_64.rpm         5.6 MB/s |  44 kB     00:00    
- (77/483): libXcomposite-0.4.6-5.el10.x86_64.rpm 3.0 MB/s |  25 kB     00:00    
- (78/483): libXcursor-1.2.1-9.el10.x86_64.rpm    3.7 MB/s |  31 kB     00:00    
- (79/483): libXdamage-1.1.6-5.el10.x86_64.rpm    2.9 MB/s |  24 kB     00:00    
- (80/483): libXfixes-6.0.1-5.el10.x86_64.rpm     2.4 MB/s |  20 kB     00:00    
- (81/483): libXi-1.8.1-7.el10.x86_64.rpm         5.2 MB/s |  41 kB     00:00    
- (82/483): libXinerama-1.1.5-8.el10.x86_64.rpm   2.1 MB/s |  15 kB     00:00    
- (83/483): libXmu-1.1.4-8.el10.x86_64.rpm        8.8 MB/s |  77 kB     00:00    
- (84/483): libXrandr-1.5.4-5.el10.x86_64.rpm     3.5 MB/s |  29 kB     00:00    
- (85/483): libXt-1.3.0-5.el10.x86_64.rpm         2.6 MB/s | 181 kB     00:00    
- (86/483): libXtst-1.2.4-8.el10.x86_64.rpm       2.7 MB/s |  22 kB     00:00    
- (87/483): libXv-1.0.12-5.el10.x86_64.rpm        2.6 MB/s |  20 kB     00:00    
- (88/483): libXxf86vm-1.1.5-8.el10.x86_64.rpm    2.5 MB/s |  19 kB     00:00    
- (89/483): libasyncns-0.8-30.el10.x86_64.rpm     3.8 MB/s |  31 kB     00:00    
- (90/483): libcamera-0.3.2-4.el10.x86_64.rpm      17 MB/s | 574 kB     00:00    
- (91/483): libcamera-ipa-0.3.2-4.el10.x86_64.rpm  12 MB/s | 134 kB     00:00    
- (92/483): libcanberra-0.30-37.el10.x86_64.rpm   1.9 MB/s |  91 kB     00:00    
- (93/483): libcanberra-gtk3-0.30-37.el10.x86_64. 3.9 MB/s |  33 kB     00:00    
- (94/483): libdex-0.8.1-1.el10.x86_64.rpm        8.7 MB/s |  85 kB     00:00    
- (95/483): libdrm-2.4.123-1.el10.x86_64.rpm      7.2 MB/s | 163 kB     00:00    
- (96/483): libepoxy-1.5.10-9.el10.x86_64.rpm      10 MB/s | 229 kB     00:00    
- (97/483): libexif-0.6.24-9.el10.x86_64.rpm       10 MB/s | 454 kB     00:00    
- (98/483): libfontenc-1.1.7-5.el10.x86_64.rpm    1.2 MB/s |  33 kB     00:00    
- (99/483): libgexiv2-0.14.3-3.el10.x86_64.rpm    6.8 MB/s | 106 kB     00:00    
- (100/483): libglvnd-1.7.0-7.el10.x86_64.rpm     7.7 MB/s | 116 kB     00:00    
- (101/483): libglvnd-egl-1.7.0-7.el10.x86_64.rpm 4.2 MB/s |  37 kB     00:00    
- (102/483): libglvnd-glx-1.7.0-7.el10.x86_64.rpm 6.0 MB/s | 132 kB     00:00    
- (103/483): libgsf-1.14.53-2.el10.x86_64.rpm     7.7 MB/s | 258 kB     00:00    
- (104/483): libgxps-0.3.2-10.el10.x86_64.rpm     5.6 MB/s |  78 kB     00:00    
- (105/483): libicu-devel-74.2-5.el10.x86_64.rpm  9.4 MB/s | 966 kB     00:00    
- (106/483): libiptcdata-1.0.5-20.el10.x86_64.rpm 7.6 MB/s |  62 kB     00:00    
- (107/483): liblc3-1.0.4-6.el10.x86_64.rpm       6.3 MB/s |  83 kB     00:00    
- (108/483): libldac-2.0.2.3-17.el10.x86_64.rpm   5.2 MB/s |  42 kB     00:00    
- (109/483): libnotify-0.8.6-1.el10.x86_64.rpm    6.4 MB/s |  53 kB     00:00    
- (110/483): libogg-1.3.5-10.el10.x86_64.rpm      4.5 MB/s |  34 kB     00:00    
- (111/483): libosinfo-1.11.0-8.el10.x86_64.rpm   8.1 MB/s | 317 kB     00:00    
- (112/483): libportal-0.9.0-2.el10.x86_64.rpm    5.8 MB/s |  85 kB     00:00    
- (113/483): libquadmath-devel-14.3.1-2.3.el10.x8 3.9 MB/s |  56 kB     00:00    
- (114/483): libsbc-2.0-6.el10.x86_64.rpm         6.3 MB/s |  48 kB     00:00    
- (115/483): libsndfile-1.2.2-5.el10.x86_64.rpm   7.3 MB/s | 216 kB     00:00    
- (116/483): libsoup3-3.6.5-5.el10.x86_64.rpm     8.2 MB/s | 396 kB     00:00    
- (117/483): libtheora-1.1.1-39.el10.x86_64.rpm   7.7 MB/s | 170 kB     00:00    
- (118/483): libtracker-sparql-3.7.3-4.el10.x86_6 7.9 MB/s | 376 kB     00:00    
- (119/483): libvorbis-1.3.7-12.el10.x86_64.rpm   7.6 MB/s | 189 kB     00:00    
- (120/483): libwayland-client-1.23.1-1.el10.x86_ 4.3 MB/s |  34 kB     00:00    
- (121/483): libwayland-cursor-1.23.1-1.el10.x86_ 2.7 MB/s |  20 kB     00:00    
- (122/483): libwayland-egl-1.23.1-1.el10.x86_64. 1.9 MB/s |  13 kB     00:00    
- (123/483): libwayland-server-1.23.1-1.el10.x86_ 5.1 MB/s |  42 kB     00:00    
- (124/483): libxkbcommon-1.7.0-4.el10.x86_64.rpm 7.3 MB/s | 145 kB     00:00    
- (125/483): libxshmfence-1.3.2-5.el10.x86_64.rpm 1.8 MB/s |  13 kB     00:00    
- (126/483): llvm-filesystem-20.1.8-1.el10.x86_64 1.6 MB/s |  11 kB     00:00    
- (127/483): java-21-openjdk-devel-21.0.8.0.9-1.e 148 kB/s | 5.0 MB     00:34    
- (128/483): llvm-libs-20.1.8-1.el10.x86_64.rpm    11 MB/s |  30 MB     00:02    
- (129/483): low-memory-monitor-2.1-12.el10.x86_6  70 kB/s |  35 kB     00:00    
- (130/483): mesa-filesystem-25.0.7-5.el10.x86_64 185 kB/s |  13 kB     00:00    
- (131/483): mesa-libEGL-25.0.7-5.el10.x86_64.rpm 338 kB/s | 131 kB     00:00    
- (132/483): mesa-dri-drivers-25.0.7-5.el10.x86_6  17 MB/s |  11 MB     00:00    
- (133/483): mesa-libgbm-25.0.7-5.el10.x86_64.rpm 2.6 MB/s |  19 kB     00:00    
- (134/483): mkfontscale-1.2.2-8.el10.x86_64.rpm  4.5 MB/s |  33 kB     00:00    
- (135/483): mpg123-libs-1.32.9-1.el10.x86_64.rpm  14 MB/s | 353 kB     00:00    
- (136/483): openblas-0.3.29-2.el10.x86_64.rpm    5.2 MB/s |  43 kB     00:00    
- (137/483): mesa-libGL-25.0.7-5.el10.x86_64.rpm  279 kB/s | 160 kB     00:00    
- (138/483): openblas-openmp-0.3.29-2.el10.x86_64 9.9 MB/s | 5.3 MB     00:00    
- (139/483): opus-1.4-6.el10.x86_64.rpm           6.1 MB/s | 211 kB     00:00    
- (140/483): orc-0.4.39-2.el10.x86_64.rpm         6.2 MB/s | 229 kB     00:00    
- (141/483): osinfo-db-20250606-1.el10.noarch.rpm 6.4 MB/s | 564 kB     00:00    
- (142/483): osinfo-db-tools-1.11.0-8.el10.x86_64 4.9 MB/s |  74 kB     00:00    
- (143/483): pcre2-devel-10.44-1.el10.3.x86_64.rp 5.4 MB/s | 532 kB     00:00    
- (144/483): pcre2-utf16-10.44-1.el10.3.x86_64.rp 6.1 MB/s | 227 kB     00:00    
- (145/483): pcre2-utf32-10.44-1.el10.3.x86_64.rp 7.7 MB/s | 215 kB     00:00    
- (146/483): perl-Class-Inspector-1.36-19.el10.no 3.7 MB/s |  31 kB     00:00    
- (147/483): perl-Exporter-Tiny-1.006002-7.el10.n 3.6 MB/s |  54 kB     00:00    
- (148/483): perl-File-ShareDir-1.118-14.el10.noa 1.3 MB/s |  31 kB     00:00    
- (149/483): perl-Filter-1.64-512.el10.x86_64.rpm 5.7 MB/s |  89 kB     00:00    
- (150/483): perl-List-MoreUtils-0.430-15.el10.no 4.7 MB/s |  63 kB     00:00    
- (151/483): perl-List-MoreUtils-XS-0.430-18.el10 3.7 MB/s |  65 kB     00:00    
- (152/483): perl-Params-Util-1.102-19.el10.x86_6 4.1 MB/s |  34 kB     00:00    
- (153/483): perl-Text-Unidecode-1.30-27.el10.noa 5.9 MB/s | 195 kB     00:00    
- (154/483): perl-Unicode-Normalize-1.32-511.el10 4.6 MB/s |  75 kB     00:00    
- (155/483): perl-XML-XPath-1.48-8.el10.noarch.rp 5.8 MB/s |  86 kB     00:00    
- (156/483): perl-encoding-3.00-511.el10.x86_64.r 6.4 MB/s |  64 kB     00:00    
- (157/483): perl-libintl-perl-1.33-11.el10.x86_6 9.5 MB/s | 835 kB     00:00    
- (158/483): perl-open-1.13-514.el10.noarch.rpm   1.4 MB/s |  17 kB     00:00    
- (159/483): pipewire-1.4.6-1.el10.x86_64.rpm     2.8 MB/s | 134 kB     00:00    
- (160/483): pipewire-alsa-1.4.6-1.el10.x86_64.rp 3.7 MB/s |  62 kB     00:00    
- (161/483): pipewire-jack-audio-connection-kit-1 1.9 MB/s |  13 kB     00:00    
- (162/483): pipewire-jack-audio-connection-kit-l 2.1 MB/s | 149 kB     00:00    
- (163/483): pipewire-libs-1.4.6-1.el10.x86_64.rp 3.4 MB/s | 2.5 MB     00:00    
- (164/483): pipewire-plugin-libcamera-1.4.6-1.el 3.8 MB/s |  76 kB     00:00    
- (165/483): pipewire-pulseaudio-1.4.6-1.el10.x86 1.9 MB/s | 214 kB     00:00    
- (166/483): pulseaudio-libs-17.0-6.el10.x86_64.r 5.0 MB/s | 706 kB     00:00    
- (167/483): rtkit-0.11-68.el10.x86_64.rpm        3.8 MB/s |  57 kB     00:00    
- (168/483): sound-theme-freedesktop-0.8-23.el10. 5.4 MB/s | 383 kB     00:00    
- (169/483): spirv-tools-libs-2025.2-1.el10.x86_6 8.0 MB/s | 1.5 MB     00:00    
- (170/483): teckit-2.5.12-4.el10.x86_64.rpm      9.8 MB/s | 360 kB     00:00    
- (171/483): texlive-ae-20240311-6.el10.noarch.rp 4.5 MB/s | 126 kB     00:00    
- (172/483): texlive-algorithms-20240311-6.el10.n 8.5 MB/s | 301 kB     00:00    
- (173/483): texlive-alphalph-20240311-6.el10.noa 6.7 MB/s | 355 kB     00:00    
- (174/483): texlive-amscls-20240311-6.el10.noarc 6.3 MB/s | 1.1 MB     00:00    
- (175/483): texlive-amsfonts-20240311-6.el10.noa 9.1 MB/s | 4.8 MB     00:00    
- (176/483): texlive-amsmath-20240311-6.el10.noar  13 MB/s | 2.3 MB     00:00    
- (177/483): texlive-anysize-20240311-6.el10.noar 5.8 MB/s |  46 kB     00:00    
- (178/483): texlive-atbegshi-20240311-6.el10.noa  11 MB/s | 403 kB     00:00    
- (179/483): texlive-attachfile-20240311-6.el10.n 8.7 MB/s | 353 kB     00:00    
- (180/483): texlive-attachfile2-20240311-6.el10. 1.6 MB/s | 465 kB     00:00    
- (181/483): texlive-atveryend-20240311-6.el10.no 2.3 MB/s | 379 kB     00:00    
- (182/483): texlive-auxhook-20240311-6.el10.noar 2.1 MB/s | 289 kB     00:00    
- (183/483): texlive-avantgar-20240311-6.el10.noa 1.0 MB/s | 327 kB     00:00    
- (184/483): texlive-babel-20240311-6.el10.noarch 329 kB/s | 1.7 MB     00:05    
- (185/483): texlive-babel-english-20240311-6.el1 268 kB/s | 142 kB     00:00    
- (186/483): texlive-babelbib-20240311-6.el10.noa 283 kB/s | 1.2 MB     00:04    
- (187/483): openblas-openmp64-0.3.29-2.el10.x86_ 268 kB/s | 5.2 MB     00:19    
- (188/483): texlive-base-20240311-6.el10.noarch. 299 kB/s | 2.8 MB     00:09    
- (189/483): texlive-bera-20240311-6.el10.noarch. 725 kB/s | 382 kB     00:00    
- (190/483): texlive-beton-20240311-6.el10.noarch 644 kB/s |  72 kB     00:00    
- (191/483): texlive-beamer-20240311-6.el10.noarc 430 kB/s | 2.7 MB     00:06    
- (192/483): texlive-bibtex-20240311-6.el10.x86_6 583 kB/s | 1.6 MB     00:02    
- (193/483): texlive-bigintcalc-20240311-6.el10.n 703 kB/s | 460 kB     00:00    
- (194/483): texlive-bitset-20240311-6.el10.noarc 1.3 MB/s | 614 kB     00:00    
- (195/483): texlive-bookman-20240311-6.el10.noar 842 kB/s | 375 kB     00:00    
- (196/483): texlive-bookmark-20240311-6.el10.noa 978 kB/s | 480 kB     00:00    
- (197/483): texlive-booktabs-20240311-6.el10.noa 1.0 MB/s | 300 kB     00:00    
- (198/483): texlive-breakurl-20240311-6.el10.noa 1.1 MB/s | 120 kB     00:00    
- (199/483): texlive-breqn-20240311-6.el10.noarch 992 kB/s | 1.0 MB     00:01    
- (200/483): texlive-caption-20240311-6.el10.noar 1.0 MB/s | 812 kB     00:00    
- (201/483): texlive-carlisle-20240311-6.el10.noa 863 kB/s |  93 kB     00:00    
- (202/483): texlive-catchfile-20240311-6.el10.no 824 kB/s | 301 kB     00:00    
- (203/483): texlive-bidi-20240311-6.el10.noarch. 727 kB/s | 4.2 MB     00:05    
- (204/483): texlive-changepage-20240311-6.el10.n 668 kB/s | 283 kB     00:00    
- (205/483): texlive-charter-20240311-6.el10.noar 686 kB/s | 209 kB     00:00    
- (206/483): texlive-chngcntr-20240311-6.el10.noa 659 kB/s | 240 kB     00:00    
- (207/483): texlive-cite-20240311-6.el10.noarch. 578 kB/s | 245 kB     00:00    
- (208/483): texlive-cm-20240311-6.el10.noarch.rp 791 kB/s | 335 kB     00:00    
- (209/483): texlive-cmap-20240311-6.el10.noarch. 253 kB/s |  20 kB     00:00    
- (210/483): texlive-cmextra-20240311-6.el10.noar 456 kB/s |  48 kB     00:00    
- (211/483): texlive-collection-basic-20240311-6. 377 kB/s | 7.6 kB     00:00    
- (212/483): texlive-collection-fontsrecommended- 347 kB/s | 7.5 kB     00:00    
- (213/483): texlive-collection-latex-20240311-6. 311 kB/s | 7.8 kB     00:00    
- (214/483): texlive-collection-latexrecommended- 330 kB/s | 8.3 kB     00:00    
- (215/483): texlive-colorprofiles-20240311-6.el1 601 kB/s | 141 kB     00:00    
- (216/483): texlive-colortbl-20240311-6.el10.noa 476 kB/s | 641 kB     00:01    
- (217/483): texlive-count1to-20240311-6.el10.noa 647 kB/s | 537 kB     00:00    
- (218/483): texlive-courier-20240311-6.el10.noar 597 kB/s | 529 kB     00:00    
- (219/483): texlive-crop-20240311-6.el10.noarch. 770 kB/s | 332 kB     00:00    
- (220/483): texlive-csquotes-20240311-6.el10.noa 747 kB/s | 346 kB     00:00    
- (221/483): texlive-ctable-20240311-6.el10.noarc 654 kB/s | 701 kB     00:01    
- (222/483): texlive-currfile-20240311-6.el10.noa 775 kB/s | 191 kB     00:00    
- (223/483): texlive-dvipdfmx-20240311-6.el10.x86 721 kB/s | 3.0 MB     00:04    
- (224/483): texlive-dvips-20240311-6.el10.x86_64 693 kB/s | 740 kB     00:01    
- (225/483): texlive-ec-20240311-6.el10.noarch.rp 649 kB/s | 788 kB     00:01    
- (226/483): texlive-enctex-20240311-6.el10.noarc 582 kB/s | 301 kB     00:00    
- (227/483): texlive-enumitem-20240311-6.el10.noa 696 kB/s | 182 kB     00:00    
- (228/483): texlive-epsf-20240311-6.el10.noarch. 970 kB/s | 283 kB     00:00    
- (229/483): texlive-epstopdf-pkg-20240311-6.el10 1.0 MB/s | 358 kB     00:00    
- (230/483): texlive-eso-pic-20240311-6.el10.noar 1.0 MB/s | 297 kB     00:00    
- (231/483): texlive-etex-20240311-6.el10.noarch. 984 kB/s | 333 kB     00:00    
- (232/483): texlive-etex-pkg-20240311-6.el10.noa 513 kB/s |  18 kB     00:00    
- (233/483): texlive-etexcmds-20240311-6.el10.noa 679 kB/s | 304 kB     00:00    
- (234/483): texlive-etoolbox-20240311-6.el10.noa 776 kB/s | 251 kB     00:00    
- (235/483): texlive-euenc-20240311-6.el10.noarch 873 kB/s | 159 kB     00:00    
- (236/483): texlive-euler-20240311-6.el10.noarch 1.0 MB/s | 245 kB     00:00    
- (237/483): texlive-euro-20240311-6.el10.noarch. 610 kB/s | 209 kB     00:00    
- (238/483): texlive-eurosym-20240311-6.el10.noar 575 kB/s | 431 kB     00:00    
- (239/483): texlive-everysel-20240311-6.el10.noa 733 kB/s | 443 kB     00:00    
- (240/483): texlive-everyshi-20240311-6.el10.noa 658 kB/s | 141 kB     00:00    
- (241/483): texlive-extsizes-20240311-6.el10.noa 627 kB/s | 214 kB     00:00    
- (242/483): texlive-fancybox-20240311-6.el10.noa 317 kB/s | 289 kB     00:00    
- (243/483): texlive-fancyhdr-20240311-6.el10.noa 748 kB/s | 847 kB     00:01    
- (244/483): texlive-fancyref-20240311-6.el10.noa 492 kB/s | 116 kB     00:00    
- (245/483): texlive-fancyvrb-20240311-6.el10.noa 668 kB/s | 199 kB     00:00    
- (246/483): texlive-filecontents-20240311-6.el10 942 kB/s | 286 kB     00:00    
- (247/483): texlive-filehook-20240311-6.el10.noa 991 kB/s | 317 kB     00:00    
- (248/483): texlive-finstrut-20240311-6.el10.noa 798 kB/s | 185 kB     00:00    
- (249/483): texlive-firstaid-20240311-6.el10.noa 1.0 MB/s | 281 kB     00:00    
- (250/483): texlive-fix2col-20240311-6.el10.noar 777 kB/s | 220 kB     00:00    
- (251/483): texlive-float-20240311-6.el10.noarch 789 kB/s | 124 kB     00:00    
- (252/483): texlive-fontspec-20240311-6.el10.noa 639 kB/s | 1.1 MB     00:01    
- (253/483): texlive-footmisc-20240311-6.el10.noa 555 kB/s | 518 kB     00:00    
- (254/483): texlive-footnotehyper-20240311-6.el1 596 kB/s |  95 kB     00:00    
- (255/483): texlive-fp-20240311-6.el10.noarch.rp 505 kB/s | 246 kB     00:00    
- (256/483): texlive-fpl-20240311-6.el10.noarch.r 767 kB/s | 307 kB     00:00    
- (257/483): texlive-geometry-20240311-6.el10.noa 861 kB/s | 857 kB     00:00    
- (258/483): texlive-gettitlestring-20240311-6.el 1.3 MB/s | 321 kB     00:00    
- (259/483): texlive-glyphlist-20240311-6.el10.no 617 kB/s |  37 kB     00:00    
- (260/483): texlive-graphics-20240311-6.el10.noa 1.0 MB/s | 2.4 MB     00:02    
- (261/483): texlive-graphics-cfg-20240311-6.el10 625 kB/s |  13 kB     00:00    
- (262/483): texlive-graphics-def-20240311-6.el10 572 kB/s |  23 kB     00:00    
- (263/483): texlive-grfext-20240311-6.el10.noarc 817 kB/s | 312 kB     00:00    
- (264/483): texlive-grffile-20240311-6.el10.noar 1.2 MB/s | 354 kB     00:00    
- (265/483): texlive-helvetic-20240311-6.el10.noa 748 kB/s | 670 kB     00:00    
- (266/483): texlive-hobsub-20240311-6.el10.noarc 517 kB/s |  72 kB     00:00    
- (267/483): texlive-hologo-20240311-6.el10.noarc 818 kB/s | 581 kB     00:00    
- (268/483): texlive-hopatch-20240311-6.el10.noar 1.1 MB/s | 323 kB     00:00    
- (269/483): texlive-hycolor-20240311-6.el10.noar 680 kB/s | 378 kB     00:00    
- (270/483): texlive-hypcap-20240311-6.el10.noarc 885 kB/s | 297 kB     00:00    
- (271/483): texlive-hypdoc-20240311-6.el10.noarc 805 kB/s | 331 kB     00:00    
- (272/483): java-21-openjdk-headless-21.0.8.0.9- 506 kB/s |  47 MB     01:36    
- (273/483): texlive-hyph-utf8-20240311-6.el10.no 1.7 MB/s | 303 kB     00:00    
- (274/483): texlive-hyphen-base-20240311-6.el10. 1.3 MB/s |  34 kB     00:00    
- (275/483): texlive-hyphenex-20240311-6.el10.noa 944 kB/s |  20 kB     00:00    
- (276/483): texlive-ifmtarg-20240311-6.el10.noar 1.2 MB/s |  48 kB     00:00    
- (277/483): texlive-ifplatform-20240311-6.el10.n 1.9 MB/s | 160 kB     00:00    
- (278/483): texlive-iftex-20240311-6.el10.noarch 1.7 MB/s | 237 kB     00:00    
- (279/483): texlive-index-20240311-6.el10.noarch 1.2 MB/s | 177 kB     00:00    
- (280/483): texlive-infwarerr-20240311-6.el10.no 1.0 MB/s | 289 kB     00:00    
- (281/483): texlive-intcalc-20240311-6.el10.noar 698 kB/s | 426 kB     00:00    
- (282/483): texlive-jknapltx-20240311-6.el10.noa 400 kB/s |  27 kB     00:00    
- (283/483): texlive-kastrup-20240311-6.el10.noar 465 kB/s | 148 kB     00:00    
- (284/483): texlive-knuth-lib-20240311-6.el10.no 523 kB/s |  50 kB     00:00    
- (285/483): texlive-knuth-local-20240311-6.el10. 503 kB/s |  43 kB     00:00    
- (286/483): texlive-hyperref-20240311-6.el10.noa 764 kB/s | 3.9 MB     00:05    
- (287/483): texlive-kpathsea-20240311-6.el10.x86 786 kB/s | 1.1 MB     00:01    
- (288/483): texlive-kvdefinekeys-20240311-6.el10 639 kB/s | 300 kB     00:00    
- (289/483): texlive-kvoptions-20240311-6.el10.no 886 kB/s | 488 kB     00:00    
- (290/483): texlive-kvsetkeys-20240311-6.el10.no 781 kB/s | 393 kB     00:00    
- (291/483): texlive-l3backend-20240311-6.el10.no 1.2 MB/s | 867 kB     00:00    
- (292/483): texlive-koma-script-20240311-6.el10. 1.0 MB/s | 6.3 MB     00:06    
- (293/483): texlive-l3experimental-20240311-6.el 788 kB/s | 2.8 MB     00:03    
- (294/483): texlive-l3packages-20240311-6.el10.n 858 kB/s | 1.4 MB     00:01    
- (295/483): texlive-l3kernel-20240311-6.el10.noa 1.2 MB/s |  12 MB     00:09    
- (296/483): texlive-latex-fonts-20240311-6.el10. 833 kB/s |  48 kB     00:00    
- (297/483): texlive-latexbug-20240311-6.el10.noa 1.1 MB/s | 233 kB     00:00    
- (298/483): texlive-latexconfig-20240311-6.el10. 669 kB/s |  14 kB     00:00    
- (299/483): texlive-letltxmacro-20240311-6.el10. 1.4 MB/s | 294 kB     00:00    
- (300/483): texlive-lib-20240311-6.el10.x86_64.r 1.4 MB/s | 234 kB     00:00    
- (301/483): texlive-lineno-20240311-6.el10.noarc 1.1 MB/s | 879 kB     00:00    
- (302/483): texlive-listings-20240311-6.el10.noa 1.2 MB/s | 2.8 MB     00:02    
- (303/483): texlive-lm-20240311-6.el10.noarch.rp 1.2 MB/s |  14 MB     00:12    
- (304/483): texlive-cm-super-20240311-6.el10.noa 885 kB/s |  62 MB     01:11    
- (305/483): texlive-ltabptch-20240311-6.el10.noa 1.7 MB/s | 274 kB     00:00    
- (306/483): texlive-lm-math-20240311-6.el10.noar 621 kB/s | 535 kB     00:00    
- (307/483): texlive-ltxmisc-20240311-6.el10.noar 139 kB/s |  28 kB     00:00    
- (308/483): texlive-lua-alt-getopt-20240311-6.el 266 kB/s |  17 kB     00:00    
- (309/483): texlive-ltxcmds-20240311-6.el10.noar 642 kB/s | 408 kB     00:00    
- (310/483): texlive-lua-uni-algos-20240311-6.el1 422 kB/s |  91 kB     00:00    
- (311/483): texlive-lualatex-math-20240311-6.el1 648 kB/s | 210 kB     00:00    
- (312/483): texlive-lualibs-20240311-6.el10.noar 637 kB/s | 241 kB     00:00    
- (313/483): texlive-luahbtex-20240311-6.el10.x86 1.1 MB/s | 2.0 MB     00:01    
- (314/483): texlive-luaotfload-20240311-6.el10.n 1.3 MB/s | 1.2 MB     00:00    
- (315/483): texlive-luatexbase-20240311-6.el10.n 1.8 MB/s | 272 kB     00:00    
- (316/483): texlive-lwarp-20240311-6.el10.noarch 1.0 MB/s | 3.6 MB     00:03    
- (317/483): texlive-luatex-20240311-6.el10.x86_6 1.0 MB/s | 3.8 MB     00:03    
- (318/483): texlive-makecmds-20240311-6.el10.noa 1.2 MB/s | 125 kB     00:00    
- (319/483): texlive-manfnt-font-20240311-6.el10. 582 kB/s |  37 kB     00:00    
- (320/483): texlive-makeindex-20240311-6.el10.x8 805 kB/s | 436 kB     00:00    
- (321/483): texlive-marginnote-20240311-6.el10.n 1.2 MB/s | 471 kB     00:00    
- (322/483): texlive-mathpazo-20240311-6.el10.noa 1.0 MB/s | 449 kB     00:00    
- (323/483): texlive-mathspec-20240311-6.el10.noa 678 kB/s | 188 kB     00:00    
- (324/483): texlive-marvosym-20240311-6.el10.noa 731 kB/s | 562 kB     00:00    
- (325/483): texlive-mathtools-20240311-6.el10.no 1.1 MB/s | 1.0 MB     00:00    
- (326/483): texlive-latex-20240311-6.el10.noarch 1.1 MB/s |  34 MB     00:32    
- (327/483): texlive-metafont-20240311-6.el10.x86 909 kB/s | 263 kB     00:00    
- (328/483): texlive-metalogo-20240311-6.el10.noa 877 kB/s |  90 kB     00:00    
- (329/483): texlive-mflogo-20240311-6.el10.noarc 1.0 MB/s | 246 kB     00:00    
- (330/483): texlive-mflogo-font-20240311-6.el10. 611 kB/s |  34 kB     00:00    
- (331/483): texlive-mdwtools-20240311-6.el10.noa 756 kB/s | 1.6 MB     00:02    
- (332/483): texlive-mfnfss-20240311-6.el10.noarc 1.7 MB/s | 449 kB     00:00    
- (333/483): texlive-mfware-20240311-6.el10.x86_6 539 kB/s | 103 kB     00:00    
- (334/483): texlive-minitoc-20240311-6.el10.noar 788 kB/s | 125 kB     00:00    
- (335/483): texlive-microtype-20240311-6.el10.no 4.0 MB/s | 2.6 MB     00:00    
- (336/483): texlive-modes-20240311-6.el10.noarch 1.6 MB/s | 306 kB     00:00    
- (337/483): texlive-mparhack-20240311-6.el10.noa 971 kB/s | 312 kB     00:00    
- (338/483): texlive-mptopdf-20240311-6.el10.noar 633 kB/s |  52 kB     00:00    
- (339/483): texlive-multido-20240311-6.el10.noar 913 kB/s | 120 kB     00:00    
- (340/483): texlive-multitoc-20240311-6.el10.noa 1.0 MB/s | 281 kB     00:00    
- (341/483): texlive-memoir-20240311-6.el10.noarc 1.0 MB/s | 3.1 MB     00:02    
- (342/483): texlive-ncntrsbk-20240311-6.el10.noa 1.2 MB/s | 369 kB     00:00    
- (343/483): texlive-newfloat-20240311-6.el10.noa 997 kB/s | 134 kB     00:00    
- (344/483): texlive-natbib-20240311-6.el10.noarc 737 kB/s | 439 kB     00:00    
- (345/483): texlive-notoccite-20240311-6.el10.no 662 kB/s | 232 kB     00:00    
- (346/483): texlive-ntgclass-20240311-6.el10.noa 767 kB/s | 1.6 MB     00:02    
- (347/483): texlive-mnsymbol-20240311-6.el10.noa 1.1 MB/s | 4.7 MB     00:04    
- (348/483): texlive-paralist-20240311-6.el10.noa 958 kB/s | 218 kB     00:00    
- (349/483): texlive-palatino-20240311-6.el10.noa 940 kB/s | 436 kB     00:00    
- (350/483): texlive-parallel-20240311-6.el10.noa 840 kB/s | 129 kB     00:00    
- (351/483): texlive-parskip-20240311-6.el10.noar 1.2 MB/s | 317 kB     00:00    
- (352/483): texlive-pdfcol-20240311-6.el10.noarc 1.1 MB/s | 321 kB     00:00    
- (353/483): texlive-pdfcolmk-20240311-6.el10.noa 409 kB/s |  13 kB     00:00    
- (354/483): texlive-pdfcolfoot-20240311-6.el10.n 1.4 MB/s | 314 kB     00:00    
- (355/483): texlive-pdflscape-20240311-6.el10.no 1.3 MB/s | 318 kB     00:00    
- (356/483): texlive-pdfescape-20240311-6.el10.no 1.0 MB/s | 347 kB     00:00    
- (357/483): texlive-pdfpages-20240311-6.el10.noa 723 kB/s | 341 kB     00:00    
- (358/483): texlive-pdftex-20240311-6.el10.x86_6 1.0 MB/s | 3.2 MB     00:03    
- (359/483): texlive-oberdiek-20240311-6.el10.noa 1.0 MB/s | 7.1 MB     00:07    
- (360/483): texlive-pdftexcmds-20240311-6.el10.n 1.0 MB/s | 385 kB     00:00    
- (361/483): texlive-placeins-20240311-6.el10.noa 1.4 MB/s | 263 kB     00:00    
- (362/483): texlive-plain-20240311-6.el10.noarch 1.0 MB/s |  45 kB     00:00    
- (363/483): texlive-polyglossia-20240311-6.el10. 1.2 MB/s | 912 kB     00:00    
- (364/483): texlive-psfrag-20240311-6.el10.noarc 742 kB/s |  84 kB     00:00    
- (365/483): texlive-pslatex-20240311-6.el10.noar 386 kB/s |  20 kB     00:00    
- (366/483): texlive-psnfss-20240311-6.el10.noarc 1.2 MB/s | 318 kB     00:00    
- (367/483): texlive-pspicture-20240311-6.el10.no 1.2 MB/s |  55 kB     00:00    
- (368/483): texlive-pst-3d-20240311-6.el10.noarc 1.4 MB/s | 114 kB     00:00    
- (369/483): texlive-pst-arrow-20240311-6.el10.no 1.0 MB/s | 153 kB     00:00    
- (370/483): texlive-pdfmanagement-testphase-2024 1.3 MB/s | 8.2 MB     00:06    
- (371/483): texlive-pst-eps-20240311-6.el10.noar 960 kB/s |  93 kB     00:00    
- (372/483): texlive-pst-fill-20240311-6.el10.noa 1.5 MB/s | 840 kB     00:00    
- (373/483): texlive-pst-grad-20240311-6.el10.noa 927 kB/s | 227 kB     00:00    
- (374/483): texlive-pst-math-20240311-6.el10.noa 1.1 MB/s | 239 kB     00:00    
- (375/483): texlive-pst-coil-20240311-6.el10.noa 1.5 MB/s | 3.5 MB     00:02    
- (376/483): texlive-pst-node-20240311-6.el10.noa 953 kB/s | 729 kB     00:00    
- (377/483): texlive-pst-text-20240311-6.el10.noa 1.0 MB/s | 183 kB     00:00    
- (378/483): texlive-pst-tools-20240311-6.el10.no 766 kB/s | 123 kB     00:00    
- (379/483): texlive-pst-tree-20240311-6.el10.noa 1.4 MB/s | 218 kB     00:00    
- (380/483): texlive-pst-plot-20240311-6.el10.noa 878 kB/s | 1.3 MB     00:01    
- (381/483): texlive-pgf-20240311-6.el10.noarch.r 1.2 MB/s |  10 MB     00:08    
- (382/483): texlive-pxfonts-20240311-6.el10.noar 1.9 MB/s | 941 kB     00:00    
- (383/483): texlive-ragged2e-20240311-6.el10.noa 2.2 MB/s | 722 kB     00:00    
- (384/483): texlive-rcs-20240311-6.el10.noarch.r 1.7 MB/s | 143 kB     00:00    
- (385/483): texlive-realscripts-20240311-6.el10. 1.9 MB/s | 115 kB     00:00    
- (386/483): texlive-refcount-20240311-6.el10.noa 2.3 MB/s | 329 kB     00:00    
- (387/483): texlive-rerunfilecheck-20240311-6.el 2.1 MB/s | 335 kB     00:00    
- (388/483): texlive-rsfs-20240311-6.el10.noarch. 1.2 MB/s |  75 kB     00:00    
- (389/483): texlive-sansmath-20240311-6.el10.noa 1.4 MB/s | 191 kB     00:00    
- (390/483): texlive-sansmathaccent-20240311-6.el 928 kB/s | 181 kB     00:00    
- (391/483): texlive-sauerj-20240311-6.el10.noarc 1.1 MB/s | 548 kB     00:00    
- (392/483): texlive-pstricks-20240311-6.el10.noa 1.1 MB/s | 7.3 MB     00:06    
- (393/483): texlive-section-20240311-6.el10.noar 631 kB/s | 365 kB     00:00    
- (394/483): texlive-sepnum-20240311-6.el10.noarc 1.5 MB/s | 357 kB     00:00    
- (395/483): texlive-seminar-20240311-6.el10.noar 1.1 MB/s | 382 kB     00:00    
- (396/483): texlive-setspace-20240311-6.el10.noa 1.6 MB/s | 210 kB     00:00    
- (397/483): texlive-showexpl-20240311-6.el10.noa 4.9 MB/s | 602 kB     00:00    
- (398/483): texlive-subfig-20240311-6.el10.noarc 2.7 MB/s | 465 kB     00:00    
- (399/483): texlive-symbol-20240311-6.el10.noarc 1.9 MB/s |  51 kB     00:00    
- (400/483): texlive-tex-20240311-6.el10.x86_64.r 1.6 MB/s | 206 kB     00:00    
- (401/483): texlive-stringenc-20240311-6.el10.no 1.7 MB/s | 695 kB     00:00    
- (402/483): texlive-tex-gyre-math-20240311-6.el1 1.4 MB/s | 1.8 MB     00:01    
- (403/483): texlive-tex-ini-files-20240311-6.el1 456 kB/s |  20 kB     00:00    
- (404/483): texlive-texlive-common-doc-20240311- 1.0 MB/s | 600 kB     00:00    
- (405/483): texlive-pstricks-add-20240311-6.el10 1.0 MB/s |  11 MB     00:10    
- (406/483): texlive-texlive-en-20240311-6.el10.n 952 kB/s | 1.9 MB     00:02    
- (407/483): texlive-texlive-msg-translations-202 807 kB/s | 163 kB     00:00    
- (408/483): texlive-texlive-scripts-extra-202403 1.4 MB/s |  65 kB     00:00    
- (409/483): texlive-texlive-scripts-20240311-6.e 524 kB/s | 122 kB     00:00    
- (410/483): texlive-texlive.infra-20240311-6.el1 2.7 MB/s | 297 kB     00:00    
- (411/483): texlive-thumbpdf-20240311-6.el10.noa 598 kB/s |  40 kB     00:00    
- (412/483): texlive-times-20240311-6.el10.noarch 3.7 MB/s | 376 kB     00:00    
- (413/483): texlive-textcase-20240311-6.el10.noa 763 kB/s | 232 kB     00:00    
- (414/483): texlive-titlesec-20240311-6.el10.noa 774 kB/s | 693 kB     00:00    
- (415/483): texlive-tipa-20240311-6.el10.noarch. 1.7 MB/s | 5.1 MB     00:02    
- (416/483): texlive-translator-20240311-6.el10.n 1.0 MB/s | 289 kB     00:00    
- (417/483): texlive-txfonts-20240311-6.el10.noar 1.2 MB/s | 1.4 MB     00:01    
- (418/483): texlive-typehtml-20240311-6.el10.noa 1.1 MB/s | 169 kB     00:00    
- (419/483): texlive-ucharcat-20240311-6.el10.noa 851 kB/s | 167 kB     00:00    
- (420/483): texlive-ucs-20240311-6.el10.noarch.r 1.5 MB/s | 1.7 MB     00:01    
- (421/483): texlive-underscore-20240311-6.el10.n 1.1 MB/s | 254 kB     00:00    
- (422/483): texlive-unicode-data-20240311-6.el10 1.1 MB/s | 360 kB     00:00    
- (423/483): texlive-tools-20240311-6.el10.noarch 1.0 MB/s | 6.1 MB     00:05    
- (424/483): texlive-uniquecounter-20240311-6.el1 581 kB/s | 295 kB     00:00    
- (425/483): texlive-url-20240311-6.el10.noarch.r 761 kB/s | 275 kB     00:00    
- (426/483): texlive-utopia-20240311-6.el10.noarc 979 kB/s | 244 kB     00:00    
- (427/483): texlive-varwidth-20240311-6.el10.noa 668 kB/s |  41 kB     00:00    
- (428/483): texlive-wasy-20240311-6.el10.noarch. 1.0 MB/s | 338 kB     00:00    
- (429/483): texlive-wasy-type1-20240311-6.el10.n 751 kB/s | 269 kB     00:00    
- (430/483): texlive-wasysym-20240311-6.el10.noar 809 kB/s | 174 kB     00:00    
- (431/483): texlive-unicode-math-20240311-6.el10 1.0 MB/s | 3.2 MB     00:03    
- (432/483): texlive-xcolor-20240311-6.el10.noarc 918 kB/s | 934 kB     00:01    
- (433/483): texlive-xetexconfig-20240311-6.el10. 207 kB/s |  12 kB     00:00    
- (434/483): texlive-xetex-20240311-6.el10.x86_64 1.3 MB/s | 1.9 MB     00:01    
- (435/483): texlive-xfrac-20240311-6.el10.noarch 638 kB/s | 636 kB     00:00    
- (436/483): texlive-xkeyval-20240311-6.el10.noar 1.1 MB/s | 443 kB     00:00    
- (437/483): texlive-xifthen-20240311-6.el10.noar 1.0 MB/s | 482 kB     00:00    
- (438/483): texlive-xunicode-20240311-6.el10.noa 547 kB/s |  39 kB     00:00    
- (439/483): texlive-xltxtra-20240311-6.el10.noar 936 kB/s | 112 kB     00:00    
- (440/483): texlive-zapfchan-20240311-6.el10.noa 989 kB/s | 105 kB     00:00    
- (441/483): texlive-zapfding-20240311-6.el10.noa 689 kB/s |  60 kB     00:00    
- (442/483): texlive-zref-20240311-6.el10.noarch. 917 kB/s | 680 kB     00:00    
- (443/483): tk-8.6.13-5.el10.x86_64.rpm          1.6 MB/s | 1.6 MB     00:01    
- (444/483): tracker-3.7.3-4.el10.x86_64.rpm      1.1 MB/s | 644 kB     00:00    
- (445/483): ttmkfdir-3.0.9-72.el10.x86_64.rpm    725 kB/s |  57 kB     00:00    
- (446/483): tzdata-java-2025b-2.el10.noarch.rpm  807 kB/s |  46 kB     00:00    
- (447/483): tracker-miners-3.7.3-4.el10.x86_64.r 2.1 MB/s | 984 kB     00:00    
- (448/483): upower-libs-1.90.9-1.el10.x86_64.rpm 1.7 MB/s |  59 kB     00:00    
- (449/483): upower-1.90.9-1.el10.x86_64.rpm      947 kB/s | 143 kB     00:00    
- (450/483): wireplumber-0.5.10-1.el10.x86_64.rpm 897 kB/s | 121 kB     00:00    
- (451/483): webrtc-audio-processing-1.3-5.el10.x 2.0 MB/s | 527 kB     00:00    
- (452/483): wireplumber-libs-0.5.10-1.el10.x86_6 1.0 MB/s | 405 kB     00:00    
- (453/483): xdg-desktop-portal-gtk-1.15.3-1.el10 1.1 MB/s | 145 kB     00:00    
- (454/483): xdg-desktop-portal-1.20.0-2.el10.x86 1.1 MB/s | 532 kB     00:00    
- (455/483): xdg-utils-1.2.0-4.el10.noarch.rpm    1.0 MB/s |  80 kB     00:00    
- (456/483): xkeyboard-config-2.41-3.el10.noarch. 1.9 MB/s | 1.0 MB     00:00    
- (457/483): xorg-x11-fonts-Type1-7.5-40.el10.noa 966 kB/s | 505 kB     00:00    
- (458/483): xprop-1.2.7-3.el10.x86_64.rpm        541 kB/s |  36 kB     00:00    
- (459/483): zziplib-0.13.78-2.el10.x86_64.rpm    861 kB/s |  91 kB     00:00    
- (460/483): libtirpc-devel-1.3.5-1.el10.x86_64.r 1.1 MB/s | 127 kB     00:00    
- (461/483): perl-Unicode-EastAsianWidth-12.0-16. 365 kB/s |  20 kB     00:00    
- (462/483): texinfo-tex-7.1-6.el10.x86_64.rpm    1.1 MB/s | 141 kB     00:00    
- (463/483): R-4.5.2-1.el10_2.x86_64.rpm          122 kB/s | 9.3 kB     00:00    
- (464/483): texinfo-7.1-6.el10.x86_64.rpm        1.2 MB/s | 1.3 MB     00:01    
- (465/483): R-core-devel-4.5.2-1.el10_2.x86_64.r 660 kB/s |  90 kB     00:00    
- (466/483): R-devel-4.5.2-1.el10_2.x86_64.rpm    429 kB/s | 8.7 kB     00:00    
- (467/483): R-java-4.5.2-1.el10_2.x86_64.rpm     489 kB/s | 9.3 kB     00:00    
- (468/483): R-java-devel-4.5.2-1.el10_2.x86_64.r 452 kB/s | 8.8 kB     00:00    
- (469/483): R-rpm-macros-1.2.1-12.el10_1.noarch. 520 kB/s |  11 kB     00:00    
- (470/483): devscripts-checkbashisms-2.25.5-1.el 1.4 MB/s |  28 kB     00:00    
- (471/483): libRmath-4.5.2-1.el10_2.x86_64.rpm   1.3 MB/s | 120 kB     00:00    
- (472/483): libRmath-devel-4.5.2-1.el10_2.x86_64 643 kB/s |  15 kB     00:00    
- (473/483): libdeflate-1.24-1.el10_1.x86_64.rpm  2.9 MB/s |  66 kB     00:00    
- (474/483): libdeflate-devel-1.24-1.el10_1.x86_6 910 kB/s |  18 kB     00:00    
- (475/483): libtidy-5.8.0-9.el10_0.x86_64.rpm    2.8 MB/s | 221 kB     00:00    
- (476/483): perl-Lexical-SealRequireHints-0.012- 1.1 MB/s |  26 kB     00:00    
- (477/483): perl-Lexical-Var-0.010-1.el10_0.x86_ 1.0 MB/s |  33 kB     00:00    
- (478/483): tidy-5.8.0-9.el10_0.x86_64.rpm       1.3 MB/s |  36 kB     00:00    
- (479/483): tre-0.8.0-47.20140228gitc2f5d13.el10 2.0 MB/s |  44 kB     00:00    
- (480/483): tre-common-0.8.0-47.20140228gitc2f5d 1.3 MB/s |  31 kB     00:00    
- (481/483): tre-devel-0.8.0-47.20140228gitc2f5d1 494 kB/s |  12 kB     00:00    
- (482/483): texlive-tex-gyre-20240311-6.el10.noa 905 kB/s |  19 MB     00:21    
- (483/483): R-core-4.5.2-1.el10_2.x86_64.rpm     2.6 MB/s |  66 MB     00:25    
- --------------------------------------------------------------------------------
- Total                                           1.8 MB/s | 609 MB     05:33     
- Extra Packages for Enterprise Linux 10 - x86_64 1.6 MB/s | 1.6 kB     00:00    
- Importing GPG key 0xE37ED158:
-  Userid     : "Fedora (epel10) <epel@fedoraproject.org>"
-  Fingerprint: 7D8D 15CB FC4E 6268 8591 FB26 33D9 8517 E37E D158
-  From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-10
- Key imported successfully
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
-   Running scriptlet: texlive-base-13:20240311-6.el10.noarch                 1/1 
-   Running scriptlet: java-21-openjdk-headless-1:21.0.8.0.9-1.el10.x86_64    1/1
-  
-   Preparing        :                                                        1/1 
-   Running scriptlet: texlive-base-13:20240311-6.el10.noarch               1/483 
-   Installing       : texlive-base-13:20240311-6.el10.noarch               1/483 
-   Installing       : texlive-lib-13:20240311-6.el10.x86_64                2/483 
-   Installing       : json-glib-1.8.0-5.el10.x86_64                        3/483 
-   Installing       : libogg-2:1.3.5-10.el10.x86_64                        4/483 
-   Installing       : libXi-1.8.1-7.el10.x86_64                            5/483 
-   Installing       : alsa-lib-1.2.14-1.el10.x86_64                        6/483 
-   Installing       : libgfortran-14.3.1-2.3.el10.x86_64                   7/483 
-   Installing       : libvorbis-1:1.3.7-12.el10.x86_64                     8/483 
-   Installing       : libwayland-client-1.23.1-1.el10.x86_64               9/483 
-   Installing       : gstreamer1-1.24.11-1.el10.x86_64                    10/483 
-   Installing       : libquadmath-14.3.1-2.3.el10.x86_64                  11/483 
-   Installing       : ghostscript-tools-fonts-10.02.1-16.el10.noarch      12/483 
-   Installing       : ghostscript-tools-printing-10.02.1-16.el10.noarc    13/483 
-   Installing       : ghostscript-10.02.1-16.el10.x86_64                  14/483 
-   Installing       : opus-1.4-6.el10.x86_64                              15/483 
-   Installing       : libXfixes-6.0.1-5.el10.x86_64                       16/483 
-   Installing       : avahi-glib-0.9~rc2-2.el10.x86_64                    17/483 
-   Installing       : libgudev-238-7.el10.x86_64                          18/483 
-   Installing       : hwdata-0.379-10.6.el10.noarch                       19/483 
-   Installing       : libwayland-cursor-1.23.1-1.el10.x86_64              20/483 
-   Installing       : libXtst-1.2.4-8.el10.x86_64                         21/483 
-   Installing       : libdeflate-1.24-1.el10_1.x86_64                     22/483 
-   Installing       : libRmath-4.5.2-1.el10_2.x86_64                      23/483 
-   Installing       : zziplib-0.13.78-2.el10.x86_64                       24/483 
-   Installing       : perl-Text-Unidecode-1.30-27.el10.noarch             25/483 
-   Installing       : openblas-0.3.29-2.el10.x86_64                       26/483 
-   Installing       : libwayland-server-1.23.1-1.el10.x86_64              27/483 
-   Installing       : libwayland-egl-1.23.1-1.el10.x86_64                 28/483 
-   Installing       : libglvnd-1:1.7.0-7.el10.x86_64                      29/483 
-   Installing       : libXcomposite-0.4.6-5.el10.x86_64                   30/483 
-   Installing       : libICE-1.1.1-5.el10.x86_64                          31/483 
-   Installing       : tcl-1:8.6.13-4.el10.x86_64                          32/483 
-   Installing       : libtirpc-1.3.5-1.el10.x86_64                        33/483 
-   Installing       : libtdb-1.4.14-100.el10.x86_64                       34/483 
-   Installing       : info-7.1-6.el10.x86_64                              35/483 
-   Installing       : gsettings-desktop-schemas-47.1-3.el10.x86_64        36/483 
-   Installing       : fuse3-libs-3.16.2-5.el10.x86_64                     37/483 
-   Installing       : libtirpc-devel-1.3.5-1.el10.x86_64                  38/483 
-   Running scriptlet: tk-1:8.6.13-5.el10.x86_64                           39/483 
-   Installing       : tk-1:8.6.13-5.el10.x86_64                           39/483 
-   Installing       : libSM-1.2.4-5.el10.x86_64                           40/483 
-   Installing       : libXt-1.3.0-5.el10.x86_64                           41/483 
-   Installing       : libXmu-1.1.4-8.el10.x86_64                          42/483 
-   Installing       : openblas-openmp-0.3.29-2.el10.x86_64                43/483
-  
-   Installing       : openblas-openmp64-0.3.29-2.el10.x86_64              44/483 
-   Installing       : flexiblas-netlib64-3.4.2-3.el10.x86_64              45/483 
-   Installing       : flexiblas-netlib-3.4.2-3.el10.x86_64                46/483 
-   Installing       : flexiblas-openblas-openmp-3.4.2-3.el10.x86_64       47/483 
-   Installing       : flexiblas-3.4.2-3.el10.x86_64                       48/483 
-   Installing       : flexiblas-openblas-openmp64-3.4.2-3.el10.x86_64     49/483 
-   Installing       : flexiblas-devel-3.4.2-3.el10.x86_64                 50/483 
-   Installing       : libRmath-devel-4.5.2-1.el10_2.x86_64                51/483 
-   Installing       : libdeflate-devel-1.24-1.el10_1.x86_64               52/483 
-   Installing       : libpciaccess-0.16-16.el10.x86_64                    53/483 
-   Installing       : libdrm-2.4.123-1.el10.x86_64                        54/483 
-   Installing       : osinfo-db-20250606-1.el10.noarch                    55/483 
-   Installing       : libXcursor-1.2.1-9.el10.x86_64                      56/483 
-   Installing       : libXdamage-1.1.6-5.el10.x86_64                      57/483 
-   Installing       : libquadmath-devel-14.3.1-2.3.el10.x86_64            58/483 
-   Installing       : gcc-gfortran-14.3.1-2.3.el10.x86_64                 59/483 
-   Installing       : flac-libs-1.4.3-6.el10.x86_64                       60/483 
-   Installing       : libtheora-1:1.1.1-39.el10.x86_64                    61/483 
-   Installing       : libgusb-0.4.9-4.el10.x86_64                         62/483 
-   Installing       : colord-libs-1.4.7-6.el10.x86_64                     63/483 
-   Installing       : tre-common-0.8.0-47.20140228gitc2f5d13.el10_1.no    64/483 
-   Installing       : tre-0.8.0-47.20140228gitc2f5d13.el10_1.x86_64       65/483 
-   Installing       : tre-devel-0.8.0-47.20140228gitc2f5d13.el10_1.x86    66/483 
-   Installing       : perl-Lexical-SealRequireHints-0.012-1.el10_0.x86    67/483 
-   Installing       : perl-Lexical-Var-0.010-1.el10_0.x86_64              68/483 
-   Installing       : perl-Exporter-Tiny-1.006002-7.el10.noarch           69/483 
-   Installing       : libtidy-5.8.0-9.el10_0.x86_64                       70/483 
-   Installing       : tidy-5.8.0-9.el10_0.x86_64                          71/483 
-   Installing       : devscripts-checkbashisms-2.25.5-1.el10_1.noarch     72/483 
-   Installing       : perl-Unicode-EastAsianWidth-12.0-16.el10.noarch     73/483 
-   Installing       : xprop-1.2.7-3.el10.x86_64                           74/483 
-   Installing       : at-spi2-core-2.56.1-1.el10.x86_64                   75/483 
-   Installing       : atk-2.56.1-1.el10.x86_64                            76/483 
-   Installing       : at-spi2-atk-2.56.1-1.el10.x86_64                    77/483 
-   Installing       : xkeyboard-config-2.41-3.el10.noarch                 78/483 
-   Installing       : libxkbcommon-1.7.0-4.el10.x86_64                    79/483 
-   Installing       : webrtc-audio-processing-1.3-5.el10.x86_64           80/483 
-   Installing       : tzdata-java-2025b-2.el10.noarch                     81/483 
-   Installing       : ttmkfdir-3.0.9-72.el10.x86_64                       82/483 
-   Installing       : texlive-texlive-common-doc-13:20240311-6.el10.no    83/483 
-   Installing       : teckit-2.5.12-4.el10.x86_64                         84/483 
-   Installing       : spirv-tools-libs-2025.2-1.el10.x86_64               85/483 
-   Installing       : sound-theme-freedesktop-0.8-23.el10.noarch          86/483 
-   Running scriptlet: sound-theme-freedesktop-0.8-23.el10.noarch          86/483 
-   Running scriptlet: rtkit-0.11-68.el10.x86_64                           87/483 
-   Installing       : rtkit-0.11-68.el10.x86_64                           87/483 
-   Running scriptlet: rtkit-0.11-68.el10.x86_64                           87/483 
- Created symlink '/etc/systemd/system/graphical.target.wants/rtkit-daemon.service' → '/usr/lib/systemd/system/rtkit-daemon.service'.
- 
-   Installing       : perl-Unicode-Normalize-1.32-511.el10.x86_64         88/483 
-   Installing       : perl-Params-Util-1.102-19.el10.x86_64               89/483 
-   Installing       : perl-List-MoreUtils-XS-0.430-18.el10.x86_64         90/483 
-   Installing       : perl-List-MoreUtils-0.430-15.el10.noarch            91/483 
-   Installing       : perl-Filter-2:1.64-512.el10.x86_64                  92/483 
-   Installing       : perl-encoding-4:3.00-511.el10.x86_64                93/483 
-   Installing       : perl-open-1.13-514.el10.noarch                      94/483 
-   Installing       : perl-XML-XPath-1.48-8.el10.noarch                   95/483 
-   Installing       : texlive-texlive.infra-13:20240311-6.el10.noarch     96/483 
-   Installing       : texlive-texlive-scripts-13:20240311-6.el10.noarc    97/483 
-   Installing       : texlive-kpathsea-13:20240311-6.el10.x86_64          98/483 
-   Installing       : texlive-iftex-13:20240311-6.el10.noarch             99/483 
-   Installing       : texlive-amsmath-13:20240311-6.el10.noarch          100/483 
-   Installing       : texlive-amsfonts-13:20240311-6.el10.noarch         101/483 
-   Installing       : texlive-cm-13:20240311-6.el10.noarch               102/483 
-   Installing       : texlive-hyphen-base-13:20240311-6.el10.noarch      103/483 
-   Installing       : texlive-kvoptions-13:20240311-6.el10.noarch        104/483 
-   Installing       : texlive-ltxcmds-13:20240311-6.el10.noarch          105/483 
-   Installing       : texlive-plain-13:20240311-6.el10.noarch            106/483 
-   Installing       : texlive-url-13:20240311-6.el10.noarch              107/483 
-   Installing       : texlive-atbegshi-13:20240311-6.el10.noarch         108/483 
-   Installing       : texlive-booktabs-13:20240311-6.el10.noarch         109/483 
-   Installing       : texlive-etex-13:20240311-6.el10.noarch             110/483 
-   Installing       : texlive-etex-pkg-13:20240311-6.el10.noarch         111/483 
-   Installing       : texlive-etoolbox-13:20240311-6.el10.noarch         112/483 
-   Installing       : texlive-knuth-lib-13:20240311-6.el10.noarch        113/483 
-   Installing       : texlive-tex-ini-files-13:20240311-6.el10.noarch    114/483 
-   Installing       : texlive-unicode-data-13:20240311-6.el10.noarch     115/483 
-   Installing       : texlive-auxhook-13:20240311-6.el10.noarch          116/483
-  
-   Installing       : texlive-babel-13:20240311-6.el10.noarch            117/483 
-   Installing       : texlive-etexcmds-13:20240311-6.el10.noarch         118/483 
-   Installing       : texlive-infwarerr-13:20240311-6.el10.noarch        119/483 
-   Installing       : texlive-latex-fonts-13:20240311-6.el10.noarch      120/483 
-   Installing       : texlive-lm-13:20240311-6.el10.noarch               121/483 
-   Installing       : texlive-luatexbase-13:20240311-6.el10.noarch       122/483 
-   Installing       : texlive-atveryend-13:20240311-6.el10.noarch        123/483 
-   Installing       : texlive-fp-13:20240311-6.el10.noarch               124/483 
-   Installing       : texlive-hologo-13:20240311-6.el10.noarch           125/483 
-   Installing       : texlive-hypdoc-13:20240311-6.el10.noarch           126/483 
-   Installing       : texlive-hyph-utf8-13:20240311-6.el10.noarch        127/483 
-   Installing       : texlive-intcalc-13:20240311-6.el10.noarch          128/483 
-   Installing       : texlive-kvsetkeys-13:20240311-6.el10.noarch        129/483 
-   Installing       : texlive-letltxmacro-13:20240311-6.el10.noarch      130/483 
-   Installing       : texlive-multido-13:20240311-6.el10.noarch          131/483 
-   Installing       : texlive-natbib-13:20240311-6.el10.noarch           132/483 
-   Installing       : texlive-pdfescape-13:20240311-6.el10.noarch        133/483 
-   Installing       : texlive-pdftexcmds-13:20240311-6.el10.noarch       134/483 
-   Installing       : texlive-ragged2e-13:20240311-6.el10.noarch         135/483 
-   Installing       : texlive-setspace-13:20240311-6.el10.noarch         136/483 
-   Installing       : texlive-uniquecounter-13:20240311-6.el10.noarch    137/483 
-   Installing       : texlive-zapfding-13:20240311-6.el10.noarch         138/483 
-   Installing       : texlive-rerunfilecheck-13:20240311-6.el10.noarch   139/483 
-   Installing       : texlive-catchfile-13:20240311-6.el10.noarch        140/483 
-   Installing       : texlive-babelbib-13:20240311-6.el10.noarch         141/483 
-   Installing       : texlive-memoir-13:20240311-6.el10.noarch           142/483 
-   Installing       : texlive-bigintcalc-13:20240311-6.el10.noarch       143/483 
-   Installing       : texlive-bitset-13:20240311-6.el10.noarch           144/483 
-   Installing       : texlive-bookmark-13:20240311-6.el10.noarch         145/483 
-   Installing       : texlive-ec-13:20240311-6.el10.noarch               146/483 
-   Installing       : texlive-epstopdf-pkg-13:20240311-6.el10.noarch     147/483 
-   Installing       : texlive-graphics-def-13:20240311-6.el10.noarch     148/483 
-   Installing       : texlive-luatex-13:20240311-6.el10.x86_64           149/483 
-   Installing       : texlive-pdftex-13:20240311-6.el10.x86_64           150/483 
-   Installing       : texlive-euler-13:20240311-6.el10.noarch            151/483 
-   Installing       : texlive-everyshi-13:20240311-6.el10.noarch         152/483 
-   Installing       : texlive-count1to-13:20240311-6.el10.noarch         153/483 
-   Installing       : texlive-fancyhdr-13:20240311-6.el10.noarch         154/483 
-   Installing       : texlive-float-13:20240311-6.el10.noarch            155/483 
-   Installing       : texlive-gettitlestring-13:20240311-6.el10.noarch   156/483 
-   Installing       : texlive-glyphlist-13:20240311-6.el10.noarch        157/483 
-   Installing       : texlive-graphics-cfg-13:20240311-6.el10.noarch     158/483 
-   Installing       : texlive-graphics-13:20240311-6.el10.noarch         159/483 
-   Installing       : texlive-tools-13:20240311-6.el10.noarch            160/483 
-   Installing       : texlive-xkeyval-13:20240311-6.el10.noarch          161/483 
-   Installing       : texlive-geometry-13:20240311-6.el10.noarch         162/483 
-   Installing       : texlive-colortbl-13:20240311-6.el10.noarch         163/483 
-   Installing       : texlive-caption-13:20240311-6.el10.noarch          164/483 
-   Installing       : texlive-subfig-13:20240311-6.el10.noarch           165/483 
-   Installing       : texlive-carlisle-13:20240311-6.el10.noarch         166/483 
-   Installing       : texlive-sauerj-13:20240311-6.el10.noarch           167/483 
-   Installing       : texlive-translator-13:20240311-6.el10.noarch       168/483 
-   Installing       : texlive-grfext-13:20240311-6.el10.noarch           169/483 
-   Installing       : texlive-grffile-13:20240311-6.el10.noarch          170/483 
-   Installing       : texlive-hycolor-13:20240311-6.el10.noarch          171/483 
-   Installing       : texlive-hypcap-13:20240311-6.el10.noarch           172/483 
-   Installing       : texlive-index-13:20240311-6.el10.noarch            173/483 
-   Installing       : texlive-kvdefinekeys-13:20240311-6.el10.noarch     174/483 
-   Installing       : texlive-l3backend-13:20240311-6.el10.noarch        175/483 
-   Installing       : texlive-latexconfig-13:20240311-6.el10.noarch      176/483 
-   Installing       : texlive-lua-alt-getopt-13:20240311-6.el10.noarch   177/483 
-   Installing       : texlive-marvosym-13:20240311-6.el10.noarch         178/483 
-   Installing       : texlive-paralist-13:20240311-6.el10.noarch         179/483 
-   Installing       : texlive-pdflscape-13:20240311-6.el10.noarch        180/483 
-   Installing       : texlive-placeins-13:20240311-6.el10.noarch         181/483 
-   Installing       : texlive-refcount-13:20240311-6.el10.noarch         182/483 
-   Installing       : texlive-stringenc-13:20240311-6.el10.noarch        183/483 
-   Installing       : texlive-symbol-13:20240311-6.el10.noarch           184/483 
-   Installing       : texlive-psnfss-13:20240311-6.el10.noarch           185/483 
-   Installing       : texlive-underscore-13:20240311-6.el10.noarch       186/483 
-   Installing       : texlive-wasy-13:20240311-6.el10.noarch             187/483 
-   Installing       : texlive-zref-13:20240311-6.el10.noarch             188/483 
-   Installing       : texlive-wasy-type1-13:20240311-6.el10.noarch       189/483 
-   Installing       : texlive-breakurl-13:20240311-6.el10.noarch         190/483 
-   Installing       : texlive-ctable-13:20240311-6.el10.noarch           191/483 
-   Installing       : texlive-fancyref-13:20240311-6.el10.noarch         192/483 
-   Installing       : texlive-ltabptch-13:20240311-6.el10.noarch         193/483 
-   Installing       : texlive-mathtools-13:20240311-6.el10.noarch        194/483 
-   Installing       : texlive-crop-13:20240311-6.el10.noarch             195/483 
-   Installing       : texlive-csquotes-13:20240311-6.el10.noarch         196/483 
-   Installing       : texlive-microtype-13:20240311-6.el10.noarch        197/483 
-   Installing       : texlive-pdfmanagement-testphase-13:20240311-6.el   198/483 
-   Installing       : texlive-psfrag-13:20240311-6.el10.noarch           199/483 
-   Installing       : texlive-lua-uni-algos-13:20240311-6.el10.noarch    200/483 
-   Installing       : texlive-luahbtex-13:20240311-6.el10.x86_64         201/483 
-   Installing       : texlive-ifplatform-13:20240311-6.el10.noarch       202/483 
-   Installing       : texlive-euro-13:20240311-6.el10.noarch             203/483 
-   Installing       : texlive-dvips-13:20240311-6.el10.x86_64            204/483 
-   Installing       : texlive-tex-13:20240311-6.el10.x86_64              205/483 
-   Installing       : texlive-hopatch-13:20240311-6.el10.noarch          206/483
-  
-   Installing       : texlive-tex-gyre-13:20240311-6.el10.noarch         207/483 
-   Installing       : texlive-thumbpdf-13:20240311-6.el10.noarch         208/483 
-   Installing       : texlive-alphalph-13:20240311-6.el10.noarch         209/483 
-   Installing       : texlive-anysize-13:20240311-6.el10.noarch          210/483 
-   Installing       : texlive-attachfile2-13:20240311-6.el10.noarch      211/483 
-   Installing       : texlive-avantgar-13:20240311-6.el10.noarch         212/483 
-   Installing       : texlive-babel-english-13:20240311-6.el10.noarch    213/483 
-   Installing       : texlive-beton-13:20240311-6.el10.noarch            214/483 
-   Installing       : texlive-bibtex-13:20240311-6.el10.x86_64           215/483 
-   Installing       : texlive-bookman-13:20240311-6.el10.noarch          216/483 
-   Installing       : texlive-changepage-13:20240311-6.el10.noarch       217/483 
-   Installing       : texlive-charter-13:20240311-6.el10.noarch          218/483 
-   Installing       : texlive-chngcntr-13:20240311-6.el10.noarch         219/483 
-   Installing       : texlive-cite-13:20240311-6.el10.noarch             220/483 
-   Installing       : texlive-cmap-13:20240311-6.el10.noarch             221/483 
-   Installing       : texlive-cmextra-13:20240311-6.el10.noarch          222/483 
-   Installing       : texlive-colorprofiles-13:20240311-6.el10.noarch    223/483 
-   Installing       : texlive-courier-13:20240311-6.el10.noarch          224/483 
-   Installing       : texlive-enctex-13:20240311-6.el10.noarch           225/483 
-   Installing       : texlive-enumitem-13:20240311-6.el10.noarch         226/483 
-   Installing       : texlive-epsf-13:20240311-6.el10.noarch             227/483 
-   Installing       : texlive-euenc-13:20240311-6.el10.noarch            228/483 
-   Installing       : texlive-eurosym-13:20240311-6.el10.noarch          229/483 
-   Installing       : texlive-everysel-13:20240311-6.el10.noarch         230/483 
-   Installing       : texlive-fancybox-13:20240311-6.el10.noarch         231/483 
-   Installing       : texlive-filecontents-13:20240311-6.el10.noarch     232/483 
-   Installing       : texlive-finstrut-13:20240311-6.el10.noarch         233/483 
-   Installing       : texlive-lineno-13:20240311-6.el10.noarch           234/483 
-   Installing       : texlive-firstaid-13:20240311-6.el10.noarch         235/483 
-   Installing       : texlive-fix2col-13:20240311-6.el10.noarch          236/483 
-   Installing       : texlive-footmisc-13:20240311-6.el10.noarch         237/483 
-   Installing       : texlive-footnotehyper-13:20240311-6.el10.noarch    238/483 
-   Installing       : texlive-fpl-13:20240311-6.el10.noarch              239/483 
-   Installing       : texlive-helvetic-13:20240311-6.el10.noarch         240/483 
-   Installing       : texlive-hobsub-13:20240311-6.el10.noarch           241/483 
-   Installing       : texlive-hyperref-13:20240311-6.el10.noarch         242/483 
-   Installing       : texlive-attachfile-13:20240311-6.el10.noarch       243/483 
-   Installing       : texlive-hyphenex-13:20240311-6.el10.noarch         244/483 
-   Installing       : texlive-ifmtarg-13:20240311-6.el10.noarch          245/483 
-   Installing       : texlive-kastrup-13:20240311-6.el10.noarch          246/483 
-   Installing       : texlive-knuth-local-13:20240311-6.el10.noarch      247/483 
-   Installing       : texlive-latexbug-13:20240311-6.el10.noarch         248/483 
-   Installing       : texlive-lm-math-13:20240311-6.el10.noarch          249/483 
-   Installing       : texlive-lualibs-13:20240311-6.el10.noarch          250/483 
-   Installing       : texlive-luaotfload-13:20240311-6.el10.noarch       251/483 
-   Installing       : texlive-lwarp-13:20240311-6.el10.noarch            252/483 
-   Installing       : texlive-makecmds-13:20240311-6.el10.noarch         253/483 
-   Installing       : texlive-makeindex-13:20240311-6.el10.x86_64        254/483 
-   Installing       : texlive-manfnt-font-13:20240311-6.el10.noarch      255/483 
-   Installing       : texlive-marginnote-13:20240311-6.el10.noarch       256/483 
-   Installing       : texlive-mathpazo-13:20240311-6.el10.noarch         257/483 
-   Installing       : texlive-mdwtools-13:20240311-6.el10.noarch         258/483 
-   Installing       : texlive-metafont-13:20240311-6.el10.x86_64         259/483 
-   Installing       : texlive-mflogo-13:20240311-6.el10.noarch           260/483 
-   Installing       : texlive-mflogo-font-13:20240311-6.el10.noarch      261/483 
-   Installing       : texlive-mfnfss-13:20240311-6.el10.noarch           262/483 
-   Installing       : texlive-mfware-13:20240311-6.el10.x86_64           263/483 
-   Installing       : texlive-modes-13:20240311-6.el10.noarch            264/483 
-   Installing       : texlive-mparhack-13:20240311-6.el10.noarch         265/483 
-   Installing       : texlive-mptopdf-13:20240311-6.el10.noarch          266/483 
-   Installing       : texlive-ncntrsbk-13:20240311-6.el10.noarch         267/483 
-   Installing       : texlive-newfloat-13:20240311-6.el10.noarch         268/483 
-   Installing       : texlive-notoccite-13:20240311-6.el10.noarch        269/483 
-   Installing       : texlive-ntgclass-13:20240311-6.el10.noarch         270/483 
-   Installing       : texlive-palatino-13:20240311-6.el10.noarch         271/483 
-   Installing       : texlive-parallel-13:20240311-6.el10.noarch         272/483 
-   Installing       : texlive-parskip-13:20240311-6.el10.noarch          273/483 
-   Installing       : texlive-pdfcol-13:20240311-6.el10.noarch           274/483 
-   Installing       : texlive-pdfcolfoot-13:20240311-6.el10.noarch       275/483 
-   Installing       : texlive-pdfcolmk-13:20240311-6.el10.noarch         276/483 
-   Installing       : texlive-xcolor-13:20240311-6.el10.noarch           277/483 
-   Installing       : texlive-eso-pic-13:20240311-6.el10.noarch          278/483 
-   Installing       : texlive-pgf-13:20240311-6.el10.noarch              279/483 
-   Installing       : texlive-currfile-13:20240311-6.el10.noarch         280/483 
-   Installing       : texlive-filehook-13:20240311-6.el10.noarch         281/483 
-   Installing       : texlive-sansmathaccent-13:20240311-6.el10.noarch   282/483 
-   Installing       : texlive-pslatex-13:20240311-6.el10.noarch          283/483 
-   Installing       : texlive-pspicture-13:20240311-6.el10.noarch        284/483 
-   Installing       : texlive-pst-arrow-13:20240311-6.el10.noarch        285/483 
-   Installing       : texlive-pst-math-13:20240311-6.el10.noarch         286/483 
-   Installing       : texlive-pxfonts-13:20240311-6.el10.noarch          287/483 
-   Installing       : texlive-rcs-13:20240311-6.el10.noarch              288/483 
-   Installing       : texlive-rsfs-13:20240311-6.el10.noarch             289/483 
-   Installing       : texlive-sansmath-13:20240311-6.el10.noarch         290/483 
-   Installing       : texlive-section-13:20240311-6.el10.noarch          291/483 
-   Installing       : texlive-sepnum-13:20240311-6.el10.noarch           292/483 
-   Installing       : texlive-tex-gyre-math-13:20240311-6.el10.noarch    293/483 
-   Installing       : texlive-texlive-en-13:20240311-6.el10.noarch       294/483 
-   Installing       : texlive-texlive-msg-translations-13:20240311-6.e   295/483 
-   Installing       : texlive-texlive-scripts-extra-13:20240311-6.el10   296/483 
-   Installing       : texlive-textcase-13:20240311-6.el10.noarch         297/483 
-   Installing       : texlive-times-13:20240311-6.el10.noarch            298/483 
-   Installing       : texlive-titlesec-13:20240311-6.el10.noarch         299/483 
-   Installing       : texlive-txfonts-13:20240311-6.el10.noarch          300/483 
-   Installing       : texlive-ucharcat-13:20240311-6.el10.noarch         301/483 
-   Installing       : texlive-utopia-13:20240311-6.el10.noarch           302/483 
-   Installing       : texlive-varwidth-13:20240311-6.el10.noarch         303/483 
-   Installing       : texlive-algorithms-13:20240311-6.el10.noarch       304/483 
-   Installing       : texlive-bera-13:20240311-6.el10.noarch             305/483
-  
-   Installing       : texlive-cm-super-13:20240311-6.el10.noarch         306/483 
-   Installing       : texlive-l3kernel-13:20240311-6.el10.noarch         307/483 
-   Installing       : texlive-latex-13:20240311-6.el10.noarch            308/483 
-   Installing       : texlive-koma-script-13:20240311-6.el10.noarch      309/483 
-   Installing       : texlive-listings-13:20240311-6.el10.noarch         310/483 
-   Installing       : texlive-showexpl-13:20240311-6.el10.noarch         311/483 
-   Installing       : texlive-fancyvrb-13:20240311-6.el10.noarch         312/483 
-   Installing       : texlive-pst-3d-13:20240311-6.el10.noarch           313/483 
-   Installing       : texlive-pst-coil-13:20240311-6.el10.noarch         314/483 
-   Installing       : texlive-pst-eps-13:20240311-6.el10.noarch          315/483 
-   Installing       : texlive-pst-fill-13:20240311-6.el10.noarch         316/483 
-   Installing       : texlive-pst-grad-13:20240311-6.el10.noarch         317/483 
-   Installing       : texlive-pst-node-13:20240311-6.el10.noarch         318/483 
-   Installing       : texlive-pst-plot-13:20240311-6.el10.noarch         319/483 
-   Installing       : texlive-pst-text-13:20240311-6.el10.noarch         320/483 
-   Installing       : texlive-pst-tools-13:20240311-6.el10.noarch        321/483 
-   Installing       : texlive-pst-tree-13:20240311-6.el10.noarch         322/483 
-   Installing       : texlive-pstricks-add-13:20240311-6.el10.noarch     323/483 
-   Installing       : texlive-pstricks-13:20240311-6.el10.noarch         324/483 
-   Installing       : texlive-l3packages-13:20240311-6.el10.noarch       325/483 
-   Installing       : texlive-amscls-13:20240311-6.el10.noarch           326/483 
-   Installing       : texlive-tipa-13:20240311-6.el10.noarch             327/483 
-   Installing       : texlive-xunicode-13:20240311-6.el10.noarch         328/483 
-   Installing       : texlive-fontspec-13:20240311-6.el10.noarch         329/483 
-   Installing       : texlive-metalogo-13:20240311-6.el10.noarch         330/483 
-   Installing       : texlive-realscripts-13:20240311-6.el10.noarch      331/483 
-   Installing       : texlive-xltxtra-13:20240311-6.el10.noarch          332/483 
-   Installing       : texlive-l3experimental-13:20240311-6.el10.noarch   333/483 
-   Installing       : texlive-seminar-13:20240311-6.el10.noarch          334/483 
-   Installing       : texlive-ae-13:20240311-6.el10.noarch               335/483 
-   Installing       : texlive-extsizes-13:20240311-6.el10.noarch         336/483 
-   Installing       : texlive-jknapltx-13:20240311-6.el10.noarch         337/483 
-   Installing       : texlive-minitoc-13:20240311-6.el10.noarch          338/483 
-   Installing       : texlive-ltxmisc-13:20240311-6.el10.noarch          339/483 
-   Installing       : texlive-mnsymbol-13:20240311-6.el10.noarch         340/483 
-   Installing       : texlive-mathspec-13:20240311-6.el10.noarch         341/483 
-   Installing       : texlive-multitoc-13:20240311-6.el10.noarch         342/483 
-   Installing       : texlive-pdfpages-13:20240311-6.el10.noarch         343/483 
-   Installing       : texlive-typehtml-13:20240311-6.el10.noarch         344/483 
-   Installing       : texlive-ucs-13:20240311-6.el10.noarch              345/483 
-   Installing       : texlive-beamer-13:20240311-6.el10.noarch           346/483 
-   Installing       : texlive-xifthen-13:20240311-6.el10.noarch          347/483 
-   Installing       : texlive-bidi-13:20240311-6.el10.noarch             348/483 
-   Installing       : texlive-polyglossia-13:20240311-6.el10.noarch      349/483 
-   Installing       : texlive-breqn-13:20240311-6.el10.noarch            350/483 
-   Installing       : texlive-lualatex-math-13:20240311-6.el10.noarch    351/483 
-   Installing       : texlive-unicode-math-13:20240311-6.el10.noarch     352/483 
-   Installing       : texlive-oberdiek-13:20240311-6.el10.noarch         353/483 
-   Installing       : texlive-wasysym-13:20240311-6.el10.noarch          354/483 
-   Installing       : texlive-xetexconfig-13:20240311-6.el10.noarch      355/483 
-   Installing       : texlive-xfrac-13:20240311-6.el10.noarch            356/483 
-   Installing       : texlive-zapfchan-13:20240311-6.el10.noarch         357/483 
-   Installing       : texlive-collection-fontsrecommended-13:20240311-   358/483 
-   Installing       : texlive-dvipdfmx-13:20240311-6.el10.x86_64         359/483 
-   Installing       : texlive-collection-basic-13:20240311-6.el10.noar   360/483 
-   Installing       : texlive-xetex-13:20240311-6.el10.x86_64            361/483 
-   Installing       : texlive-collection-latexrecommended-13:20240311-   362/483 
-   Installing       : texlive-collection-latex-13:20240311-6.el10.noar   363/483 
-   Installing       : perl-Class-Inspector-1.36-19.el10.noarch           364/483 
-   Installing       : perl-File-ShareDir-1.118-14.el10.noarch            365/483 
-   Installing       : perl-libintl-perl-1.33-11.el10.x86_64              366/483 
-   Installing       : texinfo-7.1-6.el10.x86_64                          367/483 
-   Installing       : texinfo-tex-7.1-6.el10.x86_64                      368/483 
-   Running scriptlet: texinfo-tex-7.1-6.el10.x86_64                      368/483
-  
-   Installing       : pcre2-utf32-10.44-1.el10.3.x86_64                  369/483 
-   Installing       : pcre2-utf16-10.44-1.el10.3.x86_64                  370/483 
-   Installing       : pcre2-devel-10.44-1.el10.3.x86_64                  371/483 
-   Installing       : orc-0.4.39-2.el10.x86_64                           372/483 
-   Installing       : mpg123-libs-1.32.9-1.el10.x86_64                   373/483 
-   Installing       : mesa-filesystem-25.0.7-5.el10.x86_64               374/483 
-   Installing       : low-memory-monitor-2.1-12.el10.x86_64              375/483 
-   Running scriptlet: low-memory-monitor-2.1-12.el10.x86_64              375/483 
-   Installing       : llvm-filesystem-20.1.8-1.el10.x86_64               376/483 
-   Installing       : llvm-libs-20.1.8-1.el10.x86_64                     377/483 
-   Installing       : libxshmfence-1.3.2-5.el10.x86_64                   378/483 
-   Installing       : mesa-dri-drivers-25.0.7-5.el10.x86_64              379/483 
-   Installing       : mesa-libgbm-25.0.7-5.el10.x86_64                   380/483 
-   Installing       : libglvnd-egl-1:1.7.0-7.el10.x86_64                 381/483 
-   Installing       : mesa-libEGL-25.0.7-5.el10.x86_64                   382/483 
-   Installing       : libsbc-2.0-6.el10.x86_64                           383/483 
-   Installing       : libportal-0.9.0-2.el10.x86_64                      384/483 
-   Installing       : libnotify-0.8.6-1.el10.x86_64                      385/483 
-   Installing       : libldac-2.0.2.3-17.el10.x86_64                     386/483 
-   Installing       : liblc3-1.0.4-6.el10.x86_64                         387/483 
-   Installing       : libiptcdata-1.0.5-20.el10.x86_64                   388/483 
-   Installing       : libicu-devel-74.2-5.el10.x86_64                    389/483 
-   Installing       : libgxps-0.3.2-10.el10.x86_64                       390/483 
-   Installing       : libgsf-1.14.53-2.el10.x86_64                       391/483 
-   Installing       : libfontenc-1.1.7-5.el10.x86_64                     392/483 
-   Installing       : mkfontscale-1.2.2-8.el10.x86_64                    393/483 
-   Installing       : xorg-x11-fonts-Type1-7.5-40.el10.noarch            394/483 
-   Running scriptlet: xorg-x11-fonts-Type1-7.5-40.el10.noarch            394/483
-  
-   Installing       : libexif-0.6.24-9.el10.x86_64                       395/483 
-   Installing       : libepoxy-1.5.10-9.el10.x86_64                      396/483 
-   Installing       : libasyncns-0.8-30.el10.x86_64                      397/483 
-   Installing       : libXxf86vm-1.1.5-8.el10.x86_64                     398/483 
-   Installing       : libglvnd-glx-1:1.7.0-7.el10.x86_64                 399/483 
-   Installing       : mesa-libGL-25.0.7-5.el10.x86_64                    400/483 
-   Installing       : libXv-1.0.12-5.el10.x86_64                         401/483 
-   Installing       : libXrandr-1.5.4-5.el10.x86_64                      402/483 
-   Installing       : libXinerama-1.1.5-8.el10.x86_64                    403/483 
-   Installing       : lame-libs-3.100-19.el10.x86_64                     404/483 
-   Installing       : iso-codes-4.16.0-6.el10.noarch                     405/483 
-   Installing       : hicolor-icon-theme-0.17-20.el10.noarch             406/483 
-   Installing       : gtk-update-icon-cache-3.24.43-4.el10.x86_64        407/483 
-   Installing       : gsm-1.0.22-8.el10.x86_64                           408/483 
-   Installing       : libsndfile-1.2.2-5.el10.x86_64                     409/483 
-   Installing       : pulseaudio-libs-17.0-6.el10.x86_64                 410/483 
-   Installing       : libcanberra-0.30-37.el10.x86_64                    411/483 
-   Running scriptlet: libcanberra-0.30-37.el10.x86_64                    411/483 
-   Installing       : graphene-1.10.6-10.el10.x86_64                     412/483 
-   Installing       : gstreamer1-plugins-base-1.24.11-1.el10.x86_64      413/483 
-   Installing       : giflib-5.2.1-22.el10.x86_64                        414/483 
-   Installing       : gdk-pixbuf2-modules-2.42.12-4.el10.x86_64          415/483 
-   Installing       : fftw-libs-single-3.3.10-15.el10.x86_64             416/483 
-   Installing       : fdk-aac-free-2.0.0-15.el10.x86_64                  417/483 
-   Installing       : exempi-2.6.4-7.el10.x86_64                         418/483 
-   Installing       : desktop-file-utils-0.26-14.el10.x86_64             419/483 
-   Installing       : xdg-utils-1.2.0-4.el10.noarch                      420/483
-  
-   Installing       : R-core-4.5.2-1.el10_2.x86_64                       421/483 
-   Installing       : R-rpm-macros-1.2.1-12.el10_1.noarch                422/483 
-   Installing       : dconf-0.40.0-16.el10.x86_64                        423/483 
-   Running scriptlet: dconf-0.40.0-16.el10.x86_64                        423/483 
-   Installing       : bzip2-devel-1.0.8-25.el10.x86_64                   424/483 
-   Installing       : R-core-devel-4.5.2-1.el10_2.x86_64                 425/483 
-   Installing       : adwaita-cursor-theme-46.0-3.el10.noarch            426/483 
-   Installing       : adwaita-icon-theme-46.0-3.el10.noarch              427/483 
-   Installing       : publicsuffix-list-dafsa-20240107-5.el10.noarch     428/483 
-   Installing       : libpsl-0.21.5-6.el10.x86_64                        429/483 
-   Installing       : lksctp-tools-1.0.21-1.el10.x86_64                  430/483
-  
-   Installing       : java-21-openjdk-headless-1:21.0.8.0.9-1.el10.x86   431/483 
-   Running scriptlet: java-21-openjdk-headless-1:21.0.8.0.9-1.el10.x86   431/483 
-   Installing       : R-java-4.5.2-1.el10_2.x86_64                       432/483 
-   Installing       : linux-firmware-whence-20250812-19.el10.noarch      433/483 
-   Installing       : intel-vsc-firmware-20250812-19.el10.noarch         434/483 
-   Installing       : libcamera-ipa-0.3.2-4.el10.x86_64                  435/483 
-   Installing       : libcamera-0.3.2-4.el10.x86_64                      436/483 
-   Installing       : liburing-2.12-1.el10.x86_64                        437/483 
-   Installing       : libproxy-0.5.5-4.el10.x86_64                       438/483 
-   Installing       : glib-networking-2.80.0-3.el10.x86_64               439/483 
-   Installing       : libsoup3-3.6.5-5.el10.x86_64                       440/483 
-   Installing       : osinfo-db-tools-1.11.0-8.el10.x86_64               441/483 
-   Installing       : libosinfo-1.11.0-8.el10.x86_64                     442/483 
-   Installing       : libatomic-14.3.1-2.3.el10.x86_64                   443/483 
-   Installing       : libdex-0.8.1-1.el10.x86_64                         444/483 
-   Installing       : kmod-31-12.el10.x86_64                             445/483 
-   Installing       : kbd-misc-2.6.4-7.el10.noarch                       446/483 
-   Installing       : kbd-legacy-2.6.4-7.el10.noarch                     447/483 
-   Installing       : kbd-2.6.4-7.el10.x86_64                            448/483 
-   Installing       : systemd-udev-257-16.el10.x86_64                    449/483 
-   Running scriptlet: systemd-udev-257-16.el10.x86_64                    449/483
-  
- Created symlink '/etc/systemd/system/sysinit.target.wants/systemd-pstore.service' → '/usr/lib/systemd/system/systemd-pstore.service'.
- Created symlink '/etc/systemd/system/multi-user.target.wants/remote-cryptsetup.target' → '/usr/lib/systemd/system/remote-cryptsetup.target'.
- 
-   Installing       : inih-58-3.el10.x86_64                              450/483 
-   Installing       : inih-cpp-58-3.el10.x86_64                          451/483 
-   Installing       : exiv2-0.28.3-5.el10.x86_64                         452/483 
-   Installing       : exiv2-libs-0.28.3-5.el10.x86_64                    453/483 
-   Installing       : libgexiv2-0.14.3-3.el10.x86_64                     454/483 
-   Installing       : gobject-introspection-1.79.1-6.el10.x86_64         455/483 
-   Installing       : upower-1.90.9-1.el10.x86_64                        456/483 
-   Running scriptlet: upower-1.90.9-1.el10.x86_64                        456/483 
- Created symlink '/etc/systemd/system/graphical.target.wants/upower.service' → '/usr/lib/systemd/system/upower.service'.
- 
-   Installing       : upower-libs-1.90.9-1.el10.x86_64                   457/483 
-   Installing       : libtracker-sparql-3.7.3-4.el10.x86_64              458/483 
-   Installing       : tracker-3.7.3-4.el10.x86_64                        459/483 
-   Running scriptlet: tracker-3.7.3-4.el10.x86_64                        459/483 
-   Installing       : tracker-miners-3.7.3-4.el10.x86_64                 460/483 
-   Running scriptlet: tracker-miners-3.7.3-4.el10.x86_64                 460/483 
- Failed to preset unit: Unit tracker-extract-3.service does not exist
- 
-   Installing       : fuse-common-3.16.2-5.el10.x86_64                   461/483 
-   Installing       : fuse3-3.16.2-5.el10.x86_64                         462/483 
-   Installing       : bluez-libs-5.83-1.el10.x86_64                      463/483 
-   Installing       : pipewire-plugin-libcamera-1.4.6-1.el10.x86_64      464/483 
-   Installing       : pipewire-1.4.6-1.el10.x86_64                       465/483 
-   Running scriptlet: pipewire-1.4.6-1.el10.x86_64                       465/483 
- Created symlink '/etc/systemd/user/sockets.target.wants/pipewire.socket' → '/usr/lib/systemd/user/pipewire.socket'.
- 
-   Installing       : pipewire-libs-1.4.6-1.el10.x86_64                  466/483 
-   Installing       : wireplumber-0.5.10-1.el10.x86_64                   467/483 
-   Installing       : wireplumber-libs-0.5.10-1.el10.x86_64              468/483 
-   Installing       : pipewire-jack-audio-connection-kit-1.4.6-1.el10.   469/483 
-   Installing       : pipewire-jack-audio-connection-kit-libs-1.4.6-1.   470/483 
-   Installing       : ModemManager-glib-1.22.0-7.el10.x86_64             471/483 
-   Running scriptlet: geoclue2-2.7.2-1.el10.x86_64                       472/483 
-   Installing       : geoclue2-2.7.2-1.el10.x86_64                       472/483 
-   Running scriptlet: geoclue2-2.7.2-1.el10.x86_64                       472/483 
-   Installing       : xdg-desktop-portal-1.20.0-2.el10.x86_64            473/483 
-   Running scriptlet: xdg-desktop-portal-1.20.0-2.el10.x86_64            473/483 
-   Installing       : libcanberra-gtk3-0.30-37.el10.x86_64               474/483 
-   Installing       : gtk3-3.24.43-4.el10.x86_64                         475/483 
-   Installing       : xdg-desktop-portal-gtk-1.15.3-1.el10.x86_64        476/483 
-   Running scriptlet: xdg-desktop-portal-gtk-1.15.3-1.el10.x86_64        476/483 
-   Installing       : java-21-openjdk-1:21.0.8.0.9-1.el10.x86_64         477/483 
-   Running scriptlet: java-21-openjdk-1:21.0.8.0.9-1.el10.x86_64         477/483 
-   Installing       : java-21-openjdk-devel-1:21.0.8.0.9-1.el10.x86_64   478/483 
-   Running scriptlet: java-21-openjdk-devel-1:21.0.8.0.9-1.el10.x86_64   478/483 
-   Installing       : R-java-devel-4.5.2-1.el10_2.x86_64                 479/483 
-   Installing       : R-devel-4.5.2-1.el10_2.x86_64                      480/483 
-   Installing       : R-4.5.2-1.el10_2.x86_64                            481/483 
-   Installing       : pipewire-alsa-1.4.6-1.el10.x86_64                  482/483 
-   Installing       : pipewire-pulseaudio-1.4.6-1.el10.x86_64            483/483 
-   Running scriptlet: pipewire-pulseaudio-1.4.6-1.el10.x86_64            483/483 
- Created symlink '/etc/systemd/user/sockets.target.wants/pipewire-pulse.socket' → '/usr/lib/systemd/user/pipewire-pulse.socket'.
- 
-   Running scriptlet: texlive-base-13:20240311-6.el10.noarch             483/483 
-   Running scriptlet: dconf-0.40.0-16.el10.x86_64                        483/483 
-   Running scriptlet: wireplumber-0.5.10-1.el10.x86_64                   483/483 
- Created symlink '/etc/systemd/user/pipewire-session-manager.service' → '/usr/lib/systemd/user/wireplumber.service'.
- Created symlink '/etc/systemd/user/pipewire.service.wants/wireplumber.service' → '/usr/lib/systemd/user/wireplumber.service'.
- 
-   Running scriptlet: java-21-openjdk-1:21.0.8.0.9-1.el10.x86_64         483/483 
-   Running scriptlet: java-21-openjdk-devel-1:21.0.8.0.9-1.el10.x86_64   483/483
-  
-   Running scriptlet: pipewire-pulseaudio-1.4.6-1.el10.x86_64            483/483 
- Creating group 'pipewire' with GID 995.
- Creating user 'pipewire' (PipeWire System Daemon) with UID 995 and GID 995.
- Creating group 'systemd-coredump' with GID 994.
- Creating user 'systemd-coredump' (systemd Core Dumper) with UID 994 and GID 994.
- 
- 
- Installed:
-   ModemManager-glib-1.22.0-7.el10.x86_64                                        
-   R-4.5.2-1.el10_2.x86_64                                                       
-   R-core-4.5.2-1.el10_2.x86_64                                                  
-   R-core-devel-4.5.2-1.el10_2.x86_64                                            
-   R-devel-4.5.2-1.el10_2.x86_64                                                 
-   R-java-4.5.2-1.el10_2.x86_64                                                  
-   R-java-devel-4.5.2-1.el10_2.x86_64                                            
-   R-rpm-macros-1.2.1-12.el10_1.noarch                                           
-   adwaita-cursor-theme-46.0-3.el10.noarch                                       
-   adwaita-icon-theme-46.0-3.el10.noarch                                         
-   alsa-lib-1.2.14-1.el10.x86_64                                                 
-   at-spi2-atk-2.56.1-1.el10.x86_64                                              
-   at-spi2-core-2.56.1-1.el10.x86_64                                             
-   atk-2.56.1-1.el10.x86_64                                                      
-   avahi-glib-0.9~rc2-2.el10.x86_64                                              
-   bluez-libs-5.83-1.el10.x86_64                                                 
-   bzip2-devel-1.0.8-25.el10.x86_64                                              
-   colord-libs-1.4.7-6.el10.x86_64                                               
-   dconf-0.40.0-16.el10.x86_64                                                   
-   desktop-file-utils-0.26-14.el10.x86_64                                        
-   devscripts-checkbashisms-2.25.5-1.el10_1.noarch                               
-   exempi-2.6.4-7.el10.x86_64                                                    
-   exiv2-0.28.3-5.el10.x86_64                                                    
-   exiv2-libs-0.28.3-5.el10.x86_64                                               
-   fdk-aac-free-2.0.0-15.el10.x86_64                                             
-   fftw-libs-single-3.3.10-15.el10.x86_64                                        
-   flac-libs-1.4.3-6.el10.x86_64                                                 
-   flexiblas-3.4.2-3.el10.x86_64                                                 
-   flexiblas-devel-3.4.2-3.el10.x86_64                                           
-   flexiblas-netlib-3.4.2-3.el10.x86_64                                          
-   flexiblas-netlib64-3.4.2-3.el10.x86_64                                        
-   flexiblas-openblas-openmp-3.4.2-3.el10.x86_64                                 
-   flexiblas-openblas-openmp64-3.4.2-3.el10.x86_64                               
-   fuse-common-3.16.2-5.el10.x86_64                                              
-   fuse3-3.16.2-5.el10.x86_64                                                    
-   fuse3-libs-3.16.2-5.el10.x86_64                                               
-   gcc-gfortran-14.3.1-2.3.el10.x86_64                                           
-   gdk-pixbuf2-modules-2.42.12-4.el10.x86_64                                     
-   geoclue2-2.7.2-1.el10.x86_64                                                  
-   ghostscript-10.02.1-16.el10.x86_64                                            
-   ghostscript-tools-fonts-10.02.1-16.el10.noarch                                
-   ghostscript-tools-printing-10.02.1-16.el10.noarch                             
-   giflib-5.2.1-22.el10.x86_64                                                   
-   glib-networking-2.80.0-3.el10.x86_64                                          
-   gobject-introspection-1.79.1-6.el10.x86_64                                    
-   graphene-1.10.6-10.el10.x86_64                                                
-   gsettings-desktop-schemas-47.1-3.el10.x86_64                                  
-   gsm-1.0.22-8.el10.x86_64                                                      
-   gstreamer1-1.24.11-1.el10.x86_64                                              
-   gstreamer1-plugins-base-1.24.11-1.el10.x86_64                                 
-   gtk-update-icon-cache-3.24.43-4.el10.x86_64                                   
-   gtk3-3.24.43-4.el10.x86_64                                                    
-   hicolor-icon-theme-0.17-20.el10.noarch                                        
-   hwdata-0.379-10.6.el10.noarch                                                 
-   info-7.1-6.el10.x86_64                                                        
-   inih-58-3.el10.x86_64                                                         
-   inih-cpp-58-3.el10.x86_64                                                     
-   intel-vsc-firmware-20250812-19.el10.noarch                                    
-   iso-codes-4.16.0-6.el10.noarch                                                
-   java-21-openjdk-1:21.0.8.0.9-1.el10.x86_64                                    
-   java-21-openjdk-devel-1:21.0.8.0.9-1.el10.x86_64                              
-   java-21-openjdk-headless-1:21.0.8.0.9-1.el10.x86_64                           
-   json-glib-1.8.0-5.el10.x86_64                                                 
-   kbd-2.6.4-7.el10.x86_64                                                       
-   kbd-legacy-2.6.4-7.el10.noarch                                                
-   kbd-misc-2.6.4-7.el10.noarch                                                  
-   kmod-31-12.el10.x86_64                                                        
-   lame-libs-3.100-19.el10.x86_64                                                
-   libICE-1.1.1-5.el10.x86_64                                                    
-   libRmath-4.5.2-1.el10_2.x86_64                                                
-   libRmath-devel-4.5.2-1.el10_2.x86_64                                          
-   libSM-1.2.4-5.el10.x86_64                                                     
-   libXcomposite-0.4.6-5.el10.x86_64                                             
-   libXcursor-1.2.1-9.el10.x86_64                                                
-   libXdamage-1.1.6-5.el10.x86_64                                                
-   libXfixes-6.0.1-5.el10.x86_64                                                 
-   libXi-1.8.1-7.el10.x86_64                                                     
-   libXinerama-1.1.5-8.el10.x86_64                                               
-   libXmu-1.1.4-8.el10.x86_64                                                    
-   libXrandr-1.5.4-5.el10.x86_64                                                 
-   libXt-1.3.0-5.el10.x86_64                                                     
-   libXtst-1.2.4-8.el10.x86_64                                                   
-   libXv-1.0.12-5.el10.x86_64                                                    
-   libXxf86vm-1.1.5-8.el10.x86_64                                                
-   libasyncns-0.8-30.el10.x86_64                                                 
-   libatomic-14.3.1-2.3.el10.x86_64                                              
-   libcamera-0.3.2-4.el10.x86_64                                                 
-   libcamera-ipa-0.3.2-4.el10.x86_64                                             
-   libcanberra-0.30-37.el10.x86_64                                               
-   libcanberra-gtk3-0.30-37.el10.x86_64                                          
-   libdeflate-1.24-1.el10_1.x86_64                                               
-   libdeflate-devel-1.24-1.el10_1.x86_64                                         
-   libdex-0.8.1-1.el10.x86_64                                                    
-   libdrm-2.4.123-1.el10.x86_64                                                  
-   libepoxy-1.5.10-9.el10.x86_64                                                 
-   libexif-0.6.24-9.el10.x86_64                                                  
-   libfontenc-1.1.7-5.el10.x86_64                                                
-   libgexiv2-0.14.3-3.el10.x86_64                                                
-   libgfortran-14.3.1-2.3.el10.x86_64                                            
-   libglvnd-1:1.7.0-7.el10.x86_64                                                
-   libglvnd-egl-1:1.7.0-7.el10.x86_64                                            
-   libglvnd-glx-1:1.7.0-7.el10.x86_64                                            
-   libgsf-1.14.53-2.el10.x86_64                                                  
-   libgudev-238-7.el10.x86_64                                                    
-   libgusb-0.4.9-4.el10.x86_64                                                   
-   libgxps-0.3.2-10.el10.x86_64                                                  
-   libicu-devel-74.2-5.el10.x86_64                                               
-   libiptcdata-1.0.5-20.el10.x86_64                                              
-   liblc3-1.0.4-6.el10.x86_64                                                    
-   libldac-2.0.2.3-17.el10.x86_64                                                
-   libnotify-0.8.6-1.el10.x86_64                                                 
-   libogg-2:1.3.5-10.el10.x86_64                                                 
-   libosinfo-1.11.0-8.el10.x86_64                                                
-   libpciaccess-0.16-16.el10.x86_64                                              
-   libportal-0.9.0-2.el10.x86_64                                                 
-   libproxy-0.5.5-4.el10.x86_64                                                  
-   libpsl-0.21.5-6.el10.x86_64                                                   
-   libquadmath-14.3.1-2.3.el10.x86_64                                            
-   libquadmath-devel-14.3.1-2.3.el10.x86_64                                      
-   libsbc-2.0-6.el10.x86_64                                                      
-   libsndfile-1.2.2-5.el10.x86_64                                                
-   libsoup3-3.6.5-5.el10.x86_64                                                  
-   libtdb-1.4.14-100.el10.x86_64                                                 
-   libtheora-1:1.1.1-39.el10.x86_64                                              
-   libtidy-5.8.0-9.el10_0.x86_64                                                 
-   libtirpc-1.3.5-1.el10.x86_64                                                  
-   libtirpc-devel-1.3.5-1.el10.x86_64                                            
-   libtracker-sparql-3.7.3-4.el10.x86_64                                         
-   liburing-2.12-1.el10.x86_64                                                   
-   libvorbis-1:1.3.7-12.el10.x86_64                                              
-   libwayland-client-1.23.1-1.el10.x86_64                                        
-   libwayland-cursor-1.23.1-1.el10.x86_64                                        
-   libwayland-egl-1.23.1-1.el10.x86_64                                           
-   libwayland-server-1.23.1-1.el10.x86_64                                        
-   libxkbcommon-1.7.0-4.el10.x86_64                                              
-   libxshmfence-1.3.2-5.el10.x86_64                                              
-   linux-firmware-whence-20250812-19.el10.noarch                                 
-   lksctp-tools-1.0.21-1.el10.x86_64                                             
-   llvm-filesystem-20.1.8-1.el10.x86_64                                          
-   llvm-libs-20.1.8-1.el10.x86_64                                                
-   low-memory-monitor-2.1-12.el10.x86_64                                         
-   mesa-dri-drivers-25.0.7-5.el10.x86_64                                         
-   mesa-filesystem-25.0.7-5.el10.x86_64                                          
-   mesa-libEGL-25.0.7-5.el10.x86_64                                              
-   mesa-libGL-25.0.7-5.el10.x86_64                                               
-   mesa-libgbm-25.0.7-5.el10.x86_64                                              
-   mkfontscale-1.2.2-8.el10.x86_64                                               
-   mpg123-libs-1.32.9-1.el10.x86_64                                              
-   openblas-0.3.29-2.el10.x86_64                                                 
-   openblas-openmp-0.3.29-2.el10.x86_64                                          
-   openblas-openmp64-0.3.29-2.el10.x86_64                                        
-   opus-1.4-6.el10.x86_64                                                        
-   orc-0.4.39-2.el10.x86_64                                                      
-   osinfo-db-20250606-1.el10.noarch                                              
-   osinfo-db-tools-1.11.0-8.el10.x86_64                                          
-   pcre2-devel-10.44-1.el10.3.x86_64                                             
-   pcre2-utf16-10.44-1.el10.3.x86_64                                             
-   pcre2-utf32-10.44-1.el10.3.x86_64                                             
-   perl-Class-Inspector-1.36-19.el10.noarch                                      
-   perl-Exporter-Tiny-1.006002-7.el10.noarch                                     
-   perl-File-ShareDir-1.118-14.el10.noarch                                       
-   perl-Filter-2:1.64-512.el10.x86_64                                            
-   perl-Lexical-SealRequireHints-0.012-1.el10_0.x86_64                           
-   perl-Lexical-Var-0.010-1.el10_0.x86_64                                        
-   perl-List-MoreUtils-0.430-15.el10.noarch                                      
-   perl-List-MoreUtils-XS-0.430-18.el10.x86_64                                   
-   perl-Params-Util-1.102-19.el10.x86_64                                         
-   perl-Text-Unidecode-1.30-27.el10.noarch                                       
-   perl-Unicode-EastAsianWidth-12.0-16.el10.noarch                               
-   perl-Unicode-Normalize-1.32-511.el10.x86_64                                   
-   perl-XML-XPath-1.48-8.el10.noarch                                             
-   perl-encoding-4:3.00-511.el10.x86_64                                          
-   perl-libintl-perl-1.33-11.el10.x86_64                                         
-   perl-open-1.13-514.el10.noarch                                                
-   pipewire-1.4.6-1.el10.x86_64                                                  
-   pipewire-alsa-1.4.6-1.el10.x86_64                                             
-   pipewire-jack-audio-connection-kit-1.4.6-1.el10.x86_64                        
-   pipewire-jack-audio-connection-kit-libs-1.4.6-1.el10.x86_64                   
-   pipewire-libs-1.4.6-1.el10.x86_64                                             
-   pipewire-plugin-libcamera-1.4.6-1.el10.x86_64                                 
-   pipewire-pulseaudio-1.4.6-1.el10.x86_64                                       
-   publicsuffix-list-dafsa-20240107-5.el10.noarch                                
-   pulseaudio-libs-17.0-6.el10.x86_64                                            
-   rtkit-0.11-68.el10.x86_64                                                     
-   sound-theme-freedesktop-0.8-23.el10.noarch                                    
-   spirv-tools-libs-2025.2-1.el10.x86_64                                         
-   systemd-udev-257-16.el10.x86_64                                               
-   tcl-1:8.6.13-4.el10.x86_64                                                    
-   teckit-2.5.12-4.el10.x86_64                                                   
-   texinfo-7.1-6.el10.x86_64                                                     
-   texinfo-tex-7.1-6.el10.x86_64                                                 
-   texlive-ae-13:20240311-6.el10.noarch                                          
-   texlive-algorithms-13:20240311-6.el10.noarch                                  
-   texlive-alphalph-13:20240311-6.el10.noarch                                    
-   texlive-amscls-13:20240311-6.el10.noarch                                      
-   texlive-amsfonts-13:20240311-6.el10.noarch                                    
-   texlive-amsmath-13:20240311-6.el10.noarch                                     
-   texlive-anysize-13:20240311-6.el10.noarch                                     
-   texlive-atbegshi-13:20240311-6.el10.noarch                                    
-   texlive-attachfile-13:20240311-6.el10.noarch                                  
-   texlive-attachfile2-13:20240311-6.el10.noarch                                 
-   texlive-atveryend-13:20240311-6.el10.noarch                                   
-   texlive-auxhook-13:20240311-6.el10.noarch                                     
-   texlive-avantgar-13:20240311-6.el10.noarch                                    
-   texlive-babel-13:20240311-6.el10.noarch                                       
-   texlive-babel-english-13:20240311-6.el10.noarch                               
-   texlive-babelbib-13:20240311-6.el10.noarch                                    
-   texlive-base-13:20240311-6.el10.noarch                                        
-   texlive-beamer-13:20240311-6.el10.noarch                                      
-   texlive-bera-13:20240311-6.el10.noarch                                        
-   texlive-beton-13:20240311-6.el10.noarch                                       
-   texlive-bibtex-13:20240311-6.el10.x86_64                                      
-   texlive-bidi-13:20240311-6.el10.noarch                                        
-   texlive-bigintcalc-13:20240311-6.el10.noarch                                  
-   texlive-bitset-13:20240311-6.el10.noarch                                      
-   texlive-bookman-13:20240311-6.el10.noarch                                     
-   texlive-bookmark-13:20240311-6.el10.noarch                                    
-   texlive-booktabs-13:20240311-6.el10.noarch                                    
-   texlive-breakurl-13:20240311-6.el10.noarch                                    
-   texlive-breqn-13:20240311-6.el10.noarch                                       
-   texlive-caption-13:20240311-6.el10.noarch                                     
-   texlive-carlisle-13:20240311-6.el10.noarch                                    
-   texlive-catchfile-13:20240311-6.el10.noarch                                   
-   texlive-changepage-13:20240311-6.el10.noarch                                  
-   texlive-charter-13:20240311-6.el10.noarch                                     
-   texlive-chngcntr-13:20240311-6.el10.noarch                                    
-   texlive-cite-13:20240311-6.el10.noarch                                        
-   texlive-cm-13:20240311-6.el10.noarch                                          
-   texlive-cm-super-13:20240311-6.el10.noarch                                    
-   texlive-cmap-13:20240311-6.el10.noarch                                        
-   texlive-cmextra-13:20240311-6.el10.noarch                                     
-   texlive-collection-basic-13:20240311-6.el10.noarch                            
-   texlive-collection-fontsrecommended-13:20240311-6.el10.noarch                 
-   texlive-collection-latex-13:20240311-6.el10.noarch                            
-   texlive-collection-latexrecommended-13:20240311-6.el10.noarch                 
-   texlive-colorprofiles-13:20240311-6.el10.noarch                               
-   texlive-colortbl-13:20240311-6.el10.noarch                                    
-   texlive-count1to-13:20240311-6.el10.noarch                                    
-   texlive-courier-13:20240311-6.el10.noarch                                     
-   texlive-crop-13:20240311-6.el10.noarch                                        
-   texlive-csquotes-13:20240311-6.el10.noarch                                    
-   texlive-ctable-13:20240311-6.el10.noarch                                      
-   texlive-currfile-13:20240311-6.el10.noarch                                    
-   texlive-dvipdfmx-13:20240311-6.el10.x86_64                                    
-   texlive-dvips-13:20240311-6.el10.x86_64                                       
-   texlive-ec-13:20240311-6.el10.noarch                                          
-   texlive-enctex-13:20240311-6.el10.noarch                                      
-   texlive-enumitem-13:20240311-6.el10.noarch                                    
-   texlive-epsf-13:20240311-6.el10.noarch                                        
-   texlive-epstopdf-pkg-13:20240311-6.el10.noarch                                
-   texlive-eso-pic-13:20240311-6.el10.noarch                                     
-   texlive-etex-13:20240311-6.el10.noarch                                        
-   texlive-etex-pkg-13:20240311-6.el10.noarch                                    
-   texlive-etexcmds-13:20240311-6.el10.noarch                                    
-   texlive-etoolbox-13:20240311-6.el10.noarch                                    
-   texlive-euenc-13:20240311-6.el10.noarch                                       
-   texlive-euler-13:20240311-6.el10.noarch                                       
-   texlive-euro-13:20240311-6.el10.noarch                                        
-   texlive-eurosym-13:20240311-6.el10.noarch                                     
-   texlive-everysel-13:20240311-6.el10.noarch                                    
-   texlive-everyshi-13:20240311-6.el10.noarch                                    
-   texlive-extsizes-13:20240311-6.el10.noarch                                    
-   texlive-fancybox-13:20240311-6.el10.noarch                                    
-   texlive-fancyhdr-13:20240311-6.el10.noarch                                    
-   texlive-fancyref-13:20240311-6.el10.noarch                                    
-   texlive-fancyvrb-13:20240311-6.el10.noarch                                    
-   texlive-filecontents-13:20240311-6.el10.noarch                                
-   texlive-filehook-13:20240311-6.el10.noarch                                    
-   texlive-finstrut-13:20240311-6.el10.noarch                                    
-   texlive-firstaid-13:20240311-6.el10.noarch                                    
-   texlive-fix2col-13:20240311-6.el10.noarch                                     
-   texlive-float-13:20240311-6.el10.noarch                                       
-   texlive-fontspec-13:20240311-6.el10.noarch                                    
-   texlive-footmisc-13:20240311-6.el10.noarch                                    
-   texlive-footnotehyper-13:20240311-6.el10.noarch                               
-   texlive-fp-13:20240311-6.el10.noarch                                          
-   texlive-fpl-13:20240311-6.el10.noarch                                         
-   texlive-geometry-13:20240311-6.el10.noarch                                    
-   texlive-gettitlestring-13:20240311-6.el10.noarch                              
-   texlive-glyphlist-13:20240311-6.el10.noarch                                   
-   texlive-graphics-13:20240311-6.el10.noarch                                    
-   texlive-graphics-cfg-13:20240311-6.el10.noarch                                
-   texlive-graphics-def-13:20240311-6.el10.noarch                                
-   texlive-grfext-13:20240311-6.el10.noarch                                      
-   texlive-grffile-13:20240311-6.el10.noarch                                     
-   texlive-helvetic-13:20240311-6.el10.noarch                                    
-   texlive-hobsub-13:20240311-6.el10.noarch                                      
-   texlive-hologo-13:20240311-6.el10.noarch                                      
-   texlive-hopatch-13:20240311-6.el10.noarch                                     
-   texlive-hycolor-13:20240311-6.el10.noarch                                     
-   texlive-hypcap-13:20240311-6.el10.noarch                                      
-   texlive-hypdoc-13:20240311-6.el10.noarch                                      
-   texlive-hyperref-13:20240311-6.el10.noarch                                    
-   texlive-hyph-utf8-13:20240311-6.el10.noarch                                   
-   texlive-hyphen-base-13:20240311-6.el10.noarch                                 
-   texlive-hyphenex-13:20240311-6.el10.noarch                                    
-   texlive-ifmtarg-13:20240311-6.el10.noarch                                     
-   texlive-ifplatform-13:20240311-6.el10.noarch                                  
-   texlive-iftex-13:20240311-6.el10.noarch                                       
-   texlive-index-13:20240311-6.el10.noarch                                       
-   texlive-infwarerr-13:20240311-6.el10.noarch                                   
-   texlive-intcalc-13:20240311-6.el10.noarch                                     
-   texlive-jknapltx-13:20240311-6.el10.noarch                                    
-   texlive-kastrup-13:20240311-6.el10.noarch                                     
-   texlive-knuth-lib-13:20240311-6.el10.noarch                                   
-   texlive-knuth-local-13:20240311-6.el10.noarch                                 
-   texlive-koma-script-13:20240311-6.el10.noarch                                 
-   texlive-kpathsea-13:20240311-6.el10.x86_64                                    
-   texlive-kvdefinekeys-13:20240311-6.el10.noarch                                
-   texlive-kvoptions-13:20240311-6.el10.noarch                                   
-   texlive-kvsetkeys-13:20240311-6.el10.noarch                                   
-   texlive-l3backend-13:20240311-6.el10.noarch                                   
-   texlive-l3experimental-13:20240311-6.el10.noarch                              
-   texlive-l3kernel-13:20240311-6.el10.noarch                                    
-   texlive-l3packages-13:20240311-6.el10.noarch                                  
-   texlive-latex-13:20240311-6.el10.noarch                                       
-   texlive-latex-fonts-13:20240311-6.el10.noarch                                 
-   texlive-latexbug-13:20240311-6.el10.noarch                                    
-   texlive-latexconfig-13:20240311-6.el10.noarch                                 
-   texlive-letltxmacro-13:20240311-6.el10.noarch                                 
-   texlive-lib-13:20240311-6.el10.x86_64                                         
-   texlive-lineno-13:20240311-6.el10.noarch                                      
-   texlive-listings-13:20240311-6.el10.noarch                                    
-   texlive-lm-13:20240311-6.el10.noarch                                          
-   texlive-lm-math-13:20240311-6.el10.noarch                                     
-   texlive-ltabptch-13:20240311-6.el10.noarch                                    
-   texlive-ltxcmds-13:20240311-6.el10.noarch                                     
-   texlive-ltxmisc-13:20240311-6.el10.noarch                                     
-   texlive-lua-alt-getopt-13:20240311-6.el10.noarch                              
-   texlive-lua-uni-algos-13:20240311-6.el10.noarch                               
-   texlive-luahbtex-13:20240311-6.el10.x86_64                                    
-   texlive-lualatex-math-13:20240311-6.el10.noarch                               
-   texlive-lualibs-13:20240311-6.el10.noarch                                     
-   texlive-luaotfload-13:20240311-6.el10.noarch                                  
-   texlive-luatex-13:20240311-6.el10.x86_64                                      
-   texlive-luatexbase-13:20240311-6.el10.noarch                                  
-   texlive-lwarp-13:20240311-6.el10.noarch                                       
-   texlive-makecmds-13:20240311-6.el10.noarch                                    
-   texlive-makeindex-13:20240311-6.el10.x86_64                                   
-   texlive-manfnt-font-13:20240311-6.el10.noarch                                 
-   texlive-marginnote-13:20240311-6.el10.noarch                                  
-   texlive-marvosym-13:20240311-6.el10.noarch                                    
-   texlive-mathpazo-13:20240311-6.el10.noarch                                    
-   texlive-mathspec-13:20240311-6.el10.noarch                                    
-   texlive-mathtools-13:20240311-6.el10.noarch                                   
-   texlive-mdwtools-13:20240311-6.el10.noarch                                    
-   texlive-memoir-13:20240311-6.el10.noarch                                      
-   texlive-metafont-13:20240311-6.el10.x86_64                                    
-   texlive-metalogo-13:20240311-6.el10.noarch                                    
-   texlive-mflogo-13:20240311-6.el10.noarch                                      
-   texlive-mflogo-font-13:20240311-6.el10.noarch                                 
-   texlive-mfnfss-13:20240311-6.el10.noarch                                      
-   texlive-mfware-13:20240311-6.el10.x86_64                                      
-   texlive-microtype-13:20240311-6.el10.noarch                                   
-   texlive-minitoc-13:20240311-6.el10.noarch                                     
-   texlive-mnsymbol-13:20240311-6.el10.noarch                                    
-   texlive-modes-13:20240311-6.el10.noarch                                       
-   texlive-mparhack-13:20240311-6.el10.noarch                                    
-   texlive-mptopdf-13:20240311-6.el10.noarch                                     
-   texlive-multido-13:20240311-6.el10.noarch                                     
-   texlive-multitoc-13:20240311-6.el10.noarch                                    
-   texlive-natbib-13:20240311-6.el10.noarch                                      
-   texlive-ncntrsbk-13:20240311-6.el10.noarch                                    
-   texlive-newfloat-13:20240311-6.el10.noarch                                    
-   texlive-notoccite-13:20240311-6.el10.noarch                                   
-   texlive-ntgclass-13:20240311-6.el10.noarch                                    
-   texlive-oberdiek-13:20240311-6.el10.noarch                                    
-   texlive-palatino-13:20240311-6.el10.noarch                                    
-   texlive-paralist-13:20240311-6.el10.noarch                                    
-   texlive-parallel-13:20240311-6.el10.noarch                                    
-   texlive-parskip-13:20240311-6.el10.noarch                                     
-   texlive-pdfcol-13:20240311-6.el10.noarch                                      
-   texlive-pdfcolfoot-13:20240311-6.el10.noarch                                  
-   texlive-pdfcolmk-13:20240311-6.el10.noarch                                    
-   texlive-pdfescape-13:20240311-6.el10.noarch                                   
-   texlive-pdflscape-13:20240311-6.el10.noarch                                   
-   texlive-pdfmanagement-testphase-13:20240311-6.el10.noarch                     
-   texlive-pdfpages-13:20240311-6.el10.noarch                                    
-   texlive-pdftex-13:20240311-6.el10.x86_64                                      
-   texlive-pdftexcmds-13:20240311-6.el10.noarch                                  
-   texlive-pgf-13:20240311-6.el10.noarch                                         
-   texlive-placeins-13:20240311-6.el10.noarch                                    
-   texlive-plain-13:20240311-6.el10.noarch                                       
-   texlive-polyglossia-13:20240311-6.el10.noarch                                 
-   texlive-psfrag-13:20240311-6.el10.noarch                                      
-   texlive-pslatex-13:20240311-6.el10.noarch                                     
-   texlive-psnfss-13:20240311-6.el10.noarch                                      
-   texlive-pspicture-13:20240311-6.el10.noarch                                   
-   texlive-pst-3d-13:20240311-6.el10.noarch                                      
-   texlive-pst-arrow-13:20240311-6.el10.noarch                                   
-   texlive-pst-coil-13:20240311-6.el10.noarch                                    
-   texlive-pst-eps-13:20240311-6.el10.noarch                                     
-   texlive-pst-fill-13:20240311-6.el10.noarch                                    
-   texlive-pst-grad-13:20240311-6.el10.noarch                                    
-   texlive-pst-math-13:20240311-6.el10.noarch                                    
-   texlive-pst-node-13:20240311-6.el10.noarch                                    
-   texlive-pst-plot-13:20240311-6.el10.noarch                                    
-   texlive-pst-text-13:20240311-6.el10.noarch                                    
-   texlive-pst-tools-13:20240311-6.el10.noarch                                   
-   texlive-pst-tree-13:20240311-6.el10.noarch                                    
-   texlive-pstricks-13:20240311-6.el10.noarch                                    
-   texlive-pstricks-add-13:20240311-6.el10.noarch                                
-   texlive-pxfonts-13:20240311-6.el10.noarch                                     
-   texlive-ragged2e-13:20240311-6.el10.noarch                                    
-   texlive-rcs-13:20240311-6.el10.noarch                                         
-   texlive-realscripts-13:20240311-6.el10.noarch                                 
-   texlive-refcount-13:20240311-6.el10.noarch                                    
-   texlive-rerunfilecheck-13:20240311-6.el10.noarch                              
-   texlive-rsfs-13:20240311-6.el10.noarch                                        
-   texlive-sansmath-13:20240311-6.el10.noarch                                    
-   texlive-sansmathaccent-13:20240311-6.el10.noarch                              
-   texlive-sauerj-13:20240311-6.el10.noarch                                      
-   texlive-section-13:20240311-6.el10.noarch                                     
-   texlive-seminar-13:20240311-6.el10.noarch                                     
-   texlive-sepnum-13:20240311-6.el10.noarch                                      
-   texlive-setspace-13:20240311-6.el10.noarch                                    
-   texlive-showexpl-13:20240311-6.el10.noarch                                    
-   texlive-stringenc-13:20240311-6.el10.noarch                                   
-   texlive-subfig-13:20240311-6.el10.noarch                                      
-   texlive-symbol-13:20240311-6.el10.noarch                                      
-   texlive-tex-13:20240311-6.el10.x86_64                                         
-   texlive-tex-gyre-13:20240311-6.el10.noarch                                    
-   texlive-tex-gyre-math-13:20240311-6.el10.noarch                               
-   texlive-tex-ini-files-13:20240311-6.el10.noarch                               
-   texlive-texlive-common-doc-13:20240311-6.el10.noarch                          
-   texlive-texlive-en-13:20240311-6.el10.noarch                                  
-   texlive-texlive-msg-translations-13:20240311-6.el10.noarch                    
-   texlive-texlive-scripts-13:20240311-6.el10.noarch                             
-   texlive-texlive-scripts-extra-13:20240311-6.el10.noarch                       
-   texlive-texlive.infra-13:20240311-6.el10.noarch                               
-   texlive-textcase-13:20240311-6.el10.noarch                                    
-   texlive-thumbpdf-13:20240311-6.el10.noarch                                    
-   texlive-times-13:20240311-6.el10.noarch                                       
-   texlive-tipa-13:20240311-6.el10.noarch                                        
-   texlive-titlesec-13:20240311-6.el10.noarch                                    
-   texlive-tools-13:20240311-6.el10.noarch                                       
-   texlive-translator-13:20240311-6.el10.noarch                                  
-   texlive-txfonts-13:20240311-6.el10.noarch                                     
-   texlive-typehtml-13:20240311-6.el10.noarch                                    
-   texlive-ucharcat-13:20240311-6.el10.noarch                                    
-   texlive-ucs-13:20240311-6.el10.noarch                                         
-   texlive-underscore-13:20240311-6.el10.noarch                                  
-   texlive-unicode-data-13:20240311-6.el10.noarch                                
-   texlive-unicode-math-13:20240311-6.el10.noarch                                
-   texlive-uniquecounter-13:20240311-6.el10.noarch                               
-   texlive-url-13:20240311-6.el10.noarch                                         
-   texlive-utopia-13:20240311-6.el10.noarch                                      
-   texlive-varwidth-13:20240311-6.el10.noarch                                    
-   texlive-wasy-13:20240311-6.el10.noarch                                        
-   texlive-wasy-type1-13:20240311-6.el10.noarch                                  
-   texlive-wasysym-13:20240311-6.el10.noarch                                     
-   texlive-xcolor-13:20240311-6.el10.noarch                                      
-   texlive-xetex-13:20240311-6.el10.x86_64                                       
-   texlive-xetexconfig-13:20240311-6.el10.noarch                                 
-   texlive-xfrac-13:20240311-6.el10.noarch                                       
-   texlive-xifthen-13:20240311-6.el10.noarch                                     
-   texlive-xkeyval-13:20240311-6.el10.noarch                                     
-   texlive-xltxtra-13:20240311-6.el10.noarch                                     
-   texlive-xunicode-13:20240311-6.el10.noarch                                    
-   texlive-zapfchan-13:20240311-6.el10.noarch                                    
-   texlive-zapfding-13:20240311-6.el10.noarch                                    
-   texlive-zref-13:20240311-6.el10.noarch                                        
-   tidy-5.8.0-9.el10_0.x86_64                                                    
-   tk-1:8.6.13-5.el10.x86_64                                                     
-   tracker-3.7.3-4.el10.x86_64                                                   
-   tracker-miners-3.7.3-4.el10.x86_64                                            
-   tre-0.8.0-47.20140228gitc2f5d13.el10_1.x86_64                                 
-   tre-common-0.8.0-47.20140228gitc2f5d13.el10_1.noarch                          
-   tre-devel-0.8.0-47.20140228gitc2f5d13.el10_1.x86_64                           
-   ttmkfdir-3.0.9-72.el10.x86_64                                                 
-   tzdata-java-2025b-2.el10.noarch                                               
-   upower-1.90.9-1.el10.x86_64                                                   
-   upower-libs-1.90.9-1.el10.x86_64                                              
-   webrtc-audio-processing-1.3-5.el10.x86_64                                     
-   wireplumber-0.5.10-1.el10.x86_64                                              
-   wireplumber-libs-0.5.10-1.el10.x86_64                                         
-   xdg-desktop-portal-1.20.0-2.el10.x86_64                                       
-   xdg-desktop-portal-gtk-1.15.3-1.el10.x86_64                                   
-   xdg-utils-1.2.0-4.el10.noarch                                                 
-   xkeyboard-config-2.41-3.el10.noarch                                           
-   xorg-x11-fonts-Type1-7.5-40.el10.noarch                                       
-   xprop-1.2.7-3.el10.x86_64                                                     
-   zziplib-0.13.78-2.el10.x86_64                                                 
- 
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "epel-release" "R"
- epel-release-10-5.el10s.noarch
- R-4.5.2-1.el10_2.x86_64

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-r.1.0.0  (cached)
-> retrieved dolog.6.0.0  (cached)
-> installed conf-r.1.0.0
-> retrieved dune.3.20.2  (cached)
-> retrieved orrandomForest.2.0.1  (cached)
-> installed dune.3.20.2
-> installed dolog.6.0.0
-> installed orrandomForest.2.0.1
Done.

<><> orrandomForest.2.0.1 installed successfully ><><><><><><><><><><><><><><><>
=> Please interact with R to install needed things in user-space:
   R
   install.packages('Marix', repos='http://cran.r-project.org')
   install.packages('randomForest', repos='http://cran.r-project.org')
# To update the current shell environment, run: eval $(opam env)
2025-11-10 13:00.06 ---> saved as "037d861591116347bb666211abbddc54a15d9e6c14cee76d4e261ac6e31697ac"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test orrandomForest.2.0.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile orrandomForest 2.0.1 (pinned)
=== install 6 packages
  - install   batteries      3.10.0         [required by cpm]
  - install   camlp-streams  5.0.1          [required by batteries]
  - install   conf-gnuplot   0.1            [required by orrandomForest]
  - install   cpm            12.2.0         [required by orrandomForest]
  - install   num            1.6            [required by batteries]
  - install   ocamlfind      1.9.8          [required by batteries]

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

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

opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
  2. Display the recommended yum 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 "yum" "install" "-y" "gnuplot"
- Last metadata expiration check: 0:07:40 ago on Mon Nov 10 12:52:29 2025.
- No match for argument: gnuplot
- Error: Unable to find a match: gnuplot
[ERROR] System package install failed with exit code 1 at command:
            sudo yum install -y gnuplot
[ERROR] These packages are still missing: gnuplot

[NOTE] You can retry with '--assume-depexts' to skip this check, or run 'opam option depext=false' to permanently disable handling of system packages.

2025-11-10 13:00.10 ---> saved as "02bf37301aca61e95e28a4098aea4daf9eb5fc450f53c65bc93f689104ce2a09"

/home/opam: (run (shell  "opam reinstall --with-test --verbose orrandomForest.2.0.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 \"\\\"centos-10\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'orrandomForest.2.0.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 orrandomForest 2.0.1 (pinned)
=== install 6 packages
  - install   batteries      3.10.0         [required by cpm]
  - install   camlp-streams  5.0.1          [required by batteries]
  - install   conf-gnuplot   0.1            [required by orrandomForest]
  - install   cpm            12.2.0         [required by orrandomForest]
  - install   num            1.6            [required by batteries]
  - install   ocamlfind      1.9.8          [required by batteries]

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

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

opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
  2. Display the recommended yum 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 "yum" "install" "-y" "gnuplot"
- Last metadata expiration check: 0:07:44 ago on Mon Nov 10 12:52:29 2025.
- No match for argument: gnuplot
- Error: Unable to find a match: gnuplot
[ERROR] System package install failed with exit code 1 at command:
            sudo yum install -y gnuplot
[ERROR] These packages are still missing: gnuplot

[NOTE] You can retry with '--assume-depexts' to skip this check, or run 'opam option depext=false' to permanently disable handling of system packages.

'opam reinstall --with-test --verbose orrandomForest.2.0.1' failed.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose orrandomForest.2.0.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 "\"centos-10\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'orrandomForest.2.0.1' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 10
2025-11-10 13:00.30: Job failed: Failed: Build failed
2025-11-10 13:00.30: Log analysis:
2025-11-10 13:00.30: >>> 
[ERROR] System package install failed with exit code 1 at command:
 (score = 20)
2025-11-10 13:00.30: >>> 
[ERROR] These packages are still missing: gnuplot
 (score = 20)
2025-11-10 13:00.30: >>> 
[ERROR] System package install failed with exit code 1 at command:
 (score = 20)
2025-11-10 13:00.30: >>> 
[ERROR] These packages are still missing: gnuplot
 (score = 20)
2025-11-10 13:00.30: System package install failed with exit code 1 at command: