(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 opensuse-16.0-ocaml-5.4/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29111/head" && git reset --hard 6fb9bc72
git fetch origin master
git merge --no-edit dc02a35b0eaa39fa73e10f2dfa764b490f859db6
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-16.0-ocaml-5.4@sha256:5b2b8620c1c2a6bf0c4bd8d36c47db4cc60c788c9629eae846fec43735957a0d
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 "\"opensuse-16.0\""; 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 "\"opensuse-16.0\""; 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:opensuse-16.0-ocaml-5.4@sha256:5b2b8620c1c2a6bf0c4bd8d36c47db4cc60c788c9629eae846fec43735957a0d-caisar.5.0-6fb9bc721893564c7fcc5360575ff8ff9e76bc1c"
2026-01-23 15:10.11: Using OBuilder spec:
((from ocaml/opam:opensuse-16.0-ocaml-5.4@sha256:5b2b8620c1c2a6bf0c4bd8d36c47db4cc60c788c9629eae846fec43735957a0d)
 (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 \"\\\"opensuse-16.0\\\"\"; 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 \"\\\"opensuse-16.0\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'caisar.5.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-23 15:10.11: Waiting for resource in pool OCluster
2026-01-23 15:10.11: Waiting for worker…
2026-01-23 15:10.28: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
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:opensuse-16.0-ocaml-5.4@sha256:5b2b8620c1c2a6bf0c4bd8d36c47db4cc60c788c9629eae846fec43735957a0d)
2026-01-23 15:11.53 ---> saved as "2848e7da5ccce98499baf9565508ed4f87b08bc24f943a8e4a05fb667dd20b4d"

/: (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:11.54 ---> saved as "5e05e5990dfc61b3789286fbaf0c0020cef22afcc7cb5efdf6aacce85d4f1058"

/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
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-23 15:12.18 ---> saved as "4b0001f75b983e312c44ec10b15896c4a689d1dff60e12209c7238bafa797be3"

/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=opensuse-leap os-version=16.0
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-01-23 15:12.19 ---> saved as "d3d3107f9d088fc0b3fc1308e64eaea69503f89bd3d991f63636693f98d4f0c4"

/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:12.29 ---> saved as "46793482abd7fd75e636f308897e470f407e55637e5d37c61e93fa71aa78f0fd"

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

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

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Repository 'repo-openh264 (16.0)' is up to date.
- Retrieving repository 'repo-oss (16.0)' metadata [..
- Looking for gpg keys in repository repo-oss (16.0).
-   gpgkey=http://cdn.opensuse.org/distribution/leap/16.0/repo/oss/x86_64/repodata/repomd.xml.key
- ...
- .....
- ...........
- .........
- ...done]
- Building repository 'repo-oss (16.0)' cache [..
- ..done]
- All repositories have been refreshed.
2026-01-23 15:13.08 ---> saved as "1c3859704d539ef01e361af7c6fcc0270e99d83faf1457bf7dcf718e865263ad"

/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:13.09 ---> saved as "71ddeac16e90f2aff7cb5f1e53c9d2ab87e8da5559b5da9694cdfbbbfa4b034b"

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

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

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

opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
  2. Display the recommended zypper command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "zypper" "--non-interactive" "install" "gmp-devel" "protobuf-devel"
- Refreshing service 'openSUSE'.
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
- 
- The following 10 NEW packages are going to be installed:
-   abseil-cpp-devel gmp-devel libabsl_2407_0_0 libabsl_lite_2407_0_0 libgmpxx4 libprotobuf-lite28_3_0 libprotobuf28_3_0 libprotoc28_3_0 libutf8_range-28_3_0 protobuf-devel
- 
- 10 new packages to install.
- 
- Package download size:     5.5 MiB
- 
- Package install size change:
-               |      20.6 MiB  required by packages that will be installed
-     20.6 MiB  |  -      0 B    released by packages that will be removed
- 
- Backend:  classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Preloading Packages [.
- Preloading: abseil-cpp-devel-20240722.1-160000.2.2.x86_64.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- .
- Preloading: libgmpxx4-6.3.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libutf8_range-28_3_0-28.3-160000.2.2.x86_64.rpm [done]
- .
- Preloading: abseil-cpp-devel-20240722.1-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libabsl_lite_2407_0_0-20240722.1-160000.2.2.x86_64.rpm [done]
- .
- Preloading: gmp-devel-6.3.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libprotobuf28_3_0-28.3-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libprotobuf-lite28_3_0-28.3-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libprotoc28_3_0-28.3-160000.2.2.x86_64.rpm [done]
- .
- Preloading: protobuf-devel-28.3-160000.2.2.x86_64.rpm [done]
- .
- 
- Preloading: libabsl_2407_0_0-20240722.1-160000.2.2.x86_64.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- ..
- Preloading: libabsl_2407_0_0-20240722.1-160000.2.2.x86_64.rpm [done]
- .done]
- Retrieving: libabsl_lite_2407_0_0-20240722.1-160000.2.2.x86_64 (repo-oss (16.0)) (1/10), 350.4 KiB    
- Retrieving: libabsl_2407_0_0-20240722.1-160000.2.2.x86_64 (repo-oss (16.0)) (2/10), 205.4 KiB    
- Retrieving: libgmpxx4-6.3.0-160000.2.2.x86_64 (repo-oss (16.0)) (3/10),  32.3 KiB    
- Retrieving: libutf8_range-28_3_0-28.3-160000.2.2.x86_64 (repo-oss (16.0)) (4/10),  91.6 KiB    
- Retrieving: abseil-cpp-devel-20240722.1-160000.2.2.x86_64 (repo-oss (16.0)) (5/10), 758.5 KiB    
- Retrieving: gmp-devel-6.3.0-160000.2.2.x86_64 (repo-oss (16.0)) (6/10), 320.7 KiB    
- Retrieving: libprotobuf28_3_0-28.3-160000.2.2.x86_64 (repo-oss (16.0)) (7/10), 953.2 KiB    
- Retrieving: libprotobuf-lite28_3_0-28.3-160000.2.2.x86_64 (repo-oss (16.0)) (8/10), 247.6 KiB    
- Retrieving: libprotoc28_3_0-28.3-160000.2.2.x86_64 (repo-oss (16.0)) (9/10), 1017.6 KiB    
- Retrieving: protobuf-devel-28.3-160000.2.2.x86_64 (repo-oss (16.0)) (10/10),   1.6 MiB    
- 
- Checking for file conflicts: [..done]
- ( 1/10) Installing: libabsl_lite_2407_0_0-20240722.1-160000.2.2.x86_64 [..done]
- ( 2/10) Installing: libabsl_2407_0_0-20240722.1-160000.2.2.x86_64 [..done]
- ( 3/10) Installing: libgmpxx4-6.3.0-160000.2.2.x86_64 [..done]
- ( 4/10) Installing: libutf8_range-28_3_0-28.3-160000.2.2.x86_64 [.
- .done]
- ( 5/10) Installing: abseil-cpp-devel-20240722.1-160000.2.2.x86_64 [...done]
- ( 6/10) Installing: gmp-devel-6.3.0-160000.2.2.x86_64 [..done]
- ( 7/10) Installing: libprotobuf28_3_0-28.3-160000.2.2.x86_64 [..done]
- ( 8/10) Installing: libprotobuf-lite28_3_0-28.3-160000.2.2.x86_64 [..done]
- ( 9/10) Installing: libprotoc28_3_0-28.3-160000.2.2.x86_64 [..done]
- (10/10) Installing: protobuf-devel-28.3-160000.2.2.x86_64 [...done]
- Running post-transaction scripts [..
- .done]

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

/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 python3 texlive-latex-bin-bin

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

opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
  2. Display the recommended zypper command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "zypper" "--non-interactive" "install" "jq" "python3" "texlive-latex-bin-bin"
- Refreshing service 'openSUSE'.
- Loading repository data...
- Reading installed packages...
- 'python3' not found in package names. Trying capabilities.
- Resolving package dependencies...
- 
- The following 189 NEW packages are going to be installed:
-   cups-config dialog ed file file-magic fontconfig ghostscript ghostscript-fonts-std hostname java-25-openjdk java-25-openjdk-headless javapackages-filesystem javapackages-tools jq libXext6 libXi6 libXpm4 libXrender1 libXtst6 libasound2 libavahi-client3 libavahi-common3 libcups2 libdialog15 libfontconfig1 libfreebl3 libfreetype6 libgd3 libgif7 libgraphite2-3 libharfbuzz0 libjbig2 libjpeg8 libjq1 libkpathsea6 liblcms2-2 liblz1 libmagic1 libmpdec4 libonig5 libopenjp2-7 libpaper libpaper-tools libpaper2 libpcsclite1 libpng16-16 libpotrace0 libpython3_13-1_0 libsharpyuv0 libsoftokn3 libtexlua53-5 libtiff6 libwebp7 libzzip-0-13 lua54 mozilla-nspr mozilla-nss mozilla-nss-certs perl-IPC-Run3 psutils python313 python313-base system-user-lp system-user-mktex systemd-rpm-macros tcsh texlive texlive-amsfonts texlive-amsfonts-fonts texlive-atbegshi texlive-atveryend texlive-auxhook texlive-babel texlive-babel-hebrew texlive-bigintcalc texlive-bitset texlive-cm texlive-cm-super texlive-cm-super-fonts texlive-ctablestack texlive-dehyph texlive-dehyph-exptl texlive-dviasm texlive-dviasm-bin texlive-dvidvi texlive-dvidvi-bin texlive-dvipng texlive-dvipng-bin texlive-dvisvgm texlive-dvisvgm-bin texlive-ec texlive-epstopdf-pkg texlive-etex texlive-etex-pkg texlive-etexcmds texlive-etoolbox texlive-euenc texlive-extratools texlive-filesystem texlive-firstaid texlive-fontspec texlive-gettitlestring texlive-graphics texlive-graphics-cfg texlive-graphics-def texlive-greek-fontenc texlive-grfext texlive-gsftopk texlive-gsftopk-bin texlive-hopatch texlive-hycolor texlive-hypdoc texlive-hyperref texlive-hyph-utf8 texlive-hyphen-ancientgreek texlive-hyphen-base texlive-hyphen-german texlive-hyphen-greek texlive-iftex texlive-infwarerr texlive-intcalc texlive-knuth-lib texlive-kpathsea texlive-kpathsea-bin texlive-kvdefinekeys texlive-kvoptions texlive-kvsetkeys texlive-l3backend texlive-l3kernel texlive-l3packages texlive-lacheck texlive-lacheck-bin texlive-latex texlive-latex-bin texlive-latex-bin-bin texlive-latex-fonts texlive-latexconfig texlive-letltxmacro texlive-lm texlive-lm-fonts texlive-ltxcmds texlive-lua-alt-getopt texlive-lua-uni-algos texlive-luahbtex texlive-luahbtex-bin texlive-lualibs texlive-luaotfload texlive-luaotfload-bin texlive-luatex texlive-luatex-bin texlive-luatexbase texlive-manfnt texlive-minitoc texlive-notoccite texlive-ntheorem texlive-pdf14 texlive-pdfescape texlive-pdftex texlive-pdftex-bin texlive-pdftex-fonts texlive-pdftexcmds texlive-placeins texlive-plain texlive-psfrag texlive-refcount texlive-rerunfilecheck texlive-ruhyphen texlive-scripts texlive-scripts-bin texlive-scripts-extra texlive-scripts-extra-bin texlive-seetexk texlive-seetexk-bin texlive-stringenc texlive-tex-ini-files texlive-tex4ht texlive-tex4ht-bin texlive-texlive.infra texlive-tipa texlive-tipa-fonts texlive-tools texlive-ukrhyph texlive-unicode-data texlive-uniquecounter texlive-updmap-map texlive-url texlive-xunicode texlive-zapfding texlive-zapfding-fonts
- 
- 189 new packages to install.
- 
- Package download size:   204.4 MiB
- 
- Package install size change:
-               |     553.0 MiB  required by packages that will be installed
-    553.0 MiB  |  -      0 B    released by packages that will be removed
- 
- Backend:  classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Preloading Packages [.
- Preloading: texlive-etex-2024.216.svn70440-160000.2.2.noarch.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- .
- Preloading: texlive-dviasm-bin-2024.20240311.svn8329-160000.3.2.x86_64.rpm [done]
- .
- Preloading: texlive-etex-2024.216.svn70440-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-euenc-2024.216.0.0.1hsvn19795-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-etex-pkg-2024.216.2.7svn41784-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-dvisvgm-2024.216.3.2.2svn70501-160000.2.2.noarch.rpm [done]
- .
- 
- Preloading: texlive-dvipng-bin-2024.20240311.svn70276-160000.3.2.x86_64.rpm [done]
- .
- Preloading: texlive-ec-2024.216.1.0svn25033-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-dvidvi-bin-2024.20240311.svn69782-160000.3.2.x86_64.rpm [done]
- .
- Preloading: texlive-dvisvgm-bin-2024.20240311.svn70489-160000.3.2.x86_64.rpm [done]
- .
- Preloading: texlive-dvipng-2024.216.1.17svn70015-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-dviasm-2024.216.svn68043-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-graphics-cfg-2024.217.svn41448-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-ctablestack-2024.216.1.0svn38514-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-auxhook-2024.216.1.6svn53173-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-dvidvi-2024.216.svn65952-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-dehyph-2024.216.svn48599-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-atveryend-2024.216.1.11svn53108-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-cm-2024.216.svn57963-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-refcount-2024.216.3.6svn53164-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-hopatch-2024.217.1.5svn65491-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-pdftexcmds-2024.216.0.0.33svn55777-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-grfext-2024.217.1.3svn53024-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-lacheck-bin-2024.20240311.svn69782-160000.3.2.x86_64.rpm [done]
- .
- Preloading: texlive-plain-2024.216.3.141592653svn57963-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-placeins-2024.216.2.2svn19848-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-notoccite-2024.216.svn18129-160000.2.2.noarch.rpm [done]
- ..
- Preloading: texlive-amsfonts-2024.216.3.04svn61937-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-pdf14-2024.216.0.0.1svn17583-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-manfnt-2024.216.svn54684-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-lua-uni-algos-2024.216.0.0.4.1svn62204-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-letltxmacro-2024.216.1.6svn53022-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-latexconfig-2024.216.svn68923-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-etexcmds-2024.216.1.7svn53171-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-lacheck-2024.216.svn66186-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-lm-2024.216.2.005svn67718-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-latex-fonts-2024.216.svn28888-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-l3backend-2024.216.svn70026-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-kvsetkeys-2024.216.1.19svn64632-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-kvdefinekeys-2024.216.1.6svn53193-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-knuth-lib-2024.216.svn57963-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-intcalc-2024.216.1.3svn53168-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-iftex-2024.216.1.0fsvn61910-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-infwarerr-2024.216.1.5svn53023-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-hyph-utf8-2024.216.svn61719-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-hyphen-base-2024.216.svn70247-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-greek-fontenc-2024.217.2.6svn68877-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-hyperref-2024.216.7.01hsvn69523-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-latex-bin-bin-2024.20240311.svn54358-160000.3.2.x86_64.rpm [done]
- .
- Preloading: texlive-ltxcmds-2024.216.1.26svn69032-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-luaotfload-2024.216.3.28svn70232-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-latex-bin-2024.216.svn70501-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-babel-2024.216.24.2svn69742-160000.2.2.noarch.rpm [done]
- ..
- Preloading: texlive-rerunfilecheck-2024.216.1.10svn63869-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-kvoptions-2024.216.3.15svn63622-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-graphics-2024.217.svn66204-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-ntheorem-2024.216.1.33svn27609-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-luaotfload-bin-2024.20240311.svn34647-160000.3.2.x86_64.rpm [done]
- .
- Preloading: texlive-latex-2024.216.20231101_pl1svn69959-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-minitoc-2024.216.62svn61719-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-gettitlestring-2024.216.1.6svn53170-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-tools-2024.216.20231101csvn68941-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-epstopdf-pkg-2024.216.2.11svn53546-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-l3kernel-2024.216.svn70026-160000.2.2.noarch.rpm [done]
- .
- 
- Preloading: texlive-psfrag-2024.216.3.04svn15878-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-tipa-2024.216.1.3svn29349-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-xunicode-2024.216.0.0.981svn30466-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-l3packages-2024.216.svn69983-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-babel-hebrew-2024.216.2.4asvn68016-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-fontspec-2024.216.2.9asvn69833-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-bigintcalc-2024.216.1.5svn53172-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-atbegshi-2024.216.1.19svn53051-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-hyphen-greek-2024.216.5svn58652-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-hyphen-ancientgreek-2024.216.svn58652-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-etoolbox-2024.216.2.5ksvn56554-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-hypdoc-2024.216.1.19svn68661-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-dehyph-exptl-2024.216.1.0svn70233-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-extratools-2024.212-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-luatexbase-2024.216.1.3svn52663-160000.2.2.noarch.rpm [done]
- ..
- Preloading: texlive-hycolor-2024.216.1.10svn53584-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-luatex-2024.216.svn70263-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-hyphen-german-2024.216.svn59807-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-pdfescape-2024.216.1.15svn53082-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-ruhyphen-2024.216.1.6svn21081-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-lualibs-2024.216.2.76svn67994-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-graphics-def-2024.217.svn64487-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-luahbtex-bin-2024.20240311.svn70276-160000.3.2.x86_64.rpm [done]
- .
- Preloading: texlive-luahbtex-2024.216.svn70015-160000.2.2.noarch.rpm [done]
- ..
- Preloading: texlive-uniquecounter-2024.216.1.4svn53162-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-stringenc-2024.216.1.12svn52982-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-bitset-2024.216.1.3svn53837-160000.2.2.noarch.rpm [done]
- .
- 
- Preloading: texlive-cm-super-2024.216.svn15878-160000.2.2.noarch.rpm [done]
- .
- Preloading: tcsh-6.24.15-160000.2.2.x86_64.rpm [done]
- .
- Preloading: texlive-pdftex-bin-2024.20240311.svn70276-160000.3.2.x86_64.rpm [done]
- .
- Preloading: texlive-lua-alt-getopt-2024.216.0.0.7.0svn56414-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-pdftex-2024.216.svn70501-160000.2.2.noarch.rpm [done]
- .
- Preloading: libpotrace0-1.16-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libpng16-16-1.6.44-160000.3.1.x86_64.rpm [done]
- .
- Preloading: lua54-5.4.7-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libzzip-0-13-0.13.78-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libsharpyuv0-1.5.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libtexlua53-5-5.3.6-160000.3.2.x86_64.rpm [done]
- .
- Preloading: perl-IPC-Run3-0.49.0-160000.2.2.noarch.rpm [done]
- .
- Preloading: system-user-mktex-1.0.0-160000.2.2.noarch.rpm [done]
- .
- Preloading: system-user-lp-20170617-160000.2.2.noarch.rpm [done]
- .
- Preloading: systemd-rpm-macros-26-160000.2.2.noarch.rpm [done]
- .
- Preloading: mozilla-nspr-4.36-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libpcsclite1-2.0.1-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libXi6-1.8.2-160000.3.2.x86_64.rpm [done]
- ..
- Preloading: libXtst6-1.2.5-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libavahi-client3-0.8-160000.3.1.x86_64.rpm [done]
- .
- Preloading: javapackages-tools-6.3.4-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libtiff6-4.7.1-160000.1.1.x86_64.rpm [done]
- .
- Preloading: dialog-1.3-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libmagic1-5.46-160000.2.2.x86_64.rpm [done]
- .
- Preloading: python313-3.13.5-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libgif7-5.2.2-160000.2.2.x86_64.rpm [done]
- .
- Preloading: file-magic-5.46-160000.2.2.noarch.rpm [done]
- ..
- 
- Preloading: ghostscript-fonts-std-9.06-160000.2.2.noarch.rpm [done]
- .
- Preloading: hostname-3.23-160000.2.2.x86_64.rpm [done]
- .
- Preloading: javapackages-filesystem-6.3.4-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libXext6-1.3.6-160000.3.2.x86_64.rpm [done]
- ..
- Preloading: libXpm4-3.5.17-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libXrender1-0.9.11-160000.2.2.x86_64.rpm [done]
- .
- Preloading: texlive-firstaid-2024.216.1.1csvn70308-160000.2.2.noarch.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- .
- Preloading: libasound2-1.2.14-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libavahi-common3-0.8-160000.3.1.x86_64.rpm [done]
- .
- Preloading: texlive-firstaid-2024.216.1.1csvn70308-160000.2.2.noarch.rpm [done]
- .
- Preloading: libdialog15-1.3-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libpaper2-2.1.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libgraphite2-3-1.3.14-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libjbig2-2.1-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libjq1-1.7.1-160000.2.2.x86_64.rpm [done]
- ..
- 
- Preloading: libpython3_13-1_0-3.13.5-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libjpeg8-8.3.2-160000.3.2.x86_64.rpm [done]
- .
- Preloading: liblz1-1.15-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libfreebl3-3.112-160000.2.2.x86_64.rpm [done]
- .
- Preloading: python313-base-3.13.5-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libmpdec4-4.0.1-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libkpathsea6-6.4.0-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libpaper-2.1.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: liblcms2-2-2.16-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libonig5-6.9.8-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libopenjp2-7-2.5.3-160000.2.2.x86_64.rpm [done]
- .
- Preloading: texlive-kpathsea-2024.216.svn70348-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-gsftopk-bin-2024.20240311.svn70276-160000.3.2.x86_64.rpm [done]
- ..
- Preloading: texlive-amsfonts-fonts-2024.216.3.04svn61937-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-kpathsea-bin-2024.20240311.svn70276-160000.3.2.x86_64.rpm [done]
- .
- Preloading: texlive-2024.20240311-160000.3.2.x86_64.rpm [done]
- ..
- 
- Preloading: texlive-luatex-bin-2024.20240311.svn70276-160000.3.2.x86_64.rpm [done]
- .
- Preloading: texlive-texlive.infra-2024.216.svn70084-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-scripts-2024.216.svn70581-160000.2.2.noarch.rpm [done]
- ..
- Preloading: libgd3-2.3.3-160000.2.2.x86_64.rpm [done]
- .
- Preloading: java-25-openjdk-25.0.1.0-160000.1.1.x86_64.rpm [done]
- .
- Preloading: texlive-gsftopk-2024.217.1.19.2svn52851-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-zapfding-2024.216.svn61719-160000.2.2.noarch.rpm [done]
- ..
- Preloading: texlive-url-2024.216.3.4svn32528-160000.2.2.noarch.rpm [done]
- .
- .
- Preloading: texlive-updmap-map-2024.212.svn54495-160000.2.2.noarch.rpm [done]
- ..
- 
- Preloading: ghostscript-10.05.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: texlive-unicode-data-2024.216.1.17svn68311-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-ukrhyph-2024.216.svn21081-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-tex4ht-bin-2024.20240311.svn70276-160000.3.2.x86_64.rpm [done]
- .
- Preloading: texlive-tex-ini-files-2024.216.svn68920-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-seetexk-2024.216.svn57972-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-seetexk-bin-2024.20240311.svn69782-160000.3.2.x86_64.rpm [done]
- ..
- Preloading: texlive-tex4ht-2024.216.svn70613-160000.2.2.noarch.rpm [done]
- .
- Preloading: mozilla-nss-3.112-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libfreetype6-2.13.3-160000.3.1.x86_64.rpm [done]
- .
- Preloading: libwebp7-1.5.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: mozilla-nss-certs-3.112-160000.2.2.x86_64.rpm [done]
- .
- Preloading: cups-config-2.4.11-160000.2.2.x86_64.rpm [done]
- .
- Preloading: file-5.46-160000.2.2.x86_64.rpm [done]
- .
- Preloading: texlive-scripts-extra-bin-2024.20240311.svn53577-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libpaper-tools-2.1.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: jq-1.7.1-160000.2.2.x86_64.rpm [done]
- ..
- Preloading: fontconfig-2.16.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libfontconfig1-2.16.0-160000.2.2.x86_64.rpm [done]
- .
- 
- Preloading: ed-1.21.1-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libharfbuzz0-11.0.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libsoftokn3-3.112-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libcups2-2.4.11-160000.2.2.x86_64.rpm [done]
- ..
- Preloading: texlive-filesystem-2024.212-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-scripts-extra-2024.216.svn62517-160000.2.2.noarch.rpm [done]
- .
- Preloading: texlive-scripts-bin-2024.20240311.svn64356-160000.3.2.x86_64.rpm [done]
- .
- Preloading: psutils-2.08-160000.2.2.x86_64.rpm [done]
- .
- Preloading: texlive-zapfding-fonts-2024.216.svn61719-160000.2.2.noarch.rpm [done]
- ..
- Preloading: texlive-pdftex-fonts-2024.216.svn70501-160000.2.2.noarch.rpm [done]
- .
- 
- Preloading: texlive-tipa-fonts-2024.216.1.3svn29349-160000.2.2.noarch.rpm [done]
- ...
- ..
- 
- Preloading: texlive-lm-fonts-2024.216.2.005svn67718-160000.2.2.noarch.rpm [done]
- ...
- ..
- ..
- 
- Preloading: java-25-openjdk-headless-25.0.1.0-160000.1.1.x86_64.rpm [done]
- ...
- ..
- .
- Preloading: texlive-cm-super-fonts-2024.216.svn15878-160000.2.2.noarch.rpm [done]
- .done]
- Retrieving: ed-1.21.1-160000.2.2.x86_64 (repo-oss (16.0)) (1/189),  85.9 KiB    
- Retrieving: file-magic-5.46-160000.2.2.noarch (repo-oss (16.0)) (2/189), 806.4 KiB    
- Retrieving: ghostscript-fonts-std-9.06-160000.2.2.noarch (repo-oss (16.0)) (3/189),   3.4 MiB    
- Retrieving: hostname-3.23-160000.2.2.x86_64 (repo-oss (16.0)) (4/189),  25.6 KiB    
- Retrieving: javapackages-filesystem-6.3.4-160000.2.2.x86_64 (repo-oss (16.0)) (5/189),  26.9 KiB    
- Retrieving: libXext6-1.3.6-160000.3.2.x86_64 (repo-oss (16.0)) (6/189),  37.3 KiB    
- Retrieving: libXpm4-3.5.17-160000.2.2.x86_64 (repo-oss (16.0)) (7/189),  48.1 KiB    
- Retrieving: libXrender1-0.9.11-160000.2.2.x86_64 (repo-oss (16.0)) (8/189),  27.5 KiB    
- Retrieving: libasound2-1.2.14-160000.2.2.x86_64 (repo-oss (16.0)) (9/189), 589.8 KiB    
- Retrieving: libavahi-common3-0.8-160000.3.1.x86_64 (repo-oss (16.0)) (10/189),  71.0 KiB    
- Retrieving: libdialog15-1.3-160000.2.2.x86_64 (repo-oss (16.0)) (11/189), 133.3 KiB    
- Retrieving: libfreebl3-3.112-160000.2.2.x86_64 (repo-oss (16.0)) (12/189), 508.2 KiB    
- Retrieving: libgif7-5.2.2-160000.2.2.x86_64 (repo-oss (16.0)) (13/189),  37.4 KiB    
- Retrieving: libgraphite2-3-1.3.14-160000.2.2.x86_64 (repo-oss (16.0)) (14/189),  71.9 KiB    
- Retrieving: libjbig2-2.1-160000.3.2.x86_64 (repo-oss (16.0)) (15/189),  35.4 KiB    
- Retrieving: libjpeg8-8.3.2-160000.3.2.x86_64 (repo-oss (16.0)) (16/189), 307.2 KiB    
- Retrieving: libkpathsea6-6.4.0-160000.3.2.x86_64 (repo-oss (16.0)) (17/189),  81.2 KiB    
- Retrieving: liblcms2-2-2.16-160000.3.2.x86_64 (repo-oss (16.0)) (18/189), 171.6 KiB    
- Retrieving: liblz1-1.15-160000.2.2.x86_64 (repo-oss (16.0)) (19/189),  51.3 KiB    
- Retrieving: libmpdec4-4.0.1-160000.2.2.x86_64 (repo-oss (16.0)) (20/189),  85.2 KiB    
- Retrieving: libonig5-6.9.8-160000.2.2.x86_64 (repo-oss (16.0)) (21/189), 177.6 KiB    
- Retrieving: libopenjp2-7-2.5.3-160000.2.2.x86_64 (repo-oss (16.0)) (22/189), 170.8 KiB    
- Retrieving: libpaper-2.1.0-160000.2.2.x86_64 (repo-oss (16.0)) (23/189),  21.9 KiB    
- Retrieving: libpcsclite1-2.0.1-160000.2.2.x86_64 (repo-oss (16.0)) (24/189),  55.2 KiB    
- Retrieving: libpng16-16-1.6.44-160000.3.1.x86_64 (repo-oss (16.0)) (25/189), 186.1 KiB    
- Retrieving: libpotrace0-1.16-160000.2.2.x86_64 (repo-oss (16.0)) (26/189),  27.6 KiB    
- Retrieving: libsharpyuv0-1.5.0-160000.2.2.x86_64 (repo-oss (16.0)) (27/189),  31.6 KiB    
- Retrieving: libtexlua53-5-5.3.6-160000.3.2.x86_64 (repo-oss (16.0)) (28/189), 141.9 KiB    
- Retrieving: libzzip-0-13-0.13.78-160000.2.2.x86_64 (repo-oss (16.0)) (29/189),  55.7 KiB    
- Retrieving: lua54-5.4.7-160000.2.2.x86_64 (repo-oss (16.0)) (30/189),  42.3 KiB    
- Retrieving: mozilla-nspr-4.36-160000.2.2.x86_64 (repo-oss (16.0)) (31/189), 136.9 KiB    
- Retrieving: perl-IPC-Run3-0.49.0-160000.2.2.noarch (repo-oss (16.0)) (32/189),  38.3 KiB    
- Retrieving: system-user-lp-20170617-160000.2.2.noarch (repo-oss (16.0)) (33/189),  12.6 KiB    
- Retrieving: system-user-mktex-1.0.0-160000.2.2.noarch (repo-oss (16.0)) (34/189),   7.4 KiB    
- Retrieving: systemd-rpm-macros-26-160000.2.2.noarch (repo-oss (16.0)) (35/189),  29.3 KiB    
- Retrieving: tcsh-6.24.15-160000.2.2.x86_64 (repo-oss (16.0)) (36/189), 341.5 KiB    
- Retrieving: javapackages-tools-6.3.4-160000.2.2.x86_64 (repo-oss (16.0)) (37/189),  46.1 KiB    
- Retrieving: libXtst6-1.2.5-160000.3.2.x86_64 (repo-oss (16.0)) (38/189),  18.0 KiB    
- Retrieving: libXi6-1.8.2-160000.3.2.x86_64 (repo-oss (16.0)) (39/189),  42.8 KiB    
- Retrieving: libavahi-client3-0.8-160000.3.1.x86_64 (repo-oss (16.0)) (40/189),  74.3 KiB    
- Retrieving: dialog-1.3-160000.2.2.x86_64 (repo-oss (16.0)) (41/189), 116.2 KiB    
- Retrieving: libtiff6-4.7.1-160000.1.1.x86_64 (repo-oss (16.0)) (42/189), 287.0 KiB    
- Retrieving: libmagic1-5.46-160000.2.2.x86_64 (repo-oss (16.0)) (43/189), 131.6 KiB    
- Retrieving: libpython3_13-1_0-3.13.5-160000.2.2.x86_64 (repo-oss (16.0)) (44/189),   2.0 MiB    
- Retrieving: python313-base-3.13.5-160000.2.2.x86_64 (repo-oss (16.0)) (45/189),   9.2 MiB    
- Retrieving: python313-3.13.5-160000.2.2.x86_64 (repo-oss (16.0)) (46/189), 492.7 KiB    
- Retrieving: libjq1-1.7.1-160000.2.2.x86_64 (repo-oss (16.0)) (47/189), 145.4 KiB    
- Retrieving: libpaper2-2.1.0-160000.2.2.x86_64 (repo-oss (16.0)) (48/189),  14.8 KiB    
- Retrieving: libfreetype6-2.13.3-160000.3.1.x86_64 (repo-oss (16.0)) (49/189), 564.1 KiB    
- Retrieving: libwebp7-1.5.0-160000.2.2.x86_64 (repo-oss (16.0)) (50/189), 227.4 KiB    
- Retrieving: mozilla-nss-certs-3.112-160000.2.2.x86_64 (repo-oss (16.0)) (51/189), 371.6 KiB    
- Retrieving: cups-config-2.4.11-160000.2.2.x86_64 (repo-oss (16.0)) (52/189), 422.3 KiB    
- Retrieving: texlive-scripts-extra-bin-2024.20240311.svn53577-160000.3.2.x86_64 (repo-oss (16.0)) (53/189),  43.1 KiB    
- Retrieving: file-5.46-160000.2.2.x86_64 (repo-oss (16.0)) (54/189),  96.9 KiB    
- Retrieving: jq-1.7.1-160000.2.2.x86_64 (repo-oss (16.0)) (55/189),  82.6 KiB    
- Retrieving: libpaper-tools-2.1.0-160000.2.2.x86_64 (repo-oss (16.0)) (56/189),  23.2 KiB    
- Retrieving: libharfbuzz0-11.0.0-160000.2.2.x86_64 (repo-oss (16.0)) (57/189), 577.2 KiB    
- Retrieving: fontconfig-2.16.0-160000.2.2.x86_64 (repo-oss (16.0)) (58/189), 137.4 KiB    
- Retrieving: libfontconfig1-2.16.0-160000.2.2.x86_64 (repo-oss (16.0)) (59/189), 199.5 KiB    
- Retrieving: mozilla-nss-3.112-160000.2.2.x86_64 (repo-oss (16.0)) (60/189), 918.1 KiB    
- Retrieving: libsoftokn3-3.112-160000.2.2.x86_64 (repo-oss (16.0)) (61/189), 384.2 KiB    
- Retrieving: libcups2-2.4.11-160000.2.2.x86_64 (repo-oss (16.0)) (62/189), 452.5 KiB    
- Retrieving: texlive-filesystem-2024.212-160000.2.2.noarch (repo-oss (16.0)) (63/189),   1.1 MiB    
- Retrieving: texlive-scripts-extra-2024.216.svn62517-160000.2.2.noarch (repo-oss (16.0)) (64/189),  76.8 KiB    
- Retrieving: texlive-scripts-bin-2024.20240311.svn64356-160000.3.2.x86_64 (repo-oss (16.0)) (65/189),  41.4 KiB    
- Retrieving: psutils-2.08-160000.2.2.x86_64 (repo-oss (16.0)) (66/189),  50.5 KiB    
- Retrieving: texlive-zapfding-fonts-2024.216.svn61719-160000.2.2.noarch (repo-oss (16.0)) (67/189),  94.6 KiB    
- Retrieving: texlive-tipa-fonts-2024.216.1.3svn29349-160000.2.2.noarch (repo-oss (16.0)) (68/189),   2.7 MiB    
- Retrieving: texlive-pdftex-fonts-2024.216.svn70501-160000.2.2.noarch (repo-oss (16.0)) (69/189),  57.3 KiB    
- Retrieving: texlive-lm-fonts-2024.216.2.005svn67718-160000.2.2.noarch (repo-oss (16.0)) (70/189),  10.7 MiB    
- Retrieving: texlive-cm-super-fonts-2024.216.svn15878-160000.2.2.noarch (repo-oss (16.0)) (71/189),  56.3 MiB    
- Retrieving: texlive-amsfonts-fonts-2024.216.3.04svn61937-160000.2.2.noarch (repo-oss (16.0)) (72/189),   3.3 MiB    
- Retrieving: libgd3-2.3.3-160000.2.2.x86_64 (repo-oss (16.0)) (73/189), 144.3 KiB    
- Retrieving: java-25-openjdk-headless-25.0.1.0-160000.1.1.x86_64 (repo-oss (16.0)) (74/189),  57.4 MiB    
- Retrieving: ghostscript-10.05.0-160000.2.2.x86_64 (repo-oss (16.0)) (75/189),  21.5 MiB    
- Retrieving: texlive-gsftopk-bin-2024.20240311.svn70276-160000.3.2.x86_64 (repo-oss (16.0)) (76/189),  54.2 KiB    
- Retrieving: java-25-openjdk-25.0.1.0-160000.1.1.x86_64 (repo-oss (16.0)) (77/189), 206.8 KiB    
- Retrieving: texlive-kpathsea-bin-2024.20240311.svn70276-160000.3.2.x86_64 (repo-oss (16.0)) (78/189),  56.7 KiB    
- Retrieving: texlive-2024.20240311-160000.3.2.x86_64 (repo-oss (16.0)) (79/189),  43.5 KiB    
- Retrieving: texlive-luatex-bin-2024.20240311.svn70276-160000.3.2.x86_64 (repo-oss (16.0)) (80/189),   1.8 MiB    
- Retrieving: texlive-texlive.infra-2024.216.svn70084-160000.2.2.noarch (repo-oss (16.0)) (81/189), 181.3 KiB    
- Retrieving: texlive-scripts-2024.216.svn70581-160000.2.2.noarch (repo-oss (16.0)) (82/189), 117.7 KiB    
- Retrieving: texlive-kpathsea-2024.216.svn70348-160000.2.2.noarch (repo-oss (16.0)) (83/189),  91.1 KiB    
- Retrieving: texlive-gsftopk-2024.217.1.19.2svn52851-160000.2.2.noarch (repo-oss (16.0)) (84/189),  55.1 KiB    
- Retrieving: texlive-updmap-map-2024.212.svn54495-160000.2.2.noarch (repo-oss (16.0)) (85/189),  22.9 KiB    
- Retrieving: texlive-zapfding-2024.216.svn61719-160000.2.2.noarch (repo-oss (16.0)) (86/189),  58.4 KiB    
- Retrieving: texlive-url-2024.216.3.4svn32528-160000.2.2.noarch (repo-oss (16.0)) (87/189),  57.4 KiB    
- Retrieving: texlive-unicode-data-2024.216.1.17svn68311-160000.2.2.noarch (repo-oss (16.0)) (88/189), 393.2 KiB    
- Retrieving: texlive-ukrhyph-2024.216.svn21081-160000.2.2.noarch (repo-oss (16.0)) (89/189),  97.3 KiB    
- Retrieving: texlive-tex4ht-bin-2024.20240311.svn70276-160000.3.2.x86_64 (repo-oss (16.0)) (90/189), 103.7 KiB    
- Retrieving: texlive-tex4ht-2024.216.svn70613-160000.2.2.noarch (repo-oss (16.0)) (91/189),   2.5 MiB    
- Retrieving: texlive-tex-ini-files-2024.216.svn68920-160000.2.2.noarch (repo-oss (16.0)) (92/189),  58.2 KiB    
- Retrieving: texlive-seetexk-bin-2024.20240311.svn69782-160000.3.2.x86_64 (repo-oss (16.0)) (93/189),  71.6 KiB    
- Retrieving: texlive-seetexk-2024.216.svn57972-160000.2.2.noarch (repo-oss (16.0)) (94/189),  57.9 KiB    
- Retrieving: texlive-ruhyphen-2024.216.1.6svn21081-160000.2.2.noarch (repo-oss (16.0)) (95/189), 116.7 KiB    
- Retrieving: texlive-plain-2024.216.3.141592653svn57963-160000.2.2.noarch (repo-oss (16.0)) (96/189),  83.5 KiB    
- Retrieving: texlive-placeins-2024.216.2.2svn19848-160000.2.2.noarch (repo-oss (16.0)) (97/189),  53.9 KiB    
- Retrieving: texlive-pdf14-2024.216.0.0.1svn17583-160000.2.2.noarch (repo-oss (16.0)) (98/189),  52.9 KiB    
- Retrieving: texlive-notoccite-2024.216.svn18129-160000.2.2.noarch (repo-oss (16.0)) (99/189),  53.2 KiB    
- Retrieving: texlive-manfnt-2024.216.svn54684-160000.2.2.noarch (repo-oss (16.0)) (100/189),  53.0 KiB    
- Retrieving: texlive-lua-uni-algos-2024.216.0.0.4.1svn62204-160000.2.2.noarch (repo-oss (16.0)) (101/189),  60.1 KiB    
- Retrieving: texlive-ltxcmds-2024.216.1.26svn69032-160000.2.2.noarch (repo-oss (16.0)) (102/189),  55.7 KiB    
- Retrieving: texlive-lm-2024.216.2.005svn67718-160000.2.2.noarch (repo-oss (16.0)) (103/189),   1.5 MiB    
- Retrieving: texlive-letltxmacro-2024.216.1.6svn53022-160000.2.2.noarch (repo-oss (16.0)) (104/189),  53.8 KiB    
- Retrieving: texlive-latexconfig-2024.216.svn68923-160000.2.2.noarch (repo-oss (16.0)) (105/189),  54.0 KiB    
- Retrieving: texlive-latex-fonts-2024.216.svn28888-160000.2.2.noarch (repo-oss (16.0)) (106/189),  77.6 KiB    
- Retrieving: texlive-lacheck-bin-2024.20240311.svn69782-160000.3.2.x86_64 (repo-oss (16.0)) (107/189),  65.0 KiB    
- Retrieving: texlive-lacheck-2024.216.svn66186-160000.2.2.noarch (repo-oss (16.0)) (108/189),  54.0 KiB    
- Retrieving: texlive-l3backend-2024.216.svn70026-160000.2.2.noarch (repo-oss (16.0)) (109/189),  68.7 KiB    
- Retrieving: texlive-kvsetkeys-2024.216.1.19svn64632-160000.2.2.noarch (repo-oss (16.0)) (110/189),  55.3 KiB    
- Retrieving: texlive-kvdefinekeys-2024.216.1.6svn53193-160000.2.2.noarch (repo-oss (16.0)) (111/189),  53.7 KiB    
- Retrieving: texlive-knuth-lib-2024.216.svn57963-160000.2.2.noarch (repo-oss (16.0)) (112/189),  86.2 KiB    
- Retrieving: texlive-intcalc-2024.216.1.3svn53168-160000.2.2.noarch (repo-oss (16.0)) (113/189),  57.3 KiB    
- Retrieving: texlive-infwarerr-2024.216.1.5svn53023-160000.2.2.noarch (repo-oss (16.0)) (114/189),  54.3 KiB    
- Retrieving: texlive-iftex-2024.216.1.0fsvn61910-160000.2.2.noarch (repo-oss (16.0)) (115/189),  55.5 KiB    
- Retrieving: texlive-hyphen-base-2024.216.svn70247-160000.2.2.noarch (repo-oss (16.0)) (116/189),  76.4 KiB    
- Retrieving: texlive-hyph-utf8-2024.216.svn61719-160000.2.2.noarch (repo-oss (16.0)) (117/189),  70.0 KiB    
- Retrieving: texlive-greek-fontenc-2024.217.2.6svn68877-160000.2.2.noarch (repo-oss (16.0)) (118/189),  87.9 KiB    
- Retrieving: texlive-graphics-cfg-2024.217.svn41448-160000.2.2.noarch (repo-oss (16.0)) (119/189),  53.0 KiB    
- Retrieving: texlive-firstaid-2024.216.1.1csvn70308-160000.2.2.noarch (repo-oss (16.0)) (120/189),  55.3 KiB    
- Retrieving: texlive-euenc-2024.216.0.0.1hsvn19795-160000.2.2.noarch (repo-oss (16.0)) (121/189),  56.8 KiB    
- Retrieving: texlive-etex-pkg-2024.216.2.7svn41784-160000.2.2.noarch (repo-oss (16.0)) (122/189),  57.7 KiB    
- Retrieving: texlive-etex-2024.216.svn70440-160000.2.2.noarch (repo-oss (16.0)) (123/189),  64.1 KiB    
- Retrieving: texlive-ec-2024.216.1.0svn25033-160000.2.2.noarch (repo-oss (16.0)) (124/189), 521.7 KiB    
- Retrieving: texlive-dvisvgm-bin-2024.20240311.svn70489-160000.3.2.x86_64 (repo-oss (16.0)) (125/189),   1.4 MiB    
- Retrieving: texlive-dvisvgm-2024.216.3.2.2svn70501-160000.2.2.noarch (repo-oss (16.0)) (126/189),  75.4 KiB    
- Retrieving: texlive-dvipng-bin-2024.20240311.svn70276-160000.3.2.x86_64 (repo-oss (16.0)) (127/189),  88.3 KiB    
- Retrieving: texlive-dvipng-2024.216.1.17svn70015-160000.2.2.noarch (repo-oss (16.0)) (128/189), 306.0 KiB    
- Retrieving: texlive-dvidvi-bin-2024.20240311.svn69782-160000.3.2.x86_64 (repo-oss (16.0)) (129/189),  50.8 KiB    
- Retrieving: texlive-dvidvi-2024.216.svn65952-160000.2.2.noarch (repo-oss (16.0)) (130/189),  54.2 KiB    
- Retrieving: texlive-dviasm-bin-2024.20240311.svn8329-160000.3.2.x86_64 (repo-oss (16.0)) (131/189),  39.9 KiB    
- Retrieving: texlive-dviasm-2024.216.svn68043-160000.2.2.noarch (repo-oss (16.0)) (132/189),  62.2 KiB    
- Retrieving: texlive-dehyph-2024.216.svn48599-160000.2.2.noarch (repo-oss (16.0)) (133/189), 100.9 KiB    
- Retrieving: texlive-ctablestack-2024.216.1.0svn38514-160000.2.2.noarch (repo-oss (16.0)) (134/189),  52.8 KiB    
- Retrieving: texlive-cm-2024.216.svn57963-160000.2.2.noarch (repo-oss (16.0)) (135/189), 326.8 KiB    
- Retrieving: texlive-auxhook-2024.216.1.6svn53173-160000.2.2.noarch (repo-oss (16.0)) (136/189),  53.2 KiB    
- Retrieving: texlive-atveryend-2024.216.1.11svn53108-160000.2.2.noarch (repo-oss (16.0)) (137/189),  55.6 KiB    
- Retrieving: texlive-amsfonts-2024.216.3.04svn61937-160000.2.2.noarch (repo-oss (16.0)) (138/189), 430.2 KiB    
- Retrieving: texlive-hopatch-2024.217.1.5svn65491-160000.2.2.noarch (repo-oss (16.0)) (139/189),  54.0 KiB    
- Retrieving: texlive-refcount-2024.216.3.6svn53164-160000.2.2.noarch (repo-oss (16.0)) (140/189),  54.8 KiB    
- Retrieving: texlive-grfext-2024.217.1.3svn53024-160000.2.2.noarch (repo-oss (16.0)) (141/189),  54.0 KiB    
- Retrieving: texlive-pdftexcmds-2024.216.0.0.33svn55777-160000.2.2.noarch (repo-oss (16.0)) (142/189),  58.1 KiB    
- Retrieving: texlive-etexcmds-2024.216.1.7svn53171-160000.2.2.noarch (repo-oss (16.0)) (143/189),  54.2 KiB    
- Retrieving: texlive-atbegshi-2024.216.1.19svn53051-160000.2.2.noarch (repo-oss (16.0)) (144/189),  56.4 KiB    
- Retrieving: texlive-hyphen-greek-2024.216.5svn58652-160000.2.2.noarch (repo-oss (16.0)) (145/189),  68.3 KiB    
- Retrieving: texlive-hyphen-ancientgreek-2024.216.svn58652-160000.2.2.noarch (repo-oss (16.0)) (146/189),  95.0 KiB    
- Retrieving: texlive-dehyph-exptl-2024.216.1.0svn70233-160000.2.2.noarch (repo-oss (16.0)) (147/189), 190.9 KiB    
- Retrieving: texlive-etoolbox-2024.216.2.5ksvn56554-160000.2.2.noarch (repo-oss (16.0)) (148/189),  60.5 KiB    
- Retrieving: texlive-extratools-2024.212-160000.2.2.noarch (repo-oss (16.0)) (149/189),  20.2 KiB    
- Retrieving: texlive-hyphen-german-2024.216.svn59807-160000.2.2.noarch (repo-oss (16.0)) (150/189), 283.0 KiB    
- Retrieving: texlive-luatexbase-2024.216.1.3svn52663-160000.2.2.noarch (repo-oss (16.0)) (151/189),  56.5 KiB    
- Retrieving: texlive-luatex-2024.216.svn70263-160000.2.2.noarch (repo-oss (16.0)) (152/189),  73.6 KiB    
- Retrieving: texlive-hycolor-2024.216.1.10svn53584-160000.2.2.noarch (repo-oss (16.0)) (153/189),  55.8 KiB    
- Retrieving: texlive-pdfescape-2024.216.1.15svn53082-160000.2.2.noarch (repo-oss (16.0)) (154/189),  56.0 KiB    
- Retrieving: texlive-bigintcalc-2024.216.1.5svn53172-160000.2.2.noarch (repo-oss (16.0)) (155/189),  58.2 KiB    
- Retrieving: texlive-graphics-def-2024.217.svn64487-160000.2.2.noarch (repo-oss (16.0)) (156/189),  63.0 KiB    
- Retrieving: texlive-lualibs-2024.216.2.76svn67994-160000.2.2.noarch (repo-oss (16.0)) (157/189), 189.6 KiB    
- Retrieving: texlive-luahbtex-bin-2024.20240311.svn70276-160000.3.2.x86_64 (repo-oss (16.0)) (158/189),   1.9 MiB    
- Retrieving: texlive-luahbtex-2024.216.svn70015-160000.2.2.noarch (repo-oss (16.0)) (159/189),  54.2 KiB    
- Retrieving: texlive-lua-alt-getopt-2024.216.0.0.7.0svn56414-160000.2.2.noarch (repo-oss (16.0)) (160/189),  53.8 KiB    
- Retrieving: texlive-stringenc-2024.216.1.12svn52982-160000.2.2.noarch (repo-oss (16.0)) (161/189),  82.3 KiB    
- Retrieving: texlive-uniquecounter-2024.216.1.4svn53162-160000.2.2.noarch (repo-oss (16.0)) (162/189),  54.0 KiB    
- Retrieving: texlive-bitset-2024.216.1.3svn53837-160000.2.2.noarch (repo-oss (16.0)) (163/189),  57.4 KiB    
- Retrieving: texlive-pdftex-bin-2024.20240311.svn70276-160000.3.2.x86_64 (repo-oss (16.0)) (164/189), 837.1 KiB    
- Retrieving: texlive-pdftex-2024.216.svn70501-160000.2.2.noarch (repo-oss (16.0)) (165/189),  96.4 KiB    
- Retrieving: texlive-luaotfload-bin-2024.20240311.svn34647-160000.3.2.x86_64 (repo-oss (16.0)) (166/189),  40.0 KiB    
- Retrieving: texlive-luaotfload-2024.216.3.28svn70232-160000.2.2.noarch (repo-oss (16.0)) (167/189), 711.9 KiB    
- Retrieving: texlive-latex-bin-bin-2024.20240311.svn54358-160000.3.2.x86_64 (repo-oss (16.0)) (168/189),  40.3 KiB    
- Retrieving: texlive-babel-2024.216.24.2svn69742-160000.2.2.noarch (repo-oss (16.0)) (169/189), 443.7 KiB    
- Retrieving: texlive-latex-bin-2024.216.svn70501-160000.2.2.noarch (repo-oss (16.0)) (170/189),  61.3 KiB    
- Retrieving: texlive-latex-2024.216.20231101_pl1svn69959-160000.2.2.noarch (repo-oss (16.0)) (171/189), 313.1 KiB    
- Retrieving: texlive-graphics-2024.217.svn66204-160000.2.2.noarch (repo-oss (16.0)) (172/189),  70.1 KiB    
- Retrieving: texlive-kvoptions-2024.216.3.15svn63622-160000.2.2.noarch (repo-oss (16.0)) (173/189),  59.0 KiB    
- Retrieving: texlive-rerunfilecheck-2024.216.1.10svn63869-160000.2.2.noarch (repo-oss (16.0)) (174/189),  54.9 KiB    
- Retrieving: texlive-ntheorem-2024.216.1.33svn27609-160000.2.2.noarch (repo-oss (16.0)) (175/189),  61.3 KiB    
- Retrieving: texlive-minitoc-2024.216.62svn61719-160000.2.2.noarch (repo-oss (16.0)) (176/189), 119.8 KiB    
- Retrieving: texlive-gettitlestring-2024.216.1.6svn53170-160000.2.2.noarch (repo-oss (16.0)) (177/189),  54.4 KiB    
- Retrieving: texlive-hyperref-2024.216.7.01hsvn69523-160000.2.2.noarch (repo-oss (16.0)) (178/189), 148.3 KiB    
- Retrieving: texlive-tools-2024.216.20231101csvn68941-160000.2.2.noarch (repo-oss (16.0)) (179/189), 101.3 KiB    
- Retrieving: texlive-hypdoc-2024.216.1.19svn68661-160000.2.2.noarch (repo-oss (16.0)) (180/189),  55.3 KiB    
- Retrieving: texlive-l3kernel-2024.216.svn70026-160000.2.2.noarch (repo-oss (16.0)) (181/189), 236.6 KiB    
- Retrieving: texlive-epstopdf-pkg-2024.216.2.11svn53546-160000.2.2.noarch (repo-oss (16.0)) (182/189),  56.1 KiB    
- Retrieving: texlive-psfrag-2024.216.3.04svn15878-160000.2.2.noarch (repo-oss (16.0)) (183/189),  56.3 KiB    
- Retrieving: texlive-tipa-2024.216.1.3svn29349-160000.2.2.noarch (repo-oss (16.0)) (184/189), 178.4 KiB    
- Retrieving: texlive-xunicode-2024.216.0.0.981svn30466-160000.2.2.noarch (repo-oss (16.0)) (185/189),  79.0 KiB    
- Retrieving: texlive-l3packages-2024.216.svn69983-160000.2.2.noarch (repo-oss (16.0)) (186/189),  73.2 KiB    
- Retrieving: texlive-fontspec-2024.216.2.9asvn69833-160000.2.2.noarch (repo-oss (16.0)) (187/189),  80.1 KiB    
- Retrieving: texlive-babel-hebrew-2024.216.2.4asvn68016-160000.2.2.noarch (repo-oss (16.0)) (188/189),  64.4 KiB    
- Retrieving: texlive-cm-super-2024.216.svn15878-160000.2.2.noarch (repo-oss (16.0)) (189/189),   5.6 MiB    
- 
- Checking for file conflicts: [.......
- .done]
- (  1/189) Installing: ed-1.21.1-160000.2.2.x86_64 [..done]
- (  2/189) Installing: file-magic-5.46-160000.2.2.noarch [..done]
- (  3/189) Installing: ghostscript-fonts-std-9.06-160000.2.2.noarch [..
- done]
- (  4/189) Installing: hostname-3.23-160000.2.2.x86_64 [..done]
- (  5/189) Installing: javapackages-filesystem-6.3.4-160000.2.2.x86_64 [..done]
- (  6/189) Installing: libXext6-1.3.6-160000.3.2.x86_64 [..done]
- (  7/189) Installing: libXpm4-3.5.17-160000.2.2.x86_64 [..done]
- (  8/189) Installing: libXrender1-0.9.11-160000.2.2.x86_64 [..done]
- (  9/189) Installing: libasound2-1.2.14-160000.2.2.x86_64 [..done]
- ( 10/189) Installing: libavahi-common3-0.8-160000.3.1.x86_64 [..done]
- ( 11/189) Installing: libdialog15-1.3-160000.2.2.x86_64 [..done]
- ( 12/189) Installing: libfreebl3-3.112-160000.2.2.x86_64 [..done]
- ( 13/189) Installing: libgif7-5.2.2-160000.2.2.x86_64 [..done]
- ( 14/189) Installing: libgraphite2-3-1.3.14-160000.2.2.x86_64 [..
- done]
- ( 15/189) Installing: libjbig2-2.1-160000.3.2.x86_64 [..done]
- ( 16/189) Installing: libjpeg8-8.3.2-160000.3.2.x86_64 [..done]
- ( 17/189) Installing: libkpathsea6-6.4.0-160000.3.2.x86_64 [..done]
- ( 18/189) Installing: liblcms2-2-2.16-160000.3.2.x86_64 [..done]
- ( 19/189) Installing: liblz1-1.15-160000.2.2.x86_64 [..done]
- ( 20/189) Installing: libmpdec4-4.0.1-160000.2.2.x86_64 [..done]
- ( 21/189) Installing: libonig5-6.9.8-160000.2.2.x86_64 [..done]
- ( 22/189) Installing: libopenjp2-7-2.5.3-160000.2.2.x86_64 [..done]
- ( 23/189) Installing: libpaper-2.1.0-160000.2.2.x86_64 [..done]
- ( 24/189) Installing: libpcsclite1-2.0.1-160000.2.2.x86_64 [..done]
- ( 25/189) Installing: libpng16-16-1.6.44-160000.3.1.x86_64 [.
- .done]
- ( 26/189) Installing: libpotrace0-1.16-160000.2.2.x86_64 [..done]
- ( 27/189) Installing: libsharpyuv0-1.5.0-160000.2.2.x86_64 [..done]
- ( 28/189) Installing: libtexlua53-5-5.3.6-160000.3.2.x86_64 [..done]
- ( 29/189) Installing: libzzip-0-13-0.13.78-160000.2.2.x86_64 [..done]
- ( 30/189) Installing: lua54-5.4.7-160000.2.2.x86_64 [..
- update-alternatives: using /usr/bin/lua5.4 to provide /usr/bin/lua (lua) in auto mode
- update-alternatives: warning: skip creation of /usr/share/man/man1/lua.1.gz because associated file /usr/share/man/man1/lua5.4.1.gz (of link group lua) doesn't exist
- update-alternatives: warning: skip creation of /usr/share/man/man1/luac.1.gz because associated file /usr/share/man/man1/luac5.4.1.gz (of link group lua) doesn't exist
- done]
- ( 31/189) Installing: mozilla-nspr-4.36-160000.2.2.x86_64 [..done]
- ( 32/189) Installing: perl-IPC-Run3-0.49.0-160000.2.2.noarch [..done]
- ( 33/189) Installing: system-user-lp-20170617-160000.2.2.noarch [..
- /usr/bin/systemd-sysusers --replace=/usr/lib/sysusers.d/system-user-lp.conf -
- Creating group 'systemd-journal' with GID 497.
- Creating group 'lp' with GID 496.
- Creating user 'lp' (Printing daemon) with UID 496 and GID 496.
- Creating group 'systemd-coredump' with GID 495.
- Creating user 'systemd-coredump' (systemd Core Dumper) with UID 495 and GID 495.
- done]
- ( 34/189) Installing: system-user-mktex-1.0.0-160000.2.2.noarch [..
- /usr/bin/systemd-sysusers --replace=/usr/lib/sysusers.d/system-user-mktex.conf -
- Creating group 'mktex' with GID 494.
- Creating user 'mktex' (System user for mktex) with UID 494 and GID 494.
- done]
- ( 35/189) Installing: systemd-rpm-macros-26-160000.2.2.noarch [..done]
- ( 36/189) Installing: tcsh-6.24.15-160000.2.2.x86_64 [..done]
- ( 37/189) Installing: javapackages-tools-6.3.4-160000.2.2.x86_64 [.
- .done]
- ( 38/189) Installing: libXtst6-1.2.5-160000.3.2.x86_64 [..done]
- ( 39/189) Installing: libXi6-1.8.2-160000.3.2.x86_64 [..done]
- ( 40/189) Installing: libavahi-client3-0.8-160000.3.1.x86_64 [..done]
- ( 41/189) Installing: dialog-1.3-160000.2.2.x86_64 [..done]
- ( 42/189) Installing: libtiff6-4.7.1-160000.1.1.x86_64 [..done]
- ( 43/189) Installing: libmagic1-5.46-160000.2.2.x86_64 [..done]
- ( 44/189) Installing: libpython3_13-1_0-3.13.5-160000.2.2.x86_64 [..done]
- ( 45/189) Installing: python313-base-3.13.5-160000.2.2.x86_64 [....
- ......done]
- ( 46/189) Installing: python313-3.13.5-160000.2.2.x86_64 [..done]
- ( 47/189) Installing: libjq1-1.7.1-160000.2.2.x86_64 [..done]
- ( 48/189) Installing: libpaper2-2.1.0-160000.2.2.x86_64 [..done]
- ( 49/189) Installing: libfreetype6-2.13.3-160000.3.1.x86_64 [..done]
- ( 50/189) Installing: libwebp7-1.5.0-160000.2.2.x86_64 [.
- .done]
- ( 51/189) Installing: mozilla-nss-certs-3.112-160000.2.2.x86_64 [..done]
- ( 52/189) Installing: cups-config-2.4.11-160000.2.2.x86_64 [..done]
- ( 53/189) Installing: texlive-scripts-extra-bin-2024.20240311.svn53577-160000.3.2.x86_64 [..done]
- ( 54/189) Installing: file-5.46-160000.2.2.x86_64 [..done]
- ( 55/189) Installing: jq-1.7.1-160000.2.2.x86_64 [..done]
- ( 56/189) Installing: libpaper-tools-2.1.0-160000.2.2.x86_64 [..done]
- ( 57/189) Installing: libharfbuzz0-11.0.0-160000.2.2.x86_64 [..done]
- ( 58/189) Installing: fontconfig-2.16.0-160000.2.2.x86_64 [..done]
- ( 59/189) Installing: libfontconfig1-2.16.0-160000.2.2.x86_64 [..done]
- ( 60/189) Installing: mozilla-nss-3.112-160000.2.2.x86_64 [..done]
- ( 61/189) Installing: libsoftokn3-3.112-160000.2.2.x86_64 [..done]
- ( 62/189) Installing: libcups2-2.4.11-160000.2.2.x86_64 [..done]
- ( 63/189) Installing: texlive-filesystem-2024.212-160000.2.2.noarch [..
- ........
- Updating /etc/sysconfig/texlive ...
- /var/lib/texmf/fonts/ls-R: no configuration entry in active permission profiles found. Cannot check this path.
- done]
- ( 64/189) Installing: texlive-scripts-extra-2024.216.svn62517-160000.2.2.noarch [..done]
- ( 65/189) Installing: texlive-scripts-bin-2024.20240311.svn64356-160000.3.2.x86_64 [..done]
- ( 66/189) Installing: psutils-2.08-160000.2.2.x86_64 [..done]
- ( 67/189) Installing: texlive-zapfding-fonts-2024.216.svn61719-160000.2.2.noarch [..done]
- ( 68/189) Installing: texlive-tipa-fonts-2024.216.1.3svn29349-160000.2.2.noarch [..done]
- ( 69/189) Installing: texlive-pdftex-fonts-2024.216.svn70501-160000.2.2.noarch [..done]
- ( 70/189) Installing: texlive-lm-fonts-2024.216.2.005svn67718-160000.2.2.noarch [...done]
- ( 71/189) Installing: texlive-cm-super-fonts-2024.216.svn15878-160000.2.2.noarch [..
- ...done]
- ( 72/189) Installing: texlive-amsfonts-fonts-2024.216.3.04svn61937-160000.2.2.noarch [..done]
- ( 73/189) Installing: libgd3-2.3.3-160000.2.2.x86_64 [..done]
- ( 74/189) Installing: java-25-openjdk-headless-25.0.1.0-160000.1.1.x86_64 [..
- .........
- .
- update-alternatives: using /usr/lib64/jvm/jre-25-openjdk/bin/java to provide /usr/bin/java (java) in auto mode
- update-alternatives: using /usr/lib64/jvm/jre-25-openjdk to provide /usr/lib64/jvm/jre-openjdk (jre_openjdk) in auto mode
- update-alternatives: using /usr/lib64/jvm/jre-25-openjdk to provide /usr/lib64/jvm/jre-25 (jre_25) in auto mode
- done]
- ( 75/189) Installing: ghostscript-10.05.0-160000.2.2.x86_64 [....
- update-alternatives: using /usr/bin/gs.bin to provide /usr/bin/gs (gs) in auto mode
- done]
- ( 76/189) Installing: texlive-gsftopk-bin-2024.20240311.svn70276-160000.3.2.x86_64 [..done]
- ( 77/189) Installing: java-25-openjdk-25.0.1.0-160000.1.1.x86_64 [..done]
- ( 78/189) Installing: texlive-kpathsea-bin-2024.20240311.svn70276-160000.3.2.x86_64 [..done]
- ( 79/189) Installing: texlive-2024.20240311-160000.3.2.x86_64 [..done]
- ( 80/189) Installing: texlive-luatex-bin-2024.20240311.svn70276-160000.3.2.x86_64 [..done]
- ( 81/189) Installing: texlive-texlive.infra-2024.216.svn70084-160000.2.2.noarch [..done]
- ( 82/189) Installing: texlive-scripts-2024.216.svn70581-160000.2.2.noarch [..done]
- ( 83/189) Installing: texlive-kpathsea-2024.216.svn70348-160000.2.2.noarch [..done]
- ( 84/189) Installing: texlive-gsftopk-2024.217.1.19.2svn52851-160000.2.2.noarch [..done]
- ( 85/189) Installing: texlive-updmap-map-2024.212.svn54495-160000.2.2.noarch [..done]
- ( 86/189) Installing: texlive-zapfding-2024.216.svn61719-160000.2.2.noarch [..done]
- ( 87/189) Installing: texlive-url-2024.216.3.4svn32528-160000.2.2.noarch [..done]
- ( 88/189) Installing: texlive-unicode-data-2024.216.1.17svn68311-160000.2.2.noarch [..done]
- ( 89/189) Installing: texlive-ukrhyph-2024.216.svn21081-160000.2.2.noarch [.
- .done]
- ( 90/189) Installing: texlive-tex4ht-bin-2024.20240311.svn70276-160000.3.2.x86_64 [..done]
- ( 91/189) Installing: texlive-tex4ht-2024.216.svn70613-160000.2.2.noarch [........done]
- ( 92/189) Installing: texlive-tex-ini-files-2024.216.svn68920-160000.2.2.noarch [..done]
- ( 93/189) Installing: texlive-seetexk-bin-2024.20240311.svn69782-160000.3.2.x86_64 [..done]
- ( 94/189) Installing: texlive-seetexk-2024.216.svn57972-160000.2.2.noarch [..done]
- ( 95/189) Installing: texlive-ruhyphen-2024.216.1.6svn21081-160000.2.2.noarch [..done]
- ( 96/189) Installing: texlive-plain-2024.216.3.141592653svn57963-160000.2.2.noarch [..done]
- ( 97/189) Installing: texlive-placeins-2024.216.2.2svn19848-160000.2.2.noarch [..done]
- ( 98/189) Installing: texlive-pdf14-2024.216.0.0.1svn17583-160000.2.2.noarch [..
- done]
- ( 99/189) Installing: texlive-notoccite-2024.216.svn18129-160000.2.2.noarch [..done]
- (100/189) Installing: texlive-manfnt-2024.216.svn54684-160000.2.2.noarch [..done]
- (101/189) Installing: texlive-lua-uni-algos-2024.216.0.0.4.1svn62204-160000.2.2.noarch [..done]
- (102/189) Installing: texlive-ltxcmds-2024.216.1.26svn69032-160000.2.2.noarch [..done]
- (103/189) Installing: texlive-lm-2024.216.2.005svn67718-160000.2.2.noarch [...done]
- (104/189) Installing: texlive-letltxmacro-2024.216.1.6svn53022-160000.2.2.noarch [..done]
- (105/189) Installing: texlive-latexconfig-2024.216.svn68923-160000.2.2.noarch [..done]
- (106/189) Installing: texlive-latex-fonts-2024.216.svn28888-160000.2.2.noarch [..done]
- (107/189) Installing: texlive-lacheck-bin-2024.20240311.svn69782-160000.3.2.x86_64 [..done]
- (108/189) Installing: texlive-lacheck-2024.216.svn66186-160000.2.2.noarch [..done]
- (109/189) Installing: texlive-l3backend-2024.216.svn70026-160000.2.2.noarch [..done]
- (110/189) Installing: texlive-kvsetkeys-2024.216.1.19svn64632-160000.2.2.noarch [..done]
- (111/189) Installing: texlive-kvdefinekeys-2024.216.1.6svn53193-160000.2.2.noarch [..done]
- (112/189) Installing: texlive-knuth-lib-2024.216.svn57963-160000.2.2.noarch [..done]
- (113/189) Installing: texlive-intcalc-2024.216.1.3svn53168-160000.2.2.noarch [..done]
- (114/189) Installing: texlive-infwarerr-2024.216.1.5svn53023-160000.2.2.noarch [..done]
- (115/189) Installing: texlive-iftex-2024.216.1.0fsvn61910-160000.2.2.noarch [..done]
- (116/189) Installing: texlive-hyphen-base-2024.216.svn70247-160000.2.2.noarch [..done]
- (117/189) Installing: texlive-hyph-utf8-2024.216.svn61719-160000.2.2.noarch [..done]
- (118/189) Installing: texlive-greek-fontenc-2024.217.2.6svn68877-160000.2.2.noarch [..done]
- (119/189) Installing: texlive-graphics-cfg-2024.217.svn41448-160000.2.2.noarch [..done]
- (120/189) Installing: texlive-firstaid-2024.216.1.1csvn70308-160000.2.2.noarch [..done]
- (121/189) Installing: texlive-euenc-2024.216.0.0.1hsvn19795-160000.2.2.noarch [..done]
- (122/189) Installing: texlive-etex-pkg-2024.216.2.7svn41784-160000.2.2.noarch [..done]
- (123/189) Installing: texlive-etex-2024.216.svn70440-160000.2.2.noarch [..done]
- (124/189) Installing: texlive-ec-2024.216.1.0svn25033-160000.2.2.noarch [..done]
- (125/189) Installing: texlive-dvisvgm-bin-2024.20240311.svn70489-160000.3.2.x86_64 [..done]
- (126/189) Installing: texlive-dvisvgm-2024.216.3.2.2svn70501-160000.2.2.noarch [..done]
- (127/189) Installing: texlive-dvipng-bin-2024.20240311.svn70276-160000.3.2.x86_64 [..done]
- (128/189) Installing: texlive-dvipng-2024.216.1.17svn70015-160000.2.2.noarch [.
- .done]
- (129/189) Installing: texlive-dvidvi-bin-2024.20240311.svn69782-160000.3.2.x86_64 [..done]
- (130/189) Installing: texlive-dvidvi-2024.216.svn65952-160000.2.2.noarch [..done]
- (131/189) Installing: texlive-dviasm-bin-2024.20240311.svn8329-160000.3.2.x86_64 [..done]
- (132/189) Installing: texlive-dviasm-2024.216.svn68043-160000.2.2.noarch [..done]
- (133/189) Installing: texlive-dehyph-2024.216.svn48599-160000.2.2.noarch [..done]
- (134/189) Installing: texlive-ctablestack-2024.216.1.0svn38514-160000.2.2.noarch [..done]
- (135/189) Installing: texlive-cm-2024.216.svn57963-160000.2.2.noarch [..done]
- (136/189) Installing: texlive-auxhook-2024.216.1.6svn53173-160000.2.2.noarch [..done]
- (137/189) Installing: texlive-atveryend-2024.216.1.11svn53108-160000.2.2.noarch [..done]
- (138/189) Installing: texlive-amsfonts-2024.216.3.04svn61937-160000.2.2.noarch [..done]
- (139/189) Installing: texlive-hopatch-2024.217.1.5svn65491-160000.2.2.noarch [..done]
- (140/189) Installing: texlive-refcount-2024.216.3.6svn53164-160000.2.2.noarch [..done]
- (141/189) Installing: texlive-grfext-2024.217.1.3svn53024-160000.2.2.noarch [..done]
- (142/189) Installing: texlive-pdftexcmds-2024.216.0.0.33svn55777-160000.2.2.noarch [..done]
- (143/189) Installing: texlive-etexcmds-2024.216.1.7svn53171-160000.2.2.noarch [..done]
- (144/189) Installing: texlive-atbegshi-2024.216.1.19svn53051-160000.2.2.noarch [..done]
- (145/189) Installing: texlive-hyphen-greek-2024.216.5svn58652-160000.2.2.noarch [..done]
- (146/189) Installing: texlive-hyphen-ancientgreek-2024.216.svn58652-160000.2.2.noarch [..done]
- (147/189) Installing: texlive-dehyph-exptl-2024.216.1.0svn70233-160000.2.2.noarch [..done]
- (148/189) Installing: texlive-etoolbox-2024.216.2.5ksvn56554-160000.2.2.noarch [..done]
- (149/189) Installing: texlive-extratools-2024.212-160000.2.2.noarch [..done]
- (150/189) Installing: texlive-hyphen-german-2024.216.svn59807-160000.2.2.noarch [..done]
- (151/189) Installing: texlive-luatexbase-2024.216.1.3svn52663-160000.2.2.noarch [..done]
- (152/189) Installing: texlive-luatex-2024.216.svn70263-160000.2.2.noarch [..done]
- (153/189) Installing: texlive-hycolor-2024.216.1.10svn53584-160000.2.2.noarch [..done]
- (154/189) Installing: texlive-pdfescape-2024.216.1.15svn53082-160000.2.2.noarch [..done]
- (155/189) Installing: texlive-bigintcalc-2024.216.1.5svn53172-160000.2.2.noarch [..done]
- (156/189) Installing: texlive-graphics-def-2024.217.svn64487-160000.2.2.noarch [..done]
- (157/189) Installing: texlive-lualibs-2024.216.2.76svn67994-160000.2.2.noarch [..done]
- (158/189) Installing: texlive-luahbtex-bin-2024.20240311.svn70276-160000.3.2.x86_64 [..done]
- (159/189) Installing: texlive-luahbtex-2024.216.svn70015-160000.2.2.noarch [..done]
- (160/189) Installing: texlive-lua-alt-getopt-2024.216.0.0.7.0svn56414-160000.2.2.noarch [..done]
- (161/189) Installing: texlive-stringenc-2024.216.1.12svn52982-160000.2.2.noarch [..done]
- (162/189) Installing: texlive-uniquecounter-2024.216.1.4svn53162-160000.2.2.noarch [..done]
- (163/189) Installing: texlive-bitset-2024.216.1.3svn53837-160000.2.2.noarch [..done]
- (164/189) Installing: texlive-pdftex-bin-2024.20240311.svn70276-160000.3.2.x86_64 [.
- .done]
- (165/189) Installing: texlive-pdftex-2024.216.svn70501-160000.2.2.noarch [..done]
- (166/189) Installing: texlive-luaotfload-bin-2024.20240311.svn34647-160000.3.2.x86_64 [..done]
- (167/189) Installing: texlive-luaotfload-2024.216.3.28svn70232-160000.2.2.noarch [..done]
- (168/189) Installing: texlive-latex-bin-bin-2024.20240311.svn54358-160000.3.2.x86_64 [..done]
- (169/189) Installing: texlive-babel-2024.216.24.2svn69742-160000.2.2.noarch [..done]
- (170/189) Installing: texlive-latex-bin-2024.216.svn70501-160000.2.2.noarch [..done]
- (171/189) Installing: texlive-latex-2024.216.20231101_pl1svn69959-160000.2.2.noarch [..done]
- (172/189) Installing: texlive-graphics-2024.217.svn66204-160000.2.2.noarch [..done]
- (173/189) Installing: texlive-kvoptions-2024.216.3.15svn63622-160000.2.2.noarch [..done]
- (174/189) Installing: texlive-rerunfilecheck-2024.216.1.10svn63869-160000.2.2.noarch [..done]
- (175/189) Installing: texlive-ntheorem-2024.216.1.33svn27609-160000.2.2.noarch [..done]
- (176/189) Installing: texlive-minitoc-2024.216.62svn61719-160000.2.2.noarch [..done]
- (177/189) Installing: texlive-gettitlestring-2024.216.1.6svn53170-160000.2.2.noarch [..done]
- (178/189) Installing: texlive-hyperref-2024.216.7.01hsvn69523-160000.2.2.noarch [..done]
- (179/189) Installing: texlive-tools-2024.216.20231101csvn68941-160000.2.2.noarch [..done]
- (180/189) Installing: texlive-hypdoc-2024.216.1.19svn68661-160000.2.2.noarch [..done]
- (181/189) Installing: texlive-l3kernel-2024.216.svn70026-160000.2.2.noarch [..done]
- (182/189) Installing: texlive-epstopdf-pkg-2024.216.2.11svn53546-160000.2.2.noarch [..done]
- (183/189) Installing: texlive-psfrag-2024.216.3.04svn15878-160000.2.2.noarch [..done]
- (184/189) Installing: texlive-tipa-2024.216.1.3svn29349-160000.2.2.noarch [..done]
- (185/189) Installing: texlive-xunicode-2024.216.0.0.981svn30466-160000.2.2.noarch [..done]
- (186/189) Installing: texlive-l3packages-2024.216.svn69983-160000.2.2.noarch [..done]
- (187/189) Installing: texlive-fontspec-2024.216.2.9asvn69833-160000.2.2.noarch [..done]
- (188/189) Installing: texlive-babel-hebrew-2024.216.2.4asvn68016-160000.2.2.noarch [..done]
- (189/189) Installing: texlive-cm-super-2024.216.svn15878-160000.2.2.noarch [..
- done]
- Running post-transaction scripts [..
- .
- %posttrans(java-25-openjdk-headless-25.0.1.0-160000.1.1.x86_64) script output:
- ++ /usr/bin/file --mime-type -b /var/lib/ca-certificates/java-cacerts
- ++ stat -c %s /usr/lib64/jvm/java-25-openjdk-25/lib/security/cacerts
- ++ /usr/bin/file --mime-type -b -L /usr/lib64/jvm/java-25-openjdk-25/lib/security/cacerts
- ..
- %posttrans(texlive-dvidvi-2024.216.svn65952-160000.2.2.noarch) script output:
- Running %posttrans(texlive-dviasm-2024.216D: %posttrans(texlive-dviasm-2024.216.svn68043-160000.2.2.noarch): scriptlet start
- ..
- %transfiletriggerin(systemd-257.7-160000.2.2.x86_64) script output:
- .svn68043-160000.2.2.noarch)
- Running %trD: %transfiletriggerin(systemd-257.7-160000.2.2.x86_64): running <lua> scriptlet.
- ansfiletriggerin(systemd-257.7-160000.2.2.x86_64)
- .done]

<><> 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:17.56 ---> saved as "8877904be8e7b706bcbf3584588d1fb62fe12d31a3608375b06a14546895113f"

/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 \"\\\"opensuse-16.0\\\"\"; 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"))
[WARNING] Opam package conf-python-3.9.0.0 depends on the following system package that can no longer be found: python3
The following actions will be performed:
=== recompile 2 packages
  - recompile caisar        5.0 (pinned)
  - recompile conf-python-3 9.0.0        [upstream or system changes]

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

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

opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
  2. Display the recommended zypper command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "zypper" "--non-interactive" "install" "python3"
- Refreshing service 'openSUSE'.
- Loading repository data...
- Reading installed packages...
- 'python3' not found in package names. Trying capabilities.
- 'python313' providing 'python3' is already installed.
- Resolving package dependencies...
- Nothing to do.

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-python-3.9.0.0  (cached)
Processing  3/8: [conf-python-3: python3 test.py]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "python3" "test.py" (CWD=/home/opam/.opam/5.4/.opam-switch/build/conf-python-3.9.0.0)
- python-3 OK
-> compiled  conf-python-3.9.0.0
-> removed   caisar.5.0
-> removed   conf-python-3.9.0.0
-> installed conf-python-3.9.0.0
Processing  7/8: [caisar: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "caisar" "-j" "255" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caisar.5.0)
Processing  7/8: [caisar: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "caisar" "--create-install-files" "caisar" (CWD=/home/opam/.opam/5.4/.opam-switch/build/caisar.5.0)
-> compiled  caisar.5.0
-> installed caisar.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-23 15:18.09 ---> saved as "d1e28129223f40cee02063a2aa18080393c08b87ac277a47ce98977d5848c755"
Job succeeded
2026-01-23 15:18.13: Job succeeded