(not at the head of any monitored branch or PR)
2026-01-23 15:10.11: New job: test caisar.5.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29111/head (6fb9bc721893564c7fcc5360575ff8ff9e76bc1c)
                              on fedora-42-ocaml-5.4/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29111/head" && git reset --hard 6fb9bc72
git fetch origin master
git merge --no-edit dc02a35b0eaa39fa73e10f2dfa764b490f859db6
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-42-ocaml-5.4@sha256:b74751ba6ac22a6f19a91dfb20696498aab52c04a5ce04357ab0a12279da8e89
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 caisar.5.0 5.0
RUN opam reinstall caisar.5.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"fedora-42\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'caisar.5.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test caisar.5.0) || true
RUN opam reinstall --with-test --verbose caisar.5.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"fedora-42\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'caisar.5.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-01-23 15:10.11: Using cache hint "ocaml/opam:fedora-42-ocaml-5.4@sha256:b74751ba6ac22a6f19a91dfb20696498aab52c04a5ce04357ab0a12279da8e89-caisar.5.0-6fb9bc721893564c7fcc5360575ff8ff9e76bc1c"
2026-01-23 15:10.11: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-5.4@sha256:b74751ba6ac22a6f19a91dfb20696498aab52c04a5ce04357ab0a12279da8e89)
 (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 caisar.5.0 5.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall caisar.5.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"fedora-42\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'caisar.5.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test caisar.5.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose caisar.5.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"fedora-42\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'caisar.5.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-23 15:10.11: Waiting for resource in pool OCluster
2026-01-23 15:10.11: Waiting for worker…
2026-01-23 15:10.54: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
Updating files:  90% (17481/19256)
Updating files:  91% (17523/19256)
Updating files:  92% (17716/19256)
Updating files:  93% (17909/19256)
Updating files:  94% (18101/19256)
Updating files:  95% (18294/19256)
Updating files:  96% (18486/19256)
Updating files:  97% (18679/19256)
Updating files:  98% (18871/19256)
Updating files:  99% (19064/19256)
Updating files: 100% (19256/19256)
Updating files: 100% (19256/19256), done.
HEAD is now at dc02a35b0e Merge pull request #29268 from ocaml/notty-win-avail-false
Merge made by the 'ort' strategy.
 packages/caisar/caisar.5.0/opam | 66 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 66 insertions(+)
 create mode 100644 packages/caisar/caisar.5.0/opam

(from ocaml/opam:fedora-42-ocaml-5.4@sha256:b74751ba6ac22a6f19a91dfb20696498aab52c04a5ce04357ab0a12279da8e89)
2026-01-23 15:13.11 ---> using "8776fb0af6fc53898862b86f46ca8cee0489b257aca99b5899191e17bb0d5004" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-23 15:13.11 ---> using "b8cca8bfd23834fb7e090e3c27f2170eb8281a065e79536f1e430ddc1b1c8118" from cache

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

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

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-23 15:13.11 ---> using "3585d06f098553452479d6c335da00495554b93675451a57278a9271d623ff6d" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=fedora os-version=42
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-01-23 15:13.11 ---> using "f5857c76864baf8cb3e699c519d757325cd57ff2fcd775d702006da4494b4c41" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-01-23 15:13.11 ---> using "b6df9f59c19836f991f70bcd0501fd40466d07d3a25be361fb57a3445396f9a6" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-23 15:13.34 ---> saved as "0c9f054b4a3cde757c9f196f3b445b2f596aee9e4cea7bc2c7a583acdebc20a1"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-23 15:14.03 ---> saved as "ac46cf9d74bbeb3c60b4d10d6ab37d6430f08a83d83ba10849514d8d772b8606"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
-  Fedora 42 - x86_64 - Updates           100% | 112.2 KiB/s |  15.5 KiB |  00m00s
- Repositories loaded.
- Metadata cache created.
2026-01-23 15:14.09 ---> saved as "abda351aa95f855ecb1289ad10fa16c803dba197264255b7bdc42f17fd0f46f4"

/home/opam: (run (shell "opam pin add -k version -yn caisar.5.0 5.0"))
caisar is now pinned to version 5.0
2026-01-23 15:14.13 ---> saved as "6a8e61d87cce18d7ebcb5fe3c9688655e9ac73298c819690b1e221c762003205"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall caisar.5.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"fedora-42\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'caisar.5.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
caisar.5.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 77 packages
  - install astring                 0.8.5        [required by fpath]
  - install base                    v0.17.3      [required by caisar]
  - install base-bytes              base         [required by csv, ocplib-endian]
  - install base64                  3.5.2        [required by ocaml-protoc-plugin]
  - install bos                     0.2.1        [required by yaml]
  - install caisar                  5.0 (pinned)
  - install cmdliner                2.1.0        [required by caisar]
  - install conf-gmp                5            [required by zarith]
  - install conf-pkg-config         4            [required by ocaml-protoc-plugin]
  - install conf-protoc             4.4.0        [required by ocaml-protoc-plugin]
  - install cppo                    1.8.0        [required by ocplib-endian, ppx_deriving]
  - install csexp                   1.5.2        [required by dune-configurator, dune-private-libs]
  - install csv                     2.4          [required by caisar]
  - install ctypes                  0.24.0       [required by yaml]
  - install dune                    3.21.0       [required by caisar]
  - install dune-build-info         3.21.0       [required by omd]
  - install dune-configurator       3.21.0       [required by base]
  - install dune-private-libs       3.21.0       [required by dune-site]
  - install dune-site               3.21.0       [required by caisar]
  - install dyn                     3.21.0       [required by dune-private-libs]
  - install fmt                     0.11.0       [required by caisar]
  - install fpath                   0.7.3        [required by caisar]
  - install fs-io                   3.21.0       [required by stdune]
  - install integers                0.7.0        [required by ctypes]
  - install jane-street-headers     v0.17.0      [required by time_now]
  - install jst-config              v0.17.0      [required by time_now]
  - install logs                    0.10.0       [required by caisar]
  - install menhir                  20250912     [required by why3]
  - install menhirCST               20250912     [required by menhir]
  - install menhirLib               20250912     [required by caisar]
  - install menhirSdk               20250912     [required by menhir]
  - install ocaml-compiler-libs     v0.17.0      [required by ppxlib]
  - install ocaml-protoc-plugin     6.2.0        [required by caisar]
  - install ocaml_intrinsics_kernel v0.17.1      [required by base]
  - install ocamlbuild              0.16.1       [required by fpath, fmt, logs]
  - install ocamlfind               1.9.8        [required by ppx_deriving, fpath, fmt, etc.]
  - install ocamlgraph              2.2.0        [required by caisar]
  - install ocplib-endian           1.2          [required by caisar]
  - install omd                     2.0.0~alpha4 [required by ocaml-protoc-plugin]
  - install ordering                3.21.0       [required by dyn, stdune]
  - install pp                      2.0.0        [required by dune-private-libs]
  - install ppx_assert              v0.17.0      [required by jst-config]
  - install ppx_base                v0.17.0      [required by time_now]
  - install ppx_cold                v0.17.0      [required by ppx_base]
  - install ppx_compare             v0.17.0      [required by ppx_base]
  - install ppx_derivers            1.2.1        [required by ppx_deriving]
  - install ppx_deriving            6.1.1        [required by caisar]
  - install ppx_deriving_jsonschema 0.0.4        [required by caisar]
  - install ppx_deriving_yaml       0.4.1        [required by caisar]
  - install ppx_deriving_yojson     3.10.0       [required by caisar]
  - install ppx_enumerate           v0.17.0      [required by ppx_base]
  - install ppx_expect              v0.17.3      [required by ocaml-protoc-plugin]
  - install ppx_globalize           v0.17.2      [required by ppx_base]
  - install ppx_hash                v0.17.0      [required by ppx_base]
  - install ppx_here                v0.17.0      [required by ppx_expect]
  - install ppx_inline_test         v0.17.1      [required by caisar]
  - install ppx_optcomp             v0.17.1      [required by time_now]
  - install ppx_sexp_conv           v0.17.1      [required by why3]
  - install ppxlib                  0.37.0       [required by ppx_deriving_yaml, ppx_deriving, ppx_deriving_jsonschema, ppx_deriving_yojson]
  - install ppxlib_jane             v0.17.4      [required by ppx_globalize, ppx_enumerate, ppx_hash]
  - install ptime                   1.2.0        [required by ocaml-protoc-plugin]
  - install re                      1.14.0       [required by caisar]
  - install rresult                 0.7.0        [required by bos]
  - install sexplib0                v0.17.0      [required by base]
  - install stdio                   v0.17.0      [required by caisar]
  - install stdlib-shims            0.3.0        [required by ppxlib, integers]
  - install stdune                  3.21.0       [required by dune-private-libs]
  - install time_now                v0.17.0      [required by ppx_inline_test]
  - install top-closure             3.21.0       [required by stdune]
  - install topkg                   1.1.1        [required by fpath, fmt, logs]
  - install uucp                    17.0.0       [required by omd]
  - install uunf                    17.0.0       [required by omd]
  - install uutf                    1.0.4        [required by omd]
  - install why3                    1.8.2        [required by caisar]
  - install yaml                    3.2.0        [required by caisar]
  - install yojson                  3.0.0        [required by caisar]
  - install zarith                  1.14         [required by caisar]

The following system packages will first need to be installed:
    gmp-devel protobuf-compiler protobuf-devel

<><> 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/sbin/sudo "yum" "install" "-y" "gmp-devel" "protobuf-compiler" "protobuf-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package               Arch   Version        Repository      Size
- Installing:
-  gmp-devel            x86_64 1:6.3.0-4.fc42 fedora     352.3 KiB
-  protobuf-compiler    x86_64 3.19.6-11.fc42 fedora       2.5 MiB
-  protobuf-devel       x86_64 3.19.6-11.fc42 fedora       2.7 MiB
- Installing dependencies:
-  cmake-filesystem     x86_64 3.31.6-2.fc42  fedora       0.0   B
-  gmp-c++              x86_64 1:6.3.0-4.fc42 fedora      27.6 KiB
-  protobuf             x86_64 3.19.6-11.fc42 fedora       3.3 MiB
-  zlib-ng-compat-devel x86_64 2.2.5-2.fc42   updates    107.0 KiB
- 
- Transaction Summary:
-  Installing:         7 packages
- 
- Total size of inbound packages is 2 MiB. Need to download 2 MiB.
- After this operation, 9 MiB extra will be used (install 9 MiB, remove 0 B).
- [1/7] gmp-c++-1:6.3.0-4.fc42.x86_64     100% | 308.2 KiB/s |  18.5 KiB |  00m00s
- [2/7] gmp-devel-1:6.3.0-4.fc42.x86_64   100% |   2.2 MiB/s | 174.4 KiB |  00m00s
- [3/7] protobuf-compiler-0:3.19.6-11.fc4 100% |   6.7 MiB/s | 781.9 KiB |  00m00s
- [4/7] protobuf-devel-0:3.19.6-11.fc42.x 100% |   6.1 MiB/s | 388.9 KiB |  00m00s
- [5/7] cmake-filesystem-0:3.31.6-2.fc42. 100% |   1.0 MiB/s |  17.6 KiB |  00m00s
- [6/7] protobuf-0:3.19.6-11.fc42.x86_64  100% |   8.4 MiB/s |   1.0 MiB |  00m00s
- [7/7] zlib-ng-compat-devel-0:2.2.5-2.fc 100% | 608.3 KiB/s |  38.3 KiB |  00m00s
- --------------------------------------------------------------------------------
- [7/7] Total                             100% |   5.1 MiB/s |   2.4 MiB |  00m00s
- Running transaction
- [1/9] Verify package files              100% | 700.0   B/s |   7.0   B |  00m00s
- [2/9] Prepare transaction               100% | 129.0   B/s |   7.0   B |  00m00s
- [3/9] Installing protobuf-0:3.19.6-11.f 100% | 180.8 MiB/s |   3.3 MiB |  00m00s
- [4/9] Installing protobuf-compiler-0:3. 100% |  71.1 MiB/s |   2.5 MiB |  00m00s
- [5/9] Installing cmake-filesystem-0:3.3 100% |   1.2 MiB/s |   7.6 KiB |  00m00s
- [6/9] Installing zlib-ng-compat-devel-0 100% |  53.0 MiB/s | 108.5 KiB |  00m00s
- [7/9] Installing gmp-c++-1:6.3.0-4.fc42 100% |  13.9 MiB/s |  28.5 KiB |  00m00s
- [8/9] Installing gmp-devel-1:6.3.0-4.fc 100% | 115.3 MiB/s | 354.1 KiB |  00m00s
- [9/9] Installing protobuf-devel-0:3.19. 100% |  34.5 MiB/s |   2.8 MiB |  00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "gmp-devel" "protobuf-compiler" "protobuf-devel"
- gmp-devel-6.3.0-4.fc42.x86_64
- protobuf-compiler-3.19.6-11.fc42.x86_64
- protobuf-devel-3.19.6-11.fc42.x86_64

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.17.3  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved caisar.5.0  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved csv.2.4  (cached)
-> retrieved ctypes.0.24.0  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed conf-protoc.4.4.0
-> retrieved dune.3.21.0, dune-build-info.3.21.0, dune-configurator.3.21.0, dune-private-libs.3.21.0, dune-site.3.21.0, dyn.3.21.0, fs-io.3.21.0, ordering.3.21.0, stdune.3.21.0, top-closure.3.21.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved jane-street-headers.v0.17.0  (cached)
-> retrieved jst-config.v0.17.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-protoc-plugin.6.2.0  (cached)
-> installed cmdliner.2.1.0
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved omd.2.0.0~alpha4  (cached)
-> retrieved pp.2.0.0  (cached)
-> retrieved ppx_assert.v0.17.0  (cached)
-> retrieved ppx_base.v0.17.0  (cached)
-> retrieved ppx_cold.v0.17.0  (cached)
-> retrieved ppx_compare.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppx_deriving_jsonschema.0.0.4  (cached)
-> retrieved ppx_deriving_yaml.0.4.1  (cached)
-> retrieved ppx_deriving_yojson.3.10.0  (cached)
-> retrieved ppx_enumerate.v0.17.0  (cached)
-> retrieved ppx_expect.v0.17.3  (cached)
-> retrieved ppx_globalize.v0.17.2  (cached)
-> retrieved ppx_hash.v0.17.0  (cached)
-> retrieved ppx_here.v0.17.0  (cached)
-> retrieved ppx_inline_test.v0.17.1  (cached)
-> retrieved ppx_optcomp.v0.17.1  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdio.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved time_now.v0.17.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uucp.17.0.0  (cached)
-> retrieved uunf.17.0.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved why3.1.8.2  (cached)
-> retrieved yaml.3.2.0  (cached)
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed logs.0.10.0
-> installed uunf.17.0.0
-> installed bos.0.2.1
-> installed dune.3.21.0
-> installed base64.3.5.2
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed csv.2.4
-> installed jane-street-headers.v0.17.0
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ocamlgraph.2.2.0
-> installed pp.2.0.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed integers.0.7.0
-> installed dune-build-info.3.21.0
-> installed fs-io.3.21.0
-> installed ordering.3.21.0
-> installed top-closure.3.21.0
-> installed dune-configurator.3.21.0
-> installed dyn.3.21.0
-> installed ctypes.0.24.0
-> installed stdune.3.21.0
-> installed base.v0.17.3
-> installed uucp.17.0.0
-> installed stdio.v0.17.0
-> installed dune-private-libs.3.21.0
-> installed yaml.3.2.0
-> installed omd.2.0.0~alpha4
-> installed menhir.20250912
-> installed dune-site.3.21.0
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_optcomp.v0.17.1
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_deriving_jsonschema.0.0.4
-> installed ppx_deriving_yaml.0.4.1
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_deriving.6.1.1
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_deriving_yojson.3.10.0
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed ocaml-protoc-plugin.6.2.0
-> installed why3.1.8.2
-> installed caisar.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-23 15:17.24 ---> saved as "3cc8a4479ae0278af12fa21319e32db22b30b7ca078ec6033c7771a6af404808"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test caisar.5.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile caisar        5.0 (pinned)
=== install 3 packages
  - install   conf-jq       1            [required by caisar]
  - install   conf-python-3 9.0.0        [required by caisar]
  - install   conf-texlive  2            [required by caisar]

The following system packages will first need to be installed:
    jq texlive-latex

<><> 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/sbin/sudo "yum" "install" "-y" "jq" "texlive-latex"
- Updating and loading repositories:
- Repositories loaded.
- Package                         Arch   Version                        Repository      Size
- Installing:
-  jq                             x86_64 1.7.1-11.fc42                  fedora     435.1 KiB
-  texlive-latex                  noarch 11:svn65161-94.fc42            updates     40.2 MiB
- Installing dependencies:
-  abattis-cantarell-vf-fonts     noarch 0.301-14.fc42                  fedora     192.7 KiB
-  biber                          noarch 2.20-1.fc42                    fedora       1.3 MiB
-  cpuinfo                        x86_64 24.09.26-2.git1e83a2f.fc42.1   updates    107.0 KiB
-  default-fonts-core-sans        noarch 4.2-4.fc42                     fedora      11.9 KiB
-  fontconfig                     x86_64 2.16.0-2.fc42                  fedora     764.7 KiB
-  fonts-filesystem               noarch 1:2.0.5-22.fc42                updates      0.0   B
-  freetype                       x86_64 2.13.3-2.fc42                  fedora     858.2 KiB
-  gd                             x86_64 2.3.3-18.fc42                  fedora     403.6 KiB
-  google-noto-fonts-common       noarch 20250301-1.fc42                fedora      17.7 KiB
-  google-noto-sans-vf-fonts      noarch 20250301-1.fc42                fedora       1.4 MiB
-  graphite2                      x86_64 1.3.14-18.fc42                 fedora     195.8 KiB
-  harfbuzz                       x86_64 10.4.0-1.fc42                  fedora       2.7 MiB
-  jbigkit-libs                   x86_64 2.1-31.fc42                    fedora     121.4 KiB
-  libXpm                         x86_64 3.5.17-5.fc42                  fedora     152.3 KiB
-  libaom                         x86_64 3.13.1-1.fc42                  updates      5.0 MiB
-  libavif                        x86_64 1.1.1-1.fc42                   fedora     213.9 KiB
-  libdatrie                      x86_64 0.2.13-11.fc42                 fedora      57.8 KiB
-  libdav1d                       x86_64 1.5.2-1.fc42                   updates      1.7 MiB
-  libimagequant                  x86_64 4.0.3-7.fc42                   fedora     704.3 KiB
-  libjpeg-turbo                  x86_64 3.1.2-1.fc42                   updates    804.9 KiB
-  liblerc                        x86_64 4.0.0-8.fc42                   fedora     636.1 KiB
-  libpaper                       x86_64 1:2.1.1-8.fc42                 fedora      48.8 KiB
-  libpng                         x86_64 2:1.6.53-1.fc42                updates    241.7 KiB
-  libthai                        x86_64 0.1.29-10.fc42                 fedora     783.4 KiB
-  libtiff                        x86_64 4.7.1-1.fc42                   updates    624.4 KiB
-  libvmaf                        x86_64 3.0.0-3.fc42                   fedora     827.0 KiB
-  libwebp                        x86_64 1.5.0-2.fc42                   fedora     947.6 KiB
-  libxslt                        x86_64 1.1.43-1.fc42                  fedora     456.1 KiB
-  libyuv                         x86_64 0-0.56.20240704git96bbdb5.fc42 fedora     683.6 KiB
-  mailcap                        noarch 2.1.54-8.fc42                  fedora      86.0 KiB
-  oniguruma                      x86_64 6.9.10-2.fc42                  fedora     763.1 KiB
-  perl-Authen-SASL               noarch 2.1900-1.fc42                  updates    128.2 KiB
-  perl-B-Hooks-EndOfScope        noarch 0.28-3.fc42                    fedora      69.3 KiB
-  perl-Business-ISBN             noarch 3.011-2.fc42                   fedora      55.7 KiB
-  perl-Business-ISBN-Data        noarch 20260109.001-1.fc42            updates    300.6 KiB
-  perl-Business-ISMN             noarch 1.204-3.fc42                   fedora      35.9 KiB
-  perl-Business-ISSN             noarch 1.008-1.fc42                   fedora      21.7 KiB
-  perl-Class-Accessor            noarch 0.51-22.fc42                   fedora      40.8 KiB
-  perl-Class-Data-Inheritable    noarch 0.10-2.fc42                    fedora       6.3 KiB
-  perl-Class-Inspector           noarch 1.36-18.fc42                   fedora      57.5 KiB
-  perl-Class-Method-Modifiers    noarch 2.15-6.fc42                    fedora     102.5 KiB
-  perl-Class-Singleton           noarch 1.6-13.fc42                    fedora      39.7 KiB
-  perl-Clone                     x86_64 0.47-2.fc42                    fedora      32.4 KiB
-  perl-Compress-Raw-Bzip2        x86_64 2.213-2.fc42                   fedora      67.3 KiB
-  perl-Compress-Raw-Zlib         x86_64 2.213-2.fc42                   fedora     163.2 KiB
-  perl-Convert-ASN1              noarch 0.34-5.fc42                    fedora     170.0 KiB
-  perl-Crypt-URandom             x86_64 0.54-1.fc42                    fedora      60.5 KiB
-  perl-Data-Compare              noarch 1.29-6.fc42                    fedora      55.5 KiB
-  perl-Data-Dump                 noarch 1.25-12.fc42                   fedora      50.2 KiB
-  perl-Data-OptList              noarch 0.114-6.fc42                   fedora      50.1 KiB
-  perl-Data-Uniqid               noarch 0.12-36.fc42                   fedora       4.2 KiB
-  perl-Date-ISO8601              noarch 0.005-22.fc42                  fedora      24.5 KiB
-  perl-Date-Manip                noarch 6.98-1.fc42                    updates     10.7 MiB
-  perl-DateTime                  x86_64 2:1.66-1.fc42                  fedora     379.1 KiB
-  perl-DateTime-Calendar-Julian  noarch 0.107-10.fc42                  fedora      32.8 KiB
-  perl-DateTime-Format-Builder   noarch 0.8300-15.fc42                 fedora     202.3 KiB
-  perl-DateTime-Format-Strptime  noarch 1:1.79-12.fc42                 fedora      96.3 KiB
-  perl-DateTime-Locale           noarch 1.45-1.fc42                    updates     22.8 MiB
-  perl-DateTime-TimeZone         noarch 2.66-1.fc42                    updates      6.1 MiB
-  perl-DateTime-TimeZone-SystemV noarch 0.010-23.fc42                  fedora      28.4 KiB
-  perl-DateTime-TimeZone-Tzfile  noarch 0.011-23.fc42                  fedora      24.6 KiB
-  perl-Devel-CallChecker         x86_64 0.009-8.fc42                   fedora      33.2 KiB
-  perl-Devel-Caller              x86_64 2.07-8.fc42                    fedora      23.3 KiB
-  perl-Devel-GlobalDestruction   noarch 0.14-26.fc42                   fedora      16.6 KiB
-  perl-Devel-LexAlias            x86_64 0.05-39.fc42                   fedora      15.1 KiB
-  perl-Devel-StackTrace          noarch 1:2.05-5.fc42                  fedora      48.9 KiB
-  perl-Digest-HMAC               noarch 1.05-2.fc42                    fedora      29.5 KiB
-  perl-Digest-SHA                x86_64 1:6.04-513.fc42                fedora     112.5 KiB
-  perl-Dist-CheckConflicts       noarch 0.11-32.fc42                   fedora      31.7 KiB
-  perl-DynaLoader-Functions      noarch 0.004-6.fc42                   fedora      19.7 KiB
-  perl-Email-Date-Format         noarch 1.008-6.fc42                   fedora      24.8 KiB
-  perl-Encode-Locale             noarch 1.05-31.fc42                   fedora      19.0 KiB
-  perl-English                   noarch 1.11-519.fc42                  updates      6.2 KiB
-  perl-Eval-Closure              noarch 0.14-25.fc42                   fedora      33.3 KiB
-  perl-Exception-Class           noarch 1.45-12.fc42                   fedora      92.4 KiB
-  perl-Exporter-Tiny             noarch 1.006002-6.fc42                fedora      88.3 KiB
-  perl-ExtUtils-MM-Utils         noarch 2:7.76-1.fc42                  updates      2.9 KiB
-  perl-File-Find-Rule            noarch 0.35-1.fc42                    updates     42.4 KiB
-  perl-File-Listing              noarch 6.16-5.fc42                    fedora      41.2 KiB
-  perl-File-ShareDir             noarch 1.118-13.fc42                  fedora      56.2 KiB
-  perl-File-Slurper              noarch 0.014-7.fc42                   fedora      28.7 KiB
-  perl-Filter                    x86_64 2:1.64-513.fc42                fedora     156.7 KiB
-  perl-GD                        x86_64 2.83-3.fc42                    fedora     399.2 KiB
-  perl-GSSAPI                    x86_64 0.28-48.fc42                   fedora     120.7 KiB
-  perl-HTML-Parser               x86_64 3.83-2.fc42                    fedora     277.7 KiB
-  perl-HTML-Tagset               noarch 3.24-3.fc42                    fedora      18.7 KiB
-  perl-HTTP-Cookies              noarch 6.11-5.fc42                    fedora      73.4 KiB
-  perl-HTTP-Date                 noarch 6.06-6.fc42                    fedora      41.2 KiB
-  perl-HTTP-Message              noarch 7.01-1.fc42                    updates    215.4 KiB
-  perl-HTTP-Negotiate            noarch 6.01-40.fc42                   fedora      27.6 KiB
-  perl-Hash-Util-FieldHash       x86_64 1.27-519.fc42                  updates     62.5 KiB
-  perl-I18N-LangTags             noarch 0.45-519.fc42                  updates     82.3 KiB
-  perl-I18N-Langinfo             x86_64 0.24-519.fc42                  updates     34.7 KiB
-  perl-IO-Compress               noarch 2.213-3.fc42                   fedora       1.0 MiB
-  perl-IO-HTML                   noarch 1.004-14.fc42                  fedora      45.2 KiB
-  perl-IO-String                 noarch 1.08-52.fc42                   fedora      16.8 KiB
-  perl-IPC-Cmd                   noarch 2:1.04-513.fc42                fedora      84.9 KiB
-  perl-IPC-Run3                  noarch 0.049-3.fc42                   fedora      60.3 KiB
-  perl-IPC-SysV                  x86_64 2.09-513.fc42                  fedora      73.7 KiB
-  perl-IPC-System-Simple         noarch 1.30-15.fc42                   fedora      71.7 KiB
-  perl-JSON                      noarch 4.10-7.fc42                    fedora     270.5 KiB
-  perl-JSON-PP                   noarch 1:4.16-513.fc42                fedora     141.8 KiB
-  perl-LDAP                      noarch 1:0.68-15.fc42                 fedora     938.1 KiB
-  perl-LWP-MediaTypes            noarch 6.04-20.fc42                   fedora      79.0 KiB
-  perl-LWP-Protocol-https        noarch 6.14-3.fc42                    fedora      29.7 KiB
-  perl-Lexical-SealRequireHints  x86_64 0.012-9.fc42                   fedora      42.9 KiB
-  perl-Lingua-Translit           noarch 0.29-9.fc42                    fedora     177.5 KiB
-  perl-List-AllUtils             noarch 0.19-14.fc42                   fedora     134.3 KiB
-  perl-List-MoreUtils-XS         x86_64 0.430-16.fc42                  fedora     162.6 KiB
-  perl-List-SomeUtils            noarch 0.59-7.fc42                    fedora     107.2 KiB
-  perl-List-UtilsBy              noarch 0.12-11.fc42                   fedora      55.8 KiB
-  perl-Locale-Maketext           noarch 1.33-513.fc42                  fedora     171.3 KiB
-  perl-Locale-Maketext-Simple    noarch 1:0.21-519.fc42                updates     12.8 KiB
-  perl-Log-Dispatch              noarch 2.71-6.fc42                    fedora     142.9 KiB
-  perl-Log-Dispatch-FileRotate   noarch 1.38-11.fc42                   fedora      52.6 KiB
-  perl-Log-Log4perl              noarch 1.57-7.fc42                    fedora     879.2 KiB
-  perl-MIME-Charset              noarch 1.013.1-7.fc42                 fedora     104.4 KiB
-  perl-MIME-Lite                 noarch 3.033-14.fc42                  fedora     245.9 KiB
-  perl-MIME-Types                noarch 2.27-1.fc42                    fedora     184.8 KiB
-  perl-MRO-Compat                noarch 0.15-11.fc42                   fedora      43.0 KiB
-  perl-Mail-Sender               noarch 1:0.903-26.fc42                fedora     160.6 KiB
-  perl-Mail-Sendmail             noarch 0.80-23.fc42                   fedora      65.0 KiB
-  perl-MailTools                 noarch 2.22-2.fc42                    fedora     203.5 KiB
-  perl-Math-BigInt               noarch 1:2.0040.01-1.fc42             fedora     984.8 KiB
-  perl-Math-Complex              noarch 1.62-519.fc42                  updates     85.0 KiB
-  perl-Module-CoreList           noarch 1:5.20251220-1.fc42            updates      1.3 MiB
-  perl-Module-Implementation     noarch 0.09-41.fc42                   fedora      24.7 KiB
-  perl-Module-Load               noarch 1:0.36-512.fc42                fedora      14.9 KiB
-  perl-Module-Load-Conditional   noarch 0.74-512.fc42                  fedora      28.7 KiB
-  perl-Module-Metadata           noarch 1.000038-512.fc42              fedora      67.5 KiB
-  perl-Module-Runtime            noarch 0.016-24.fc42                  fedora      30.4 KiB
-  perl-Mozilla-CA                noarch 20250202-1.fc42                fedora      10.9 KiB
-  perl-NTLM                      noarch 1.09-40.fc42                   fedora      31.2 KiB
-  perl-Net-HTTP                  noarch 6.24-1.fc42                    updates     76.1 KiB
-  perl-Net-SMTP-SSL              noarch 1.04-26.fc42                   fedora       4.2 KiB
-  perl-Number-Compare            noarch 0.03-40.fc42                   fedora       4.5 KiB
-  perl-Opcode                    x86_64 1.65-519.fc42                  updates     48.5 KiB
-  perl-Package-Generator         noarch 1.106-33.fc42                  fedora      29.9 KiB
-  perl-Package-Stash             noarch 0.40-9.fc42                    fedora      55.9 KiB
-  perl-Package-Stash-XS          x86_64 0.30-10.fc42                   fedora      64.2 KiB
-  perl-PadWalker                 x86_64 2.5-16.fc42                    fedora      41.0 KiB
-  perl-Params-Check              noarch 1:0.38-512.fc42                fedora      27.6 KiB
-  perl-Params-Classify           x86_64 0.015-25.fc42                  fedora      51.5 KiB
-  perl-Params-Util               x86_64 1.102-17.fc42                  fedora      58.5 KiB
-  perl-Params-Validate           x86_64 1.31-10.fc42                   fedora     148.9 KiB
-  perl-Params-ValidationCompiler noarch 0.31-7.fc42                    fedora      91.1 KiB
-  perl-Parse-RecDescent          noarch 1.967015-24.fc42               fedora     522.0 KiB
-  perl-Pod-Html                  noarch 1.35-519.fc42                  updates     42.2 KiB
-  perl-Ref-Util                  noarch 0.204-22.fc42                  fedora      31.5 KiB
-  perl-Ref-Util-XS               x86_64 0.117-25.fc42                  fedora      42.1 KiB
-  perl-Regexp-Common             noarch 2024080801-2.fc42              fedora     462.2 KiB
-  perl-Role-Tiny                 noarch 2.002004-13.fc42               fedora      61.7 KiB
-  perl-Safe                      noarch 2.46-519.fc42                  updates     30.6 KiB
-  perl-Sort-Key                  x86_64 1.33-33.fc42                   fedora      73.8 KiB
-  perl-Specio                    noarch 0.50-1.fc42                    fedora     329.3 KiB
-  perl-Sub-Exporter              noarch 0.991-5.fc42                   fedora     194.9 KiB
-  perl-Sub-Exporter-Progressive  noarch 0.001013-26.fc42               fedora      27.3 KiB
-  perl-Sub-Install               noarch 0.929-7.fc42                   fedora      35.9 KiB
-  perl-Sys-Hostname              x86_64 1.25-519.fc42                  updates     15.8 KiB
-  perl-Sys-Syslog                x86_64 0.36-513.fc42                  fedora      94.7 KiB
-  perl-Text-Balanced             noarch 2.06-512.fc42                  fedora     111.4 KiB
-  perl-Text-BibTeX               x86_64 0.91-1.fc42                    fedora     506.1 KiB
-  perl-Text-CSV                  noarch 2.05-1.fc42                    fedora     365.5 KiB
-  perl-Text-Glob                 noarch 0.11-25.fc42                   fedora       8.4 KiB
-  perl-Text-Roman                noarch 3.5-30.fc42                    fedora      33.1 KiB
-  perl-Text-Soundex              x86_64 3.05-33.fc42                   fedora      46.8 KiB
-  perl-Text-Unidecode            noarch 1.30-26.fc42                   fedora     448.7 KiB
-  perl-Tie                       noarch 4.6-519.fc42                   updates     32.0 KiB
-  perl-Tie-Cycle                 noarch 1.229-2.fc42                   fedora      23.9 KiB
-  perl-Tie-RefHash               noarch 1.41-2.fc42                    fedora      35.9 KiB
-  perl-Time-HiRes                x86_64 4:1.9777-512.fc42              fedora     115.8 KiB
-  perl-TimeDate                  noarch 1:2.33-16.fc42                 fedora      95.2 KiB
-  perl-Try-Tiny                  noarch 0.32-2.fc42                    fedora      67.3 KiB
-  perl-Unicode-Collate           x86_64 1.31-512.fc42                  fedora       4.2 MiB
-  perl-Unicode-LineBreak         x86_64 2019.001-23.fc42               fedora     260.5 KiB
-  perl-Unicode-Normalize         x86_64 1.32-512.fc42                  fedora     465.1 KiB
-  perl-Unicode-UCD               noarch 0.78-519.fc42                  updates    204.4 KiB
-  perl-Variable-Magic            x86_64 0.64-4.fc42                    fedora     126.5 KiB
-  perl-WWW-RobotRules            noarch 6.02-41.fc42                   fedora      24.3 KiB
-  perl-XML-LibXML                x86_64 1:2.0210-4.fc42                fedora     912.6 KiB
-  perl-XML-LibXML-Simple         noarch 1.01-17.fc42                   fedora      50.8 KiB
-  perl-XML-LibXSLT               x86_64 2.003.000-3.fc42               fedora     137.2 KiB
-  perl-XML-NamespaceSupport      noarch 1.12-25.fc42                   fedora      44.7 KiB
-  perl-XML-Parser                x86_64 2.47-6.fc42                    fedora     649.2 KiB
-  perl-XML-SAX                   noarch 1.02-18.fc42                   fedora     120.2 KiB
-  perl-XML-SAX-Base              noarch 1.09-25.fc42                   fedora     172.7 KiB
-  perl-XML-Writer                noarch 0.900-16.fc42                  fedora      65.8 KiB
-  perl-XML-XPath                 noarch 1.48-8.fc42                    fedora     202.3 KiB
-  perl-XString                   x86_64 0.005-15.fc42                  fedora      32.9 KiB
-  perl-autodie                   noarch 2.37-513.fc42                  fedora     214.9 KiB
-  perl-autovivification          x86_64 0.18-25.fc42                   fedora      61.9 KiB
-  perl-deprecate                 noarch 0.04-519.fc42                  updates      6.5 KiB
-  perl-encoding                  x86_64 4:3.00-512.fc42                fedora     149.5 KiB
-  perl-libwww-perl               noarch 6.77-3.fc42                    fedora     521.0 KiB
-  perl-meta-notation             noarch 5.40.3-519.fc42                updates      2.0 KiB
-  perl-namespace-autoclean       noarch 0.31-2.fc42                    fedora      43.5 KiB
-  perl-namespace-clean           noarch 0.27-28.fc42                   fedora      38.7 KiB
-  perl-open                      noarch 1.13-519.fc42                  updates     11.3 KiB
-  perl-sigtrap                   noarch 1.10-519.fc42                  updates     11.0 KiB
-  perl-subs                      noarch 1.04-519.fc42                  updates      2.1 KiB
-  perl-version                   x86_64 9:0.99.33-2.fc42               fedora     128.7 KiB
-  perltidy                       noarch 20250311-1.fc42                fedora       4.1 MiB
-  rav1e-libs                     x86_64 0.8.1-2.fc42                   updates      3.1 MiB
-  sombok                         x86_64 2.4.0-23.fc42                  fedora     131.7 KiB
-  svt-av1-libs                   x86_64 2.3.0-1.fc42                   fedora       5.6 MiB
-  texlive-algorithms             noarch 11:svn42428-76.fc42            fedora      38.2 KiB
-  texlive-alphalph               noarch 11:svn53087-76.fc42            fedora     375.9 KiB
-  texlive-amsfonts               noarch 11:svn61937-76.fc42            fedora       5.9 MiB
-  texlive-amsmath                noarch 11:svn63514-76.fc42            fedora     266.6 KiB
-  texlive-atbegshi               noarch 11:svn53051-76.fc42            fedora     443.4 KiB
-  texlive-attachfile             noarch 11:svn42099-76.fc42            fedora      32.0 KiB
-  texlive-atveryend              noarch 11:svn53108-76.fc42            fedora     409.9 KiB
-  texlive-auto-pst-pdf           noarch 11:svn56596-76.fc42            fedora      14.8 KiB
-  texlive-auxhook                noarch 11:svn53173-76.fc42            fedora     301.9 KiB
-  texlive-avantgar               noarch 11:svn61983-76.fc42            fedora       1.2 MiB
-  texlive-babel                  noarch 11:svn65823-76.fc42            fedora       2.1 MiB
-  texlive-babelbib               noarch 11:svn57349-76.fc42            fedora     779.1 KiB
-  texlive-base                   x86_64 11:20230311-94.fc42            updates     19.0 MiB
-  texlive-bera                   noarch 11:svn20031.0-76.fc42          fedora     772.9 KiB
-  texlive-biblatex               noarch 11:svn70725-76.fc42            fedora       2.2 MiB
-  texlive-bidi                   noarch 11:svn65572-76.fc42            fedora       1.2 MiB
-  texlive-bigintcalc             noarch 11:svn53172-76.fc42            fedora     515.6 KiB
-  texlive-bitset                 noarch 11:svn53837-76.fc42            fedora     662.3 KiB
-  texlive-bookman                noarch 11:svn61719-76.fc42            fedora       1.2 MiB
-  texlive-bookmark               noarch 11:svn56885-76.fc42            fedora     569.3 KiB
-  texlive-booktabs               noarch 11:svn53402-76.fc42            fedora      18.3 KiB
-  texlive-breakurl               noarch 11:svn29901.1.40-76.fc42       fedora      17.1 KiB
-  texlive-caption                noarch 11:svn66580-76.fc42            fedora     906.9 KiB
-  texlive-catchfile              noarch 11:svn53084-76.fc42            fedora     318.8 KiB
-  texlive-changepage             noarch 11:svn15878.1.0c-76.fc42       fedora      27.3 KiB
-  texlive-charter                noarch 11:svn15878.0-76.fc42          fedora     404.0 KiB
-  texlive-cm                     noarch 11:svn57963-76.fc42            fedora     994.9 KiB
-  texlive-cm-super               noarch 11:svn15878.0-76.fc42          fedora      65.0 MiB
-  texlive-colortbl               noarch 11:svn64015-76.fc42            fedora      21.0 KiB
-  texlive-courier                noarch 11:svn61719-76.fc42            fedora     915.1 KiB
-  texlive-csquotes               noarch 11:svn64389-76.fc42            fedora     112.0 KiB
-  texlive-ctablestack            noarch 11:svn38514-76.fc42            fedora      20.1 KiB
-  texlive-currfile               noarch 11:svn64673-76.fc42            fedora      34.0 KiB
-  texlive-dehyph                 noarch 11:svn48599-76.fc42            fedora     239.9 KiB
-  texlive-enumitem               noarch 11:svn51423-76.fc42            fedora      59.4 KiB
-  texlive-epstopdf               noarch 11:svn66461-94.fc42            updates     39.3 KiB
-  texlive-epstopdf-pkg           noarch 11:svn53546-76.fc42            fedora     386.5 KiB
-  texlive-eso-pic                noarch 11:svn56658-76.fc42            fedora      27.7 KiB
-  texlive-etex                   noarch 11:svn66203-76.fc42            fedora      41.0 KiB
-  texlive-etex-pkg               noarch 11:svn41784-76.fc42            fedora      18.6 KiB
-  texlive-etexcmds               noarch 11:svn53171-76.fc42            fedora     321.0 KiB
-  texlive-etoolbox               noarch 11:svn56554-76.fc42            fedora      66.7 KiB
-  texlive-euenc                  noarch 11:svn19795.0.1h-76.fc42       fedora      39.3 KiB
-  texlive-fancyhdr               noarch 11:svn64977-76.fc42            fedora      31.6 KiB
-  texlive-fancyvrb               noarch 11:svn65585-76.fc42            fedora      66.2 KiB
-  texlive-filecontents           noarch 11:svn52142-76.fc42            fedora      12.2 KiB
-  texlive-filehook               noarch 11:svn64822-76.fc42            fedora      55.2 KiB
-  texlive-float                  noarch 11:svn15878.1.3d-76.fc42       fedora      15.5 KiB
-  texlive-fontspec               noarch 11:svn63386-76.fc42            fedora     329.1 KiB
-  texlive-footmisc               noarch 11:svn62524-76.fc42            fedora      64.7 KiB
-  texlive-fp                     noarch 11:svn49719-76.fc42            fedora     124.9 KiB
-  texlive-fpl                    noarch 11:svn54512-76.fc42            fedora     647.6 KiB
-  texlive-geometry               noarch 11:svn61719-76.fc42            fedora      49.5 KiB
-  texlive-gettitlestring         noarch 11:svn53170-76.fc42            fedora     338.8 KiB
-  texlive-graphics               noarch 11:svn66204-76.fc42            fedora     124.5 KiB
-  texlive-graphics-cfg           noarch 11:svn41448-76.fc42            fedora       3.0 KiB
-  texlive-graphics-def           noarch 11:svn64487-76.fc42            fedora      98.2 KiB
-  texlive-gsftopk                x86_64 11:svn52851-94.fc42            updates     47.0 KiB
-  texlive-helvetic               noarch 11:svn61719-76.fc42            fedora       1.8 MiB
-  texlive-hobsub                 noarch 11:svn52810-76.fc42            fedora      80.2 KiB
-  texlive-hologo                 noarch 11:svn61719-76.fc42            fedora     664.7 KiB
-  texlive-hycolor                noarch 11:svn53584-76.fc42            fedora     411.7 KiB
-  texlive-hypdoc                 noarch 11:svn65678-76.fc42            fedora     358.3 KiB
-  texlive-hyperref               noarch 11:svn65758-76.fc42            fedora     763.7 KiB
-  texlive-hyph-utf8              noarch 11:svn61719-76.fc42            fedora      73.9 KiB
-  texlive-hyphen-base            noarch 11:svn66413-76.fc42            fedora      63.7 KiB
-  texlive-ifmtarg                noarch 11:svn47544-76.fc42            fedora       9.2 KiB
-  texlive-ifplatform             noarch 11:svn45533-76.fc42            fedora      12.7 KiB
-  texlive-iftex                  noarch 11:svn61910-76.fc42            fedora      28.7 KiB
-  texlive-infwarerr              noarch 11:svn53023-76.fc42            fedora     306.3 KiB
-  texlive-intcalc                noarch 11:svn53168-76.fc42            fedora     471.6 KiB
-  texlive-kastrup                noarch 11:svn15878.0-76.fc42          fedora       3.4 KiB
-  texlive-knuth-lib              noarch 11:svn57963-76.fc42            fedora      99.9 KiB
-  texlive-koma-script            noarch 11:svn64685-76.fc42            fedora       9.9 MiB
-  texlive-kpathsea               x86_64 11:svn66209-94.fc42            updates      2.1 MiB
-  texlive-kvdefinekeys           noarch 11:svn53193-76.fc42            fedora     314.2 KiB
-  texlive-kvoptions              noarch 11:svn63622-76.fc42            fedora     550.0 KiB
-  texlive-kvsetkeys              noarch 11:svn64632-76.fc42            fedora     427.4 KiB
-  texlive-l3backend              noarch 11:svn65573-76.fc42            fedora       1.1 MiB
-  texlive-l3kernel               noarch 11:svn66094-76.fc42            fedora       1.4 MiB
-  texlive-l3packages             noarch 11:svn65722-76.fc42            fedora     262.4 KiB
-  texlive-latex-fonts            noarch 11:svn28888.0-76.fc42          fedora     114.2 KiB
-  texlive-latexconfig            noarch 11:svn53525-76.fc42            fedora       8.3 KiB
-  texlive-letltxmacro            noarch 11:svn53022-76.fc42            fedora     311.2 KiB
-  texlive-lib                    x86_64 11:20230311-94.fc42            updates      1.1 MiB
-  texlive-listings               noarch 11:svn66222-76.fc42            fedora     580.0 KiB
-  texlive-lm                     noarch 11:svn65956-76.fc42            fedora      39.4 MiB
-  texlive-logreq                 noarch 11:svn53003-76.fc42            fedora      26.3 KiB
-  texlive-ltxcmds                noarch 11:svn56421-76.fc42            fedora     424.3 KiB
-  texlive-lua-alt-getopt         noarch 11:svn56414-76.fc42            fedora       3.9 KiB
-  texlive-lua-uni-algos          noarch 11:svn62204-76.fc42            fedora     129.1 KiB
-  texlive-luabidi                noarch 11:svn54512-76.fc42            fedora      25.3 KiB
-  texlive-lualibs                noarch 11:svn64615-76.fc42            fedora     764.4 KiB
-  texlive-luaotfload             noarch 11:svn64616-94.fc42            updates      8.2 MiB
-  texlive-luatex                 x86_64 11:svn66967-94.fc42            updates      9.1 MiB
-  texlive-luatexbase             noarch 11:svn52663-76.fc42            fedora      12.8 KiB
-  texlive-makecmds               noarch 11:svn15878.0-76.fc42          fedora      11.1 KiB
-  texlive-marginnote             noarch 11:svn48383-76.fc42            fedora      22.5 KiB
-  texlive-marvosym               noarch 11:svn29349.2.2a-76.fc42       fedora     185.6 KiB
-  texlive-mathpazo               noarch 11:svn52663-76.fc42            fedora     110.5 KiB
-  texlive-memoir                 noarch 11:svn65040-76.fc42            fedora     480.4 KiB
-  texlive-mparhack               noarch 11:svn59066-76.fc42            fedora      20.3 KiB
-  texlive-ms                     noarch 11:svn57473-76.fc42            fedora      18.4 KiB
-  texlive-multido                noarch 11:svn18302.1.42-76.fc42       fedora      18.5 KiB
-  texlive-natbib                 noarch 11:svn20668.8.31b-76.fc42      fedora     132.7 KiB
-  texlive-palatino               noarch 11:svn61719-76.fc42            fedora       1.1 MiB
-  texlive-paralist               noarch 11:svn43021-76.fc42            fedora      23.4 KiB
-  texlive-pdfcolmk               noarch 11:svn52912-76.fc42            fedora      19.6 KiB
-  texlive-pdfescape              noarch 11:svn53082-76.fc42            fedora     375.9 KiB
-  texlive-pdftex                 x86_64 11:svn66243-94.fc42            updates      4.6 MiB
-  texlive-pdftexcmds             noarch 11:svn55777-76.fc42            fedora     423.9 KiB
-  texlive-pgf                    noarch 11:svn65553-76.fc42            fedora       4.8 MiB
-  texlive-picture                noarch 11:svn54867-76.fc42            fedora     323.3 KiB
-  texlive-placeins               noarch 11:svn19848.2.2-76.fc42        fedora       4.6 KiB
-  texlive-plain                  noarch 11:svn57963-76.fc42            fedora     109.4 KiB
-  texlive-polyglossia            noarch 11:svn65792-76.fc42            fedora     715.0 KiB
-  texlive-psnfss                 noarch 11:svn54694-76.fc42            fedora     101.0 KiB
-  texlive-pst-3d                 noarch 11:svn17257.1.10-76.fc42       fedora      19.5 KiB
-  texlive-pst-coil               noarch 11:svn62977-76.fc42            fedora      20.4 KiB
-  texlive-pst-eps                noarch 11:svn15878.1.0-76.fc42        fedora      15.5 KiB
-  texlive-pst-fill               noarch 11:svn60671-76.fc42            fedora      22.8 KiB
-  texlive-pst-grad               noarch 11:svn15878.1.06-76.fc42       fedora      21.1 KiB
-  texlive-pst-math               noarch 11:svn64732-76.fc42            fedora      22.3 KiB
-  texlive-pst-node               noarch 11:svn61838-76.fc42            fedora     114.0 KiB
-  texlive-pst-ovl                noarch 11:svn54963-76.fc42            fedora      12.4 KiB
-  texlive-pst-plot               noarch 11:svn65346-76.fc42            fedora     129.7 KiB
-  texlive-pst-text               noarch 11:svn49542-76.fc42            fedora      19.7 KiB
-  texlive-pst-tools              noarch 11:svn60621-76.fc42            fedora      26.8 KiB
-  texlive-pst-tree               noarch 11:svn60421-76.fc42            fedora      42.6 KiB
-  texlive-pstricks               noarch 11:svn65346-76.fc42            fedora     468.9 KiB
-  texlive-pstricks-add           noarch 11:svn65067-76.fc42            fedora     103.4 KiB
-  texlive-ragged2e               noarch 11:svn66152-76.fc42            fedora     731.9 KiB
-  texlive-refcount               noarch 11:svn53164-76.fc42            fedora     348.0 KiB
-  texlive-rerunfilecheck         noarch 11:svn63869-76.fc42            fedora     361.8 KiB
-  texlive-sauerj                 noarch 11:svn15878.0-76.fc42          fedora      27.0 KiB
-  texlive-setspace               noarch 11:svn65206-76.fc42            fedora      22.0 KiB
-  texlive-showexpl               noarch 11:svn57414-76.fc42            fedora      21.8 KiB
-  texlive-stringenc              noarch 11:svn52982-76.fc42            fedora       1.0 MiB
-  texlive-subfig                 noarch 11:svn15878.1.3-76.fc42        fedora      36.6 KiB
-  texlive-symbol                 noarch 11:svn61719-76.fc42            fedora      78.3 KiB
-  texlive-tex-ini-files          noarch 11:svn40533-76.fc42            fedora       8.1 KiB
-  texlive-texlive-scripts        noarch 11:svn66584-94.fc42            updates    337.2 KiB
-  texlive-texlive.infra          noarch 11:svn66512-94.fc42            updates      1.0 MiB
-  texlive-times                  noarch 11:svn61719-76.fc42            fedora     992.2 KiB
-  texlive-tipa                   noarch 11:svn29349.1.3-76.fc42        fedora       3.7 MiB
-  texlive-titlesec               noarch 11:svn59845-76.fc42            fedora      97.8 KiB
-  texlive-tools                  noarch 11:svn64892-76.fc42            fedora     403.2 KiB
-  texlive-underscore             noarch 11:svn18261.0-76.fc42          fedora      19.3 KiB
-  texlive-unicode-data           noarch 11:svn64423-76.fc42            fedora       3.1 MiB
-  texlive-uniquecounter          noarch 11:svn53162-76.fc42            fedora     312.0 KiB
-  texlive-url                    noarch 11:svn32528.3.4-76.fc42        fedora      21.4 KiB
-  texlive-utopia                 noarch 11:svn15878.0-76.fc42          fedora     540.6 KiB
-  texlive-varwidth               noarch 11:svn24104.0.92-76.fc42       fedora      19.5 KiB
-  texlive-xcolor                 noarch 11:svn63563-76.fc42            fedora      79.3 KiB
-  texlive-xifthen                noarch 11:svn38929-76.fc42            fedora      14.4 KiB
-  texlive-xkeyval                noarch 11:svn63616-76.fc42            fedora      69.3 KiB
-  texlive-xpatch                 noarch 11:svn54563-76.fc42            fedora      26.8 KiB
-  texlive-xstring                noarch 11:svn65551-76.fc42            fedora      56.1 KiB
-  texlive-xunicode               noarch 11:svn30466.0.981-76.fc42      fedora     219.6 KiB
-  texlive-zapfding               noarch 11:svn61719-76.fc42            fedora      79.5 KiB
-  texlive-zref                   noarch 11:svn62977-76.fc42            fedora     816.8 KiB
-  xml-common                     noarch 0.6.3-66.fc42                  fedora      78.4 KiB
-  xpdf-libs                      x86_64 1:4.06-1.fc42                  updates      1.7 MiB
-  zziplib                        x86_64 0.13.78-1.fc42                 fedora     232.2 KiB
- Installing weak dependencies:
-  perl-Class-XSAccessor          x86_64 1.19-37.fc42                   fedora      98.7 KiB
-  perl-GD-Barcode                noarch 2.00-6.fc42                    fedora      10.5 MiB
-  perl-IO-Compress-Brotli        x86_64 0.004001-15.fc42               fedora      36.0 KiB
-  perl-Lexical-Var               x86_64 0.010-8.fc42                   fedora      53.6 KiB
-  perl-List-MoreUtils            noarch 0.430-13.fc42                  fedora     162.6 KiB
-  perl-PerlIO-utf8_strict        x86_64 0.010-9.fc42                   fedora      41.8 KiB
- 
- Transaction Summary:
-  Installing:       377 packages
- 
- Total size of inbound packages is 180 MiB. Need to download 180 MiB.
- After this operation, 374 MiB extra will be used (install 374 MiB, remove 0 B).
- [  1/377] jq-0:1.7.1-11.fc42.x86_64     100% |   3.4 MiB/s | 200.6 KiB |  00m00s
- [  2/377] oniguruma-0:6.9.10-2.fc42.x86 100% |   3.4 MiB/s | 217.4 KiB |  00m00s
- [  3/377] texlive-hypdoc-11:svn65678-76 100% |   5.8 MiB/s | 332.5 KiB |  00m00s
- [  4/377] texlive-hyperref-11:svn65758- 100% |   1.5 MiB/s | 116.2 KiB |  00m00s
- [  5/377] texlive-l3kernel-11:svn66094- 100% |   4.1 MiB/s | 199.1 KiB |  00m00s
- [  6/377] texlive-latex-fonts-11:svn288 100% |   1.6 MiB/s |  46.5 KiB |  00m00s
- [  7/377] texlive-latexconfig-11:svn535 100% | 855.9 KiB/s |  12.8 KiB |  00m00s
- [  8/377] texlive-psnfss-11:svn54694-76 100% |   2.1 MiB/s |  56.7 KiB |  00m00s
- [  9/377] texlive-tools-11:svn64892-76. 100% |   2.4 MiB/s |  71.9 KiB |  00m00s
- [ 10/377] texlive-url-11:svn32528.3.4-7 100% |   1.1 MiB/s |  17.1 KiB |  00m00s
- [ 11/377] texlive-atbegshi-11:svn53051- 100% |   4.4 MiB/s | 406.1 KiB |  00m00s
- [ 12/377] texlive-auxhook-11:svn53173-7 100% |   4.5 MiB/s | 292.2 KiB |  00m00s
- [ 13/377] texlive-bitset-11:svn53837-76 100% |   4.7 MiB/s | 617.6 KiB |  00m00s
- [ 14/377] texlive-etexcmds-11:svn53171- 100% |   2.7 MiB/s | 307.5 KiB |  00m00s
- [ 15/377] texlive-latex-11:svn65161-94. 100% |  33.4 MiB/s |  29.9 MiB |  00m01s
- [ 16/377] texlive-gettitlestring-11:svn 100% |   2.5 MiB/s | 324.6 KiB |  00m00s
- [ 17/377] texlive-hobsub-11:svn52810-76 100% |   2.7 MiB/s |  75.0 KiB |  00m00s
- [ 18/377] texlive-iftex-11:svn61910-76. 100% |   1.1 MiB/s |  18.3 KiB |  00m00s
- [ 19/377] texlive-hycolor-11:svn53584-7 100% |   4.0 MiB/s | 381.3 KiB |  00m00s
- [ 20/377] texlive-infwarerr-11:svn53023 100% |   3.0 MiB/s | 292.5 KiB |  00m00s
- [ 21/377] texlive-intcalc-11:svn53168-7 100% |   7.0 MiB/s | 429.5 KiB |  00m00s
- [ 22/377] texlive-kvdefinekeys-11:svn53 100% |   4.1 MiB/s | 303.4 KiB |  00m00s
- [ 23/377] texlive-kvoptions-11:svn63622 100% |   7.9 MiB/s | 491.0 KiB |  00m00s
- [ 24/377] texlive-letltxmacro-11:svn530 100% |   4.3 MiB/s | 297.3 KiB |  00m00s
- [ 25/377] texlive-kvsetkeys-11:svn64632 100% |   4.7 MiB/s | 395.8 KiB |  00m00s
- [ 26/377] texlive-memoir-11:svn65040-76 100% |   3.0 MiB/s |  91.5 KiB |  00m00s
- [ 27/377] texlive-ltxcmds-11:svn56421-7 100% |   6.5 MiB/s | 397.4 KiB |  00m00s
- [ 28/377] texlive-pdfescape-11:svn53082 100% |   7.8 MiB/s | 350.3 KiB |  00m00s
- [ 29/377] texlive-pdftexcmds-11:svn5577 100% |   5.6 MiB/s | 388.2 KiB |  00m00s
- [ 30/377] texlive-refcount-11:svn53164- 100% |   4.2 MiB/s | 332.3 KiB |  00m00s
- [ 31/377] texlive-rerunfilecheck-11:svn 100% |   7.2 MiB/s | 338.1 KiB |  00m00s
- [ 32/377] texlive-zapfding-11:svn61719- 100% |   3.2 MiB/s |  61.6 KiB |  00m00s
- [ 33/377] texlive-alphalph-11:svn53087- 100% |   5.1 MiB/s | 358.2 KiB |  00m00s
- [ 34/377] texlive-stringenc-11:svn52982 100% |   6.8 MiB/s | 699.3 KiB |  00m00s
- [ 35/377] texlive-amsmath-11:svn63514-7 100% |   2.5 MiB/s |  44.0 KiB |  00m00s
- [ 36/377] texlive-booktabs-11:svn53402- 100% | 561.7 KiB/s |  15.2 KiB |  00m00s
- [ 37/377] texlive-colortbl-11:svn64015- 100% |   1.3 MiB/s |  15.0 KiB |  00m00s
- [ 38/377] texlive-csquotes-11:svn64389- 100% |   4.0 MiB/s |  33.1 KiB |  00m00s
- [ 39/377] texlive-enumitem-11:svn51423- 100% | 757.5 KiB/s |  25.0 KiB |  00m00s
- [ 40/377] texlive-fancyvrb-11:svn65585- 100% |   1.1 MiB/s |  23.9 KiB |  00m00s
- [ 41/377] texlive-hologo-11:svn61719-76 100% |   6.4 MiB/s | 583.9 KiB |  00m00s
- [ 42/377] texlive-l3backend-11:svn65573 100% |   8.6 MiB/s | 894.5 KiB |  00m00s
- [ 43/377] texlive-amsfonts-11:svn61937- 100% |   7.9 MiB/s |   3.7 MiB |  00m00s
- [ 44/377] texlive-underscore-11:svn1826 100% |   1.0 MiB/s |  16.1 KiB |  00m00s
- [ 45/377] texlive-avantgar-11:svn61983- 100% |   4.3 MiB/s | 318.5 KiB |  00m00s
- [ 46/377] texlive-bookman-11:svn61719-7 100% |   6.0 MiB/s | 364.4 KiB |  00m00s
- [ 47/377] texlive-charter-11:svn15878.0 100% |   3.7 MiB/s | 203.2 KiB |  00m00s
- [ 48/377] texlive-cm-11:svn57963-76.fc4 100% |   4.3 MiB/s | 319.1 KiB |  00m00s
- [ 49/377] texlive-courier-11:svn61719-7 100% |   5.2 MiB/s | 522.4 KiB |  00m00s
- [ 50/377] texlive-graphics-11:svn66204- 100% |   2.0 MiB/s |  37.0 KiB |  00m00s
- [ 51/377] texlive-helvetic-11:svn61719- 100% |   5.4 MiB/s | 651.5 KiB |  00m00s
- [ 52/377] texlive-mathpazo-11:svn52663- 100% |   2.9 MiB/s |  86.9 KiB |  00m00s
- [ 53/377] texlive-palatino-11:svn61719- 100% |   4.8 MiB/s | 418.7 KiB |  00m00s
- [ 54/377] texlive-symbol-11:svn61719-76 100% |   2.1 MiB/s |  51.9 KiB |  00m00s
- [ 55/377] texlive-times-11:svn61719-76. 100% |   4.8 MiB/s | 364.5 KiB |  00m00s
- [ 56/377] texlive-lm-11:svn65956-76.fc4 100% |  12.5 MiB/s |  12.0 MiB |  00m01s
- [ 57/377] texlive-utopia-11:svn15878.0- 100% |   2.8 MiB/s | 236.1 KiB |  00m00s
- [ 58/377] texlive-etex-pkg-11:svn41784- 100% | 881.5 KiB/s |  14.1 KiB |  00m00s
- [ 59/377] texlive-bigintcalc-11:svn5317 100% |   8.4 MiB/s | 463.3 KiB |  00m00s
- [ 60/377] texlive-atveryend-11:svn53108 100% |   5.2 MiB/s | 382.6 KiB |  00m00s
- [ 61/377] texlive-uniquecounter-11:svn5 100% |   5.6 MiB/s | 297.8 KiB |  00m00s
- [ 62/377] texlive-etoolbox-11:svn56554- 100% |   1.6 MiB/s |  23.1 KiB |  00m00s
- [ 63/377] texlive-graphics-cfg-11:svn41 100% | 556.9 KiB/s |  10.0 KiB |  00m00s
- [ 64/377] texlive-pstricks-11:svn65346- 100% |   3.8 MiB/s | 114.0 KiB |  00m00s
- [ 65/377] texlive-graphics-def-11:svn64 100% |   3.6 MiB/s |  25.8 KiB |  00m00s
- [ 66/377] texlive-auto-pst-pdf-11:svn56 100% | 834.6 KiB/s |  14.2 KiB |  00m00s
- [ 67/377] texlive-fpl-11:svn54512-76.fc 100% |   4.2 MiB/s | 300.2 KiB |  00m00s
- [ 68/377] texlive-babel-11:svn65823-76. 100% |   6.6 MiB/s | 476.4 KiB |  00m00s
- [ 69/377] texlive-bera-11:svn20031.0-76 100% |   3.7 MiB/s | 352.8 KiB |  00m00s
- [ 70/377] texlive-biblatex-11:svn70725- 100% |   4.1 MiB/s | 303.7 KiB |  00m00s
- [ 71/377] texlive-breakurl-11:svn29901. 100% | 500.7 KiB/s |  14.5 KiB |  00m00s
- [ 72/377] texlive-eso-pic-11:svn56658-7 100% | 978.2 KiB/s |  16.6 KiB |  00m00s
- [ 73/377] texlive-caption-11:svn66580-7 100% |   1.6 MiB/s |  84.1 KiB |  00m00s
- [ 74/377] texlive-filecontents-11:svn52 100% | 769.9 KiB/s |  13.9 KiB |  00m00s
- [ 75/377] texlive-footmisc-11:svn62524- 100% |   1.7 MiB/s |  22.1 KiB |  00m00s
- [ 76/377] texlive-multido-11:svn18302.1 100% | 902.7 KiB/s |  15.3 KiB |  00m00s
- [ 77/377] texlive-paralist-11:svn43021- 100% |   1.5 MiB/s |  15.1 KiB |  00m00s
- [ 78/377] texlive-pst-3d-11:svn17257.1. 100% | 671.4 KiB/s |  15.4 KiB |  00m00s
- [ 79/377] texlive-pst-coil-11:svn62977- 100% | 547.0 KiB/s |  15.9 KiB |  00m00s
- [ 80/377] texlive-pst-eps-11:svn15878.1 100% | 862.2 KiB/s |  14.7 KiB |  00m00s
- [ 81/377] texlive-pst-fill-11:svn60671- 100% | 443.7 KiB/s |  15.5 KiB |  00m00s
- [ 82/377] texlive-pst-grad-11:svn15878. 100% | 749.8 KiB/s |  15.7 KiB |  00m00s
- [ 83/377] texlive-pst-node-11:svn61838- 100% | 818.6 KiB/s |  37.7 KiB |  00m00s
- [ 84/377] texlive-pst-ovl-11:svn54963-7 100% | 818.0 KiB/s |  13.9 KiB |  00m00s
- [ 85/377] texlive-pst-plot-11:svn65346- 100% |   2.0 MiB/s |  34.6 KiB |  00m00s
- [ 86/377] texlive-pst-text-11:svn49542- 100% | 814.3 KiB/s |  16.3 KiB |  00m00s
- [ 87/377] texlive-pst-tools-11:svn60621 100% |   2.6 MiB/s |  18.4 KiB |  00m00s
- [ 88/377] texlive-pst-tree-11:svn60421- 100% |   2.2 MiB/s |  18.4 KiB |  00m00s
- [ 89/377] texlive-pstricks-add-11:svn65 100% |   2.1 MiB/s |  34.2 KiB |  00m00s
- [ 90/377] texlive-ragged2e-11:svn66152- 100% |   4.6 MiB/s | 679.0 KiB |  00m00s
- [ 91/377] texlive-setspace-11:svn65206- 100% | 417.7 KiB/s |  15.5 KiB |  00m00s
- [ 92/377] texlive-koma-script-11:svn646 100% |  12.1 MiB/s |   6.4 MiB |  00m01s
- [ 93/377] texlive-showexpl-11:svn57414- 100% | 399.0 KiB/s |  15.6 KiB |  00m00s
- [ 94/377] texlive-subfig-11:svn15878.1. 100% |   1.2 MiB/s |  18.8 KiB |  00m00s
- [ 95/377] texlive-xcolor-11:svn63563-76 100% |   1.5 MiB/s |  29.8 KiB |  00m00s
- [ 96/377] texlive-xkeyval-11:svn63616-7 100% | 943.5 KiB/s |  24.5 KiB |  00m00s
- [ 97/377] texlive-ifplatform-11:svn4553 100% | 348.6 KiB/s |  13.6 KiB |  00m00s
- [ 98/377] biber-0:2.20-1.fc42.noarch    100% |   7.4 MiB/s | 295.0 KiB |  00m00s
- [ 99/377] texlive-epstopdf-pkg-11:svn53 100% |   3.3 MiB/s | 361.5 KiB |  00m00s
- [100/377] texlive-logreq-11:svn53003-76 100% | 888.0 KiB/s |  17.8 KiB |  00m00s
- [101/377] texlive-xpatch-11:svn54563-76 100% |   1.4 MiB/s |  16.1 KiB |  00m00s
- [102/377] texlive-xstring-11:svn65551-7 100% |   1.4 MiB/s |  22.9 KiB |  00m00s
- [103/377] texlive-polyglossia-11:svn657 100% |   4.5 MiB/s | 217.1 KiB |  00m00s
- [104/377] texlive-babelbib-11:svn57349- 100% |   2.8 MiB/s |  50.9 KiB |  00m00s
- [105/377] texlive-geometry-11:svn61719- 100% |   1.4 MiB/s |  20.4 KiB |  00m00s
- [106/377] texlive-listings-11:svn66222- 100% |   4.0 MiB/s | 164.5 KiB |  00m00s
- [107/377] texlive-bookmark-11:svn56885- 100% |   5.2 MiB/s | 477.3 KiB |  00m00s
- [108/377] texlive-marginnote-11:svn4838 100% | 919.9 KiB/s |  14.7 KiB |  00m00s
- [109/377] texlive-mparhack-11:svn59066- 100% | 904.1 KiB/s |  15.4 KiB |  00m00s
- [110/377] texlive-marvosym-11:svn29349. 100% |   4.4 MiB/s | 143.9 KiB |  00m00s
- [111/377] texlive-picture-11:svn54867-7 100% |   8.2 MiB/s | 309.6 KiB |  00m00s
- [112/377] texlive-pst-math-11:svn64732- 100% | 567.0 KiB/s |  17.6 KiB |  00m00s
- [113/377] texlive-attachfile-11:svn4209 100% |   1.3 MiB/s |  19.7 KiB |  00m00s
- [114/377] texlive-varwidth-11:svn24104. 100% | 960.6 KiB/s |  15.4 KiB |  00m00s
- [115/377] texlive-pdfcolmk-11:svn52912- 100% |   1.9 MiB/s |  16.0 KiB |  00m00s
- [116/377] perl-Business-ISBN-0:3.011-2. 100% |   2.0 MiB/s |  33.3 KiB |  00m00s
- [117/377] perl-Business-ISMN-0:1.204-3. 100% |   1.6 MiB/s |  25.5 KiB |  00m00s
- [118/377] perl-Business-ISSN-0:1.008-1. 100% |   2.3 MiB/s |  18.4 KiB |  00m00s
- [119/377] texlive-catchfile-11:svn53084 100% |   6.1 MiB/s | 304.6 KiB |  00m00s
- [120/377] perl-Class-Accessor-0:0.51-22 100% |   1.7 MiB/s |  28.3 KiB |  00m00s
- [121/377] perl-Data-Compare-0:1.29-6.fc 100% |   2.3 MiB/s |  34.6 KiB |  00m00s
- [122/377] perl-Data-Dump-0:1.25-12.fc42 100% |   2.3 MiB/s |  32.6 KiB |  00m00s
- [123/377] perl-Data-Uniqid-0:0.12-36.fc 100% | 716.2 KiB/s |  12.2 KiB |  00m00s
- [124/377] perl-DateTime-Calendar-Julian 100% |   1.4 MiB/s |  23.3 KiB |  00m00s
- [125/377] perl-DateTime-2:1.66-1.fc42.x 100% |   4.5 MiB/s | 132.5 KiB |  00m00s
- [126/377] perl-File-Slurper-0:0.014-7.f 100% | 699.3 KiB/s |  21.0 KiB |  00m00s
- [127/377] perl-DateTime-Format-Builder- 100% |   2.4 MiB/s |  92.8 KiB |  00m00s
- [128/377] perl-IPC-Cmd-2:1.04-513.fc42. 100% |   7.8 MiB/s |  39.7 KiB |  00m00s
- [129/377] perl-IO-String-0:1.08-52.fc42 100% |   1.0 MiB/s |  17.1 KiB |  00m00s
- [130/377] perl-IPC-Run3-0:0.049-3.fc42. 100% |   2.9 MiB/s |  38.2 KiB |  00m00s
- [131/377] perl-LWP-Protocol-https-0:6.1 100% |   1.2 MiB/s |  21.3 KiB |  00m00s
- [132/377] perl-Lingua-Translit-0:0.29-9 100% |   2.5 MiB/s |  33.1 KiB |  00m00s
- [133/377] perl-List-AllUtils-0:0.19-14. 100% |   3.7 MiB/s |  48.9 KiB |  00m00s
- [134/377] perl-Parse-RecDescent-0:1.967 100% |   5.3 MiB/s | 208.1 KiB |  00m00s
- [135/377] perl-Log-Log4perl-0:1.57-7.fc 100% |   6.4 MiB/s | 361.1 KiB |  00m00s
- [136/377] perl-Sort-Key-0:1.33-33.fc42. 100% |   2.8 MiB/s |  45.8 KiB |  00m00s
- [137/377] perl-Text-Balanced-0:2.06-512 100% |   3.2 MiB/s |  48.8 KiB |  00m00s
- [138/377] perl-Regexp-Common-0:20240808 100% |   4.4 MiB/s | 185.1 KiB |  00m00s
- [139/377] texlive-cm-super-11:svn15878. 100% |  14.2 MiB/s |  61.7 MiB |  00m04s
- [140/377] perl-Text-CSV-0:2.05-1.fc42.n 100% | 869.6 KiB/s | 120.0 KiB |  00m00s
- [141/377] perl-Text-BibTeX-0:0.91-1.fc4 100% |   1.7 MiB/s | 251.5 KiB |  00m00s
- [142/377] perl-Text-Roman-0:3.5-30.fc42 100% |   1.7 MiB/s |  22.4 KiB |  00m00s
- [143/377] perl-Unicode-Normalize-0:1.32 100% |   3.4 MiB/s |  74.1 KiB |  00m00s
- [144/377] perl-Unicode-LineBreak-0:2019 100% |   2.5 MiB/s | 118.9 KiB |  00m00s
- [145/377] perl-XML-LibXML-Simple-0:1.01 100% |   2.3 MiB/s |  32.6 KiB |  00m00s
- [146/377] perl-Unicode-Collate-0:1.31-5 100% |   9.1 MiB/s | 645.6 KiB |  00m00s
- [147/377] perl-XML-LibXML-1:2.0210-4.fc 100% |   8.8 MiB/s | 351.3 KiB |  00m00s
- [148/377] perl-XML-Writer-0:0.900-16.fc 100% |   3.3 MiB/s |  33.4 KiB |  00m00s
- [149/377] perl-XML-LibXSLT-0:2.003.000- 100% |   2.4 MiB/s |  64.0 KiB |  00m00s
- [150/377] perl-autovivification-0:0.18- 100% |   2.2 MiB/s |  33.4 KiB |  00m00s
- [151/377] texlive-filehook-11:svn64822- 100% |   1.3 MiB/s |  20.2 KiB |  00m00s
- [152/377] texlive-fontspec-11:svn63386- 100% |   2.7 MiB/s |  42.2 KiB |  00m00s
- [153/377] texlive-luabidi-11:svn54512-7 100% |   1.4 MiB/s |  17.3 KiB |  00m00s
- [154/377] perl-libwww-perl-0:6.77-3.fc4 100% |   3.6 MiB/s | 207.4 KiB |  00m00s
- [155/377] texlive-luatexbase-11:svn5266 100% |   1.0 MiB/s |  13.5 KiB |  00m00s
- [156/377] texlive-makecmds-11:svn15878. 100% | 799.6 KiB/s |  12.8 KiB |  00m00s
- [157/377] texlive-algorithms-11:svn4242 100% |   2.0 MiB/s |  20.5 KiB |  00m00s
- [158/377] texlive-l3packages-11:svn6572 100% |   2.2 MiB/s |  38.1 KiB |  00m00s
- [159/377] perl-Tie-Cycle-0:1.229-2.fc42 100% |   3.8 MiB/s |  19.6 KiB |  00m00s
- [160/377] texlive-bidi-11:svn65572-76.f 100% |   2.2 MiB/s | 199.6 KiB |  00m00s
- [161/377] perl-Clone-0:0.47-2.fc42.x86_ 100% |   1.6 MiB/s |  21.9 KiB |  00m00s
- [162/377] perl-Dist-CheckConflicts-0:0. 100% | 891.8 KiB/s |  23.2 KiB |  00m00s
- [163/377] perl-Time-HiRes-4:1.9777-512. 100% |   1.7 MiB/s |  57.5 KiB |  00m00s
- [164/377] perl-Math-BigInt-1:2.0040.01- 100% |   4.3 MiB/s | 227.2 KiB |  00m00s
- [165/377] perl-Params-ValidationCompile 100% |   2.4 MiB/s |  37.2 KiB |  00m00s
- [166/377] perl-Try-Tiny-0:0.32-2.fc42.n 100% |   7.4 MiB/s |  37.7 KiB |  00m00s
- [167/377] perl-namespace-autoclean-0:0. 100% |   1.6 MiB/s |  26.3 KiB |  00m00s
- [168/377] perl-Specio-0:0.50-1.fc42.noa 100% |   3.2 MiB/s | 157.8 KiB |  00m00s
- [169/377] perl-DateTime-Format-Strptime 100% | 929.3 KiB/s |  40.9 KiB |  00m00s
- [170/377] perl-Module-Load-Conditional- 100% |   1.5 MiB/s |  22.0 KiB |  00m00s
- [171/377] perl-Params-Validate-0:1.31-1 100% |   1.6 MiB/s |  67.8 KiB |  00m00s
- [172/377] perl-Mozilla-CA-0:20250202-1. 100% |   1.8 MiB/s |  14.6 KiB |  00m00s
- [173/377] perl-Params-Check-1:0.38-512. 100% |   1.1 MiB/s |  21.8 KiB |  00m00s
- [174/377] perl-List-SomeUtils-0:0.59-7. 100% |   4.0 MiB/s |  45.1 KiB |  00m00s
- [175/377] perl-List-UtilsBy-0:0.12-11.f 100% |   1.4 MiB/s |  28.3 KiB |  00m00s
- [176/377] perl-IPC-SysV-0:2.09-513.fc42 100% |   2.5 MiB/s |  40.8 KiB |  00m00s
- [177/377] perl-Log-Dispatch-FileRotate- 100% |   1.8 MiB/s |  32.4 KiB |  00m00s
- [178/377] perl-Log-Dispatch-0:2.71-6.fc 100% |   2.1 MiB/s |  84.0 KiB |  00m00s
- [179/377] perl-LDAP-1:0.68-15.fc42.noar 100% |   7.4 MiB/s | 385.8 KiB |  00m00s
- [180/377] perl-XML-NamespaceSupport-0:1 100% |   3.1 MiB/s |  25.8 KiB |  00m00s
- [181/377] perl-MIME-Charset-0:1.013.1-7 100% |   1.8 MiB/s |  47.9 KiB |  00m00s
- [182/377] sombok-0:2.4.0-23.fc42.x86_64 100% |   2.2 MiB/s |  48.3 KiB |  00m00s
- [183/377] perl-XML-SAX-Base-0:1.09-25.f 100% |   3.2 MiB/s |  29.2 KiB |  00m00s
- [184/377] perl-XML-SAX-0:1.02-18.fc42.n 100% |   4.4 MiB/s |  62.4 KiB |  00m00s
- [185/377] libxslt-0:1.1.43-1.fc42.x86_6 100% |  11.1 MiB/s | 181.5 KiB |  00m00s
- [186/377] perl-Encode-Locale-0:1.05-31. 100% |   1.3 MiB/s |  18.5 KiB |  00m00s
- [187/377] perl-File-Listing-0:6.16-5.fc 100% |   2.0 MiB/s |  24.7 KiB |  00m00s
- [188/377] perl-autodie-0:2.37-513.fc42. 100% |   3.1 MiB/s |  96.9 KiB |  00m00s
- [189/377] perl-HTTP-Date-0:6.06-6.fc42. 100% |   3.0 MiB/s |  24.3 KiB |  00m00s
- [190/377] perl-HTTP-Cookies-0:6.11-5.fc 100% |   3.3 MiB/s |  37.2 KiB |  00m00s
- [191/377] perl-HTML-Parser-0:3.83-2.fc4 100% |   4.3 MiB/s | 124.7 KiB |  00m00s
- [192/377] perl-LWP-MediaTypes-0:6.04-20 100% |   2.3 MiB/s |  32.9 KiB |  00m00s
- [193/377] perl-HTTP-Negotiate-0:6.01-40 100% |   1.3 MiB/s |  19.5 KiB |  00m00s
- [194/377] perl-NTLM-0:1.09-40.fc42.noar 100% |   3.5 MiB/s |  21.7 KiB |  00m00s
- [195/377] perl-Module-Load-1:0.36-512.f 100% |   1.1 MiB/s |  17.3 KiB |  00m00s
- [196/377] texlive-fancyhdr-11:svn64977- 100% | 708.4 KiB/s |  17.0 KiB |  00m00s
- [197/377] texlive-changepage-11:svn1587 100% | 635.7 KiB/s |  17.2 KiB |  00m00s
- [198/377] perl-WWW-RobotRules-0:6.02-41 100% | 512.6 KiB/s |  19.5 KiB |  00m00s
- [199/377] texlive-natbib-11:svn20668.8. 100% |   2.3 MiB/s |  28.5 KiB |  00m00s
- [200/377] texlive-placeins-11:svn19848. 100% | 680.2 KiB/s |  10.9 KiB |  00m00s
- [201/377] texlive-sauerj-11:svn15878.0- 100% | 909.0 KiB/s |  17.3 KiB |  00m00s
- [202/377] texlive-xifthen-11:svn38929-7 100% | 688.4 KiB/s |  13.8 KiB |  00m00s
- [203/377] texlive-currfile-11:svn64673- 100% |   1.2 MiB/s |  18.4 KiB |  00m00s
- [204/377] texlive-titlesec-11:svn59845- 100% | 562.3 KiB/s |  31.5 KiB |  00m00s
- [205/377] texlive-euenc-11:svn19795.0.1 100% |   1.5 MiB/s |  19.5 KiB |  00m00s
- [206/377] texlive-kastrup-11:svn15878.0 100% | 629.6 KiB/s |  10.1 KiB |  00m00s
- [207/377] texlive-xunicode-11:svn30466. 100% |   1.3 MiB/s |  41.6 KiB |  00m00s
- [208/377] texlive-pgf-11:svn65553-76.fc 100% |   9.6 MiB/s | 893.1 KiB |  00m00s
- [209/377] texlive-ctablestack-11:svn385 100% | 863.4 KiB/s |  15.5 KiB |  00m00s
- [210/377] texlive-float-11:svn15878.1.3 100% |   1.4 MiB/s |  14.2 KiB |  00m00s
- [211/377] perl-Module-Runtime-0:0.016-2 100% |   3.7 MiB/s |  22.8 KiB |  00m00s
- [212/377] perl-Eval-Closure-0:0.14-25.f 100% |   1.7 MiB/s |  23.8 KiB |  00m00s
- [213/377] texlive-zref-11:svn62977-76.f 100% |   4.4 MiB/s | 685.0 KiB |  00m00s
- [214/377] perl-Exception-Class-0:1.45-1 100% |   2.2 MiB/s |  43.5 KiB |  00m00s
- [215/377] perl-Devel-StackTrace-1:2.05- 100% |   2.3 MiB/s |  30.6 KiB |  00m00s
- [216/377] perl-MRO-Compat-0:0.15-11.fc4 100% |   3.1 MiB/s |  25.4 KiB |  00m00s
- [217/377] perl-Ref-Util-0:0.204-22.fc42 100% |   1.3 MiB/s |  23.5 KiB |  00m00s
- [218/377] perl-Role-Tiny-0:2.002004-13. 100% |   2.8 MiB/s |  31.9 KiB |  00m00s
- [219/377] perl-version-9:0.99.33-2.fc42 100% |  10.2 MiB/s |  63.0 KiB |  00m00s
- [220/377] perl-XString-0:0.005-15.fc42. 100% |   1.2 MiB/s |  22.7 KiB |  00m00s
- [221/377] perl-namespace-clean-0:0.27-2 100% |   4.8 MiB/s |  34.2 KiB |  00m00s
- [222/377] perl-B-Hooks-EndOfScope-0:0.2 100% |   2.8 MiB/s |  43.1 KiB |  00m00s
- [223/377] perl-Module-Implementation-0: 100% |   2.3 MiB/s |  19.1 KiB |  00m00s
- [224/377] perl-Module-Metadata-0:1.0000 100% |   2.0 MiB/s |  35.4 KiB |  00m00s
- [225/377] perl-Convert-ASN1-0:0.34-5.fc 100% |   3.2 MiB/s |  59.3 KiB |  00m00s
- [226/377] perl-Devel-GlobalDestruction- 100% |   1.2 MiB/s |  17.1 KiB |  00m00s
- [227/377] perl-Text-Soundex-0:3.05-33.f 100% |   1.1 MiB/s |  29.7 KiB |  00m00s
- [228/377] perl-MIME-Lite-0:3.033-14.fc4 100% |   4.4 MiB/s |  93.9 KiB |  00m00s
- [229/377] perl-Mail-Sendmail-0:0.80-23. 100% |   7.0 MiB/s |  35.9 KiB |  00m00s
- [230/377] perl-JSON-0:4.10-7.fc42.noarc 100% |   1.4 MiB/s |  94.3 KiB |  00m00s
- [231/377] perl-Mail-Sender-1:0.903-26.f 100% |   1.5 MiB/s |  50.6 KiB |  00m00s
- [232/377] perl-Sys-Syslog-0:0.36-513.fc 100% |   1.5 MiB/s |  46.6 KiB |  00m00s
- [233/377] libthai-0:0.1.29-10.fc42.x86_ 100% |  10.3 MiB/s | 211.5 KiB |  00m00s
- [234/377] perl-Tie-RefHash-0:1.41-2.fc4 100% |   3.3 MiB/s |  23.6 KiB |  00m00s
- [235/377] perl-HTML-Tagset-0:3.24-3.fc4 100% |   1.1 MiB/s |  18.4 KiB |  00m00s
- [236/377] perl-MailTools-0:2.22-2.fc42. 100% |   1.5 MiB/s | 107.8 KiB |  00m00s
- [237/377] perl-IPC-System-Simple-0:1.30 100% |   1.0 MiB/s |  38.8 KiB |  00m00s
- [238/377] perl-TimeDate-1:2.33-16.fc42. 100% |   4.3 MiB/s |  57.6 KiB |  00m00s
- [239/377] mailcap-0:2.1.54-8.fc42.noarc 100% |   1.9 MiB/s |  34.3 KiB |  00m00s
- [240/377] texlive-ifmtarg-11:svn47544-7 100% | 416.3 KiB/s |  12.1 KiB |  00m00s
- [241/377] texlive-fp-11:svn49719-76.fc4 100% |   1.5 MiB/s |  33.4 KiB |  00m00s
- [242/377] perl-Digest-HMAC-0:1.05-2.fc4 100% | 629.1 KiB/s |  22.6 KiB |  00m00s
- [243/377] texlive-ms-11:svn57473-76.fc4 100% | 613.9 KiB/s |  14.7 KiB |  00m00s
- [244/377] perl-Devel-LexAlias-0:0.05-39 100% | 815.7 KiB/s |  16.3 KiB |  00m00s
- [245/377] perl-Class-Data-Inheritable-0 100% | 460.3 KiB/s |  12.9 KiB |  00m00s
- [246/377] perl-Ref-Util-XS-0:0.117-25.f 100% |   2.3 MiB/s |  23.6 KiB |  00m00s
- [247/377] perl-Class-Method-Modifiers-0 100% |   1.0 MiB/s |  49.8 KiB |  00m00s
- [248/377] perl-Sub-Exporter-Progressive 100% |   4.1 MiB/s |  21.0 KiB |  00m00s
- [249/377] perl-Variable-Magic-0:0.64-4. 100% |  10.7 MiB/s |  55.0 KiB |  00m00s
- [250/377] perl-Package-Stash-0:0.40-9.f 100% |   1.4 MiB/s |  32.5 KiB |  00m00s
- [251/377] perl-Text-Unidecode-0:1.30-26 100% |   4.2 MiB/s | 181.4 KiB |  00m00s
- [252/377] perl-Email-Date-Format-0:1.00 100% |   1.1 MiB/s |  18.8 KiB |  00m00s
- [253/377] texlive-tipa-11:svn29349.1.3- 100% |  12.5 MiB/s |   2.8 MiB |  00m00s
- [254/377] perl-MIME-Types-0:2.27-1.fc42 100% |   3.9 MiB/s |  71.1 KiB |  00m00s
- [255/377] perl-Net-SMTP-SSL-0:1.04-26.f 100% |   1.9 MiB/s |  11.7 KiB |  00m00s
- [256/377] libdatrie-0:0.2.13-11.fc42.x8 100% |   6.3 MiB/s |  32.4 KiB |  00m00s
- [257/377] perl-Devel-Caller-0:2.07-8.fc 100% |   1.9 MiB/s |  19.0 KiB |  00m00s
- [258/377] perl-Digest-SHA-1:6.04-513.fc 100% |   4.0 MiB/s |  62.2 KiB |  00m00s
- [259/377] perl-Package-Stash-XS-0:0.30- 100% |   2.3 MiB/s |  36.0 KiB |  00m00s
- [260/377] perltidy-0:20250311-1.fc42.no 100% |   3.3 MiB/s | 848.1 KiB |  00m00s
- [261/377] perl-PadWalker-0:2.5-16.fc42. 100% |   2.0 MiB/s |  27.1 KiB |  00m00s
- [262/377] perl-Sub-Exporter-0:0.991-5.f 100% |   2.0 MiB/s |  77.6 KiB |  00m00s
- [263/377] perl-Data-OptList-0:0.114-6.f 100% |   1.5 MiB/s |  26.8 KiB |  00m00s
- [264/377] perl-Package-Generator-0:1.10 100% |   1.4 MiB/s |  22.4 KiB |  00m00s
- [265/377] perl-Sub-Install-0:0.929-7.fc 100% |   3.2 MiB/s |  22.6 KiB |  00m00s
- [266/377] perl-Params-Util-0:1.102-17.f 100% |   2.0 MiB/s |  32.7 KiB |  00m00s
- [267/377] texlive-texlive-scripts-11:sv 100% |   2.3 MiB/s | 118.1 KiB |  00m00s
- [268/377] texlive-kpathsea-11:svn66209- 100% |   7.5 MiB/s |   1.1 MiB |  00m00s
- [269/377] texlive-base-11:20230311-94.f 100% |  16.9 MiB/s |   2.6 MiB |  00m00s
- [270/377] texlive-etex-11:svn66203-76.f 100% |   1.9 MiB/s |  25.8 KiB |  00m00s
- [271/377] texlive-hyph-utf8-11:svn61719 100% |   1.5 MiB/s |  26.8 KiB |  00m00s
- [272/377] texlive-hyphen-base-11:svn664 100% |   2.5 MiB/s |  31.2 KiB |  00m00s
- [273/377] texlive-luatex-11:svn66967-94 100% |  29.7 MiB/s |   3.8 MiB |  00m00s
- [274/377] texlive-plain-11:svn57963-76. 100% |   3.3 MiB/s |  41.0 KiB |  00m00s
- [275/377] texlive-knuth-lib-11:svn57963 100% |   2.0 MiB/s |  49.1 KiB |  00m00s
- [276/377] texlive-tex-ini-files-11:svn4 100% | 400.3 KiB/s |  12.8 KiB |  00m00s
- [277/377] zziplib-0:0.13.78-1.fc42.x86_ 100% |   5.7 MiB/s |  87.1 KiB |  00m00s
- [278/377] texlive-unicode-data-11:svn64 100% |   8.4 MiB/s | 362.2 KiB |  00m00s
- [279/377] fontconfig-0:2.16.0-2.fc42.x8 100% |  11.1 MiB/s | 272.0 KiB |  00m00s
- [280/377] libpaper-1:2.1.1-8.fc42.x86_6 100% |   2.2 MiB/s |  26.9 KiB |  00m00s
- [281/377] default-fonts-core-sans-0:4.2 100% |   4.4 MiB/s |  31.3 KiB |  00m00s
- [282/377] texlive-dehyph-11:svn48599-76 100% |   2.8 MiB/s |  63.1 KiB |  00m00s
- [283/377] xml-common-0:0.6.3-66.fc42.no 100% |   6.1 MiB/s |  31.2 KiB |  00m00s
- [284/377] texlive-pdftex-11:svn66243-94 100% |  34.0 MiB/s |   2.4 MiB |  00m00s
- [285/377] abattis-cantarell-vf-fonts-0: 100% |   7.3 MiB/s | 120.3 KiB |  00m00s
- [286/377] freetype-0:2.13.3-2.fc42.x86_ 100% |   9.9 MiB/s | 415.5 KiB |  00m00s
- [287/377] google-noto-fonts-common-0:20 100% |   3.3 MiB/s |  17.1 KiB |  00m00s
- [288/377] graphite2-0:1.3.14-18.fc42.x8 100% |   7.2 MiB/s |  95.8 KiB |  00m00s
- [289/377] harfbuzz-0:10.4.0-1.fc42.x86_ 100% |  21.1 MiB/s |   1.1 MiB |  00m00s
- [290/377] texlive-lib-11:20230311-94.fc 100% |  16.6 MiB/s | 493.4 KiB |  00m00s
- [291/377] google-noto-sans-vf-fonts-0:2 100% |   9.1 MiB/s | 614.5 KiB |  00m00s
- [292/377] texlive-lua-alt-getopt-11:svn 100% | 774.3 KiB/s |  10.1 KiB |  00m00s
- [293/377] texlive-lua-uni-algos-11:svn6 100% |   5.7 MiB/s |  94.0 KiB |  00m00s
- [294/377] texlive-luaotfload-11:svn6461 100% |  33.2 MiB/s |   1.2 MiB |  00m00s
- [295/377] texlive-epstopdf-11:svn66461- 100% |   2.6 MiB/s |  26.8 KiB |  00m00s
- [296/377] texlive-lualibs-11:svn64615-7 100% |   5.7 MiB/s | 156.7 KiB |  00m00s
- [297/377] perl-English-0:1.11-519.fc42. 100% |   1.1 MiB/s |  13.4 KiB |  00m00s
- [298/377] perl-Pod-Html-0:1.35-519.fc42 100% |   2.6 MiB/s |  29.3 KiB |  00m00s
- [299/377] perl-HTTP-Message-0:7.01-1.fc 100% |   6.5 MiB/s | 100.1 KiB |  00m00s
- [300/377] perl-Compress-Raw-Zlib-0:2.21 100% |   2.1 MiB/s |  65.5 KiB |  00m00s
- [301/377] perl-IO-HTML-0:1.004-14.fc42. 100% |   1.4 MiB/s |  27.4 KiB |  00m00s
- [302/377] perl-Net-HTTP-0:6.24-1.fc42.n 100% |   3.5 MiB/s |  39.2 KiB |  00m00s
- [303/377] perl-IO-Compress-0:2.213-3.fc 100% |   6.9 MiB/s | 305.7 KiB |  00m00s
- [304/377] perl-Compress-Raw-Bzip2-0:2.2 100% |   2.0 MiB/s |  36.3 KiB |  00m00s
- [305/377] perl-deprecate-0:0.04-519.fc4 100% |   1.4 MiB/s |  14.4 KiB |  00m00s
- [306/377] perl-Locale-Maketext-Simple-1 100% |   1.4 MiB/s |  17.4 KiB |  00m00s
- [307/377] perl-Module-CoreList-1:5.2025 100% |   3.7 MiB/s |  94.0 KiB |  00m00s
- [308/377] perl-Math-Complex-0:1.62-519. 100% |   2.2 MiB/s |  45.9 KiB |  00m00s
- [309/377] perl-Sys-Hostname-0:1.25-519. 100% |   1.7 MiB/s |  17.0 KiB |  00m00s
- [310/377] perl-Safe-0:2.46-519.fc42.noa 100% |   2.0 MiB/s |  24.7 KiB |  00m00s
- [311/377] perl-I18N-LangTags-0:0.45-519 100% |   3.4 MiB/s |  52.3 KiB |  00m00s
- [312/377] perl-Locale-Maketext-0:1.33-5 100% |   1.3 MiB/s |  93.7 KiB |  00m00s
- [313/377] perl-Authen-SASL-0:2.1900-1.f 100% |   3.9 MiB/s |  68.5 KiB |  00m00s
- [314/377] perl-Crypt-URandom-0:0.54-1.f 100% |   1.8 MiB/s |  31.2 KiB |  00m00s
- [315/377] perl-Date-Manip-0:6.98-1.fc42 100% |  25.2 MiB/s |   1.1 MiB |  00m00s
- [316/377] perl-GSSAPI-0:0.28-48.fc42.x8 100% |   4.9 MiB/s |  54.9 KiB |  00m00s
- [317/377] perl-ExtUtils-MM-Utils-2:7.76 100% |   1.0 MiB/s |  11.5 KiB |  00m00s
- [318/377] perl-I18N-Langinfo-0:0.24-519 100% |   2.1 MiB/s |  25.5 KiB |  00m00s
- [319/377] perl-JSON-PP-1:4.16-513.fc42. 100% |   2.7 MiB/s |  65.5 KiB |  00m00s
- [320/377] perl-File-ShareDir-0:1.118-13 100% |   2.6 MiB/s |  29.7 KiB |  00m00s
- [321/377] perl-Class-Inspector-0:1.36-1 100% |   1.6 MiB/s |  30.3 KiB |  00m00s
- [322/377] perl-DateTime-TimeZone-0:2.66 100% |  14.8 MiB/s | 393.4 KiB |  00m00s
- [323/377] perl-Class-Singleton-0:1.6-13 100% |   1.5 MiB/s |  25.4 KiB |  00m00s
- [324/377] perl-DateTime-TimeZone-Tzfile 100% |   1.1 MiB/s |  19.5 KiB |  00m00s
- [325/377] perl-Date-ISO8601-0:0.005-22. 100% |   1.2 MiB/s |  19.2 KiB |  00m00s
- [326/377] perl-Params-Classify-0:0.015- 100% |   5.0 MiB/s |  30.7 KiB |  00m00s
- [327/377] perl-DateTime-TimeZone-System 100% |   1.5 MiB/s |  22.6 KiB |  00m00s
- [328/377] perl-Devel-CallChecker-0:0.00 100% |   1.3 MiB/s |  23.7 KiB |  00m00s
- [329/377] perl-DynaLoader-Functions-0:0 100% |   1.1 MiB/s |  18.7 KiB |  00m00s
- [330/377] perl-File-Find-Rule-0:0.35-1. 100% |   2.8 MiB/s |  31.9 KiB |  00m00s
- [331/377] perl-subs-0:1.04-519.fc42.noa 100% | 824.6 KiB/s |  11.5 KiB |  00m00s
- [332/377] perl-DateTime-Locale-0:1.45-1 100% |  30.7 MiB/s |   4.1 MiB |  00m00s
- [333/377] perl-Business-ISBN-Data-0:202 100% |   4.0 MiB/s |  48.9 KiB |  00m00s
- [334/377] perl-Text-Glob-0:0.11-25.fc42 100% | 310.8 KiB/s |  13.4 KiB |  00m00s
- [335/377] perl-Number-Compare-0:0.03-40 100% | 234.4 KiB/s |  11.7 KiB |  00m00s
- [336/377] perl-Hash-Util-FieldHash-0:1. 100% |   3.4 MiB/s |  38.5 KiB |  00m00s
- [337/377] fonts-filesystem-1:2.0.5-22.f 100% | 793.2 KiB/s |   8.7 KiB |  00m00s
- [338/377] perl-Unicode-UCD-0:0.78-519.f 100% |   5.4 MiB/s |  78.1 KiB |  00m00s
- [339/377] libpng-2:1.6.53-1.fc42.x86_64 100% |   7.6 MiB/s | 124.1 KiB |  00m00s
- [340/377] perl-sigtrap-0:1.10-519.fc42. 100% | 967.7 KiB/s |  15.5 KiB |  00m00s
- [341/377] perl-meta-notation-0:5.40.3-5 100% |   1.0 MiB/s |  10.5 KiB |  00m00s
- [342/377] texlive-gsftopk-11:svn52851-9 100% |   3.1 MiB/s |  32.1 KiB |  00m00s
- [343/377] texlive-texlive.infra-11:svn6 100% |  15.8 MiB/s | 291.8 KiB |  00m00s
- [344/377] perl-Opcode-0:1.65-519.fc42.x 100% |   3.2 MiB/s |  35.6 KiB |  00m00s
- [345/377] perl-Tie-0:4.6-519.fc42.noarc 100% |   2.1 MiB/s |  27.5 KiB |  00m00s
- [346/377] perl-XML-XPath-0:1.48-8.fc42. 100% |   2.2 MiB/s |  86.7 KiB |  00m00s
- [347/377] perl-XML-Parser-0:2.47-6.fc42 100% |   5.6 MiB/s | 236.6 KiB |  00m00s
- [348/377] perl-open-0:1.13-519.fc42.noa 100% |   1.3 MiB/s |  16.4 KiB |  00m00s
- [349/377] perl-encoding-4:3.00-512.fc42 100% |   2.7 MiB/s |  63.0 KiB |  00m00s
- [350/377] perl-Filter-2:1.64-513.fc42.x 100% |   2.4 MiB/s |  86.0 KiB |  00m00s
- [351/377] xpdf-libs-1:4.06-1.fc42.x86_6 100% |  22.7 MiB/s | 603.5 KiB |  00m00s
- [352/377] perl-GD-0:2.83-3.fc42.x86_64  100% |   3.9 MiB/s | 179.2 KiB |  00m00s
- [353/377] gd-0:2.3.3-18.fc42.x86_64     100% |   2.9 MiB/s | 136.8 KiB |  00m00s
- [354/377] libavif-0:1.1.1-1.fc42.x86_64 100% |  16.3 MiB/s | 100.1 KiB |  00m00s
- [355/377] perl-GD-Barcode-0:2.00-6.fc42 100% |   8.3 MiB/s | 624.1 KiB |  00m00s
- [356/377] libXpm-0:3.5.17-5.fc42.x86_64 100% |   3.2 MiB/s |  66.1 KiB |  00m00s
- [357/377] libwebp-0:1.5.0-2.fc42.x86_64 100% |  13.6 MiB/s | 320.6 KiB |  00m00s
- [358/377] libyuv-0:0-0.56.20240704git96 100% |  10.4 MiB/s | 201.9 KiB |  00m00s
- [359/377] libimagequant-0:4.0.3-7.fc42. 100% |   8.9 MiB/s | 317.7 KiB |  00m00s
- [360/377] perl-PerlIO-utf8_strict-0:0.0 100% |   1.5 MiB/s |  25.4 KiB |  00m00s
- [361/377] perl-Class-XSAccessor-0:1.19- 100% |   2.8 MiB/s |  46.4 KiB |  00m00s
- [362/377] perl-IO-Compress-Brotli-0:0.0 100% |   1.5 MiB/s |  27.0 KiB |  00m00s
- [363/377] perl-List-MoreUtils-0:0.430-1 100% |   3.8 MiB/s |  61.8 KiB |  00m00s
- [364/377] perl-Exporter-Tiny-0:1.006002 100% |   3.3 MiB/s |  51.3 KiB |  00m00s
- [365/377] cpuinfo-0:24.09.26-2.git1e83a 100% |   2.9 MiB/s |  43.8 KiB |  00m00s
- [366/377] libjpeg-turbo-0:3.1.2-1.fc42. 100% |  12.9 MiB/s | 236.9 KiB |  00m00s
- [367/377] perl-List-MoreUtils-XS-0:0.43 100% |   1.0 MiB/s |  61.9 KiB |  00m00s
- [368/377] svt-av1-libs-0:2.3.0-1.fc42.x 100% |  15.4 MiB/s |   2.0 MiB |  00m00s
- [369/377] libvmaf-0:3.0.0-3.fc42.x86_64 100% |   6.7 MiB/s | 197.7 KiB |  00m00s
- [370/377] libaom-0:3.13.1-1.fc42.x86_64 100% |  25.4 MiB/s |   1.9 MiB |  00m00s
- [371/377] libdav1d-0:1.5.2-1.fc42.x86_6 100% |  15.2 MiB/s | 637.7 KiB |  00m00s
- [372/377] rav1e-libs-0:0.8.1-2.fc42.x86 100% |  25.3 MiB/s |   1.1 MiB |  00m00s
- [373/377] jbigkit-libs-0:2.1-31.fc42.x8 100% |  10.4 MiB/s |  53.3 KiB |  00m00s
- [374/377] libtiff-0:4.7.1-1.fc42.x86_64 100% |  14.5 MiB/s | 222.5 KiB |  00m00s
- [375/377] perl-Lexical-Var-0:0.010-8.fc 100% |   2.0 MiB/s |  32.9 KiB |  00m00s
- [376/377] liblerc-0:4.0.0-8.fc42.x86_64 100% |   8.5 MiB/s | 216.7 KiB |  00m00s
- [377/377] perl-Lexical-SealRequireHints 100% |   1.2 MiB/s |  26.1 KiB |  00m00s
- --------------------------------------------------------------------------------
- [377/377] Total                         100% |  25.7 MiB/s | 180.2 MiB |  00m07s
- Running transaction
- [  1/379] Verify package files          100% | 456.0   B/s | 377.0   B |  00m01s
- [  2/379] Prepare transaction           100% | 720.0   B/s | 377.0   B |  00m01s
- [  3/379] Installing texlive-base-11:20 100% | 120.4 MiB/s |  19.0 MiB |  00m00s
- [  4/379] Installing perl-Try-Tiny-0:0. 100% |  11.6 MiB/s |  71.1 KiB |  00m00s
- [  5/379] Installing perl-subs-0:1.04-5 100% | 498.4 KiB/s |   2.5 KiB |  00m00s
- [  6/379] Installing perl-version-9:0.9 100% |   8.6 MiB/s | 131.5 KiB |  00m00s
- [  7/379] Installing perl-Module-Runtim 100% |  10.2 MiB/s |  31.5 KiB |  00m00s
- [  8/379] Installing perl-Dist-CheckCon 100% |   5.4 MiB/s |  33.1 KiB |  00m00s
- [  9/379] Installing perl-Module-Implem 100% |   3.2 MiB/s |  26.1 KiB |  00m00s
- [ 10/379] Installing libpng-2:1.6.53-1. 100% |  33.9 MiB/s | 243.0 KiB |  00m00s
- [ 11/379] Installing texlive-lib-11:202 100% |  63.0 MiB/s |   1.1 MiB |  00m00s
- [ 12/379] Installing perl-Time-HiRes-4: 100% |  19.2 MiB/s | 117.8 KiB |  00m00s
- [ 13/379] Installing perl-Unicode-Norma 100% |  57.1 MiB/s | 467.4 KiB |  00m00s
- [ 14/379] Installing libjpeg-turbo-0:3. 100% |  78.8 MiB/s | 806.6 KiB |  00m00s
- [ 15/379] Installing fonts-filesystem-1 100% | 384.8 KiB/s | 788.0   B |  00m00s
- [ 16/379] Installing perl-Sys-Hostname- 100% |   3.4 MiB/s |  17.2 KiB |  00m00s
- [ 17/379] Installing perl-Compress-Raw- 100% |  23.1 MiB/s | 165.5 KiB |  00m00s
- [ 18/379] Installing perl-Clone-0:0.47- 100% |   6.7 MiB/s |  34.2 KiB |  00m00s
- [ 19/379] Installing perl-Data-Dump-0:1 100% |  12.7 MiB/s |  52.2 KiB |  00m00s
- [ 20/379] Installing libwebp-0:1.5.0-2. 100% |  44.3 MiB/s | 951.8 KiB |  00m00s
- [ 21/379] Installing perl-Date-ISO8601- 100% |   3.1 MiB/s |  25.5 KiB |  00m00s
- [ 22/379] Installing perl-I18N-Langinfo 100% |   7.1 MiB/s |  36.1 KiB |  00m00s
- [ 23/379] Installing perl-Encode-Locale 100% |   6.5 MiB/s |  20.1 KiB |  00m00s
- [ 24/379] Installing perl-Math-Complex- 100% |  20.9 MiB/s |  85.8 KiB |  00m00s
- [ 25/379] Installing perl-Math-BigInt-1 100% |  96.6 MiB/s | 988.8 KiB |  00m00s
- [ 26/379] Installing perl-English-0:1.1 100% |   3.2 MiB/s |   6.6 KiB |  00m00s
- [ 27/379] Installing perl-Sub-Install-0 100% |   9.1 MiB/s |  37.2 KiB |  00m00s
- [ 28/379] Installing perl-Params-Util-0 100% |   7.5 MiB/s |  61.0 KiB |  00m00s
- [ 29/379] Installing perl-Text-Unidecod 100% |   8.3 MiB/s | 491.8 KiB |  00m00s
- [ 30/379] Installing perl-TimeDate-1:2. 100% |   4.6 MiB/s | 103.7 KiB |  00m00s
- [ 31/379] Installing perl-HTTP-Date-0:6 100% |  10.4 MiB/s |  42.6 KiB |  00m00s
- [ 32/379] Installing perl-Devel-StackTr 100% |   9.9 MiB/s |  50.6 KiB |  00m00s
- [ 33/379] Installing perl-Module-Load-1 100% |   5.2 MiB/s |  15.9 KiB |  00m00s
- [ 34/379] Installing perl-XML-SAX-Base- 100% |  34.1 MiB/s | 174.5 KiB |  00m00s
- [ 35/379] Installing perl-XML-Namespace 100% |  15.0 MiB/s |  46.1 KiB |  00m00s
- [ 36/379] Installing perl-Text-Balanced 100% |  36.7 MiB/s | 112.7 KiB |  00m00s
- [ 37/379] Installing perl-File-Slurper- 100% |   7.3 MiB/s |  30.0 KiB |  00m00s
- [ 38/379] Installing perl-Parse-RecDesc 100% |  65.4 MiB/s | 535.4 KiB |  00m00s
- [ 39/379] Installing perl-File-Listing- 100% |  10.4 MiB/s |  42.5 KiB |  00m00s
- [ 40/379] Installing perl-Data-OptList- 100% |  12.7 MiB/s |  52.2 KiB |  00m00s
- [ 41/379] Installing perl-Crypt-URandom 100% |  10.2 MiB/s |  62.9 KiB |  00m00s
- [ 42/379] Installing perl-Data-Uniqid-0 100% |   1.4 MiB/s |   5.8 KiB |  00m00s
- [ 43/379] Installing perl-JSON-0:4.10-7 100% |  53.3 MiB/s | 273.0 KiB |  00m00s
- [ 44/379] Installing perl-JSON-PP-1:4.1 100% |   3.0 MiB/s | 143.6 KiB |  00m00s
- [ 45/379] Installing perl-Mail-Sendmail 100% |  10.8 MiB/s |  66.5 KiB |  00m00s
- [ 46/379] Installing abattis-cantarell- 100% |  31.6 MiB/s | 194.4 KiB |  00m00s
- [ 47/379] Installing libyuv-0:0-0.56.20 100% |  60.8 MiB/s | 685.3 KiB |  00m00s
- [ 48/379] Installing perl-Text-BibTeX-0 100% |   8.7 MiB/s | 515.9 KiB |  00m00s
- [ 49/379] Installing perl-Unicode-Colla 100% |  83.9 MiB/s |   4.2 MiB |  00m00s
- [ 50/379] Installing perl-Unicode-UCD-0 100% |  33.4 MiB/s | 205.0 KiB |  00m00s
- [ 51/379] Installing perl-Params-Valida 100% |  14.9 MiB/s | 152.2 KiB |  00m00s
- [ 52/379] Installing perl-List-SomeUtil 100% |  21.3 MiB/s | 109.0 KiB |  00m00s
- [ 53/379] Installing perl-Module-Metada 100% |  16.8 MiB/s |  69.0 KiB |  00m00s
- [ 54/379] Installing perl-Module-CoreLi 100% | 126.6 MiB/s |   1.3 MiB |  00m00s
- [ 55/379] Installing perl-Business-ISSN 100% |   4.5 MiB/s |  23.0 KiB |  00m00s
- [ 56/379] Installing perl-Opcode-0:1.65 100% |   8.1 MiB/s |  49.9 KiB |  00m00s
- [ 57/379] Installing perl-Safe-0:2.46-5 100% |  10.1 MiB/s |  31.0 KiB |  00m00s
- [ 58/379] Installing perl-Lexical-SealR 100% |   8.8 MiB/s |  44.9 KiB |  00m00s
- [ 59/379] Installing liblerc-0:4.0.0-8. 100% |  69.2 MiB/s | 637.6 KiB |  00m00s
- [ 60/379] Installing jbigkit-libs-0:2.1 100% |  20.1 MiB/s | 123.4 KiB |  00m00s
- [ 61/379] Installing libtiff-0:4.7.1-1. 100% |  51.0 MiB/s | 626.6 KiB |  00m00s
- [ 62/379] Installing rav1e-libs-0:0.8.1 100% | 118.4 MiB/s |   3.1 MiB |  00m00s
- [ 63/379] Installing libdav1d-0:1.5.2-1 100% | 112.9 MiB/s |   1.7 MiB |  00m00s
- [ 64/379] Installing libvmaf-0:3.0.0-3. 100% |  80.9 MiB/s | 828.4 KiB |  00m00s
- [ 65/379] Installing libaom-0:3.13.1-1. 100% | 111.8 MiB/s |   5.0 MiB |  00m00s
- [ 66/379] Installing cpuinfo-0:24.09.26 100% |   2.3 MiB/s | 109.7 KiB |  00m00s
- [ 67/379] Installing svt-av1-libs-0:2.3 100% | 122.3 MiB/s |   5.6 MiB |  00m00s
- [ 68/379] Installing libavif-0:1.1.1-1. 100% |  30.0 MiB/s | 215.2 KiB |  00m00s
- [ 69/379] Installing perl-List-MoreUtil 100% |  23.1 MiB/s | 165.7 KiB |  00m00s
- [ 70/379] Installing perl-Exporter-Tiny 100% |  11.3 MiB/s |  92.7 KiB |  00m00s
- [ 71/379] Installing libimagequant-0:4. 100% |  62.7 MiB/s | 705.9 KiB |  00m00s
- [ 72/379] Installing libXpm-0:3.5.17-5. 100% |  30.0 MiB/s | 153.7 KiB |  00m00s
- [ 73/379] Installing xpdf-libs-1:4.06-1 100% | 109.3 MiB/s |   1.7 MiB |  00m00s
- [ 74/379] Installing perl-Filter-2:1.64 100% |  13.5 MiB/s | 166.2 KiB |  00m00s
- [ 75/379] Installing perl-encoding-4:3. 100% |  36.7 MiB/s | 150.4 KiB |  00m00s
- [ 76/379] Installing perl-open-0:1.13-5 100% |   2.8 MiB/s |  11.7 KiB |  00m00s
- [ 77/379] Installing perl-Tie-0:4.6-519 100% |   8.2 MiB/s |  33.7 KiB |  00m00s
- [ 78/379] Installing perl-meta-notation 100% |   1.1 MiB/s |   2.3 KiB |  00m00s
- [ 79/379] Installing perl-sigtrap-0:1.1 100% |   5.6 MiB/s |  11.4 KiB |  00m00s
- [ 80/379] Installing perl-Hash-Util-Fie 100% |  10.4 MiB/s |  64.1 KiB |  00m00s
- [ 81/379] Installing perl-Business-ISBN 100% |  49.6 MiB/s | 304.8 KiB |  00m00s
- [ 82/379] Installing perl-Business-ISBN 100% |   9.4 MiB/s |  57.8 KiB |  00m00s
- [ 83/379] Installing perl-Text-Glob-0:0 100% |   4.5 MiB/s |   9.3 KiB |  00m00s
- [ 84/379] Installing perl-Number-Compar 100% |   1.8 MiB/s |   5.4 KiB |  00m00s
- [ 85/379] Installing perl-File-Find-Rul 100% |   1.2 MiB/s |  44.5 KiB |  00m00s
- [ 86/379] Installing perl-Data-Compare- 100% |  11.4 MiB/s |  58.1 KiB |  00m00s
- [ 87/379] Installing perl-DynaLoader-Fu 100% |   6.8 MiB/s |  20.7 KiB |  00m00s
- [ 88/379] Installing perl-Devel-CallChe 100% |   8.6 MiB/s |  35.1 KiB |  00m00s
- [ 89/379] Installing perl-Params-Classi 100% |   8.7 MiB/s |  53.4 KiB |  00m00s
- [ 90/379] Installing perl-DateTime-Time 100% |   9.6 MiB/s |  29.6 KiB |  00m00s
- [ 91/379] Installing perl-DateTime-Time 100% |   8.4 MiB/s |  25.8 KiB |  00m00s
- [ 92/379] Installing perl-Class-Singlet 100% |  10.1 MiB/s |  41.4 KiB |  00m00s
- [ 93/379] Installing perl-Class-Inspect 100% |  14.5 MiB/s |  59.3 KiB |  00m00s
- [ 94/379] Installing perl-File-ShareDir 100% |   9.6 MiB/s |  59.2 KiB |  00m00s
- [ 95/379] Installing perl-ExtUtils-MM-U 100% |   1.2 MiB/s |   3.7 KiB |  00m00s
- [ 96/379] Installing perl-GSSAPI-0:0.28 100% |  17.3 MiB/s | 124.2 KiB |  00m00s
- [ 97/379] Installing perl-I18N-LangTags 100% |  20.4 MiB/s |  83.6 KiB |  00m00s
- [ 98/379] Installing perl-Locale-Makete 100% |  34.0 MiB/s | 173.9 KiB |  00m00s
- [ 99/379] Installing perl-Locale-Makete 100% |   4.4 MiB/s |  13.5 KiB |  00m00s
- [100/379] Installing perl-Params-Check- 100% |   9.3 MiB/s |  28.6 KiB |  00m00s
- [101/379] Installing perl-Module-Load-C 100% |   9.7 MiB/s |  29.9 KiB |  00m00s
- [102/379] Installing perl-IPC-Cmd-2:1.0 100% |  12.0 MiB/s |  85.9 KiB |  00m00s
- [103/379] Installing perl-Date-Manip-0: 100% |  60.7 MiB/s |  10.9 MiB |  00m00s
- [104/379] Installing perl-deprecate-0:0 100% |   3.4 MiB/s |   6.9 KiB |  00m00s
- [105/379] Installing perl-Text-Soundex- 100% |   8.0 MiB/s |  49.0 KiB |  00m00s
- [106/379] Installing perl-Compress-Raw- 100% |  11.3 MiB/s |  69.6 KiB |  00m00s
- [107/379] Installing perl-IO-Compress-0 100% |  19.1 MiB/s |   1.0 MiB |  00m00s
- [108/379] Installing perl-Net-HTTP-0:6. 100% |  12.8 MiB/s |  78.6 KiB |  00m00s
- [109/379] Installing perl-IO-HTML-0:1.0 100% |  15.2 MiB/s |  46.8 KiB |  00m00s
- [110/379] Installing perl-Pod-Html-0:1. 100% |   1.1 MiB/s |  43.8 KiB |  00m00s
- [111/379] Installing graphite2-0:1.3.14 100% |   4.6 MiB/s | 197.9 KiB |  00m00s
- [112/379] Installing harfbuzz-0:10.4.0- 100% | 130.9 MiB/s |   2.7 MiB |  00m00s
- [113/379] Installing freetype-0:2.13.3- 100% |  93.3 MiB/s | 859.9 KiB |  00m00s
- [114/379] Installing google-noto-fonts- 100% |  18.1 MiB/s |  18.5 KiB |  00m00s
- [115/379] Installing google-noto-sans-v 100% | 126.5 MiB/s |   1.4 MiB |  00m00s
- [116/379] Installing default-fonts-core 100% | 606.4 KiB/s |  18.2 KiB |  00m00s
- [117/379] Installing xml-common-0:0.6.3 100% |  11.3 MiB/s |  81.1 KiB |  00m00s
- [118/379] Installing fontconfig-0:2.16. 100% | 676.4 KiB/s | 783.9 KiB |  00m01s
- [119/379] Installing gd-0:2.3.3-18.fc42 100% |  32.9 MiB/s | 404.7 KiB |  00m00s
- [120/379] Installing perl-GD-0:2.83-3.f 100% |   8.1 MiB/s | 405.5 KiB |  00m00s
- [121/379] Installing libpaper-1:2.1.1-8 100% |   8.2 MiB/s |  50.4 KiB |  00m00s
- [122/379] Installing zziplib-0:0.13.78- 100% |  25.7 MiB/s | 237.0 KiB |  00m00s
- [123/379] Installing perl-Package-Gener 100% |   7.7 MiB/s |  31.5 KiB |  00m00s
- [124/379] Installing perl-Sub-Exporter- 100% |  32.9 MiB/s | 201.9 KiB |  00m00s
- [125/379] Installing perl-Sub-Exporter- 100% |   9.4 MiB/s |  28.9 KiB |  00m00s
- [126/379] Installing perl-Devel-GlobalD 100% |   6.2 MiB/s |  19.0 KiB |  00m00s
- [127/379] Installing perl-PadWalker-0:2 100% |  10.4 MiB/s |  42.6 KiB |  00m00s
- [128/379] Installing perl-Devel-Caller- 100% |   6.1 MiB/s |  25.0 KiB |  00m00s
- [129/379] Installing perl-Devel-LexAlia 100% |   5.5 MiB/s |  16.9 KiB |  00m00s
- [130/379] Installing perl-Package-Stash 100% |   9.3 MiB/s |  66.9 KiB |  00m00s
- [131/379] Installing perl-Package-Stash 100% |   1.3 MiB/s |  58.1 KiB |  00m00s
- [132/379] Installing perl-Digest-SHA-1: 100% |   3.1 MiB/s | 115.0 KiB |  00m00s
- [133/379] Installing perl-Digest-HMAC-0 100% |  10.2 MiB/s |  31.5 KiB |  00m00s
- [134/379] Installing perl-NTLM-0:1.09-4 100% |  10.6 MiB/s |  32.7 KiB |  00m00s
- [135/379] Installing perl-Authen-SASL-0 100% |  21.9 MiB/s | 134.3 KiB |  00m00s
- [136/379] Installing libdatrie-0:0.2.13 100% |  14.4 MiB/s |  58.9 KiB |  00m00s
- [137/379] Installing libthai-0:0.1.29-1 100% |  95.8 MiB/s | 785.2 KiB |  00m00s
- [138/379] Installing sombok-0:2.4.0-23. 100% |  26.1 MiB/s | 133.8 KiB |  00m00s
- [139/379] Installing perl-Net-SMTP-SSL- 100% |   2.6 MiB/s |   5.3 KiB |  00m00s
- [140/379] Installing perl-MailTools-0:2 100% |  29.6 MiB/s | 212.5 KiB |  00m00s
- [141/379] Installing perl-MIME-Types-0: 100% |  45.6 MiB/s | 186.7 KiB |  00m00s
- [142/379] Installing perl-Email-Date-Fo 100% |  12.7 MiB/s |  26.0 KiB |  00m00s
- [143/379] Installing perl-MIME-Lite-0:3 100% |  81.0 MiB/s | 248.9 KiB |  00m00s
- [144/379] Installing perl-Variable-Magi 100% |  31.4 MiB/s | 128.6 KiB |  00m00s
- [145/379] Installing perl-B-Hooks-EndOf 100% |  14.7 MiB/s |  75.1 KiB |  00m00s
- [146/379] Installing perl-namespace-cle 100% |   8.7 MiB/s |  44.6 KiB |  00m00s
- [147/379] Installing perl-namespace-aut 100% |  14.7 MiB/s |  45.0 KiB |  00m00s
- [148/379] Installing perl-Class-Method- 100% |  26.8 MiB/s | 109.6 KiB |  00m00s
- [149/379] Installing perl-Role-Tiny-0:2 100% |  20.7 MiB/s |  63.5 KiB |  00m00s
- [150/379] Installing perl-Ref-Util-XS-0 100% |  10.9 MiB/s |  44.6 KiB |  00m00s
- [151/379] Installing perl-Ref-Util-0:0. 100% |  10.8 MiB/s |  33.2 KiB |  00m00s
- [152/379] Installing perl-Class-Data-In 100% |   3.4 MiB/s |   7.0 KiB |  00m00s
- [153/379] Installing perl-Exception-Cla 100% |  30.8 MiB/s |  94.6 KiB |  00m00s
- [154/379] Installing mailcap-0:2.1.54-8 100% |  42.5 MiB/s |  87.1 KiB |  00m00s
- [155/379] Installing perl-LWP-MediaType 100% |  39.3 MiB/s |  80.5 KiB |  00m00s
- [156/379] Installing perl-HTTP-Message- 100% |  53.7 MiB/s | 220.0 KiB |  00m00s
- [157/379] Installing perl-HTTP-Negotiat 100% |  14.0 MiB/s |  28.7 KiB |  00m00s
- [158/379] Installing perl-HTTP-Cookies- 100% |  24.6 MiB/s |  75.7 KiB |  00m00s
- [159/379] Installing perl-HTML-Tagset-0 100% |  19.2 MiB/s |  19.7 KiB |  00m00s
- [160/379] Installing perl-HTML-Parser-0 100% |  39.6 MiB/s | 283.7 KiB |  00m00s
- [161/379] Installing perltidy-0:2025031 100% |  81.2 MiB/s |   4.1 MiB |  00m00s
- [162/379] Installing perl-Eval-Closure- 100% |   4.2 MiB/s |  34.6 KiB |  00m00s
- [163/379] Installing perl-Params-Valida 100% |  23.0 MiB/s |  94.2 KiB |  00m00s
- [164/379] Installing perl-Tie-RefHash-0 100% |  18.2 MiB/s |  37.4 KiB |  00m00s
- [165/379] Installing perl-IPC-System-Si 100% |  17.9 MiB/s |  73.5 KiB |  00m00s
- [166/379] Installing perl-autodie-0:2.3 100% |  30.6 MiB/s | 219.1 KiB |  00m00s
- [167/379] Installing perl-Sys-Syslog-0: 100% |  18.9 MiB/s |  96.9 KiB |  00m00s
- [168/379] Installing perl-Mail-Sender-1 100% |  52.9 MiB/s | 162.5 KiB |  00m00s
- [169/379] Installing perl-Convert-ASN1- 100% |  18.8 MiB/s | 173.4 KiB |  00m00s
- [170/379] Installing perl-XString-0:0.0 100% |   5.7 MiB/s |  34.8 KiB |  00m00s
- [171/379] Installing perl-MRO-Compat-0: 100% |  11.0 MiB/s |  44.9 KiB |  00m00s
- [172/379] Installing perl-Specio-0:0.50 100% |  25.9 MiB/s | 344.4 KiB |  00m00s
- [173/379] Installing perl-Log-Dispatch- 100% |   3.7 MiB/s | 150.0 KiB |  00m00s
- [174/379] Installing perl-DateTime-Loca 100% |  64.2 MiB/s |  23.4 MiB |  00m00s
- [175/379] Installing perl-DateTime-Time 100% |  99.8 MiB/s |   6.2 MiB |  00m00s
- [176/379] Installing perl-DateTime-2:1. 100% |  46.9 MiB/s | 383.8 KiB |  00m00s
- [177/379] Installing perl-DateTime-Cale 100% |   8.4 MiB/s |  34.3 KiB |  00m00s
- [178/379] Installing perl-DateTime-Form 100% |  19.3 MiB/s |  98.7 KiB |  00m00s
- [179/379] Installing perl-DateTime-Form 100% |  26.0 MiB/s | 213.0 KiB |  00m00s
- [180/379] Installing perl-Log-Dispatch- 100% |  17.7 MiB/s |  54.5 KiB |  00m00s
- [181/379] Installing perl-WWW-RobotRule 100% |  12.6 MiB/s |  25.8 KiB |  00m00s
- [182/379] Installing perl-libwww-perl-0 100% |  11.3 MiB/s | 530.3 KiB |  00m00s
- [183/379] Installing perl-XML-Parser-0: 100% |  49.6 MiB/s | 659.6 KiB |  00m00s
- [184/379] Installing perl-XML-XPath-0:1 100% |   6.0 MiB/s | 210.1 KiB |  00m00s
- [185/379] Installing texlive-epstopdf-1 100% |   1.5 MiB/s |  40.6 KiB |  00m00s
- [186/379] Installing texlive-epstopdf-p 100% | 126.3 MiB/s | 388.0 KiB |  00m00s
- [187/379] Installing texlive-etex-11:sv 100% |  10.4 MiB/s |  42.7 KiB |  00m00s
- [188/379] Installing texlive-hyph-utf8- 100% |  24.9 MiB/s |  76.6 KiB |  00m00s
- [189/379] Installing texlive-hyphen-bas 100% |  32.2 MiB/s |  65.9 KiB |  00m00s
- [190/379] Installing texlive-knuth-lib- 100% |  17.3 MiB/s | 106.3 KiB |  00m00s
- [191/379] Installing texlive-plain-11:s 100% |  18.5 MiB/s | 113.8 KiB |  00m00s
- [192/379] Installing texlive-tex-ini-fi 100% |   3.3 MiB/s |  10.1 KiB |  00m00s
- [193/379] Installing texlive-unicode-da 100% | 180.6 MiB/s |   3.1 MiB |  00m00s
- [194/379] Installing texlive-graphics-d 100% |  32.5 MiB/s |  99.9 KiB |  00m00s
- [195/379] Installing texlive-cm-11:svn5 100% |  43.8 MiB/s |   1.0 MiB |  00m00s
- [196/379] Installing texlive-gsftopk-11 100% |   1.6 MiB/s |  48.4 KiB |  00m00s
- [197/379] Installing texlive-texlive.in 100% |  27.2 MiB/s |   1.0 MiB |  00m00s
- [198/379] Installing texlive-luatex-11: 100% | 138.7 MiB/s |   9.2 MiB |  00m00s
- [199/379] Installing texlive-texlive-sc 100% |   9.0 MiB/s | 349.1 KiB |  00m00s
- [200/379] Installing texlive-kpathsea-1 100% |  54.3 MiB/s |   2.1 MiB |  00m00s
- [201/379] Installing texlive-iftex-11:s 100% |   9.9 MiB/s |  30.3 KiB |  00m00s
- [202/379] Installing texlive-url-11:svn 100% |  10.8 MiB/s |  22.1 KiB |  00m00s
- [203/379] Installing texlive-kvoptions- 100% | 179.6 MiB/s | 551.6 KiB |  00m00s
- [204/379] Installing texlive-pdftexcmds 100% | 138.5 MiB/s | 425.6 KiB |  00m00s
- [205/379] Installing texlive-amsmath-11 100% |  87.5 MiB/s | 268.7 KiB |  00m00s
- [206/379] Installing texlive-etex-pkg-1 100% |  18.6 MiB/s |  19.0 KiB |  00m00s
- [207/379] Installing texlive-etoolbox-1 100% |  33.0 MiB/s |  67.7 KiB |  00m00s
- [208/379] Installing texlive-atbegshi-1 100% | 217.3 MiB/s | 445.1 KiB |  00m00s
- [209/379] Installing texlive-ltxcmds-11 100% | 207.8 MiB/s | 425.5 KiB |  00m00s
- [210/379] Installing texlive-booktabs-1 100% |   3.7 MiB/s |  19.0 KiB |  00m00s
- [211/379] Installing texlive-babel-11:s 100% |  13.6 MiB/s |   2.2 MiB |  00m00s
- [212/379] Installing texlive-footmisc-1 100% |  21.4 MiB/s |  65.6 KiB |  00m00s
- [213/379] Installing texlive-multido-11 100% |   9.6 MiB/s |  19.6 KiB |  00m00s
- [214/379] Installing texlive-hypdoc-11: 100% |  87.8 MiB/s | 359.5 KiB |  00m00s
- [215/379] Installing texlive-auxhook-11 100% |  98.7 MiB/s | 303.2 KiB |  00m00s
- [216/379] Installing texlive-etexcmds-1 100% |  62.9 MiB/s | 322.3 KiB |  00m00s
- [217/379] Installing texlive-infwarerr- 100% |  50.1 MiB/s | 307.5 KiB |  00m00s
- [218/379] Installing texlive-zapfding-1 100% |   9.0 MiB/s |  82.7 KiB |  00m00s
- [219/379] Installing texlive-amsfonts-1 100% |  51.6 MiB/s |   6.0 MiB |  00m00s
- [220/379] Installing texlive-lm-11:svn6 100% | 128.4 MiB/s |  39.5 MiB |  00m00s
- [221/379] Installing texlive-palatino-1 100% |  36.1 MiB/s |   1.1 MiB |  00m00s
- [222/379] Installing texlive-atveryend- 100% | 133.8 MiB/s | 411.2 KiB |  00m00s
- [223/379] Installing texlive-graphics-c 100% |   1.9 MiB/s |   3.9 KiB |  00m00s
- [224/379] Installing texlive-graphics-1 100% |  15.7 MiB/s | 128.7 KiB |  00m00s
- [225/379] Installing texlive-tools-11:s 100% |  30.9 MiB/s | 411.7 KiB |  00m00s
- [226/379] Installing texlive-xkeyval-11 100% |  11.7 MiB/s |  71.6 KiB |  00m00s
- [227/379] Installing texlive-colortbl-1 100% |  10.6 MiB/s |  21.8 KiB |  00m00s
- [228/379] Installing texlive-caption-11 100% |  81.0 MiB/s | 912.6 KiB |  00m00s
- [229/379] Installing texlive-csquotes-1 100% |  27.7 MiB/s | 113.3 KiB |  00m00s
- [230/379] Installing texlive-geometry-1 100% |  16.4 MiB/s |  50.2 KiB |  00m00s
- [231/379] Installing texlive-paralist-1 100% |  11.8 MiB/s |  24.1 KiB |  00m00s
- [232/379] Installing texlive-ragged2e-1 100% | 179.0 MiB/s | 733.3 KiB |  00m00s
- [233/379] Installing texlive-setspace-1 100% |  10.9 MiB/s |  22.4 KiB |  00m00s
- [234/379] Installing texlive-marvosym-1 100% |  23.0 MiB/s | 188.3 KiB |  00m00s
- [235/379] Installing texlive-subfig-11: 100% |  12.2 MiB/s |  37.5 KiB |  00m00s
- [236/379] Installing texlive-breakurl-1 100% |   8.7 MiB/s |  17.9 KiB |  00m00s
- [237/379] Installing texlive-logreq-11: 100% |  13.3 MiB/s |  27.2 KiB |  00m00s
- [238/379] Installing texlive-sauerj-11: 100% |   7.0 MiB/s |  28.6 KiB |  00m00s
- [239/379] Installing texlive-catchfile- 100% |  78.1 MiB/s | 320.0 KiB |  00m00s
- [240/379] Installing texlive-ifplatform 100% |   6.6 MiB/s |  13.5 KiB |  00m00s
- [241/379] Installing texlive-auto-pst-p 100% |   7.6 MiB/s |  15.6 KiB |  00m00s
- [242/379] Installing texlive-babelbib-1 100% |  69.9 MiB/s | 787.2 KiB |  00m00s
- [243/379] Installing texlive-memoir-11: 100% |  52.5 MiB/s | 483.6 KiB |  00m00s
- [244/379] Installing texlive-latex-font 100% |  11.0 MiB/s | 124.2 KiB |  00m00s
- [245/379] Installing texlive-latexconfi 100% |   1.9 MiB/s |   9.8 KiB |  00m00s
- [246/379] Installing texlive-gettitlest 100% | 110.7 MiB/s | 340.1 KiB |  00m00s
- [247/379] Installing texlive-hobsub-11: 100% |  20.0 MiB/s |  81.9 KiB |  00m00s
- [248/379] Installing texlive-hycolor-11 100% |  80.7 MiB/s | 413.1 KiB |  00m00s
- [249/379] Installing texlive-intcalc-11 100% |  92.3 MiB/s | 472.8 KiB |  00m00s
- [250/379] Installing texlive-kvdefineke 100% |  77.0 MiB/s | 315.5 KiB |  00m00s
- [251/379] Installing texlive-kvsetkeys- 100% | 139.6 MiB/s | 428.8 KiB |  00m00s
- [252/379] Installing texlive-letltxmacr 100% | 101.8 MiB/s | 312.6 KiB |  00m00s
- [253/379] Installing texlive-pdfescape- 100% |  92.1 MiB/s | 377.2 KiB |  00m00s
- [254/379] Installing texlive-refcount-1 100% |  85.3 MiB/s | 349.2 KiB |  00m00s
- [255/379] Installing texlive-stringenc- 100% |  87.8 MiB/s |   1.1 MiB |  00m00s
- [256/379] Installing texlive-alphalph-1 100% |  92.1 MiB/s | 377.1 KiB |  00m00s
- [257/379] Installing texlive-enumitem-1 100% |  19.6 MiB/s |  60.1 KiB |  00m00s
- [258/379] Installing texlive-hologo-11: 100% | 162.6 MiB/s | 666.1 KiB |  00m00s
- [259/379] Installing texlive-l3backend- 100% | 158.1 MiB/s |   1.1 MiB |  00m00s
- [260/379] Installing texlive-underscore 100% |   6.5 MiB/s |  20.1 KiB |  00m00s
- [261/379] Installing texlive-avantgar-1 100% |  40.1 MiB/s |   1.2 MiB |  00m00s
- [262/379] Installing texlive-bookman-11 100% |  34.3 MiB/s |   1.2 MiB |  00m00s
- [263/379] Installing texlive-charter-11 100% |  33.8 MiB/s | 415.0 KiB |  00m00s
- [264/379] Installing texlive-courier-11 100% |  36.6 MiB/s | 937.1 KiB |  00m00s
- [265/379] Installing texlive-helvetic-1 100% |  38.9 MiB/s |   1.8 MiB |  00m00s
- [266/379] Installing texlive-symbol-11: 100% |   8.9 MiB/s |  82.0 KiB |  00m00s
- [267/379] Installing texlive-times-11:s 100% |  32.2 MiB/s |   1.0 MiB |  00m00s
- [268/379] Installing texlive-utopia-11: 100% |  44.9 MiB/s | 551.4 KiB |  00m00s
- [269/379] Installing texlive-bigintcalc 100% | 126.2 MiB/s | 516.8 KiB |  00m00s
- [270/379] Installing texlive-bitset-11: 100% | 162.0 MiB/s | 663.5 KiB |  00m00s
- [271/379] Installing texlive-uniquecoun 100% | 102.0 MiB/s | 313.5 KiB |  00m00s
- [272/379] Installing texlive-rerunfilec 100% |  88.7 MiB/s | 363.3 KiB |  00m00s
- [273/379] Installing texlive-hyperref-1 100% |  68.3 MiB/s | 769.4 KiB |  00m00s
- [274/379] Installing texlive-attachfile 100% |  10.8 MiB/s |  33.2 KiB |  00m00s
- [275/379] Installing texlive-fpl-11:svn 100% |  79.5 MiB/s | 651.2 KiB |  00m00s
- [276/379] Installing texlive-mathpazo-1 100% |  16.3 MiB/s | 116.7 KiB |  00m00s
- [277/379] Installing texlive-psnfss-11: 100% |   6.5 MiB/s | 119.5 KiB |  00m00s
- [278/379] Installing texlive-fileconten 100% |   4.2 MiB/s |  13.0 KiB |  00m00s
- [279/379] Installing texlive-xstring-11 100% |  13.9 MiB/s |  57.0 KiB |  00m00s
- [280/379] Installing texlive-bookmark-1 100% | 111.8 MiB/s | 572.2 KiB |  00m00s
- [281/379] Installing texlive-marginnote 100% |  11.4 MiB/s |  23.3 KiB |  00m00s
- [282/379] Installing texlive-mparhack-1 100% |  10.3 MiB/s |  21.1 KiB |  00m00s
- [283/379] Installing texlive-picture-11 100% | 158.6 MiB/s | 324.8 KiB |  00m00s
- [284/379] Installing texlive-pst-math-1 100% |   7.7 MiB/s |  23.7 KiB |  00m00s
- [285/379] Installing texlive-varwidth-1 100% |   9.9 MiB/s |  20.3 KiB |  00m00s
- [286/379] Installing texlive-pdfcolmk-1 100% |  10.1 MiB/s |  20.7 KiB |  00m00s
- [287/379] Installing texlive-xcolor-11: 100% |  26.3 MiB/s |  80.7 KiB |  00m00s
- [288/379] Installing texlive-eso-pic-11 100% |  14.0 MiB/s |  28.6 KiB |  00m00s
- [289/379] Installing texlive-luabidi-11 100% |  13.1 MiB/s |  26.8 KiB |  00m00s
- [290/379] Installing texlive-makecmds-1 100% |   5.8 MiB/s |  11.9 KiB |  00m00s
- [291/379] Installing texlive-changepage 100% |  13.8 MiB/s |  28.2 KiB |  00m00s
- [292/379] Installing texlive-fancyhdr-1 100% |  16.0 MiB/s |  32.7 KiB |  00m00s
- [293/379] Installing texlive-natbib-11: 100% |  43.7 MiB/s | 134.2 KiB |  00m00s
- [294/379] Installing texlive-placeins-1 100% |   2.6 MiB/s |   5.4 KiB |  00m00s
- [295/379] Installing texlive-titlesec-1 100% |  32.2 MiB/s |  98.9 KiB |  00m00s
- [296/379] Installing texlive-zref-11:sv 100% | 133.8 MiB/s | 822.0 KiB |  00m00s
- [297/379] Installing texlive-euenc-11:s 100% |  13.7 MiB/s |  42.2 KiB |  00m00s
- [298/379] Installing texlive-kastrup-11 100% |   2.0 MiB/s |   4.2 KiB |  00m00s
- [299/379] Installing texlive-ctablestac 100% |  10.2 MiB/s |  20.9 KiB |  00m00s
- [300/379] Installing texlive-luatexbase 100% |   4.9 MiB/s |  15.1 KiB |  00m00s
- [301/379] Installing texlive-float-11:s 100% |   7.9 MiB/s |  16.2 KiB |  00m00s
- [302/379] Installing texlive-ifmtarg-11 100% |   4.8 MiB/s |   9.9 KiB |  00m00s
- [303/379] Installing texlive-fp-11:svn4 100% |  31.2 MiB/s | 127.9 KiB |  00m00s
- [304/379] Installing texlive-dehyph-11: 100% |  58.9 MiB/s | 241.2 KiB |  00m00s
- [305/379] Installing texlive-pdftex-11: 100% |  89.0 MiB/s |   4.6 MiB |  00m00s
- [306/379] Installing texlive-lua-alt-ge 100% |   2.1 MiB/s |   4.3 KiB |  00m00s
- [307/379] Installing texlive-lua-uni-al 100% |  64.1 MiB/s | 131.3 KiB |  00m00s
- [308/379] Installing texlive-lualibs-11 100% |  75.4 MiB/s | 771.6 KiB |  00m00s
- [309/379] Installing texlive-luaotfload 100% | 119.1 MiB/s |   8.2 MiB |  00m00s
- [310/379] Installing perl-LDAP-1:0.68-1 100% |  49.5 MiB/s | 962.3 KiB |  00m00s
- [311/379] Installing perl-XML-SAX-0:1.0 100% | 933.2 KiB/s | 126.0 KiB |  00m00s
- [312/379] Installing perl-XML-LibXML-1: 100% |   3.7 MiB/s | 927.4 KiB |  00m00s
- [313/379] Installing perl-XML-LibXML-Si 100% |  12.8 MiB/s |  52.3 KiB |  00m00s
- [314/379] Installing libxslt-0:1.1.43-1 100% |  10.2 MiB/s | 459.2 KiB |  00m00s
- [315/379] Installing perl-XML-LibXSLT-0 100% |  19.9 MiB/s | 142.4 KiB |  00m00s
- [316/379] Installing perl-MIME-Charset- 100% |  17.5 MiB/s | 107.3 KiB |  00m00s
- [317/379] Installing perl-Unicode-LineB 100% |  28.9 MiB/s | 266.4 KiB |  00m00s
- [318/379] Installing perl-IPC-SysV-0:2. 100% |  12.5 MiB/s |  76.7 KiB |  00m00s
- [319/379] Installing perl-Log-Log4perl- 100% |  17.9 MiB/s | 897.7 KiB |  00m00s
- [320/379] Installing perl-List-UtilsBy- 100% |  18.6 MiB/s |  57.2 KiB |  00m00s
- [321/379] Installing perl-List-AllUtils 100% |  44.2 MiB/s | 135.9 KiB |  00m00s
- [322/379] Installing perl-Mozilla-CA-0: 100% |   5.8 MiB/s |  11.9 KiB |  00m00s
- [323/379] Installing perl-LWP-Protocol- 100% |   7.6 MiB/s |  31.1 KiB |  00m00s
- [324/379] Installing perl-Tie-Cycle-0:1 100% |  12.4 MiB/s |  25.3 KiB |  00m00s
- [325/379] Installing perl-Business-ISMN 100% |  18.4 MiB/s |  37.7 KiB |  00m00s
- [326/379] Installing perl-autovivificat 100% |  20.7 MiB/s |  63.6 KiB |  00m00s
- [327/379] Installing perl-XML-Writer-0: 100% |  22.3 MiB/s |  68.6 KiB |  00m00s
- [328/379] Installing perl-Text-Roman-0: 100% |   8.5 MiB/s |  34.7 KiB |  00m00s
- [329/379] Installing perl-Text-CSV-0:2. 100% |  51.2 MiB/s | 366.8 KiB |  00m00s
- [330/379] Installing perl-Sort-Key-0:1. 100% |   9.4 MiB/s |  77.4 KiB |  00m00s
- [331/379] Installing perl-Regexp-Common 100% |  42.1 MiB/s | 474.0 KiB |  00m00s
- [332/379] Installing perl-Lingua-Transl 100% |   5.0 MiB/s | 179.3 KiB |  00m00s
- [333/379] Installing perl-IPC-Run3-0:0. 100% |  15.5 MiB/s |  63.3 KiB |  00m00s
- [334/379] Installing perl-IO-String-0:1 100% |   8.7 MiB/s |  17.8 KiB |  00m00s
- [335/379] Installing perl-Class-Accesso 100% |  21.0 MiB/s |  42.9 KiB |  00m00s
- [336/379] Installing biber-0:2.20-1.fc4 100% |  28.4 MiB/s |   1.4 MiB |  00m00s
- [337/379] Installing texlive-cm-super-1 100% | 158.9 MiB/s |  65.1 MiB |  00m00s
- [338/379] Installing texlive-bera-11:sv 100% |  40.7 MiB/s | 791.2 KiB |  00m00s
- [339/379] Installing texlive-algorithms 100% |  19.1 MiB/s |  39.1 KiB |  00m00s
- [340/379] Installing texlive-xifthen-11 100% |   7.4 MiB/s |  15.2 KiB |  00m00s
- [341/379] Installing texlive-xpatch-11: 100% |  13.4 MiB/s |  27.5 KiB |  00m00s
- [342/379] Installing texlive-l3packages 100% |  10.0 MiB/s | 265.5 KiB |  00m00s
- [343/379] Installing texlive-l3kernel-1 100% | 113.5 MiB/s |   1.4 MiB |  00m00s
- [344/379] Installing texlive-latex-11:s 100% | 307.5 MiB/s |  40.3 MiB |  00m00s
- [345/379] Installing texlive-tipa-11:sv 100% |  82.4 MiB/s |   3.8 MiB |  00m00s
- [346/379] Installing texlive-xunicode-1 100% |  71.7 MiB/s | 220.3 KiB |  00m00s
- [347/379] Installing texlive-fontspec-1 100% |  80.7 MiB/s | 330.6 KiB |  00m00s
- [348/379] Installing texlive-currfile-1 100% |  11.4 MiB/s |  35.0 KiB |  00m00s
- [349/379] Installing texlive-filehook-1 100% |   9.3 MiB/s |  57.2 KiB |  00m00s
- [350/379] Installing texlive-pgf-11:svn 100% |  40.6 MiB/s |   4.9 MiB |  00m00s
- [351/379] Installing texlive-ms-11:svn5 100% |   6.3 MiB/s |  19.3 KiB |  00m00s
- [352/379] Installing texlive-koma-scrip 100% | 150.5 MiB/s |   9.9 MiB |  00m00s
- [353/379] Installing texlive-bidi-11:sv 100% |  39.7 MiB/s |   1.2 MiB |  00m00s
- [354/379] Installing texlive-polyglossi 100% |  18.2 MiB/s | 764.6 KiB |  00m00s
- [355/379] Installing texlive-biblatex-1 100% |  84.7 MiB/s |   2.2 MiB |  00m00s
- [356/379] Installing texlive-showexpl-1 100% |  11.0 MiB/s |  22.6 KiB |  00m00s
- [357/379] Installing texlive-listings-1 100% |  94.9 MiB/s | 582.9 KiB |  00m00s
- [358/379] Installing texlive-fancyvrb-1 100% |  33.0 MiB/s |  67.5 KiB |  00m00s
- [359/379] Installing texlive-pst-3d-11: 100% |  10.2 MiB/s |  20.9 KiB |  00m00s
- [360/379] Installing texlive-pst-coil-1 100% |   7.1 MiB/s |  21.8 KiB |  00m00s
- [361/379] Installing texlive-pst-eps-11 100% |   5.4 MiB/s |  16.6 KiB |  00m00s
- [362/379] Installing texlive-pst-fill-1 100% |   7.8 MiB/s |  23.9 KiB |  00m00s
- [363/379] Installing texlive-pst-grad-1 100% |  11.0 MiB/s |  22.5 KiB |  00m00s
- [364/379] Installing texlive-pst-node-1 100% |  37.7 MiB/s | 115.8 KiB |  00m00s
- [365/379] Installing texlive-pst-ovl-11 100% |   6.7 MiB/s |  13.8 KiB |  00m00s
- [366/379] Installing texlive-pst-plot-1 100% |  42.6 MiB/s | 131.0 KiB |  00m00s
- [367/379] Installing texlive-pst-text-1 100% |   6.9 MiB/s |  21.3 KiB |  00m00s
- [368/379] Installing texlive-pst-tools- 100% |   9.2 MiB/s |  28.2 KiB |  00m00s
- [369/379] Installing texlive-pst-tree-1 100% |  21.3 MiB/s |  43.6 KiB |  00m00s
- [370/379] Installing texlive-pstricks-a 100% |  34.1 MiB/s | 104.9 KiB |  00m00s
- [371/379] Installing texlive-pstricks-1 100% |  58.0 MiB/s | 475.0 KiB |  00m00s
- [372/379] Installing oniguruma-0:6.9.10 100% | 106.8 MiB/s | 765.2 KiB |  00m00s
- [373/379] Installing jq-0:1.7.1-11.fc42 100% |   9.5 MiB/s | 437.5 KiB |  00m00s
- [374/379] Installing perl-GD-Barcode-0: 100% | 178.9 MiB/s |  10.6 MiB |  00m00s
- [375/379] Installing perl-List-MoreUtil 100% |  40.3 MiB/s | 165.0 KiB |  00m00s
- [376/379] Installing perl-Lexical-Var-0 100% |  13.6 MiB/s |  55.8 KiB |  00m00s
- [377/379] Installing perl-IO-Compress-B 100% |   1.1 MiB/s |  38.8 KiB |  00m00s
- [378/379] Installing perl-Class-XSAcces 100% |  16.5 MiB/s | 101.5 KiB |  00m00s
- [379/379] Installing perl-PerlIO-utf8_s 100% |   1.0 KiB/s |  44.1 KiB |  00m45s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "jq" "texlive-latex"
- jq-1.7.1-11.fc42.x86_64
- texlive-latex-svn65161-94.fc42.noarch
- texlive-latex-svn65161-94.fc42.noarch

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-python-3.9.0.0  (https://opam.ocaml.org/cache)
-> installed conf-jq.1
-> installed conf-python-3.9.0.0
-> removed   caisar.5.0
-> installed conf-texlive.2
-> installed caisar.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-23 15:19.03 ---> saved as "a5e5e754e0b5669071c61994bb5d74988e8be9e49d88ed4140896608b3231a4a"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [caisar: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "caisar" "-j" "255" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caisar.5.0)
Processing  2/4: [caisar: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "caisar" "--create-install-files" "caisar" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caisar.5.0)
-> compiled  caisar.5.0
-> removed   caisar.5.0
-> installed caisar.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-23 15:19.25 ---> saved as "d21a8e552cd74a8e80e7280aff25ee2ef933ab3a8dbaa2b63e4e7926f2b5b7ff"
Job succeeded
2026-01-23 15:19.37: Job succeeded