- github
- ocaml
- opam-repository
- 6fb9bc
- distributions,fedora-42-ocaml-4.14,caisar.5.0,tests
(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-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/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-4.14@sha256:73149ade3c795b45a085e9d649fd5afe69729921b1240796d24a21a39b3867d6
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-4.14@sha256:73149ade3c795b45a085e9d649fd5afe69729921b1240796d24a21a39b3867d6-caisar.5.0-6fb9bc721893564c7fcc5360575ff8ff9e76bc1c"
2026-01-23 15:10.11: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-4.14@sha256:73149ade3c795b45a085e9d649fd5afe69729921b1240796d24a21a39b3867d6)
(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:11.35: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
Updating files: 72% (13994/19256)
Updating files: 73% (14057/19256)
Updating files: 74% (14250/19256)
Updating files: 75% (14442/19256)
Updating files: 76% (14635/19256)
Updating files: 77% (14828/19256)
Updating files: 78% (15020/19256)
Updating files: 79% (15213/19256)
Updating files: 80% (15405/19256)
Updating files: 81% (15598/19256)
Updating files: 82% (15790/19256)
Updating files: 83% (15983/19256)
Updating files: 84% (16176/19256)
Updating files: 85% (16368/19256)
Updating files: 86% (16561/19256)
Updating files: 87% (16753/19256)
Updating files: 88% (16946/19256)
Updating files: 89% (17138/19256)
Updating files: 90% (17331/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-4.14@sha256:73149ade3c795b45a085e9d649fd5afe69729921b1240796d24a21a39b3867d6)
2026-01-23 15:25.42 ---> saved as "4728459b6d35ca5add9f9e11ec365bc94e35be5b19740b040cb4afad1e104f2f"
/: (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:25.42 ---> saved as "04bd17086dccc7463642a3b30c3e9cd9168e6c065a3dd652cdfb4f46cb23a90b"
/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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ocaml-patches-overlay] synchronised from git+https://github.com/ocurrent/opam-repository#patches
[default] Initialised
2026-01-23 15:26.39 ---> saved as "110d86480bac155863bec5e6ae102f47e0cb997bfbc31821f5384802fdea2d8a"
/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 2 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-01-23 15:26.40 ---> saved as "886df5c76b3cf68d91d068354e33b15339e423ac1aff49be86e036b3826d0a78"
/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:26.49 ---> saved as "624268d699c211f618d57e01469548865490cc07f4754a5294d4d906308b4034"
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-23 15:26.53 ---> saved as "c6838a294f39aa71bc37d75b9fc2138e9312cd45d2b0b143fd6e5f8b9b877646"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-23 15:27.10 ---> saved as "b6bdfab0fa0499db43f9e45fd24e97a5b1507b0d37b672cd4ebc46a2c984dac7"
/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% | 88.1 KiB/s | 16.3 KiB | 00m00s
- Repositories loaded.
- Metadata cache created.
2026-01-23 15:27.13 ---> saved as "cc11521cef27f70dee86d96e438bc0b6126b2270bc5d15285a69e1c39e746e80"
/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:27.13 ---> saved as "ad220fb0a0101f2d5b75921650e4caa4285ed116a833cc6cb6b3d112c677738d"
/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:
=== recompile 2 packages
- recompile ocaml 4.14.2 [upstream or system changes]
- recompile opam-depext 1.2.3 [uses ocaml]
=== install 75 packages
- install astring 0.8.5 [required by fpath]
- install base v0.16.4 [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.16.0 [required by time_now]
- install jst-config v0.16.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.12.4 [required by ppxlib]
- install ocaml-protoc-plugin 6.2.0 [required by caisar]
- 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.16.0 [required by jst-config]
- install ppx_base v0.16.0 [required by time_now]
- install ppx_cold v0.16.0 [required by ppx_base]
- install ppx_compare v0.16.0 [required by ppx_base]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.0.3 [required by caisar]
- install ppx_deriving_jsonschema 0.0.4 [required by caisar]
- install ppx_deriving_yaml 0.4.0 [required by caisar]
- install ppx_deriving_yojson 3.9.1 [required by caisar]
- install ppx_enumerate v0.16.0 [required by ppx_base]
- install ppx_expect v0.16.2 [required by ocaml-protoc-plugin]
- install ppx_globalize v0.16.0 [required by ppx_base]
- install ppx_hash v0.16.0 [required by ppx_base]
- install ppx_here v0.16.0 [required by ppx_expect]
- install ppx_inline_test v0.16.1 [required by caisar]
- install ppx_optcomp v0.16.0 [required by time_now]
- install ppx_sexp_conv v0.16.0 [required by why3]
- install ppxlib 0.35.0 [required by ppx_deriving_yaml, ppx_deriving, ppx_deriving_jsonschema, ppx_deriving_yojson]
- 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.16.0 [required by base]
- install stdio v0.16.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.16.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-devel-1:6.3.0-4.fc42.x86_64 100% | 2.2 MiB/s | 174.4 KiB | 00m00s
- [2/7] gmp-c++-1:6.3.0-4.fc42.x86_64 100% | 158.1 KiB/s | 18.5 KiB | 00m00s
- [3/7] protobuf-compiler-0:3.19.6-11.fc4 100% | 5.4 MiB/s | 781.9 KiB | 00m00s
- [4/7] protobuf-devel-0:3.19.6-11.fc42.x 100% | 7.9 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% | 9.2 MiB/s | 1.0 MiB | 00m00s
- [7/7] zlib-ng-compat-devel-0:2.2.5-2.fc 100% | 618.1 KiB/s | 38.3 KiB | 00m00s
- --------------------------------------------------------------------------------
- [7/7] Total 100% | 2.4 MiB/s | 2.4 MiB | 00m01s
- Running transaction
- [1/9] Verify package files 100% | 875.0 B/s | 7.0 B | 00m00s
- [2/9] Prepare transaction 100% | 184.0 B/s | 7.0 B | 00m00s
- [3/9] Installing protobuf-0:3.19.6-11.f 100% | 295.8 MiB/s | 3.3 MiB | 00m00s
- [4/9] Installing protobuf-compiler-0:3. 100% | 103.7 MiB/s | 2.5 MiB | 00m00s
- [5/9] Installing cmake-filesystem-0:3.3 100% | 1.9 MiB/s | 7.6 KiB | 00m00s
- [6/9] Installing zlib-ng-compat-devel-0 100% | 106.0 MiB/s | 108.5 KiB | 00m00s
- [7/9] Installing gmp-c++-1:6.3.0-4.fc42 100% | 27.8 MiB/s | 28.5 KiB | 00m00s
- [8/9] Installing gmp-devel-1:6.3.0-4.fc 100% | 172.9 MiB/s | 354.1 KiB | 00m00s
- [9/9] Installing protobuf-devel-0:3.19. 100% | 47.6 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.16.4 (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)
-> installed conf-protoc.4.4.0
-> retrieved ctypes.0.24.0 (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> 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.16.0 (cached)
-> retrieved jst-config.v0.16.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-protoc-plugin.6.2.0 (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 opam-depext.1.2.3 (cached)
-> removed opam-depext.1.2.3
-> removed ocaml.4.14.2
-> installed ocaml.4.14.2
-> retrieved pp.2.0.0 (cached)
-> retrieved ppx_assert.v0.16.0 (cached)
-> retrieved ppx_base.v0.16.0 (cached)
-> retrieved ppx_cold.v0.16.0 (cached)
-> retrieved ppx_compare.v0.16.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_deriving_jsonschema.0.0.4 (cached)
-> retrieved ppx_deriving_yaml.0.4.0 (cached)
-> retrieved ppx_deriving_yojson.3.9.1 (cached)
-> retrieved ppx_enumerate.v0.16.0 (cached)
-> retrieved ppx_expect.v0.16.2 (cached)
-> retrieved ppx_globalize.v0.16.0 (cached)
-> retrieved ppx_hash.v0.16.0 (cached)
-> retrieved ppx_here.v0.16.0 (cached)
-> retrieved ppx_inline_test.v0.16.1 (cached)
-> retrieved ppx_optcomp.v0.16.0 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved stdio.v0.16.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved time_now.v0.16.0 (cached)
-> installed opam-depext.1.2.3
-> 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 cmdliner.2.1.0
-> installed ocamlbuild.0.16.1
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> 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 bos.0.2.1
-> installed uunf.17.0.0
-> 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.16.0
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocamlgraph.2.2.0
-> installed pp.2.0.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed integers.0.7.0
-> installed ordering.3.21.0
-> installed dune-build-info.3.21.0
-> installed fs-io.3.21.0
-> installed top-closure.3.21.0
-> installed dune-configurator.3.21.0
-> installed dyn.3.21.0
-> installed base.v0.16.4
-> installed stdune.3.21.0
-> installed stdio.v0.16.0
-> installed ctypes.0.24.0
-> installed dune-private-libs.3.21.0
-> installed menhir.20250912
-> installed ppxlib.0.35.0
-> installed yaml.3.2.0
-> installed dune-site.3.21.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_deriving_jsonschema.0.0.4
-> installed ppx_compare.v0.16.0
-> installed ppx_deriving_yaml.0.4.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed uucp.17.0.0
-> installed ppx_hash.v0.16.0
-> installed ppx_deriving_yojson.3.9.1
-> installed ppx_assert.v0.16.0
-> installed ppx_base.v0.16.0
-> installed omd.2.0.0~alpha4
-> installed jst-config.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed ppx_expect.v0.16.2
-> installed ocaml-protoc-plugin.6.2.0
-> installed why3.1.8.2
-> installed caisar.5.0
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-01-23 15:28.47 ---> saved as "bb513da032198f477228b70412b1a25ecb4d8b9b06395859f4fb12c485d37c1d"
/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] oniguruma-0:6.9.10-2.fc42.x86 100% | 3.0 MiB/s | 217.4 KiB | 00m00s
- [ 2/377] jq-0:1.7.1-11.fc42.x86_64 100% | 2.4 MiB/s | 200.6 KiB | 00m00s
- [ 3/377] texlive-hypdoc-11:svn65678-76 100% | 846.0 KiB/s | 332.5 KiB | 00m00s
- [ 4/377] texlive-latex-11:svn65161-94. 100% | 57.4 MiB/s | 29.9 MiB | 00m01s
- [ 5/377] texlive-hyperref-11:svn65758- 100% | 1.3 MiB/s | 116.2 KiB | 00m00s
- [ 6/377] texlive-l3kernel-11:svn66094- 100% | 1.9 MiB/s | 199.1 KiB | 00m00s
- [ 7/377] texlive-latexconfig-11:svn535 100% | 1.1 MiB/s | 12.8 KiB | 00m00s
- [ 8/377] texlive-latex-fonts-11:svn288 100% | 664.3 KiB/s | 46.5 KiB | 00m00s
- [ 9/377] texlive-psnfss-11:svn54694-76 100% | 3.3 MiB/s | 56.7 KiB | 00m00s
- [ 10/377] texlive-url-11:svn32528.3.4-7 100% | 305.0 KiB/s | 17.1 KiB | 00m00s
- [ 11/377] texlive-tools-11:svn64892-76. 100% | 845.8 KiB/s | 71.9 KiB | 00m00s
- [ 12/377] texlive-atbegshi-11:svn53051- 100% | 5.4 MiB/s | 406.1 KiB | 00m00s
- [ 13/377] texlive-auxhook-11:svn53173-7 100% | 4.3 MiB/s | 292.2 KiB | 00m00s
- [ 14/377] texlive-bitset-11:svn53837-76 100% | 6.9 MiB/s | 617.6 KiB | 00m00s
- [ 15/377] texlive-etexcmds-11:svn53171- 100% | 3.2 MiB/s | 307.5 KiB | 00m00s
- [ 16/377] texlive-hobsub-11:svn52810-76 100% | 1.0 MiB/s | 75.0 KiB | 00m00s
- [ 17/377] texlive-gettitlestring-11:svn 100% | 3.7 MiB/s | 324.6 KiB | 00m00s
- [ 18/377] texlive-iftex-11:svn61910-76. 100% | 872.2 KiB/s | 18.3 KiB | 00m00s
- [ 19/377] texlive-hycolor-11:svn53584-7 100% | 3.1 MiB/s | 381.3 KiB | 00m00s
- [ 20/377] texlive-infwarerr-11:svn53023 100% | 2.8 MiB/s | 292.5 KiB | 00m00s
- [ 21/377] texlive-kvdefinekeys-11:svn53 100% | 4.9 MiB/s | 303.4 KiB | 00m00s
- [ 22/377] texlive-intcalc-11:svn53168-7 100% | 5.7 MiB/s | 429.5 KiB | 00m00s
- [ 23/377] texlive-kvoptions-11:svn63622 100% | 8.3 MiB/s | 491.0 KiB | 00m00s
- [ 24/377] texlive-letltxmacro-11:svn530 100% | 5.0 MiB/s | 297.3 KiB | 00m00s
- [ 25/377] texlive-kvsetkeys-11:svn64632 100% | 3.2 MiB/s | 395.8 KiB | 00m00s
- [ 26/377] texlive-ltxcmds-11:svn56421-7 100% | 4.9 MiB/s | 397.4 KiB | 00m00s
- [ 27/377] texlive-memoir-11:svn65040-76 100% | 1.2 MiB/s | 91.5 KiB | 00m00s
- [ 28/377] texlive-pdfescape-11:svn53082 100% | 7.3 MiB/s | 350.3 KiB | 00m00s
- [ 29/377] texlive-pdftexcmds-11:svn5577 100% | 3.4 MiB/s | 388.2 KiB | 00m00s
- [ 30/377] texlive-refcount-11:svn53164- 100% | 3.5 MiB/s | 332.3 KiB | 00m00s
- [ 31/377] texlive-rerunfilecheck-11:svn 100% | 4.3 MiB/s | 338.1 KiB | 00m00s
- [ 32/377] texlive-zapfding-11:svn61719- 100% | 1.0 MiB/s | 61.6 KiB | 00m00s
- [ 33/377] texlive-stringenc-11:svn52982 100% | 5.6 MiB/s | 699.3 KiB | 00m00s
- [ 34/377] texlive-alphalph-11:svn53087- 100% | 5.5 MiB/s | 358.2 KiB | 00m00s
- [ 35/377] texlive-amsmath-11:svn63514-7 100% | 1.0 MiB/s | 44.0 KiB | 00m00s
- [ 36/377] texlive-booktabs-11:svn53402- 100% | 182.7 KiB/s | 15.2 KiB | 00m00s
- [ 37/377] texlive-colortbl-11:svn64015- 100% | 792.1 KiB/s | 15.0 KiB | 00m00s
- [ 38/377] texlive-csquotes-11:svn64389- 100% | 635.6 KiB/s | 33.1 KiB | 00m00s
- [ 39/377] texlive-enumitem-11:svn51423- 100% | 2.4 MiB/s | 25.0 KiB | 00m00s
- [ 40/377] texlive-fancyvrb-11:svn65585- 100% | 1.8 MiB/s | 23.9 KiB | 00m00s
- [ 41/377] texlive-amsfonts-11:svn61937- 100% | 9.6 MiB/s | 3.7 MiB | 00m00s
- [ 42/377] texlive-hologo-11:svn61719-76 100% | 4.3 MiB/s | 583.9 KiB | 00m00s
- [ 43/377] texlive-l3backend-11:svn65573 100% | 7.8 MiB/s | 894.5 KiB | 00m00s
- [ 44/377] texlive-underscore-11:svn1826 100% | 1.0 MiB/s | 16.1 KiB | 00m00s
- [ 45/377] texlive-avantgar-11:svn61983- 100% | 8.0 MiB/s | 318.5 KiB | 00m00s
- [ 46/377] texlive-bookman-11:svn61719-7 100% | 5.6 MiB/s | 364.4 KiB | 00m00s
- [ 47/377] texlive-charter-11:svn15878.0 100% | 5.8 MiB/s | 203.2 KiB | 00m00s
- [ 48/377] texlive-cm-11:svn57963-76.fc4 100% | 2.6 MiB/s | 319.1 KiB | 00m00s
- [ 49/377] texlive-courier-11:svn61719-7 100% | 7.6 MiB/s | 522.4 KiB | 00m00s
- [ 50/377] texlive-graphics-11:svn66204- 100% | 4.0 MiB/s | 37.0 KiB | 00m00s
- [ 51/377] texlive-helvetic-11:svn61719- 100% | 6.7 MiB/s | 651.5 KiB | 00m00s
- [ 52/377] texlive-mathpazo-11:svn52663- 100% | 3.1 MiB/s | 86.9 KiB | 00m00s
- [ 53/377] texlive-palatino-11:svn61719- 100% | 4.1 MiB/s | 418.7 KiB | 00m00s
- [ 54/377] texlive-symbol-11:svn61719-76 100% | 2.5 MiB/s | 51.9 KiB | 00m00s
- [ 55/377] texlive-times-11:svn61719-76. 100% | 7.6 MiB/s | 364.5 KiB | 00m00s
- [ 56/377] texlive-utopia-11:svn15878.0- 100% | 6.8 MiB/s | 236.1 KiB | 00m00s
- [ 57/377] texlive-bigintcalc-11:svn5317 100% | 5.2 MiB/s | 463.3 KiB | 00m00s
- [ 58/377] texlive-etex-pkg-11:svn41784- 100% | 705.2 KiB/s | 14.1 KiB | 00m00s
- [ 59/377] texlive-atveryend-11:svn53108 100% | 5.0 MiB/s | 382.6 KiB | 00m00s
- [ 60/377] texlive-uniquecounter-11:svn5 100% | 3.9 MiB/s | 297.8 KiB | 00m00s
- [ 61/377] texlive-etoolbox-11:svn56554- 100% | 1.9 MiB/s | 23.1 KiB | 00m00s
- [ 62/377] texlive-pstricks-11:svn65346- 100% | 3.2 MiB/s | 114.0 KiB | 00m00s
- [ 63/377] texlive-graphics-cfg-11:svn41 100% | 1.0 MiB/s | 10.0 KiB | 00m00s
- [ 64/377] texlive-graphics-def-11:svn64 100% | 1.3 MiB/s | 25.8 KiB | 00m00s
- [ 65/377] texlive-lm-11:svn65956-76.fc4 100% | 9.8 MiB/s | 12.0 MiB | 00m01s
- [ 66/377] texlive-auto-pst-pdf-11:svn56 100% | 886.8 KiB/s | 14.2 KiB | 00m00s
- [ 67/377] texlive-fpl-11:svn54512-76.fc 100% | 2.0 MiB/s | 300.2 KiB | 00m00s
- [ 68/377] texlive-bera-11:svn20031.0-76 100% | 3.2 MiB/s | 352.8 KiB | 00m00s
- [ 69/377] texlive-babel-11:svn65823-76. 100% | 4.1 MiB/s | 476.4 KiB | 00m00s
- [ 70/377] texlive-breakurl-11:svn29901. 100% | 854.1 KiB/s | 14.5 KiB | 00m00s
- [ 71/377] texlive-biblatex-11:svn70725- 100% | 5.4 MiB/s | 303.7 KiB | 00m00s
- [ 72/377] texlive-caption-11:svn66580-7 100% | 2.0 MiB/s | 84.1 KiB | 00m00s
- [ 73/377] texlive-eso-pic-11:svn56658-7 100% | 978.2 KiB/s | 16.6 KiB | 00m00s
- [ 74/377] texlive-footmisc-11:svn62524- 100% | 1.2 MiB/s | 22.1 KiB | 00m00s
- [ 75/377] texlive-filecontents-11:svn52 100% | 338.0 KiB/s | 13.9 KiB | 00m00s
- [ 76/377] texlive-multido-11:svn18302.1 100% | 697.5 KiB/s | 15.3 KiB | 00m00s
- [ 77/377] texlive-paralist-11:svn43021- 100% | 1.6 MiB/s | 15.1 KiB | 00m00s
- [ 78/377] texlive-pst-3d-11:svn17257.1. 100% | 367.7 KiB/s | 15.4 KiB | 00m00s
- [ 79/377] texlive-pst-coil-11:svn62977- 100% | 1.2 MiB/s | 15.9 KiB | 00m00s
- [ 80/377] texlive-pst-eps-11:svn15878.1 100% | 1.8 MiB/s | 14.7 KiB | 00m00s
- [ 81/377] texlive-pst-fill-11:svn60671- 100% | 913.4 KiB/s | 15.5 KiB | 00m00s
- [ 82/377] texlive-pst-grad-11:svn15878. 100% | 463.1 KiB/s | 15.7 KiB | 00m00s
- [ 83/377] texlive-pst-node-11:svn61838- 100% | 1.8 MiB/s | 37.7 KiB | 00m00s
- [ 84/377] texlive-pst-ovl-11:svn54963-7 100% | 409.0 KiB/s | 13.9 KiB | 00m00s
- [ 85/377] texlive-pst-plot-11:svn65346- 100% | 1.6 MiB/s | 34.6 KiB | 00m00s
- [ 86/377] texlive-pst-text-11:svn49542- 100% | 651.4 KiB/s | 16.3 KiB | 00m00s
- [ 87/377] texlive-pst-tools-11:svn60621 100% | 510.9 KiB/s | 18.4 KiB | 00m00s
- [ 88/377] texlive-pst-tree-11:svn60421- 100% | 224.5 KiB/s | 18.4 KiB | 00m00s
- [ 89/377] texlive-pstricks-add-11:svn65 100% | 1.5 MiB/s | 34.2 KiB | 00m00s
- [ 90/377] texlive-ragged2e-11:svn66152- 100% | 6.2 MiB/s | 679.0 KiB | 00m00s
- [ 91/377] texlive-setspace-11:svn65206- 100% | 671.9 KiB/s | 15.5 KiB | 00m00s
- [ 92/377] texlive-showexpl-11:svn57414- 100% | 622.4 KiB/s | 15.6 KiB | 00m00s
- [ 93/377] texlive-koma-script-11:svn646 100% | 10.8 MiB/s | 6.4 MiB | 00m01s
- [ 94/377] texlive-xcolor-11:svn63563-76 100% | 5.8 MiB/s | 29.8 KiB | 00m00s
- [ 95/377] texlive-xkeyval-11:svn63616-7 100% | 4.8 MiB/s | 24.5 KiB | 00m00s
- [ 96/377] texlive-subfig-11:svn15878.1. 100% | 494.5 KiB/s | 18.8 KiB | 00m00s
- [ 97/377] texlive-ifplatform-11:svn4553 100% | 388.5 KiB/s | 13.6 KiB | 00m00s
- [ 98/377] biber-0:2.20-1.fc42.noarch 100% | 3.9 MiB/s | 295.0 KiB | 00m00s
- [ 99/377] texlive-epstopdf-pkg-11:svn53 100% | 2.7 MiB/s | 361.5 KiB | 00m00s
- [100/377] texlive-logreq-11:svn53003-76 100% | 1.0 MiB/s | 17.8 KiB | 00m00s
- [101/377] texlive-xpatch-11:svn54563-76 100% | 1.2 MiB/s | 16.1 KiB | 00m00s
- [102/377] texlive-xstring-11:svn65551-7 100% | 739.9 KiB/s | 22.9 KiB | 00m00s
- [103/377] texlive-polyglossia-11:svn657 100% | 2.9 MiB/s | 217.1 KiB | 00m00s
- [104/377] texlive-babelbib-11:svn57349- 100% | 1.2 MiB/s | 50.9 KiB | 00m00s
- [105/377] texlive-bookmark-11:svn56885- 100% | 5.5 MiB/s | 477.3 KiB | 00m00s
- [106/377] texlive-geometry-11:svn61719- 100% | 229.6 KiB/s | 20.4 KiB | 00m00s
- [107/377] texlive-marginnote-11:svn4838 100% | 267.6 KiB/s | 14.7 KiB | 00m00s
- [108/377] texlive-listings-11:svn66222- 100% | 2.0 MiB/s | 164.5 KiB | 00m00s
- [109/377] texlive-mparhack-11:svn59066- 100% | 698.6 KiB/s | 15.4 KiB | 00m00s
- [110/377] texlive-marvosym-11:svn29349. 100% | 1.8 MiB/s | 143.9 KiB | 00m00s
- [111/377] texlive-pst-math-11:svn64732- 100% | 703.1 KiB/s | 17.6 KiB | 00m00s
- [112/377] texlive-picture-11:svn54867-7 100% | 3.6 MiB/s | 309.6 KiB | 00m00s
- [113/377] texlive-varwidth-11:svn24104. 100% | 1.9 MiB/s | 15.4 KiB | 00m00s
- [114/377] texlive-attachfile-11:svn4209 100% | 634.6 KiB/s | 19.7 KiB | 00m00s
- [115/377] texlive-pdfcolmk-11:svn52912- 100% | 638.9 KiB/s | 16.0 KiB | 00m00s
- [116/377] perl-Business-ISBN-0:3.011-2. 100% | 2.5 MiB/s | 33.3 KiB | 00m00s
- [117/377] perl-Business-ISMN-0:1.204-3. 100% | 1.5 MiB/s | 25.5 KiB | 00m00s
- [118/377] perl-Business-ISSN-0:1.008-1. 100% | 1.1 MiB/s | 18.4 KiB | 00m00s
- [119/377] perl-Class-Accessor-0:0.51-22 100% | 1.6 MiB/s | 28.3 KiB | 00m00s
- [120/377] texlive-catchfile-11:svn53084 100% | 3.3 MiB/s | 304.6 KiB | 00m00s
- [121/377] perl-Data-Compare-0:1.29-6.fc 100% | 2.6 MiB/s | 34.6 KiB | 00m00s
- [122/377] perl-Data-Dump-0:1.25-12.fc42 100% | 2.7 MiB/s | 32.6 KiB | 00m00s
- [123/377] perl-Data-Uniqid-0:0.12-36.fc 100% | 529.4 KiB/s | 12.2 KiB | 00m00s
- [124/377] perl-DateTime-Calendar-Julian 100% | 4.5 MiB/s | 23.3 KiB | 00m00s
- [125/377] perl-DateTime-2:1.66-1.fc42.x 100% | 4.0 MiB/s | 132.5 KiB | 00m00s
- [126/377] texlive-cm-super-11:svn15878. 100% | 13.1 MiB/s | 61.7 MiB | 00m05s
- [127/377] perl-File-Slurper-0:0.014-7.f 100% | 279.7 KiB/s | 21.0 KiB | 00m00s
- [128/377] perl-DateTime-Format-Builder- 100% | 986.7 KiB/s | 92.8 KiB | 00m00s
- [129/377] perl-IPC-Cmd-2:1.04-513.fc42. 100% | 3.5 MiB/s | 39.7 KiB | 00m00s
- [130/377] perl-IO-String-0:1.08-52.fc42 100% | 950.7 KiB/s | 17.1 KiB | 00m00s
- [131/377] perl-LWP-Protocol-https-0:6.1 100% | 1.0 MiB/s | 21.3 KiB | 00m00s
- [132/377] perl-IPC-Run3-0:0.049-3.fc42. 100% | 763.0 KiB/s | 38.2 KiB | 00m00s
- [133/377] perl-Lingua-Translit-0:0.29-9 100% | 808.1 KiB/s | 33.1 KiB | 00m00s
- [134/377] perl-List-AllUtils-0:0.19-14. 100% | 1.8 MiB/s | 48.9 KiB | 00m00s
- [135/377] perl-Log-Log4perl-0:1.57-7.fc 100% | 7.2 MiB/s | 361.1 KiB | 00m00s
- [136/377] perl-Regexp-Common-0:20240808 100% | 3.8 MiB/s | 185.1 KiB | 00m00s
- [137/377] perl-Parse-RecDescent-0:1.967 100% | 3.6 MiB/s | 208.1 KiB | 00m00s
- [138/377] perl-Text-Balanced-0:2.06-512 100% | 2.0 MiB/s | 48.8 KiB | 00m00s
- [139/377] perl-Sort-Key-0:1.33-33.fc42. 100% | 803.5 KiB/s | 45.8 KiB | 00m00s
- [140/377] perl-Text-BibTeX-0:0.91-1.fc4 100% | 5.1 MiB/s | 251.5 KiB | 00m00s
- [141/377] perl-Text-CSV-0:2.05-1.fc42.n 100% | 3.3 MiB/s | 120.0 KiB | 00m00s
- [142/377] perl-Text-Roman-0:3.5-30.fc42 100% | 1.2 MiB/s | 22.4 KiB | 00m00s
- [143/377] perl-Unicode-Normalize-0:1.32 100% | 3.1 MiB/s | 74.1 KiB | 00m00s
- [144/377] perl-Unicode-Collate-0:1.31-5 100% | 7.4 MiB/s | 645.6 KiB | 00m00s
- [145/377] perl-Unicode-LineBreak-0:2019 100% | 1.3 MiB/s | 118.9 KiB | 00m00s
- [146/377] perl-XML-LibXSLT-0:2.003.000- 100% | 2.6 MiB/s | 64.0 KiB | 00m00s
- [147/377] perl-XML-Writer-0:0.900-16.fc 100% | 2.0 MiB/s | 33.4 KiB | 00m00s
- [148/377] perl-XML-LibXML-Simple-0:1.01 100% | 652.6 KiB/s | 32.6 KiB | 00m00s
- [149/377] perl-autovivification-0:0.18- 100% | 2.7 MiB/s | 33.4 KiB | 00m00s
- [150/377] perl-XML-LibXML-1:2.0210-4.fc 100% | 3.2 MiB/s | 351.3 KiB | 00m00s
- [151/377] texlive-filehook-11:svn64822- 100% | 2.0 MiB/s | 20.2 KiB | 00m00s
- [152/377] perl-libwww-perl-0:6.77-3.fc4 100% | 4.9 MiB/s | 207.4 KiB | 00m00s
- [153/377] texlive-fontspec-11:svn63386- 100% | 897.6 KiB/s | 42.2 KiB | 00m00s
- [154/377] texlive-luabidi-11:svn54512-7 100% | 456.4 KiB/s | 17.3 KiB | 00m00s
- [155/377] texlive-luatexbase-11:svn5266 100% | 964.6 KiB/s | 13.5 KiB | 00m00s
- [156/377] texlive-l3packages-11:svn6572 100% | 1.3 MiB/s | 38.1 KiB | 00m00s
- [157/377] texlive-makecmds-11:svn15878. 100% | 336.7 KiB/s | 12.8 KiB | 00m00s
- [158/377] texlive-algorithms-11:svn4242 100% | 1.5 MiB/s | 20.5 KiB | 00m00s
- [159/377] perl-Clone-0:0.47-2.fc42.x86_ 100% | 4.3 MiB/s | 21.9 KiB | 00m00s
- [160/377] perl-Tie-Cycle-0:1.229-2.fc42 100% | 1.2 MiB/s | 19.6 KiB | 00m00s
- [161/377] perl-Time-HiRes-4:1.9777-512. 100% | 2.1 MiB/s | 57.5 KiB | 00m00s
- [162/377] perl-Dist-CheckConflicts-0:0. 100% | 1.4 MiB/s | 23.2 KiB | 00m00s
- [163/377] texlive-bidi-11:svn65572-76.f 100% | 1.0 MiB/s | 199.6 KiB | 00m00s
- [164/377] perl-Params-ValidationCompile 100% | 1.6 MiB/s | 37.2 KiB | 00m00s
- [165/377] perl-Math-BigInt-1:2.0040.01- 100% | 3.1 MiB/s | 227.2 KiB | 00m00s
- [166/377] perl-Try-Tiny-0:0.32-2.fc42.n 100% | 1.0 MiB/s | 37.7 KiB | 00m00s
- [167/377] perl-namespace-autoclean-0:0. 100% | 537.5 KiB/s | 26.3 KiB | 00m00s
- [168/377] perl-DateTime-Format-Strptime 100% | 2.9 MiB/s | 40.9 KiB | 00m00s
- [169/377] perl-Specio-0:0.50-1.fc42.noa 100% | 2.2 MiB/s | 157.8 KiB | 00m00s
- [170/377] perl-Module-Load-Conditional- 100% | 1.4 MiB/s | 22.0 KiB | 00m00s
- [171/377] perl-Params-Check-1:0.38-512. 100% | 948.5 KiB/s | 21.8 KiB | 00m00s
- [172/377] perl-Mozilla-CA-0:20250202-1. 100% | 456.1 KiB/s | 14.6 KiB | 00m00s
- [173/377] perl-Params-Validate-0:1.31-1 100% | 1.3 MiB/s | 67.8 KiB | 00m00s
- [174/377] perl-List-UtilsBy-0:0.12-11.f 100% | 1.8 MiB/s | 28.3 KiB | 00m00s
- [175/377] perl-IPC-SysV-0:2.09-513.fc42 100% | 1.8 MiB/s | 40.8 KiB | 00m00s
- [176/377] perl-Log-Dispatch-0:2.71-6.fc 100% | 3.9 MiB/s | 84.0 KiB | 00m00s
- [177/377] perl-List-SomeUtils-0:0.59-7. 100% | 716.3 KiB/s | 45.1 KiB | 00m00s
- [178/377] perl-Log-Dispatch-FileRotate- 100% | 2.4 MiB/s | 32.4 KiB | 00m00s
- [179/377] perl-MIME-Charset-0:1.013.1-7 100% | 1.5 MiB/s | 47.9 KiB | 00m00s
- [180/377] sombok-0:2.4.0-23.fc42.x86_64 100% | 1.5 MiB/s | 48.3 KiB | 00m00s
- [181/377] perl-XML-NamespaceSupport-0:1 100% | 1.6 MiB/s | 25.8 KiB | 00m00s
- [182/377] perl-XML-SAX-Base-0:1.09-25.f 100% | 2.8 MiB/s | 29.2 KiB | 00m00s
- [183/377] perl-XML-SAX-0:1.02-18.fc42.n 100% | 2.9 MiB/s | 62.4 KiB | 00m00s
- [184/377] perl-LDAP-1:0.68-15.fc42.noar 100% | 3.5 MiB/s | 385.8 KiB | 00m00s
- [185/377] perl-autodie-0:2.37-513.fc42. 100% | 5.9 MiB/s | 96.9 KiB | 00m00s
- [186/377] perl-Encode-Locale-0:1.05-31. 100% | 1.1 MiB/s | 18.5 KiB | 00m00s
- [187/377] libxslt-0:1.1.43-1.fc42.x86_6 100% | 3.5 MiB/s | 181.5 KiB | 00m00s
- [188/377] perl-HTML-Parser-0:3.83-2.fc4 100% | 3.5 MiB/s | 124.7 KiB | 00m00s
- [189/377] perl-File-Listing-0:6.16-5.fc 100% | 404.3 KiB/s | 24.7 KiB | 00m00s
- [190/377] perl-HTTP-Date-0:6.06-6.fc42. 100% | 1.1 MiB/s | 24.3 KiB | 00m00s
- [191/377] perl-HTTP-Negotiate-0:6.01-40 100% | 780.1 KiB/s | 19.5 KiB | 00m00s
- [192/377] perl-LWP-MediaTypes-0:6.04-20 100% | 1.1 MiB/s | 32.9 KiB | 00m00s
- [193/377] perl-Module-Load-1:0.36-512.f 100% | 1.3 MiB/s | 17.3 KiB | 00m00s
- [194/377] perl-HTTP-Cookies-0:6.11-5.fc 100% | 465.6 KiB/s | 37.2 KiB | 00m00s
- [195/377] perl-NTLM-0:1.09-40.fc42.noar 100% | 1.5 MiB/s | 21.7 KiB | 00m00s
- [196/377] texlive-fancyhdr-11:svn64977- 100% | 1.4 MiB/s | 17.0 KiB | 00m00s
- [197/377] perl-WWW-RobotRules-0:6.02-41 100% | 779.2 KiB/s | 19.5 KiB | 00m00s
- [198/377] texlive-changepage-11:svn1587 100% | 1.0 MiB/s | 17.2 KiB | 00m00s
- [199/377] texlive-natbib-11:svn20668.8. 100% | 2.0 MiB/s | 28.5 KiB | 00m00s
- [200/377] texlive-sauerj-11:svn15878.0- 100% | 1.4 MiB/s | 17.3 KiB | 00m00s
- [201/377] texlive-placeins-11:svn19848. 100% | 453.5 KiB/s | 10.9 KiB | 00m00s
- [202/377] texlive-titlesec-11:svn59845- 100% | 1.4 MiB/s | 31.5 KiB | 00m00s
- [203/377] texlive-xifthen-11:svn38929-7 100% | 222.1 KiB/s | 13.8 KiB | 00m00s
- [204/377] texlive-currfile-11:svn64673- 100% | 341.1 KiB/s | 18.4 KiB | 00m00s
- [205/377] texlive-zref-11:svn62977-76.f 100% | 8.9 MiB/s | 685.0 KiB | 00m00s
- [206/377] texlive-euenc-11:svn19795.0.1 100% | 751.2 KiB/s | 19.5 KiB | 00m00s
- [207/377] texlive-xunicode-11:svn30466. 100% | 1.2 MiB/s | 41.6 KiB | 00m00s
- [208/377] texlive-kastrup-11:svn15878.0 100% | 197.5 KiB/s | 10.1 KiB | 00m00s
- [209/377] texlive-float-11:svn15878.1.3 100% | 887.9 KiB/s | 14.2 KiB | 00m00s
- [210/377] perl-Module-Runtime-0:0.016-2 100% | 4.5 MiB/s | 22.8 KiB | 00m00s
- [211/377] texlive-ctablestack-11:svn385 100% | 621.7 KiB/s | 15.5 KiB | 00m00s
- [212/377] perl-Exception-Class-0:1.45-1 100% | 3.5 MiB/s | 43.5 KiB | 00m00s
- [213/377] perl-Eval-Closure-0:0.14-25.f 100% | 1.4 MiB/s | 23.8 KiB | 00m00s
- [214/377] perl-MRO-Compat-0:0.15-11.fc4 100% | 5.0 MiB/s | 25.4 KiB | 00m00s
- [215/377] perl-Devel-StackTrace-1:2.05- 100% | 2.0 MiB/s | 30.6 KiB | 00m00s
- [216/377] perl-Ref-Util-0:0.204-22.fc42 100% | 1.9 MiB/s | 23.5 KiB | 00m00s
- [217/377] texlive-pgf-11:svn65553-76.fc 100% | 5.6 MiB/s | 893.1 KiB | 00m00s
- [218/377] perl-Role-Tiny-0:2.002004-13. 100% | 1.1 MiB/s | 31.9 KiB | 00m00s
- [219/377] perl-XString-0:0.005-15.fc42. 100% | 872.6 KiB/s | 22.7 KiB | 00m00s
- [220/377] perl-version-9:0.99.33-2.fc42 100% | 1.7 MiB/s | 63.0 KiB | 00m00s
- [221/377] perl-B-Hooks-EndOfScope-0:0.2 100% | 1.1 MiB/s | 43.1 KiB | 00m00s
- [222/377] perl-namespace-clean-0:0.27-2 100% | 977.0 KiB/s | 34.2 KiB | 00m00s
- [223/377] perl-Module-Metadata-0:1.0000 100% | 6.9 MiB/s | 35.4 KiB | 00m00s
- [224/377] perl-Module-Implementation-0: 100% | 1.2 MiB/s | 19.1 KiB | 00m00s
- [225/377] perl-Convert-ASN1-0:0.34-5.fc 100% | 3.4 MiB/s | 59.3 KiB | 00m00s
- [226/377] perl-Text-Soundex-0:3.05-33.f 100% | 2.2 MiB/s | 29.7 KiB | 00m00s
- [227/377] perl-Devel-GlobalDestruction- 100% | 742.7 KiB/s | 17.1 KiB | 00m00s
- [228/377] perl-MIME-Lite-0:3.033-14.fc4 100% | 4.2 MiB/s | 93.9 KiB | 00m00s
- [229/377] perl-JSON-0:4.10-7.fc42.noarc 100% | 2.0 MiB/s | 94.3 KiB | 00m00s
- [230/377] perl-Mail-Sender-1:0.903-26.f 100% | 4.1 MiB/s | 50.6 KiB | 00m00s
- [231/377] perl-Mail-Sendmail-0:0.80-23. 100% | 2.5 MiB/s | 35.9 KiB | 00m00s
- [232/377] perl-MailTools-0:2.22-2.fc42. 100% | 3.5 MiB/s | 107.8 KiB | 00m00s
- [233/377] perl-Sys-Syslog-0:0.36-513.fc 100% | 1.1 MiB/s | 46.6 KiB | 00m00s
- [234/377] libthai-0:0.1.29-10.fc42.x86_ 100% | 5.4 MiB/s | 211.5 KiB | 00m00s
- [235/377] perl-IPC-System-Simple-0:1.30 100% | 1.0 MiB/s | 38.8 KiB | 00m00s
- [236/377] perl-HTML-Tagset-0:3.24-3.fc4 100% | 735.3 KiB/s | 18.4 KiB | 00m00s
- [237/377] perl-Tie-RefHash-0:1.41-2.fc4 100% | 501.9 KiB/s | 23.6 KiB | 00m00s
- [238/377] perl-TimeDate-1:2.33-16.fc42. 100% | 2.4 MiB/s | 57.6 KiB | 00m00s
- [239/377] mailcap-0:2.1.54-8.fc42.noarc 100% | 880.4 KiB/s | 34.3 KiB | 00m00s
- [240/377] texlive-ifmtarg-11:svn47544-7 100% | 464.4 KiB/s | 12.1 KiB | 00m00s
- [241/377] perl-Digest-HMAC-0:1.05-2.fc4 100% | 612.1 KiB/s | 22.6 KiB | 00m00s
- [242/377] texlive-fp-11:svn49719-76.fc4 100% | 1.7 MiB/s | 33.4 KiB | 00m00s
- [243/377] texlive-ms-11:svn57473-76.fc4 100% | 377.8 KiB/s | 14.7 KiB | 00m00s
- [244/377] perl-Devel-LexAlias-0:0.05-39 100% | 582.7 KiB/s | 16.3 KiB | 00m00s
- [245/377] perl-Class-Data-Inheritable-0 100% | 537.0 KiB/s | 12.9 KiB | 00m00s
- [246/377] perl-Ref-Util-XS-0:0.117-25.f 100% | 1.2 MiB/s | 23.6 KiB | 00m00s
- [247/377] perltidy-0:20250311-1.fc42.no 100% | 9.9 MiB/s | 848.1 KiB | 00m00s
- [248/377] perl-Sub-Exporter-Progressive 100% | 1.4 MiB/s | 21.0 KiB | 00m00s
- [249/377] perl-Variable-Magic-0:0.64-4. 100% | 2.4 MiB/s | 55.0 KiB | 00m00s
- [250/377] perl-Package-Stash-0:0.40-9.f 100% | 2.4 MiB/s | 32.5 KiB | 00m00s
- [251/377] perl-Text-Unidecode-0:1.30-26 100% | 4.9 MiB/s | 181.4 KiB | 00m00s
- [252/377] texlive-tipa-11:svn29349.1.3- 100% | 13.0 MiB/s | 2.8 MiB | 00m00s
- [253/377] perl-MIME-Types-0:2.27-1.fc42 100% | 4.1 MiB/s | 71.1 KiB | 00m00s
- [254/377] perl-Email-Date-Format-0:1.00 100% | 627.1 KiB/s | 18.8 KiB | 00m00s
- [255/377] perl-Net-SMTP-SSL-0:1.04-26.f 100% | 1.4 MiB/s | 11.7 KiB | 00m00s
- [256/377] libdatrie-0:0.2.13-11.fc42.x8 100% | 2.6 MiB/s | 32.4 KiB | 00m00s
- [257/377] perl-Devel-Caller-0:2.07-8.fc 100% | 1.3 MiB/s | 19.0 KiB | 00m00s
- [258/377] perl-Digest-SHA-1:6.04-513.fc 100% | 2.2 MiB/s | 62.2 KiB | 00m00s
- [259/377] perl-Sub-Exporter-0:0.991-5.f 100% | 4.0 MiB/s | 77.6 KiB | 00m00s
- [260/377] perl-Class-Method-Modifiers-0 100% | 212.7 KiB/s | 49.8 KiB | 00m00s
- [261/377] perl-PadWalker-0:2.5-16.fc42. 100% | 564.1 KiB/s | 27.1 KiB | 00m00s
- [262/377] perl-Package-Stash-XS-0:0.30- 100% | 553.6 KiB/s | 36.0 KiB | 00m00s
- [263/377] perl-Package-Generator-0:1.10 100% | 1.0 MiB/s | 22.4 KiB | 00m00s
- [264/377] perl-Params-Util-0:1.102-17.f 100% | 1.3 MiB/s | 32.7 KiB | 00m00s
- [265/377] perl-Sub-Install-0:0.929-7.fc 100% | 2.0 MiB/s | 22.6 KiB | 00m00s
- [266/377] perl-Data-OptList-0:0.114-6.f 100% | 315.4 KiB/s | 26.8 KiB | 00m00s
- [267/377] texlive-kpathsea-11:svn66209- 100% | 12.5 MiB/s | 1.1 MiB | 00m00s
- [268/377] texlive-texlive-scripts-11:sv 100% | 2.2 MiB/s | 118.1 KiB | 00m00s
- [269/377] texlive-etex-11:svn66203-76.f 100% | 1.9 MiB/s | 25.8 KiB | 00m00s
- [270/377] texlive-base-11:20230311-94.f 100% | 20.7 MiB/s | 2.6 MiB | 00m00s
- [271/377] texlive-hyph-utf8-11:svn61719 100% | 1.1 MiB/s | 26.8 KiB | 00m00s
- [272/377] texlive-luatex-11:svn66967-94 100% | 44.7 MiB/s | 3.8 MiB | 00m00s
- [273/377] texlive-knuth-lib-11:svn57963 100% | 1.1 MiB/s | 49.1 KiB | 00m00s
- [274/377] texlive-hyphen-base-11:svn664 100% | 546.5 KiB/s | 31.2 KiB | 00m00s
- [275/377] texlive-tex-ini-files-11:svn4 100% | 582.3 KiB/s | 12.8 KiB | 00m00s
- [276/377] texlive-plain-11:svn57963-76. 100% | 1.7 MiB/s | 41.0 KiB | 00m00s
- [277/377] texlive-pdftex-11:svn66243-94 100% | 53.2 MiB/s | 2.4 MiB | 00m00s
- [278/377] texlive-unicode-data-11:svn64 100% | 3.3 MiB/s | 362.2 KiB | 00m00s
- [279/377] zziplib-0:0.13.78-1.fc42.x86_ 100% | 936.7 KiB/s | 87.1 KiB | 00m00s
- [280/377] texlive-dehyph-11:svn48599-76 100% | 2.5 MiB/s | 63.1 KiB | 00m00s
- [281/377] default-fonts-core-sans-0:4.2 100% | 7.6 MiB/s | 31.3 KiB | 00m00s
- [282/377] fontconfig-0:2.16.0-2.fc42.x8 100% | 2.6 MiB/s | 272.0 KiB | 00m00s
- [283/377] libpaper-1:2.1.1-8.fc42.x86_6 100% | 447.6 KiB/s | 26.9 KiB | 00m00s
- [284/377] xml-common-0:0.6.3-66.fc42.no 100% | 1.8 MiB/s | 31.2 KiB | 00m00s
- [285/377] abattis-cantarell-vf-fonts-0: 100% | 3.9 MiB/s | 120.3 KiB | 00m00s
- [286/377] freetype-0:2.13.3-2.fc42.x86_ 100% | 6.3 MiB/s | 415.5 KiB | 00m00s
- [287/377] google-noto-fonts-common-0:20 100% | 1.9 MiB/s | 17.1 KiB | 00m00s
- [288/377] google-noto-sans-vf-fonts-0:2 100% | 7.7 MiB/s | 614.5 KiB | 00m00s
- [289/377] texlive-lib-11:20230311-94.fc 100% | 28.3 MiB/s | 493.4 KiB | 00m00s
- [290/377] graphite2-0:1.3.14-18.fc42.x8 100% | 1.0 MiB/s | 95.8 KiB | 00m00s
- [291/377] texlive-lua-alt-getopt-11:svn 100% | 1.2 MiB/s | 10.1 KiB | 00m00s
- [292/377] texlive-luaotfload-11:svn6461 100% | 32.3 MiB/s | 1.2 MiB | 00m00s
- [293/377] texlive-lua-uni-algos-11:svn6 100% | 2.1 MiB/s | 94.0 KiB | 00m00s
- [294/377] harfbuzz-0:10.4.0-1.fc42.x86_ 100% | 6.5 MiB/s | 1.1 MiB | 00m00s
- [295/377] texlive-epstopdf-11:svn66461- 100% | 2.4 MiB/s | 26.8 KiB | 00m00s
- [296/377] perl-English-0:1.11-519.fc42. 100% | 1.3 MiB/s | 13.4 KiB | 00m00s
- [297/377] texlive-lualibs-11:svn64615-7 100% | 2.5 MiB/s | 156.7 KiB | 00m00s
- [298/377] perl-HTTP-Message-0:7.01-1.fc 100% | 8.9 MiB/s | 100.1 KiB | 00m00s
- [299/377] perl-Pod-Html-0:1.35-519.fc42 100% | 2.4 MiB/s | 29.3 KiB | 00m00s
- [300/377] perl-IO-HTML-0:1.004-14.fc42. 100% | 1.1 MiB/s | 27.4 KiB | 00m00s
- [301/377] perl-Compress-Raw-Zlib-0:2.21 100% | 1.6 MiB/s | 65.5 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-deprecate-0:0.04-519.fc4 100% | 1.3 MiB/s | 14.4 KiB | 00m00s
- [304/377] perl-Locale-Maketext-Simple-1 100% | 1.5 MiB/s | 17.4 KiB | 00m00s
- [305/377] perl-Locale-Maketext-0:1.33-5 100% | 3.5 MiB/s | 93.7 KiB | 00m00s
- [306/377] perl-Compress-Raw-Bzip2-0:2.2 100% | 511.9 KiB/s | 36.3 KiB | 00m00s
- [307/377] perl-Math-Complex-0:1.62-519. 100% | 4.1 MiB/s | 45.9 KiB | 00m00s
- [308/377] perl-Module-CoreList-1:5.2025 100% | 4.2 MiB/s | 94.0 KiB | 00m00s
- [309/377] perl-Sys-Hostname-0:1.25-519. 100% | 1.7 MiB/s | 17.0 KiB | 00m00s
- [310/377] perl-IO-Compress-0:2.213-3.fc 100% | 2.4 MiB/s | 305.7 KiB | 00m00s
- [311/377] perl-Safe-0:2.46-519.fc42.noa 100% | 2.0 MiB/s | 24.7 KiB | 00m00s
- [312/377] perl-I18N-LangTags-0:0.45-519 100% | 3.4 MiB/s | 52.3 KiB | 00m00s
- [313/377] perl-Date-Manip-0:6.98-1.fc42 100% | 45.3 MiB/s | 1.1 MiB | 00m00s
- [314/377] perl-Authen-SASL-0:2.1900-1.f 100% | 5.1 MiB/s | 68.5 KiB | 00m00s
- [315/377] perl-Crypt-URandom-0:0.54-1.f 100% | 1.8 MiB/s | 31.2 KiB | 00m00s
- [316/377] perl-ExtUtils-MM-Utils-2:7.76 100% | 1.0 MiB/s | 11.5 KiB | 00m00s
- [317/377] perl-I18N-Langinfo-0:0.24-519 100% | 2.3 MiB/s | 25.5 KiB | 00m00s
- [318/377] perl-JSON-PP-1:4.16-513.fc42. 100% | 1.6 MiB/s | 65.5 KiB | 00m00s
- [319/377] perl-File-ShareDir-0:1.118-13 100% | 1.2 MiB/s | 29.7 KiB | 00m00s
- [320/377] perl-GSSAPI-0:0.28-48.fc42.x8 100% | 713.0 KiB/s | 54.9 KiB | 00m00s
- [321/377] perl-Class-Inspector-0:1.36-1 100% | 1.6 MiB/s | 30.3 KiB | 00m00s
- [322/377] perl-DateTime-Locale-0:1.45-1 100% | 60.6 MiB/s | 4.1 MiB | 00m00s
- [323/377] perl-DateTime-TimeZone-0:2.66 100% | 14.2 MiB/s | 393.4 KiB | 00m00s
- [324/377] perl-Class-Singleton-0:1.6-13 100% | 1.2 MiB/s | 25.4 KiB | 00m00s
- [325/377] perl-DateTime-TimeZone-System 100% | 806.8 KiB/s | 22.6 KiB | 00m00s
- [326/377] perl-DateTime-TimeZone-Tzfile 100% | 649.7 KiB/s | 19.5 KiB | 00m00s
- [327/377] perl-Date-ISO8601-0:0.005-22. 100% | 620.0 KiB/s | 19.2 KiB | 00m00s
- [328/377] perl-Params-Classify-0:0.015- 100% | 6.0 MiB/s | 30.7 KiB | 00m00s
- [329/377] perl-DynaLoader-Functions-0:0 100% | 1.8 MiB/s | 18.7 KiB | 00m00s
- [330/377] perl-Devel-CallChecker-0:0.00 100% | 1.4 MiB/s | 23.7 KiB | 00m00s
- [331/377] perl-subs-0:1.04-519.fc42.noa 100% | 1.0 MiB/s | 11.5 KiB | 00m00s
- [332/377] perl-File-Find-Rule-0:0.35-1. 100% | 3.1 MiB/s | 31.9 KiB | 00m00s
- [333/377] perl-Number-Compare-0:0.03-40 100% | 976.6 KiB/s | 11.7 KiB | 00m00s
- [334/377] perl-Text-Glob-0:0.11-25.fc42 100% | 703.4 KiB/s | 13.4 KiB | 00m00s
- [335/377] perl-Business-ISBN-Data-0:202 100% | 4.0 MiB/s | 48.9 KiB | 00m00s
- [336/377] perl-Hash-Util-FieldHash-0:1. 100% | 3.8 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% | 6.9 MiB/s | 78.1 KiB | 00m00s
- [339/377] libpng-2:1.6.53-1.fc42.x86_64 100% | 7.1 MiB/s | 124.1 KiB | 00m00s
- [340/377] perl-sigtrap-0:1.10-519.fc42. 100% | 1.4 MiB/s | 15.5 KiB | 00m00s
- [341/377] perl-meta-notation-0:5.40.3-5 100% | 1.1 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% | 20.4 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-XML-XPath-0:1.48-8.fc42. 100% | 3.0 MiB/s | 86.7 KiB | 00m00s
- [346/377] perl-Tie-0:4.6-519.fc42.noarc 100% | 2.4 MiB/s | 27.5 KiB | 00m00s
- [347/377] perl-open-0:1.13-519.fc42.noa 100% | 1.6 MiB/s | 16.4 KiB | 00m00s
- [348/377] perl-encoding-4:3.00-512.fc42 100% | 3.2 MiB/s | 63.0 KiB | 00m00s
- [349/377] perl-Filter-2:1.64-513.fc42.x 100% | 4.9 MiB/s | 86.0 KiB | 00m00s
- [350/377] perl-XML-Parser-0:2.47-6.fc42 100% | 3.2 MiB/s | 236.6 KiB | 00m00s
- [351/377] xpdf-libs-1:4.06-1.fc42.x86_6 100% | 31.0 MiB/s | 603.5 KiB | 00m00s
- [352/377] gd-0:2.3.3-18.fc42.x86_64 100% | 2.3 MiB/s | 136.8 KiB | 00m00s
- [353/377] perl-GD-Barcode-0:2.00-6.fc42 100% | 5.2 MiB/s | 624.1 KiB | 00m00s
- [354/377] perl-GD-0:2.83-3.fc42.x86_64 100% | 1.6 MiB/s | 179.2 KiB | 00m00s
- [355/377] libXpm-0:3.5.17-5.fc42.x86_64 100% | 641.6 KiB/s | 66.1 KiB | 00m00s
- [356/377] libimagequant-0:4.0.3-7.fc42. 100% | 5.3 MiB/s | 317.7 KiB | 00m00s
- [357/377] libavif-0:1.1.1-1.fc42.x86_64 100% | 1.6 MiB/s | 100.1 KiB | 00m00s
- [358/377] libyuv-0:0-0.56.20240704git96 100% | 5.2 MiB/s | 201.9 KiB | 00m00s
- [359/377] libwebp-0:1.5.0-2.fc42.x86_64 100% | 6.3 MiB/s | 320.6 KiB | 00m00s
- [360/377] perl-PerlIO-utf8_strict-0:0.0 100% | 1.9 MiB/s | 25.4 KiB | 00m00s
- [361/377] perl-IO-Compress-Brotli-0:0.0 100% | 1.1 MiB/s | 27.0 KiB | 00m00s
- [362/377] perl-Class-XSAccessor-0:1.19- 100% | 1.3 MiB/s | 46.4 KiB | 00m00s
- [363/377] perl-Exporter-Tiny-0:1.006002 100% | 1.9 MiB/s | 51.3 KiB | 00m00s
- [364/377] perl-List-MoreUtils-XS-0:0.43 100% | 6.7 MiB/s | 61.9 KiB | 00m00s
- [365/377] perl-List-MoreUtils-0:0.430-1 100% | 1.3 MiB/s | 61.8 KiB | 00m00s
- [366/377] cpuinfo-0:24.09.26-2.git1e83a 100% | 3.9 MiB/s | 43.8 KiB | 00m00s
- [367/377] libjpeg-turbo-0:3.1.2-1.fc42. 100% | 16.5 MiB/s | 236.9 KiB | 00m00s
- [368/377] libaom-0:3.13.1-1.fc42.x86_64 100% | 40.3 MiB/s | 1.9 MiB | 00m00s
- [369/377] libvmaf-0:3.0.0-3.fc42.x86_64 100% | 4.3 MiB/s | 197.7 KiB | 00m00s
- [370/377] libdav1d-0:1.5.2-1.fc42.x86_6 100% | 29.7 MiB/s | 637.7 KiB | 00m00s
- [371/377] libtiff-0:4.7.1-1.fc42.x86_64 100% | 15.5 MiB/s | 222.5 KiB | 00m00s
- [372/377] jbigkit-libs-0:2.1-31.fc42.x8 100% | 3.3 MiB/s | 53.3 KiB | 00m00s
- [373/377] svt-av1-libs-0:2.3.0-1.fc42.x 100% | 7.2 MiB/s | 2.0 MiB | 00m00s
- [374/377] perl-Lexical-Var-0:0.010-8.fc 100% | 6.4 MiB/s | 32.9 KiB | 00m00s
- [375/377] perl-Lexical-SealRequireHints 100% | 5.1 MiB/s | 26.1 KiB | 00m00s
- [376/377] liblerc-0:4.0.0-8.fc42.x86_64 100% | 3.1 MiB/s | 216.7 KiB | 00m00s
- [377/377] rav1e-libs-0:0.8.1-2.fc42.x86 100% | 4.1 MiB/s | 1.1 MiB | 00m00s
- --------------------------------------------------------------------------------
- [377/377] Total 100% | 21.0 MiB/s | 180.2 MiB | 00m09s
- Running transaction
- [ 1/379] Verify package files 100% | 625.0 B/s | 377.0 B | 00m01s
- [ 2/379] Prepare transaction 100% | 1.8 KiB/s | 377.0 B | 00m00s
- [ 3/379] Installing texlive-base-11:20 100% | 388.1 MiB/s | 19.0 MiB | 00m00s
- [ 4/379] Installing perl-Try-Tiny-0:0. 100% | 69.4 MiB/s | 71.1 KiB | 00m00s
- [ 5/379] Installing perl-subs-0:1.04-5 100% | 0.0 B/s | 2.5 KiB | 00m00s
- [ 6/379] Installing perl-version-9:0.9 100% | 64.2 MiB/s | 131.5 KiB | 00m00s
- [ 7/379] Installing perl-Module-Runtim 100% | 30.7 MiB/s | 31.5 KiB | 00m00s
- [ 8/379] Installing perl-Dist-CheckCon 100% | 32.3 MiB/s | 33.1 KiB | 00m00s
- [ 9/379] Installing perl-Module-Implem 100% | 25.5 MiB/s | 26.1 KiB | 00m00s
- [ 10/379] Installing libpng-2:1.6.53-1. 100% | 118.6 MiB/s | 243.0 KiB | 00m00s
- [ 11/379] Installing texlive-lib-11:202 100% | 178.5 MiB/s | 1.1 MiB | 00m00s
- [ 12/379] Installing perl-Time-HiRes-4: 100% | 57.5 MiB/s | 117.8 KiB | 00m00s
- [ 13/379] Installing perl-Unicode-Norma 100% | 152.1 MiB/s | 467.4 KiB | 00m00s
- [ 14/379] Installing libjpeg-turbo-0:3. 100% | 262.6 MiB/s | 806.6 KiB | 00m00s
- [ 15/379] Installing fonts-filesystem-1 100% | 0.0 B/s | 788.0 B | 00m00s
- [ 16/379] Installing perl-Sys-Hostname- 100% | 16.8 MiB/s | 17.2 KiB | 00m00s
- [ 17/379] Installing perl-Compress-Raw- 100% | 80.8 MiB/s | 165.5 KiB | 00m00s
- [ 18/379] Installing perl-Clone-0:0.47- 100% | 33.4 MiB/s | 34.2 KiB | 00m00s
- [ 19/379] Installing perl-Data-Dump-0:1 100% | 51.0 MiB/s | 52.2 KiB | 00m00s
- [ 20/379] Installing libwebp-0:1.5.0-2. 100% | 185.9 MiB/s | 951.8 KiB | 00m00s
- [ 21/379] Installing perl-Date-ISO8601- 100% | 24.9 MiB/s | 25.5 KiB | 00m00s
- [ 22/379] Installing perl-I18N-Langinfo 100% | 35.3 MiB/s | 36.1 KiB | 00m00s
- [ 23/379] Installing perl-Encode-Locale 100% | 19.6 MiB/s | 20.1 KiB | 00m00s
- [ 24/379] Installing perl-Math-Complex- 100% | 83.8 MiB/s | 85.8 KiB | 00m00s
- [ 25/379] Installing perl-Math-BigInt-1 100% | 321.9 MiB/s | 988.8 KiB | 00m00s
- [ 26/379] Installing perl-English-0:1.1 100% | 0.0 B/s | 6.6 KiB | 00m00s
- [ 27/379] Installing perl-Sub-Install-0 100% | 36.3 MiB/s | 37.2 KiB | 00m00s
- [ 28/379] Installing perl-Params-Util-0 100% | 29.8 MiB/s | 61.0 KiB | 00m00s
- [ 29/379] Installing perl-Text-Unidecod 100% | 30.0 MiB/s | 491.8 KiB | 00m00s
- [ 30/379] Installing perl-TimeDate-1:2. 100% | 25.3 MiB/s | 103.7 KiB | 00m00s
- [ 31/379] Installing perl-HTTP-Date-0:6 100% | 41.6 MiB/s | 42.6 KiB | 00m00s
- [ 32/379] Installing perl-Devel-StackTr 100% | 49.4 MiB/s | 50.6 KiB | 00m00s
- [ 33/379] Installing perl-Module-Load-1 100% | 0.0 B/s | 15.9 KiB | 00m00s
- [ 34/379] Installing perl-XML-SAX-Base- 100% | 170.4 MiB/s | 174.5 KiB | 00m00s
- [ 35/379] Installing perl-XML-Namespace 100% | 45.0 MiB/s | 46.1 KiB | 00m00s
- [ 36/379] Installing perl-Text-Balanced 100% | 110.1 MiB/s | 112.7 KiB | 00m00s
- [ 37/379] Installing perl-File-Slurper- 100% | 29.3 MiB/s | 30.0 KiB | 00m00s
- [ 38/379] Installing perl-Parse-RecDesc 100% | 261.4 MiB/s | 535.4 KiB | 00m00s
- [ 39/379] Installing perl-File-Listing- 100% | 41.5 MiB/s | 42.5 KiB | 00m00s
- [ 40/379] Installing perl-Data-OptList- 100% | 51.0 MiB/s | 52.2 KiB | 00m00s
- [ 41/379] Installing perl-Crypt-URandom 100% | 30.7 MiB/s | 62.9 KiB | 00m00s
- [ 42/379] Installing perl-Data-Uniqid-0 100% | 5.7 MiB/s | 5.8 KiB | 00m00s
- [ 43/379] Installing perl-JSON-0:4.10-7 100% | 133.3 MiB/s | 273.0 KiB | 00m00s
- [ 44/379] Installing perl-JSON-PP-1:4.1 100% | 9.3 MiB/s | 143.6 KiB | 00m00s
- [ 45/379] Installing perl-Mail-Sendmail 100% | 65.0 MiB/s | 66.5 KiB | 00m00s
- [ 46/379] Installing abattis-cantarell- 100% | 94.9 MiB/s | 194.4 KiB | 00m00s
- [ 47/379] Installing libyuv-0:0-0.56.20 100% | 223.1 MiB/s | 685.3 KiB | 00m00s
- [ 48/379] Installing perl-Text-BibTeX-0 100% | 29.6 MiB/s | 515.9 KiB | 00m00s
- [ 49/379] Installing perl-Unicode-Colla 100% | 220.8 MiB/s | 4.2 MiB | 00m00s
- [ 50/379] Installing perl-Unicode-UCD-0 100% | 200.2 MiB/s | 205.0 KiB | 00m00s
- [ 51/379] Installing perl-Params-Valida 100% | 49.6 MiB/s | 152.2 KiB | 00m00s
- [ 52/379] Installing perl-List-SomeUtil 100% | 106.4 MiB/s | 109.0 KiB | 00m00s
- [ 53/379] Installing perl-Module-Metada 100% | 67.4 MiB/s | 69.0 KiB | 00m00s
- [ 54/379] Installing perl-Module-CoreLi 100% | 422.1 MiB/s | 1.3 MiB | 00m00s
- [ 55/379] Installing perl-Business-ISSN 100% | 22.5 MiB/s | 23.0 KiB | 00m00s
- [ 56/379] Installing perl-Opcode-0:1.65 100% | 24.3 MiB/s | 49.9 KiB | 00m00s
- [ 57/379] Installing perl-Safe-0:2.46-5 100% | 0.0 B/s | 31.0 KiB | 00m00s
- [ 58/379] Installing perl-Lexical-SealR 100% | 43.9 MiB/s | 44.9 KiB | 00m00s
- [ 59/379] Installing liblerc-0:4.0.0-8. 100% | 207.6 MiB/s | 637.6 KiB | 00m00s
- [ 60/379] Installing jbigkit-libs-0:2.1 100% | 60.3 MiB/s | 123.4 KiB | 00m00s
- [ 61/379] Installing libtiff-0:4.7.1-1. 100% | 153.0 MiB/s | 626.6 KiB | 00m00s
- [ 62/379] Installing rav1e-libs-0:0.8.1 100% | 308.0 MiB/s | 3.1 MiB | 00m00s
- [ 63/379] Installing libdav1d-0:1.5.2-1 100% | 282.2 MiB/s | 1.7 MiB | 00m00s
- [ 64/379] Installing libvmaf-0:3.0.0-3. 100% | 269.7 MiB/s | 828.4 KiB | 00m00s
- [ 65/379] Installing libaom-0:3.13.1-1. 100% | 314.5 MiB/s | 5.0 MiB | 00m00s
- [ 66/379] Installing cpuinfo-0:24.09.26 100% | 7.1 MiB/s | 109.7 KiB | 00m00s
- [ 67/379] Installing svt-av1-libs-0:2.3 100% | 312.4 MiB/s | 5.6 MiB | 00m00s
- [ 68/379] Installing libavif-0:1.1.1-1. 100% | 105.1 MiB/s | 215.2 KiB | 00m00s
- [ 69/379] Installing perl-List-MoreUtil 100% | 80.9 MiB/s | 165.7 KiB | 00m00s
- [ 70/379] Installing perl-Exporter-Tiny 100% | 45.3 MiB/s | 92.7 KiB | 00m00s
- [ 71/379] Installing libimagequant-0:4. 100% | 229.8 MiB/s | 705.9 KiB | 00m00s
- [ 72/379] Installing libXpm-0:3.5.17-5. 100% | 150.1 MiB/s | 153.7 KiB | 00m00s
- [ 73/379] Installing xpdf-libs-1:4.06-1 100% | 249.9 MiB/s | 1.7 MiB | 00m00s
- [ 74/379] Installing perl-Filter-2:1.64 100% | 40.6 MiB/s | 166.2 KiB | 00m00s
- [ 75/379] Installing perl-encoding-4:3. 100% | 146.9 MiB/s | 150.4 KiB | 00m00s
- [ 76/379] Installing perl-open-0:1.13-5 100% | 0.0 B/s | 11.7 KiB | 00m00s
- [ 77/379] Installing perl-Tie-0:4.6-519 100% | 32.9 MiB/s | 33.7 KiB | 00m00s
- [ 78/379] Installing perl-meta-notation 100% | 0.0 B/s | 2.3 KiB | 00m00s
- [ 79/379] Installing perl-sigtrap-0:1.1 100% | 0.0 B/s | 11.4 KiB | 00m00s
- [ 80/379] Installing perl-Hash-Util-Fie 100% | 31.3 MiB/s | 64.1 KiB | 00m00s
- [ 81/379] Installing perl-Business-ISBN 100% | 148.8 MiB/s | 304.8 KiB | 00m00s
- [ 82/379] Installing perl-Business-ISBN 100% | 56.5 MiB/s | 57.8 KiB | 00m00s
- [ 83/379] Installing perl-Text-Glob-0:0 100% | 0.0 B/s | 9.3 KiB | 00m00s
- [ 84/379] Installing perl-Number-Compar 100% | 5.3 MiB/s | 5.4 KiB | 00m00s
- [ 85/379] Installing perl-File-Find-Rul 100% | 3.1 MiB/s | 44.5 KiB | 00m00s
- [ 86/379] Installing perl-Data-Compare- 100% | 56.8 MiB/s | 58.1 KiB | 00m00s
- [ 87/379] Installing perl-DynaLoader-Fu 100% | 20.3 MiB/s | 20.7 KiB | 00m00s
- [ 88/379] Installing perl-Devel-CallChe 100% | 34.3 MiB/s | 35.1 KiB | 00m00s
- [ 89/379] Installing perl-Params-Classi 100% | 52.2 MiB/s | 53.4 KiB | 00m00s
- [ 90/379] Installing perl-DateTime-Time 100% | 28.9 MiB/s | 29.6 KiB | 00m00s
- [ 91/379] Installing perl-DateTime-Time 100% | 25.2 MiB/s | 25.8 KiB | 00m00s
- [ 92/379] Installing perl-Class-Singlet 100% | 40.4 MiB/s | 41.4 KiB | 00m00s
- [ 93/379] Installing perl-Class-Inspect 100% | 57.9 MiB/s | 59.3 KiB | 00m00s
- [ 94/379] Installing perl-File-ShareDir 100% | 28.9 MiB/s | 59.2 KiB | 00m00s
- [ 95/379] Installing perl-ExtUtils-MM-U 100% | 3.6 MiB/s | 3.7 KiB | 00m00s
- [ 96/379] Installing perl-GSSAPI-0:0.28 100% | 60.6 MiB/s | 124.2 KiB | 00m00s
- [ 97/379] Installing perl-I18N-LangTags 100% | 81.6 MiB/s | 83.6 KiB | 00m00s
- [ 98/379] Installing perl-Locale-Makete 100% | 169.9 MiB/s | 173.9 KiB | 00m00s
- [ 99/379] Installing perl-Locale-Makete 100% | 13.1 MiB/s | 13.5 KiB | 00m00s
- [100/379] Installing perl-Params-Check- 100% | 27.9 MiB/s | 28.6 KiB | 00m00s
- [101/379] Installing perl-Module-Load-C 100% | 29.2 MiB/s | 29.9 KiB | 00m00s
- [102/379] Installing perl-IPC-Cmd-2:1.0 100% | 28.0 MiB/s | 85.9 KiB | 00m00s
- [103/379] Installing perl-Date-Manip-0: 100% | 130.9 MiB/s | 10.9 MiB | 00m00s
- [104/379] Installing perl-deprecate-0:0 100% | 0.0 B/s | 6.9 KiB | 00m00s
- [105/379] Installing perl-Text-Soundex- 100% | 23.9 MiB/s | 49.0 KiB | 00m00s
- [106/379] Installing perl-Compress-Raw- 100% | 34.0 MiB/s | 69.6 KiB | 00m00s
- [107/379] Installing perl-IO-Compress-0 100% | 54.3 MiB/s | 1.0 MiB | 00m00s
- [108/379] Installing perl-Net-HTTP-0:6. 100% | 38.4 MiB/s | 78.6 KiB | 00m00s
- [109/379] Installing perl-IO-HTML-0:1.0 100% | 45.7 MiB/s | 46.8 KiB | 00m00s
- [110/379] Installing perl-Pod-Html-0:1. 100% | 3.3 MiB/s | 43.8 KiB | 00m00s
- [111/379] Installing graphite2-0:1.3.14 100% | 12.9 MiB/s | 197.9 KiB | 00m00s
- [112/379] Installing harfbuzz-0:10.4.0- 100% | 274.9 MiB/s | 2.7 MiB | 00m00s
- [113/379] Installing freetype-0:2.13.3- 100% | 209.9 MiB/s | 859.9 KiB | 00m00s
- [114/379] Installing google-noto-fonts- 100% | 0.0 B/s | 18.5 KiB | 00m00s
- [115/379] Installing google-noto-sans-v 100% | 278.3 MiB/s | 1.4 MiB | 00m00s
- [116/379] Installing default-fonts-core 100% | 957.4 KiB/s | 18.2 KiB | 00m00s
- [117/379] Installing xml-common-0:0.6.3 100% | 39.6 MiB/s | 81.1 KiB | 00m00s
- [118/379] Installing fontconfig-0:2.16. 100% | 739.5 KiB/s | 783.9 KiB | 00m01s
- [119/379] Installing gd-0:2.3.3-18.fc42 100% | 131.7 MiB/s | 404.7 KiB | 00m00s
- [120/379] Installing perl-GD-0:2.83-3.f 100% | 24.8 MiB/s | 405.5 KiB | 00m00s
- [121/379] Installing libpaper-1:2.1.1-8 100% | 49.2 MiB/s | 50.4 KiB | 00m00s
- [122/379] Installing zziplib-0:0.13.78- 100% | 77.2 MiB/s | 237.0 KiB | 00m00s
- [123/379] Installing perl-Package-Gener 100% | 30.8 MiB/s | 31.5 KiB | 00m00s
- [124/379] Installing perl-Sub-Exporter- 100% | 98.6 MiB/s | 201.9 KiB | 00m00s
- [125/379] Installing perl-Sub-Exporter- 100% | 28.2 MiB/s | 28.9 KiB | 00m00s
- [126/379] Installing perl-Devel-GlobalD 100% | 18.6 MiB/s | 19.0 KiB | 00m00s
- [127/379] Installing perl-PadWalker-0:2 100% | 41.6 MiB/s | 42.6 KiB | 00m00s
- [128/379] Installing perl-Devel-Caller- 100% | 24.4 MiB/s | 25.0 KiB | 00m00s
- [129/379] Installing perl-Devel-LexAlia 100% | 16.5 MiB/s | 16.9 KiB | 00m00s
- [130/379] Installing perl-Package-Stash 100% | 32.7 MiB/s | 66.9 KiB | 00m00s
- [131/379] Installing perl-Package-Stash 100% | 4.1 MiB/s | 58.1 KiB | 00m00s
- [132/379] Installing perl-Digest-SHA-1: 100% | 8.0 MiB/s | 115.0 KiB | 00m00s
- [133/379] Installing perl-Digest-HMAC-0 100% | 30.7 MiB/s | 31.5 KiB | 00m00s
- [134/379] Installing perl-NTLM-0:1.09-4 100% | 31.9 MiB/s | 32.7 KiB | 00m00s
- [135/379] Installing perl-Authen-SASL-0 100% | 43.7 MiB/s | 134.3 KiB | 00m00s
- [136/379] Installing libdatrie-0:0.2.13 100% | 57.6 MiB/s | 58.9 KiB | 00m00s
- [137/379] Installing libthai-0:0.1.29-1 100% | 255.6 MiB/s | 785.2 KiB | 00m00s
- [138/379] Installing sombok-0:2.4.0-23. 100% | 65.3 MiB/s | 133.8 KiB | 00m00s
- [139/379] Installing perl-Net-SMTP-SSL- 100% | 5.2 MiB/s | 5.3 KiB | 00m00s
- [140/379] Installing perl-MailTools-0:2 100% | 69.2 MiB/s | 212.5 KiB | 00m00s
- [141/379] Installing perl-MIME-Types-0: 100% | 182.3 MiB/s | 186.7 KiB | 00m00s
- [142/379] Installing perl-Email-Date-Fo 100% | 25.4 MiB/s | 26.0 KiB | 00m00s
- [143/379] Installing perl-MIME-Lite-0:3 100% | 243.1 MiB/s | 248.9 KiB | 00m00s
- [144/379] Installing perl-Variable-Magi 100% | 62.8 MiB/s | 128.6 KiB | 00m00s
- [145/379] Installing perl-B-Hooks-EndOf 100% | 36.7 MiB/s | 75.1 KiB | 00m00s
- [146/379] Installing perl-namespace-cle 100% | 43.5 MiB/s | 44.6 KiB | 00m00s
- [147/379] Installing perl-namespace-aut 100% | 44.0 MiB/s | 45.0 KiB | 00m00s
- [148/379] Installing perl-Class-Method- 100% | 107.0 MiB/s | 109.6 KiB | 00m00s
- [149/379] Installing perl-Role-Tiny-0:2 100% | 62.0 MiB/s | 63.5 KiB | 00m00s
- [150/379] Installing perl-Ref-Util-XS-0 100% | 21.8 MiB/s | 44.6 KiB | 00m00s
- [151/379] Installing perl-Ref-Util-0:0. 100% | 32.4 MiB/s | 33.2 KiB | 00m00s
- [152/379] Installing perl-Class-Data-In 100% | 0.0 B/s | 7.0 KiB | 00m00s
- [153/379] Installing perl-Exception-Cla 100% | 92.4 MiB/s | 94.6 KiB | 00m00s
- [154/379] Installing mailcap-0:2.1.54-8 100% | 85.0 MiB/s | 87.1 KiB | 00m00s
- [155/379] Installing perl-LWP-MediaType 100% | 78.6 MiB/s | 80.5 KiB | 00m00s
- [156/379] Installing perl-HTTP-Message- 100% | 107.4 MiB/s | 220.0 KiB | 00m00s
- [157/379] Installing perl-HTTP-Negotiat 100% | 28.0 MiB/s | 28.7 KiB | 00m00s
- [158/379] Installing perl-HTTP-Cookies- 100% | 73.9 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% | 92.4 MiB/s | 283.7 KiB | 00m00s
- [161/379] Installing perltidy-0:2025031 100% | 180.0 MiB/s | 4.1 MiB | 00m00s
- [162/379] Installing perl-Eval-Closure- 100% | 33.8 MiB/s | 34.6 KiB | 00m00s
- [163/379] Installing perl-Params-Valida 100% | 92.0 MiB/s | 94.2 KiB | 00m00s
- [164/379] Installing perl-Tie-RefHash-0 100% | 36.5 MiB/s | 37.4 KiB | 00m00s
- [165/379] Installing perl-IPC-System-Si 100% | 71.8 MiB/s | 73.5 KiB | 00m00s
- [166/379] Installing perl-autodie-0:2.3 100% | 71.3 MiB/s | 219.1 KiB | 00m00s
- [167/379] Installing perl-Sys-Syslog-0: 100% | 47.3 MiB/s | 96.9 KiB | 00m00s
- [168/379] Installing perl-Mail-Sender-1 100% | 158.6 MiB/s | 162.5 KiB | 00m00s
- [169/379] Installing perl-Convert-ASN1- 100% | 84.7 MiB/s | 173.4 KiB | 00m00s
- [170/379] Installing perl-XString-0:0.0 100% | 17.0 MiB/s | 34.8 KiB | 00m00s
- [171/379] Installing perl-MRO-Compat-0: 100% | 43.8 MiB/s | 44.9 KiB | 00m00s
- [172/379] Installing perl-Specio-0:0.50 100% | 67.3 MiB/s | 344.4 KiB | 00m00s
- [173/379] Installing perl-Log-Dispatch- 100% | 9.8 MiB/s | 150.0 KiB | 00m00s
- [174/379] Installing perl-DateTime-Loca 100% | 140.0 MiB/s | 23.4 MiB | 00m00s
- [175/379] Installing perl-DateTime-Time 100% | 181.9 MiB/s | 6.2 MiB | 00m00s
- [176/379] Installing perl-DateTime-2:1. 100% | 124.9 MiB/s | 383.8 KiB | 00m00s
- [177/379] Installing perl-DateTime-Cale 100% | 33.5 MiB/s | 34.3 KiB | 00m00s
- [178/379] Installing perl-DateTime-Form 100% | 48.2 MiB/s | 98.7 KiB | 00m00s
- [179/379] Installing perl-DateTime-Form 100% | 69.3 MiB/s | 213.0 KiB | 00m00s
- [180/379] Installing perl-Log-Dispatch- 100% | 53.2 MiB/s | 54.5 KiB | 00m00s
- [181/379] Installing perl-WWW-RobotRule 100% | 25.2 MiB/s | 25.8 KiB | 00m00s
- [182/379] Installing perl-libwww-perl-0 100% | 28.8 MiB/s | 530.3 KiB | 00m00s
- [183/379] Installing perl-XML-Parser-0: 100% | 107.4 MiB/s | 659.6 KiB | 00m00s
- [184/379] Installing perl-XML-XPath-0:1 100% | 12.8 MiB/s | 210.1 KiB | 00m00s
- [185/379] Installing texlive-epstopdf-1 100% | 3.0 MiB/s | 40.6 KiB | 00m00s
- [186/379] Installing texlive-epstopdf-p 100% | 378.9 MiB/s | 388.0 KiB | 00m00s
- [187/379] Installing texlive-etex-11:sv 100% | 41.7 MiB/s | 42.7 KiB | 00m00s
- [188/379] Installing texlive-hyph-utf8- 100% | 37.4 MiB/s | 76.6 KiB | 00m00s
- [189/379] Installing texlive-hyphen-bas 100% | 64.3 MiB/s | 65.9 KiB | 00m00s
- [190/379] Installing texlive-knuth-lib- 100% | 26.0 MiB/s | 106.3 KiB | 00m00s
- [191/379] Installing texlive-plain-11:s 100% | 37.0 MiB/s | 113.8 KiB | 00m00s
- [192/379] Installing texlive-tex-ini-fi 100% | 9.9 MiB/s | 10.1 KiB | 00m00s
- [193/379] Installing texlive-unicode-da 100% | 383.8 MiB/s | 3.1 MiB | 00m00s
- [194/379] Installing texlive-graphics-d 100% | 48.8 MiB/s | 99.9 KiB | 00m00s
- [195/379] Installing texlive-cm-11:svn5 100% | 63.0 MiB/s | 1.0 MiB | 00m00s
- [196/379] Installing texlive-gsftopk-11 100% | 3.4 MiB/s | 48.4 KiB | 00m00s
- [197/379] Installing texlive-texlive.in 100% | 53.0 MiB/s | 1.0 MiB | 00m00s
- [198/379] Installing texlive-luatex-11: 100% | 269.2 MiB/s | 9.2 MiB | 00m00s
- [199/379] Installing texlive-texlive-sc 100% | 18.9 MiB/s | 349.1 KiB | 00m00s
- [200/379] Installing texlive-kpathsea-1 100% | 108.7 MiB/s | 2.1 MiB | 00m00s
- [201/379] Installing texlive-iftex-11:s 100% | 29.6 MiB/s | 30.3 KiB | 00m00s
- [202/379] Installing texlive-url-11:svn 100% | 21.6 MiB/s | 22.1 KiB | 00m00s
- [203/379] Installing texlive-kvoptions- 100% | 538.7 MiB/s | 551.6 KiB | 00m00s
- [204/379] Installing texlive-pdftexcmds 100% | 415.6 MiB/s | 425.6 KiB | 00m00s
- [205/379] Installing texlive-amsmath-11 100% | 131.2 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% | 66.1 MiB/s | 67.7 KiB | 00m00s
- [208/379] Installing texlive-atbegshi-1 100% | 434.6 MiB/s | 445.1 KiB | 00m00s
- [209/379] Installing texlive-ltxcmds-11 100% | 415.6 MiB/s | 425.5 KiB | 00m00s
- [210/379] Installing texlive-booktabs-1 100% | 9.3 MiB/s | 19.0 KiB | 00m00s
- [211/379] Installing texlive-babel-11:s 100% | 22.9 MiB/s | 2.2 MiB | 00m00s
- [212/379] Installing texlive-footmisc-1 100% | 64.1 MiB/s | 65.6 KiB | 00m00s
- [213/379] Installing texlive-multido-11 100% | 19.2 MiB/s | 19.6 KiB | 00m00s
- [214/379] Installing texlive-hypdoc-11: 100% | 351.1 MiB/s | 359.5 KiB | 00m00s
- [215/379] Installing texlive-auxhook-11 100% | 296.1 MiB/s | 303.2 KiB | 00m00s
- [216/379] Installing texlive-etexcmds-1 100% | 314.7 MiB/s | 322.3 KiB | 00m00s
- [217/379] Installing texlive-infwarerr- 100% | 300.3 MiB/s | 307.5 KiB | 00m00s
- [218/379] Installing texlive-zapfding-1 100% | 20.2 MiB/s | 82.7 KiB | 00m00s
- [219/379] Installing texlive-amsfonts-1 100% | 109.9 MiB/s | 6.0 MiB | 00m00s
- [220/379] Installing texlive-lm-11:svn6 100% | 276.5 MiB/s | 39.5 MiB | 00m00s
- [221/379] Installing texlive-palatino-1 100% | 59.0 MiB/s | 1.1 MiB | 00m00s
- [222/379] Installing texlive-atveryend- 100% | 401.5 MiB/s | 411.2 KiB | 00m00s
- [223/379] Installing texlive-graphics-c 100% | 3.8 MiB/s | 3.9 KiB | 00m00s
- [224/379] Installing texlive-graphics-1 100% | 41.9 MiB/s | 128.7 KiB | 00m00s
- [225/379] Installing texlive-tools-11:s 100% | 80.4 MiB/s | 411.7 KiB | 00m00s
- [226/379] Installing texlive-xkeyval-11 100% | 69.9 MiB/s | 71.6 KiB | 00m00s
- [227/379] Installing texlive-colortbl-1 100% | 21.3 MiB/s | 21.8 KiB | 00m00s
- [228/379] Installing texlive-caption-11 100% | 222.8 MiB/s | 912.6 KiB | 00m00s
- [229/379] Installing texlive-csquotes-1 100% | 110.6 MiB/s | 113.3 KiB | 00m00s
- [230/379] Installing texlive-geometry-1 100% | 49.1 MiB/s | 50.2 KiB | 00m00s
- [231/379] Installing texlive-paralist-1 100% | 23.6 MiB/s | 24.1 KiB | 00m00s
- [232/379] Installing texlive-ragged2e-1 100% | 716.1 MiB/s | 733.3 KiB | 00m00s
- [233/379] Installing texlive-setspace-1 100% | 0.0 B/s | 22.4 KiB | 00m00s
- [234/379] Installing texlive-marvosym-1 100% | 61.3 MiB/s | 188.3 KiB | 00m00s
- [235/379] Installing texlive-subfig-11: 100% | 36.6 MiB/s | 37.5 KiB | 00m00s
- [236/379] Installing texlive-breakurl-1 100% | 17.5 MiB/s | 17.9 KiB | 00m00s
- [237/379] Installing texlive-logreq-11: 100% | 26.6 MiB/s | 27.2 KiB | 00m00s
- [238/379] Installing texlive-sauerj-11: 100% | 27.9 MiB/s | 28.6 KiB | 00m00s
- [239/379] Installing texlive-catchfile- 100% | 312.5 MiB/s | 320.0 KiB | 00m00s
- [240/379] Installing texlive-ifplatform 100% | 13.1 MiB/s | 13.5 KiB | 00m00s
- [241/379] Installing texlive-auto-pst-p 100% | 15.2 MiB/s | 15.6 KiB | 00m00s
- [242/379] Installing texlive-babelbib-1 100% | 153.8 MiB/s | 787.2 KiB | 00m00s
- [243/379] Installing texlive-memoir-11: 100% | 157.4 MiB/s | 483.6 KiB | 00m00s
- [244/379] Installing texlive-latex-font 100% | 30.3 MiB/s | 124.2 KiB | 00m00s
- [245/379] Installing texlive-latexconfi 100% | 9.6 MiB/s | 9.8 KiB | 00m00s
- [246/379] Installing texlive-gettitlest 100% | 332.2 MiB/s | 340.1 KiB | 00m00s
- [247/379] Installing texlive-hobsub-11: 100% | 80.0 MiB/s | 81.9 KiB | 00m00s
- [248/379] Installing texlive-hycolor-11 100% | 403.5 MiB/s | 413.1 KiB | 00m00s
- [249/379] Installing texlive-intcalc-11 100% | 461.7 MiB/s | 472.8 KiB | 00m00s
- [250/379] Installing texlive-kvdefineke 100% | 308.1 MiB/s | 315.5 KiB | 00m00s
- [251/379] Installing texlive-kvsetkeys- 100% | 418.8 MiB/s | 428.8 KiB | 00m00s
- [252/379] Installing texlive-letltxmacr 100% | 305.3 MiB/s | 312.6 KiB | 00m00s
- [253/379] Installing texlive-pdfescape- 100% | 368.3 MiB/s | 377.2 KiB | 00m00s
- [254/379] Installing texlive-refcount-1 100% | 341.0 MiB/s | 349.2 KiB | 00m00s
- [255/379] Installing texlive-stringenc- 100% | 263.5 MiB/s | 1.1 MiB | 00m00s
- [256/379] Installing texlive-alphalph-1 100% | 368.3 MiB/s | 377.1 KiB | 00m00s
- [257/379] Installing texlive-enumitem-1 100% | 58.7 MiB/s | 60.1 KiB | 00m00s
- [258/379] Installing texlive-hologo-11: 100% | 650.5 MiB/s | 666.1 KiB | 00m00s
- [259/379] Installing texlive-l3backend- 100% | 553.5 MiB/s | 1.1 MiB | 00m00s
- [260/379] Installing texlive-underscore 100% | 19.6 MiB/s | 20.1 KiB | 00m00s
- [261/379] Installing texlive-avantgar-1 100% | 77.6 MiB/s | 1.2 MiB | 00m00s
- [262/379] Installing texlive-bookman-11 100% | 77.1 MiB/s | 1.2 MiB | 00m00s
- [263/379] Installing texlive-charter-11 100% | 67.5 MiB/s | 415.0 KiB | 00m00s
- [264/379] Installing texlive-courier-11 100% | 76.3 MiB/s | 937.1 KiB | 00m00s
- [265/379] Installing texlive-helvetic-1 100% | 83.1 MiB/s | 1.8 MiB | 00m00s
- [266/379] Installing texlive-symbol-11: 100% | 20.0 MiB/s | 82.0 KiB | 00m00s
- [267/379] Installing texlive-times-11:s 100% | 71.3 MiB/s | 1.0 MiB | 00m00s
- [268/379] Installing texlive-utopia-11: 100% | 89.7 MiB/s | 551.4 KiB | 00m00s
- [269/379] Installing texlive-bigintcalc 100% | 504.7 MiB/s | 516.8 KiB | 00m00s
- [270/379] Installing texlive-bitset-11: 100% | 648.0 MiB/s | 663.5 KiB | 00m00s
- [271/379] Installing texlive-uniquecoun 100% | 306.1 MiB/s | 313.5 KiB | 00m00s
- [272/379] Installing texlive-rerunfilec 100% | 354.8 MiB/s | 363.3 KiB | 00m00s
- [273/379] Installing texlive-hyperref-1 100% | 187.8 MiB/s | 769.4 KiB | 00m00s
- [274/379] Installing texlive-attachfile 100% | 32.4 MiB/s | 33.2 KiB | 00m00s
- [275/379] Installing texlive-fpl-11:svn 100% | 159.0 MiB/s | 651.2 KiB | 00m00s
- [276/379] Installing texlive-mathpazo-1 100% | 38.0 MiB/s | 116.7 KiB | 00m00s
- [277/379] Installing texlive-psnfss-11: 100% | 14.6 MiB/s | 119.5 KiB | 00m00s
- [278/379] Installing texlive-fileconten 100% | 12.7 MiB/s | 13.0 KiB | 00m00s
- [279/379] Installing texlive-xstring-11 100% | 55.7 MiB/s | 57.0 KiB | 00m00s
- [280/379] Installing texlive-bookmark-1 100% | 558.8 MiB/s | 572.2 KiB | 00m00s
- [281/379] Installing texlive-marginnote 100% | 22.8 MiB/s | 23.3 KiB | 00m00s
- [282/379] Installing texlive-mparhack-1 100% | 20.6 MiB/s | 21.1 KiB | 00m00s
- [283/379] Installing texlive-picture-11 100% | 317.1 MiB/s | 324.8 KiB | 00m00s
- [284/379] Installing texlive-pst-math-1 100% | 23.1 MiB/s | 23.7 KiB | 00m00s
- [285/379] Installing texlive-varwidth-1 100% | 19.8 MiB/s | 20.3 KiB | 00m00s
- [286/379] Installing texlive-pdfcolmk-1 100% | 20.2 MiB/s | 20.7 KiB | 00m00s
- [287/379] Installing texlive-xcolor-11: 100% | 78.8 MiB/s | 80.7 KiB | 00m00s
- [288/379] Installing texlive-eso-pic-11 100% | 27.9 MiB/s | 28.6 KiB | 00m00s
- [289/379] Installing texlive-luabidi-11 100% | 26.1 MiB/s | 26.8 KiB | 00m00s
- [290/379] Installing texlive-makecmds-1 100% | 11.6 MiB/s | 11.9 KiB | 00m00s
- [291/379] Installing texlive-changepage 100% | 27.6 MiB/s | 28.2 KiB | 00m00s
- [292/379] Installing texlive-fancyhdr-1 100% | 31.9 MiB/s | 32.7 KiB | 00m00s
- [293/379] Installing texlive-natbib-11: 100% | 131.1 MiB/s | 134.2 KiB | 00m00s
- [294/379] Installing texlive-placeins-1 100% | 5.2 MiB/s | 5.4 KiB | 00m00s
- [295/379] Installing texlive-titlesec-1 100% | 96.6 MiB/s | 98.9 KiB | 00m00s
- [296/379] Installing texlive-zref-11:sv 100% | 401.4 MiB/s | 822.0 KiB | 00m00s
- [297/379] Installing texlive-euenc-11:s 100% | 41.2 MiB/s | 42.2 KiB | 00m00s
- [298/379] Installing texlive-kastrup-11 100% | 4.1 MiB/s | 4.2 KiB | 00m00s
- [299/379] Installing texlive-ctablestac 100% | 20.4 MiB/s | 20.9 KiB | 00m00s
- [300/379] Installing texlive-luatexbase 100% | 14.7 MiB/s | 15.1 KiB | 00m00s
- [301/379] Installing texlive-float-11:s 100% | 15.8 MiB/s | 16.2 KiB | 00m00s
- [302/379] Installing texlive-ifmtarg-11 100% | 9.7 MiB/s | 9.9 KiB | 00m00s
- [303/379] Installing texlive-fp-11:svn4 100% | 62.4 MiB/s | 127.9 KiB | 00m00s
- [304/379] Installing texlive-dehyph-11: 100% | 117.8 MiB/s | 241.2 KiB | 00m00s
- [305/379] Installing texlive-pdftex-11: 100% | 201.3 MiB/s | 4.6 MiB | 00m00s
- [306/379] Installing texlive-lua-alt-ge 100% | 0.0 B/s | 4.3 KiB | 00m00s
- [307/379] Installing texlive-lua-uni-al 100% | 128.2 MiB/s | 131.3 KiB | 00m00s
- [308/379] Installing texlive-lualibs-11 100% | 188.4 MiB/s | 771.6 KiB | 00m00s
- [309/379] Installing texlive-luaotfload 100% | 241.7 MiB/s | 8.2 MiB | 00m00s
- [310/379] Installing perl-LDAP-1:0.68-1 100% | 104.4 MiB/s | 962.3 KiB | 00m00s
- [311/379] Installing perl-XML-SAX-0:1.0 100% | 1.6 MiB/s | 126.0 KiB | 00m00s
- [312/379] Installing perl-XML-LibXML-1: 100% | 7.5 MiB/s | 927.4 KiB | 00m00s
- [313/379] Installing perl-XML-LibXML-Si 100% | 51.1 MiB/s | 52.3 KiB | 00m00s
- [314/379] Installing libxslt-0:1.1.43-1 100% | 24.9 MiB/s | 459.2 KiB | 00m00s
- [315/379] Installing perl-XML-LibXSLT-0 100% | 69.6 MiB/s | 142.4 KiB | 00m00s
- [316/379] Installing perl-MIME-Charset- 100% | 52.4 MiB/s | 107.3 KiB | 00m00s
- [317/379] Installing perl-Unicode-LineB 100% | 65.0 MiB/s | 266.4 KiB | 00m00s
- [318/379] Installing perl-IPC-SysV-0:2. 100% | 37.4 MiB/s | 76.7 KiB | 00m00s
- [319/379] Installing perl-Log-Log4perl- 100% | 43.8 MiB/s | 897.7 KiB | 00m00s
- [320/379] Installing perl-List-UtilsBy- 100% | 55.8 MiB/s | 57.2 KiB | 00m00s
- [321/379] Installing perl-List-AllUtils 100% | 132.7 MiB/s | 135.9 KiB | 00m00s
- [322/379] Installing perl-Mozilla-CA-0: 100% | 0.0 B/s | 11.9 KiB | 00m00s
- [323/379] Installing perl-LWP-Protocol- 100% | 30.4 MiB/s | 31.1 KiB | 00m00s
- [324/379] Installing perl-Tie-Cycle-0:1 100% | 24.7 MiB/s | 25.3 KiB | 00m00s
- [325/379] Installing perl-Business-ISMN 100% | 36.8 MiB/s | 37.7 KiB | 00m00s
- [326/379] Installing perl-autovivificat 100% | 62.1 MiB/s | 63.6 KiB | 00m00s
- [327/379] Installing perl-XML-Writer-0: 100% | 67.0 MiB/s | 68.6 KiB | 00m00s
- [328/379] Installing perl-Text-Roman-0: 100% | 33.8 MiB/s | 34.7 KiB | 00m00s
- [329/379] Installing perl-Text-CSV-0:2. 100% | 358.2 MiB/s | 366.8 KiB | 00m00s
- [330/379] Installing perl-Sort-Key-0:1. 100% | 37.8 MiB/s | 77.4 KiB | 00m00s
- [331/379] Installing perl-Regexp-Common 100% | 115.7 MiB/s | 474.0 KiB | 00m00s
- [332/379] Installing perl-Lingua-Transl 100% | 12.5 MiB/s | 179.3 KiB | 00m00s
- [333/379] Installing perl-IPC-Run3-0:0. 100% | 61.8 MiB/s | 63.3 KiB | 00m00s
- [334/379] Installing perl-IO-String-0:1 100% | 0.0 B/s | 17.8 KiB | 00m00s
- [335/379] Installing perl-Class-Accesso 100% | 41.9 MiB/s | 42.9 KiB | 00m00s
- [336/379] Installing biber-0:2.20-1.fc4 100% | 64.8 MiB/s | 1.4 MiB | 00m00s
- [337/379] Installing texlive-cm-super-1 100% | 385.4 MiB/s | 65.1 MiB | 00m00s
- [338/379] Installing texlive-bera-11:sv 100% | 85.9 MiB/s | 791.2 KiB | 00m00s
- [339/379] Installing texlive-algorithms 100% | 38.2 MiB/s | 39.1 KiB | 00m00s
- [340/379] Installing texlive-xifthen-11 100% | 14.8 MiB/s | 15.2 KiB | 00m00s
- [341/379] Installing texlive-xpatch-11: 100% | 26.9 MiB/s | 27.5 KiB | 00m00s
- [342/379] Installing texlive-l3packages 100% | 21.6 MiB/s | 265.5 KiB | 00m00s
- [343/379] Installing texlive-l3kernel-1 100% | 227.1 MiB/s | 1.4 MiB | 00m00s
- [344/379] Installing texlive-latex-11:s 100% | 839.3 MiB/s | 40.3 MiB | 00m00s
- [345/379] Installing texlive-tipa-11:sv 100% | 172.4 MiB/s | 3.8 MiB | 00m00s
- [346/379] Installing texlive-xunicode-1 100% | 215.2 MiB/s | 220.3 KiB | 00m00s
- [347/379] Installing texlive-fontspec-1 100% | 322.8 MiB/s | 330.6 KiB | 00m00s
- [348/379] Installing texlive-currfile-1 100% | 34.1 MiB/s | 35.0 KiB | 00m00s
- [349/379] Installing texlive-filehook-1 100% | 27.9 MiB/s | 57.2 KiB | 00m00s
- [350/379] Installing texlive-pgf-11:svn 100% | 81.3 MiB/s | 4.9 MiB | 00m00s
- [351/379] Installing texlive-ms-11:svn5 100% | 18.8 MiB/s | 19.3 KiB | 00m00s
- [352/379] Installing texlive-koma-scrip 100% | 320.4 MiB/s | 9.9 MiB | 00m00s
- [353/379] Installing texlive-bidi-11:sv 100% | 85.1 MiB/s | 1.2 MiB | 00m00s
- [354/379] Installing texlive-polyglossi 100% | 39.3 MiB/s | 764.6 KiB | 00m00s
- [355/379] Installing texlive-biblatex-1 100% | 157.2 MiB/s | 2.2 MiB | 00m00s
- [356/379] Installing texlive-showexpl-1 100% | 22.0 MiB/s | 22.6 KiB | 00m00s
- [357/379] Installing texlive-listings-1 100% | 189.7 MiB/s | 582.9 KiB | 00m00s
- [358/379] Installing texlive-fancyvrb-1 100% | 65.9 MiB/s | 67.5 KiB | 00m00s
- [359/379] Installing texlive-pst-3d-11: 100% | 20.4 MiB/s | 20.9 KiB | 00m00s
- [360/379] Installing texlive-pst-coil-1 100% | 21.3 MiB/s | 21.8 KiB | 00m00s
- [361/379] Installing texlive-pst-eps-11 100% | 16.2 MiB/s | 16.6 KiB | 00m00s
- [362/379] Installing texlive-pst-fill-1 100% | 23.4 MiB/s | 23.9 KiB | 00m00s
- [363/379] Installing texlive-pst-grad-1 100% | 21.9 MiB/s | 22.5 KiB | 00m00s
- [364/379] Installing texlive-pst-node-1 100% | 56.5 MiB/s | 115.8 KiB | 00m00s
- [365/379] Installing texlive-pst-ovl-11 100% | 13.4 MiB/s | 13.8 KiB | 00m00s
- [366/379] Installing texlive-pst-plot-1 100% | 127.9 MiB/s | 131.0 KiB | 00m00s
- [367/379] Installing texlive-pst-text-1 100% | 20.8 MiB/s | 21.3 KiB | 00m00s
- [368/379] Installing texlive-pst-tools- 100% | 27.5 MiB/s | 28.2 KiB | 00m00s
- [369/379] Installing texlive-pst-tree-1 100% | 42.6 MiB/s | 43.6 KiB | 00m00s
- [370/379] Installing texlive-pstricks-a 100% | 102.4 MiB/s | 104.9 KiB | 00m00s
- [371/379] Installing texlive-pstricks-1 100% | 116.0 MiB/s | 475.0 KiB | 00m00s
- [372/379] Installing oniguruma-0:6.9.10 100% | 249.1 MiB/s | 765.2 KiB | 00m00s
- [373/379] Installing jq-0:1.7.1-11.fc42 100% | 26.7 MiB/s | 437.5 KiB | 00m00s
- [374/379] Installing perl-GD-Barcode-0: 100% | 351.8 MiB/s | 10.6 MiB | 00m00s
- [375/379] Installing perl-List-MoreUtil 100% | 80.6 MiB/s | 165.0 KiB | 00m00s
- [376/379] Installing perl-Lexical-Var-0 100% | 54.5 MiB/s | 55.8 KiB | 00m00s
- [377/379] Installing perl-IO-Compress-B 100% | 2.5 MiB/s | 38.8 KiB | 00m00s
- [378/379] Installing perl-Class-XSAcces 100% | 49.6 MiB/s | 101.5 KiB | 00m00s
- [379/379] Installing perl-PerlIO-utf8_s 100% | 1.8 KiB/s | 44.1 KiB | 00m25s
- 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-texlive.2
-> removed caisar.5.0
-> installed conf-python-3.9.0.0
-> installed caisar.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-23 15:29.38 ---> saved as "3e2694d849169698a9d32e48acf99eb7022e961d505d89254d163f0578fba272"
/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/4.14/.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/4.14/.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:29.48 ---> saved as "44edb3b748c41361ae032150f283853495f3a28c34cdd8d222fdb3d1393cf429"
Job succeeded
2026-01-23 15:29.53: Job succeeded