Warning: Permanently added '34.239.163.46' (ED25519) to the list of known hosts. You can reproduce this build on your computer by running: sudo dnf install copr-rpmbuild /usr/bin/copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10873291 Version: 1.9 PID: 10455 Logging PID: 10457 Task: {'appstream': False, 'background': True, 'build_id': 10873291, 'chroot': 'fedora-45-x86_64', 'distributions_in_build': ['fedora-43', 'fedora-44', 'fedora-45', 'fedora-rawhide'], 'distributions_in_project': ['fedora-43', 'fedora-44', 'fedora-45', 'fedora-rawhide'], 'package_name': 'Sunshine', 'project_dirname': 'pulls:pr:5507', 'project_name': 'pulls', 'project_owner': 'lizardbyte', 'repos': [], 'sandbox': 'lizardbyte/pulls--be7dc97b-9a16-4b2d-a058-e958cf304bb0', 'source_json': {'builddeps': 'git jq python3 rpmlint', 'chroot': 'fedora-45-x86_64', 'hook_data': True, 'repos': '', 'resultdir': '', 'script': '#!/usr/bin/env bash\n' 'set -x\n' 'set -e\n' '\n' 'resultdir="${COPR_RESULTDIR}"\n' 'git clone "https://github.com/${COPR_OWNER}/${COPR_PACKAGE}.git" --depth 1\n' 'cd "${COPR_PACKAGE}"\n' '\n' '# get info from the webhook payload\n' 'if [[ -z "$REVISION" ]]; then\n' ' # the hook_payload file contains webhook JSON payload (copr creates it for us);\n' ' # it is created only if the build is triggered by Custom webhook.\n' ' if [[ -f "$resultdir"/hook_payload ]]; then\n' ' git clone https://github.com/praiskup/copr-ci-tooling \\\n' ' "$resultdir/cct" --depth 1\n' ' export PATH="$resultdir/cct:$PATH"\n' '\n' ' echo "---"\n' ' cat "$resultdir"/hook_payload\n' ' echo "---"\n' '\n' ' # use jq to get the pr_id from the hook_payload\n' ' PR=$(jq -r \'.pr_id // empty\' "$resultdir"/hook_payload)\n' ' if [[ -z "$PR" ]]; then\n' ' BRANCH="master"\n' ' else\n' ' BRANCH="pr/${PR}"\n' ' fi\n' '\n' ' copr-travis-checkout "$resultdir"/hook_payload\n' ' fi\n' 'else\n' ' git checkout "$REVISION"\n' 'fi\n' '\n' '# read optional exclusions from .copr-ci config file\n' '# each non-empty, non-comment line is treated as a submodule path or directory\n' '# to exclude (relative to the repo root, e.g. "third-party/build-deps")\n' 'EXCLUDED_PATHS=()\n' 'if [[ -f ".copr-ci" ]]; then\n' ' echo "Found .copr-ci config file, reading exclusions..."\n' ' while IFS= read -r line || [[ -n "$line" ]]; do\n' ' # skip empty lines and comments\n' ' [[ -z "$line" || "$line" =~ ^# ]] && continue\n' ' EXCLUDED_PATHS+=("$line")\n' ' echo " Excluding: $line"\n' ' done < ".copr-ci"\n' 'fi\n' '\n' '# initialize the submodules, skipping any excluded paths\n' 'if [[ ${#EXCLUDED_PATHS[@]} -gt 0 ]]; then\n' ' # get all top-level submodule paths, then init only the ones not excluded\n' " mapfile -t TOP_SUBMODULES < <(git submodule status | awk '{print $2}')\n" '\n' ' for submodule in "${TOP_SUBMODULES[@]}"; do\n' ' skip=false\n' ' for excluded in "${EXCLUDED_PATHS[@]}"; do\n' ' # match exact path or any path that starts with the excluded prefix\n' ' if [[ "$submodule" == "$excluded" || "$submodule" == "$excluded/"* ]]; then\n' ' skip=true\n' ' break\n' ' fi\n' ' done\n' ' if [[ "$skip" == false ]]; then\n' ' git submodule update --init --recursive --depth 1 -- "$submodule"\n' ' else\n' ' echo "Skipping submodule: $submodule"\n' ' fi\n' ' done\n' 'else\n' ' git submodule update --init --recursive --depth 1\n' 'fi\n' '\n' '# get the tag of this commit IF it has one\n' 'TAG=$(git tag --points-at HEAD | head -n1)\n' 'if [[ -z "$TAG" ]]; then\n' ' TAG="0.0.$PR"\n' 'fi\n' 'TAG="${TAG#v}" # remove v prefix from the tag\n' 'echo "TAG=$TAG"\n' '\n' '# get the commit\n' 'COMMIT=$(git rev-parse HEAD)\n' 'echo "COMMIT=$COMMIT"\n' '\n' '# move spec file to the correct location\n' 'directories=(\n' ' "."\n' ' "./packaging/linux/copr"\n' ')\n' 'for dir in "${directories[@]}"; do\n' ' if [[ -f "${dir}/${COPR_PACKAGE}.spec" ]]; then\n' ' echo "Found spec file in ${dir}"\n' ' rpmlint "${dir}/${COPR_PACKAGE}.spec"\n' '\n' ' mv "${dir}/${COPR_PACKAGE}.spec" "${resultdir}"\n' ' break\n' ' fi\n' 'done\n' '\n' '# fail if the spec file is not in the resultdir\n' 'if [[ ! -f "${resultdir}/${COPR_PACKAGE}.spec" ]]; then\n' ' echo "ERROR: ${COPR_PACKAGE}.spec not found" >&2\n' ' exit 1\n' 'fi\n' '\n' '# use sed to replace these values in the spec file\n' 'sed -i "s|%global build_version 0|%global build_version ${TAG}|" "${resultdir}"/*.spec\n' 'sed -i "s|%global branch 0|%global branch ${BRANCH}|" "${resultdir}"/*.spec\n' 'sed -i "s|%global commit 0|%global commit ${COMMIT}|" "${resultdir}"/*.spec\n' '\n' '# create a tarball of the source code, excluding any configured paths\n' 'TAR_EXCLUDE_ARGS=()\n' 'for path in "${EXCLUDED_PATHS[@]}"; do\n' ' TAR_EXCLUDE_ARGS+=("--exclude=./${path}")\n' 'done\n' 'tar -czf "${resultdir}/tarball.tar.gz" "${TAR_EXCLUDE_ARGS[@]}" .\n', 'tmp': 'tmpn_bwvi0r'}, 'source_type': 9, 'submitter': None, 'task_id': '10873291'} Running (timeout=5400): unbuffer copr-sources-custom --workdir /workdir --mock-config /var/lib/copr-rpmbuild/results/mock-config.cfg --script /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/script --builddeps 'git jq python3 rpmlint' --hook-payload-file /var/lib/copr-rpmbuild/results/hook_payload --env COPR_OWNER=lizardbyte --env COPR_PROJECT=pulls --env COPR_PACKAGE=Sunshine INFO:__main__:Working in '/workdir' INFO:__main__:Results should be created in '/workdir' INFO:__main__:running command: mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --init INFO: mock.py version 6.8 starting (python version = 3.14.5, NVR = mock-6.8-1.fc44), args: /usr/libexec/mock/mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --init Start(bootstrap): init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish(bootstrap): init plugins Start: init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish: init plugins INFO: Signal handler active Start: run Start: clean chroot Finish: clean chroot Mock Version: 6.8 INFO: Mock Version: 6.8 Start(bootstrap): chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start(bootstrap): cleaning package manager metadata Finish(bootstrap): cleaning package manager metadata INFO: Guessed host environment type: unknown INFO: Using container image: registry.fedoraproject.org/fedora:45 INFO: Pulling image: registry.fedoraproject.org/fedora:45 INFO: Tagging container image as mock-bootstrap-06322125-a558-4d34-a8f0-e9cb68ecab09 INFO: Checking that d169f73febcc33d2d7781cb3a651c8c487c4665d17b2c9a0b0cf71b50f730362 image matches host's architecture INFO: Copy content of container d169f73febcc33d2d7781cb3a651c8c487c4665d17b2c9a0b0cf71b50f730362 to /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root INFO: mounting d169f73febcc33d2d7781cb3a651c8c487c4665d17b2c9a0b0cf71b50f730362 with podman image mount INFO: image d169f73febcc33d2d7781cb3a651c8c487c4665d17b2c9a0b0cf71b50f730362 as /var/lib/containers/storage/overlay/baae1160f80c4ba0156b639846a9715f136e2b4fec89460936f8d338a899d788/merged INFO: umounting image d169f73febcc33d2d7781cb3a651c8c487c4665d17b2c9a0b0cf71b50f730362 (/var/lib/containers/storage/overlay/baae1160f80c4ba0156b639846a9715f136e2b4fec89460936f8d338a899d788/merged) with podman image umount INFO: Removing image mock-bootstrap-06322125-a558-4d34-a8f0-e9cb68ecab09 INFO: Package manager dnf5 detected and used (fallback) INFO: Not updating bootstrap chroot, bootstrap_image_ready=True Start(bootstrap): creating root cache Finish(bootstrap): creating root cache Finish(bootstrap): chroot init Start: chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start: cleaning package manager metadata Finish: cleaning package manager metadata INFO: enabled HW Info plugin INFO: Package manager dnf5 detected and used (direct choice) Start: installing minimal buildroot with dnf5 Updating and loading repositories: updates 100% | 184.3 KiB/s | 27.1 KiB | 00m00s fedora 100% | 49.0 MiB/s | 36.5 MiB | 00m01s Repositories loaded. Package Arch Version Repository Size Installing group/module packages: bash x86_64 0:5.3.15-2.fc45 fedora 8.5 MiB bzip2 x86_64 0:1.0.8-24.fc45 fedora 95.0 KiB coreutils x86_64 0:9.11-6.fc45 fedora 5.9 MiB cpio x86_64 0:2.15-10.fc45 fedora 1.1 MiB diffutils x86_64 0:3.12-6.fc45 fedora 1.6 MiB fedora-release-common noarch 0:45-0.10 fedora 4.2 KiB findutils x86_64 1:4.11.0-2.fc45 fedora 1.9 MiB gawk x86_64 0:5.4.1-1.fc45 fedora 2.2 MiB glibc-minimal-langpack x86_64 0:2.44-1.fc45 fedora 0.0 B grep x86_64 0:3.12-4.fc45 fedora 1.0 MiB gzip x86_64 0:1.14-4.fc45 fedora 401.6 KiB info x86_64 0:7.3-3.fc45 fedora 372.4 KiB patch x86_64 0:2.8-5.fc45 fedora 226.6 KiB redhat-rpm-config noarch 0:344-5.fc45 fedora 184.2 KiB rpm-build x86_64 0:6.0.92-2.fc45 fedora 312.2 KiB sed x86_64 0:4.10-2.fc45 fedora 866.5 KiB shadow-utils x86_64 2:4.20.0-1.fc45 fedora 3.9 MiB tar x86_64 2:1.35-9.fc45 fedora 3.0 MiB unzip x86_64 0:6.0-71.fc45 fedora 441.8 KiB util-linux x86_64 0:2.42.2-3.fc45 fedora 3.7 MiB which x86_64 0:2.25-2.fc45 fedora 83.6 KiB xz x86_64 1:5.8.3-2.fc45 fedora 1.4 MiB Installing dependencies: R-srpm-macros noarch 0:1.3.7-3.fc45 fedora 3.5 KiB add-determinism x86_64 0:0.7.3-3.fc45 fedora 2.2 MiB alternatives x86_64 0:1.33-6.fc45 fedora 62.1 KiB ansible-srpm-macros noarch 0:1-22.fc45 fedora 35.7 KiB audit-libs x86_64 0:4.2.1-2.fc45 fedora 390.5 KiB binutils x86_64 0:2.47-1.fc45 fedora 28.4 MiB build-reproducibility-srpm-macros noarch 0:0.7.3-3.fc45 fedora 1.2 KiB bzip2-libs x86_64 0:1.0.8-24.fc45 fedora 80.5 KiB ca-certificates noarch 0:2025.2.80_v9.0.304-9.fc45 fedora 2.6 MiB cmake-srpm-macros noarch 0:4.3.0-5.fc45 fedora 524.0 B coreutils-common x86_64 0:9.11-6.fc45 fedora 10.9 MiB crypto-policies noarch 0:20260713-2.gitc42da77.fc45 fedora 134.3 KiB curl x86_64 0:8.21.0-5.fc45 fedora 487.9 KiB cyrus-sasl-lib x86_64 0:2.1.28-37.fc45 fedora 2.3 MiB debugedit x86_64 0:5.3-3.fc45 fedora 220.8 KiB dwz x86_64 0:0.17-3.fc45 fedora 291.1 KiB ed x86_64 0:1.22.5-3.fc45 fedora 149.7 KiB efi-srpm-macros noarch 0:6-9.fc45 fedora 40.3 KiB elfutils x86_64 0:0.195-3.fc45 fedora 3.0 MiB elfutils-debuginfod-client x86_64 0:0.195-3.fc45 fedora 79.8 KiB elfutils-libelf x86_64 0:0.195-3.fc45 fedora 1.2 MiB elfutils-libs x86_64 0:0.195-3.fc45 fedora 715.3 KiB erlang-srpm-macros noarch 0:0.3.11-2.fc45 fedora 1.9 KiB fedora-gpg-keys noarch 0:45-0.5 fedora 130.3 KiB fedora-release noarch 0:45-0.10 fedora 0.0 B fedora-release-identity-basic noarch 0:45-0.10 fedora 656.0 B fedora-repos noarch 0:45-0.5 fedora 4.9 KiB file x86_64 0:5.47-3.fc45 fedora 101.2 KiB file-libs x86_64 0:5.47-3.fc45 fedora 12.2 MiB filesystem x86_64 0:3.18-59.fc45 fedora 112.0 B filesystem-srpm-macros noarch 0:3.18-59.fc45 fedora 38.2 KiB fips-provider x86_64 0:1.5.2-3.fc45 fedora 4.8 MiB fonts-srpm-macros noarch 1:5.0.0-4.fc45 fedora 55.8 KiB forge-srpm-macros noarch 0:0.4.0-5.fc45 fedora 38.9 KiB fpc-srpm-macros noarch 0:1.3-17.fc45 fedora 144.0 B gap-srpm-macros noarch 0:2-3.fc45 fedora 2.1 KiB gdb-minimal x86_64 0:17.2-4.fc45 fedora 14.2 MiB gdbm-libs x86_64 1:1.23-12.fc45 fedora 133.7 KiB ghc-srpm-macros noarch 0:1.10-2.fc45 fedora 792.0 B glibc x86_64 0:2.44-1.fc45 fedora 7.1 MiB glibc-common x86_64 0:2.44-1.fc45 fedora 1.0 MiB glibc-gconv-extra x86_64 0:2.44-1.fc45 fedora 7.7 MiB gmp x86_64 1:6.3.0-6.fc45 fedora 815.2 KiB gnat-srpm-macros noarch 0:7-3.fc45 fedora 1.0 KiB gnome-srpm-macros noarch 0:1.0-2.fc45 fedora 3.5 KiB gnulib-l10n noarch 0:20241231-4.fc45 fedora 655.0 KiB gnupg2 x86_64 0:2.4.9-18.fc45 fedora 6.5 MiB gnupg2-dirmngr x86_64 0:2.4.9-18.fc45 fedora 630.1 KiB gnupg2-gpg-agent x86_64 0:2.4.9-18.fc45 fedora 678.8 KiB gnupg2-gpgconf x86_64 0:2.4.9-18.fc45 fedora 253.8 KiB gnupg2-keyboxd x86_64 0:2.4.9-18.fc45 fedora 201.3 KiB gnupg2-verify x86_64 0:2.4.9-18.fc45 fedora 356.3 KiB gnutls x86_64 0:3.8.13-3.fc45 fedora 3.8 MiB go-srpm-macros noarch 0:3.8.0-3.fc45 fedora 61.9 KiB gpgverify noarch 0:2.2-5.fc45 fedora 8.7 KiB ima-evm-utils-libs x86_64 0:1.6.2-12.fc45 fedora 56.6 KiB jansson x86_64 0:2.14-5.fc45 fedora 89.0 KiB java-srpm-macros noarch 0:1-9.fc45 fedora 870.0 B json-c x86_64 0:0.18-9.fc45 fedora 82.7 KiB kernel-srpm-macros noarch 0:1.0-30.fc45 fedora 1.9 KiB keyutils-libs x86_64 0:1.6.3-8.fc45 fedora 54.2 KiB krb5-libs x86_64 0:1.22.2-9.fc45 fedora 2.4 MiB libacl x86_64 0:2.4.0-2.fc45 fedora 43.9 KiB libarchive x86_64 0:3.8.8-3.fc45 fedora 1.0 MiB libassuan x86_64 0:2.5.7-6.fc45 fedora 163.9 KiB libattr x86_64 0:2.6.0-2.fc45 fedora 24.3 KiB libblkid x86_64 0:2.42.2-3.fc45 fedora 282.3 KiB libbrotli x86_64 0:1.2.0-6.fc45 fedora 865.0 KiB libcap x86_64 0:2.78-2.fc45 fedora 208.2 KiB libcap-ng x86_64 0:0.9.3-5.fc45 fedora 68.8 KiB libcbor x86_64 0:0.14.0-3.fc45 fedora 83.5 KiB libcom_err x86_64 0:1.47.4-2.fc45 fedora 63.0 KiB libcurl x86_64 0:8.21.0-5.fc45 fedora 1.1 MiB libeconf x86_64 0:0.7.9-4.fc45 fedora 64.8 KiB libevent x86_64 0:2.1.12-19.fc45 fedora 978.8 KiB libfdisk x86_64 0:2.42.2-3.fc45 fedora 392.2 KiB libffi x86_64 0:3.5.2-3.fc45 fedora 83.7 KiB libfido2 x86_64 0:1.17.0-5.fc45 fedora 256.5 KiB libfsverity x86_64 0:1.7-4.fc45 fedora 24.4 KiB libgcc x86_64 0:16.1.1-4.fc45.1 fedora 270.7 KiB libgcrypt x86_64 0:1.12.2-2.fc45 fedora 1.7 MiB libgomp x86_64 0:16.1.1-4.fc45.1 fedora 577.4 KiB libgpg-error x86_64 0:1.61-2.fc45 fedora 953.9 KiB libidn2 x86_64 0:2.3.8-4.fc45 fedora 556.4 KiB libksba x86_64 0:1.8.0-3.fc45 fedora 431.1 KiB liblastlog2 x86_64 0:2.42.2-3.fc45 fedora 37.6 KiB libmount x86_64 0:2.42.2-3.fc45 fedora 404.8 KiB libnghttp2 x86_64 0:1.69.0-5.fc45 fedora 166.2 KiB libnghttp3 x86_64 0:1.18.0-1.fc45 fedora 163.4 KiB libpkgconf x86_64 0:2.5.1-2.fc45 fedora 90.1 KiB libpsl x86_64 0:0.23.1-1.fc45 fedora 80.4 KiB libselinux x86_64 0:3.11-4.fc45 fedora 205.2 KiB libselinux-utils x86_64 0:3.11-4.fc45 fedora 306.0 KiB libsemanage x86_64 0:3.11-3.fc45 fedora 316.4 KiB libsepol x86_64 0:3.11-2.fc45 fedora 866.1 KiB libsmartcols x86_64 0:2.42.2-3.fc45 fedora 188.5 KiB libssh x86_64 0:0.12.2-1.fc45 fedora 725.7 KiB libssh-config noarch 0:0.12.2-1.fc45 fedora 277.0 B libstdc++ x86_64 0:16.1.1-4.fc45.1 fedora 3.1 MiB libtasn1 x86_64 0:4.21.0-2.fc45 fedora 176.6 KiB libtool-ltdl x86_64 0:2.5.4-11.fc45 fedora 70.0 KiB libunistring x86_64 0:1.1-12.fc45 fedora 1.7 MiB libusb1 x86_64 0:1.0.30-2.fc45 fedora 180.1 KiB libuuid x86_64 0:2.42.2-3.fc45 fedora 37.2 KiB libverto x86_64 0:0.3.2-13.fc45 fedora 25.3 KiB libxcrypt x86_64 0:4.5.2-4.fc45 fedora 293.2 KiB libxml2 x86_64 0:2.13.9-4.fc45 fedora 1.8 MiB libzstd x86_64 0:1.5.7-6.fc45 fedora 956.1 KiB linkdupes x86_64 0:0.7.3-3.fc45 fedora 782.1 KiB lua-libs x86_64 0:5.5.1-1.fc45 fedora 298.0 KiB lua-srpm-macros noarch 0:1-18.fc45 fedora 1.3 KiB lz4-libs x86_64 0:1.10.0-5.fc45 fedora 165.3 KiB mpfr x86_64 0:4.2.2-4.fc45 fedora 849.2 KiB ncurses-base noarch 0:6.6-3.fc45 fedora 329.7 KiB ncurses-libs x86_64 0:6.6-3.fc45 fedora 969.1 KiB nettle x86_64 0:4.0-5.fc45 fedora 801.9 KiB ngtcp2 x86_64 0:1.22.1-3.fc45 fedora 334.3 KiB ngtcp2-crypto-ossl x86_64 0:1.22.1-3.fc45 fedora 51.6 KiB npth x86_64 0:1.8-5.fc45 fedora 49.5 KiB ocaml-srpm-macros noarch 0:11-4.fc45 fedora 1.9 KiB openblas-srpm-macros noarch 0:2-22.fc45 fedora 112.0 B openldap x86_64 0:2.6.13-4.fc45 fedora 677.9 KiB openssl-libs x86_64 1:4.0.1-5.fc45 fedora 6.7 MiB p11-kit x86_64 0:0.26.5-1.fc45 fedora 2.6 MiB p11-kit-trust x86_64 0:0.26.5-1.fc45 fedora 478.4 KiB package-notes-srpm-macros noarch 0:0.20-2.fc45 fedora 1.6 KiB pam-libs x86_64 0:1.7.2-4.fc45 fedora 134.5 KiB pcre2 x86_64 0:10.47-1.fc45.2 fedora 718.5 KiB pcre2-syntax noarch 0:10.47-1.fc45.2 fedora 281.9 KiB perl-srpm-macros noarch 0:1-65.fc45 fedora 861.0 B pkgconf x86_64 0:2.5.1-2.fc45 fedora 92.7 KiB pkgconf-m4 noarch 0:2.5.1-2.fc45 fedora 14.3 KiB pkgconf-pkg-config x86_64 0:2.5.1-2.fc45 fedora 989.0 B policycoreutils x86_64 0:3.11-2.fc45 fedora 892.9 KiB popt x86_64 0:1.19-11.fc45 fedora 136.7 KiB publicsuffix-list-dafsa noarch 0:20260624-2.fc45 fedora 71.3 KiB pyproject-srpm-macros noarch 0:1.23.2-1.fc45 fedora 3.4 KiB python-srpm-macros noarch 0:3.15-2.fc45 fedora 51.6 KiB qt5-srpm-macros noarch 0:5.15.18-3.fc45 fedora 500.0 B qt6-srpm-macros noarch 0:6.11.1-2.fc45 fedora 472.0 B readline x86_64 0:8.3-6.fc45 fedora 515.5 KiB redhat-systemd-presets noarch 0:102-3.fc45 fedora 1.0 KiB redhat-systemd-presets-common noarch 0:102-3.fc45 fedora 16.9 KiB rpm x86_64 0:6.0.92-2.fc45 fedora 3.1 MiB rpm-build-libs x86_64 0:6.0.92-2.fc45 fedora 288.3 KiB rpm-libs x86_64 0:6.0.92-2.fc45 fedora 1.1 MiB rpm-plugin-selinux x86_64 0:6.0.92-2.fc45 fedora 11.9 KiB rpm-sequoia x86_64 0:1.10.2-5.fc45 fedora 2.4 MiB rpm-sign-libs x86_64 0:6.0.92-2.fc45 fedora 39.6 KiB rust-srpm-macros noarch 0:28.5-2.fc45 fedora 5.5 KiB selinux-policy noarch 0:45.11-1.fc45 fedora 32.1 KiB selinux-policy-targeted noarch 0:45.11-1.fc45 fedora 18.9 MiB setup noarch 0:2.15.1-2.fc45 fedora 725.6 KiB sqlite-libs x86_64 0:3.53.4-1.fc45 fedora 1.6 MiB systemd-libs x86_64 0:261.2-1.fc45 fedora 2.7 MiB systemd-standalone-sysusers x86_64 0:261.2-1.fc45 fedora 944.4 KiB tpm2-tss x86_64 0:4.2.0-1.fc45 fedora 1.7 MiB tree-sitter-srpm-macros noarch 0:0.4.6-2.fc45 fedora 8.6 KiB util-linux-core x86_64 0:2.42.2-3.fc45 fedora 1.5 MiB xxhash-libs x86_64 0:0.8.3-5.fc45 fedora 94.0 KiB xz-libs x86_64 1:5.8.3-2.fc45 fedora 221.7 KiB zig-srpm-macros noarch 0:1-9.fc45 fedora 1.3 KiB zip x86_64 0:3.0-46.fc45 fedora 694.1 KiB zlib-ng-compat x86_64 0:2.3.3-6.fc45 fedora 165.6 KiB zstd x86_64 0:1.5.7-6.fc45 fedora 502.6 KiB Installing groups: Buildsystem building group Transaction Summary: Installing: 187 packages Total size of inbound packages is 72 MiB. Need to download 72 MiB. After this operation, 230 MiB extra will be used (install 230 MiB, remove 0 B). [ 1/187] bzip2-0:1.0.8-24.fc45.x86_64 100% | 10.2 MiB/s | 52.3 KiB | 00m00s [ 2/187] coreutils-0:9.11-6.fc45.x86_6 100% | 92.2 MiB/s | 1.2 MiB | 00m00s [ 3/187] bash-0:5.3.15-2.fc45.x86_64 100% | 90.1 MiB/s | 1.9 MiB | 00m00s [ 4/187] cpio-0:2.15-10.fc45.x86_64 100% | 20.4 MiB/s | 292.5 KiB | 00m00s [ 5/187] diffutils-0:3.12-6.fc45.x86_6 100% | 55.3 MiB/s | 396.6 KiB | 00m00s [ 6/187] fedora-release-common-0:45-0. 100% | 5.8 MiB/s | 17.9 KiB | 00m00s [ 7/187] findutils-1:4.11.0-2.fc45.x86 100% | 111.5 MiB/s | 570.7 KiB | 00m00s [ 8/187] glibc-minimal-langpack-0:2.44 100% | 23.5 MiB/s | 120.1 KiB | 00m00s [ 9/187] grep-0:3.12-4.fc45.x86_64 100% | 58.8 MiB/s | 301.0 KiB | 00m00s [ 10/187] gzip-0:1.14-4.fc45.x86_64 100% | 35.1 MiB/s | 179.6 KiB | 00m00s [ 11/187] info-0:7.3-3.fc45.x86_64 100% | 37.3 MiB/s | 191.2 KiB | 00m00s [ 12/187] patch-0:2.8-5.fc45.x86_64 100% | 28.0 MiB/s | 114.6 KiB | 00m00s [ 13/187] redhat-rpm-config-0:344-5.fc4 100% | 19.0 MiB/s | 77.7 KiB | 00m00s [ 14/187] rpm-build-0:6.0.92-2.fc45.x86 100% | 51.5 MiB/s | 158.2 KiB | 00m00s [ 15/187] sed-0:4.10-2.fc45.x86_64 100% | 63.0 MiB/s | 322.8 KiB | 00m00s [ 16/187] tar-2:1.35-9.fc45.x86_64 100% | 94.1 MiB/s | 867.4 KiB | 00m00s [ 17/187] unzip-0:6.0-71.fc45.x86_64 100% | 24.4 MiB/s | 199.6 KiB | 00m00s [ 18/187] shadow-utils-2:4.20.0-1.fc45. 100% | 118.0 MiB/s | 1.4 MiB | 00m00s [ 19/187] which-0:2.25-2.fc45.x86_64 100% | 10.3 MiB/s | 42.2 KiB | 00m00s [ 20/187] xz-1:5.8.3-2.fc45.x86_64 100% | 106.0 MiB/s | 651.2 KiB | 00m00s [ 21/187] gawk-0:5.4.1-1.fc45.x86_64 100% | 117.8 MiB/s | 1.2 MiB | 00m00s [ 22/187] util-linux-0:2.42.2-3.fc45.x8 100% | 97.3 MiB/s | 1.3 MiB | 00m00s [ 23/187] filesystem-0:3.18-59.fc45.x86 100% | 113.5 MiB/s | 1.8 MiB | 00m00s [ 24/187] ncurses-libs-0:6.6-3.fc45.x86 100% | 47.9 MiB/s | 343.7 KiB | 00m00s [ 25/187] glibc-0:2.44-1.fc45.x86_64 100% | 144.4 MiB/s | 2.5 MiB | 00m00s [ 26/187] bzip2-libs-0:1.0.8-24.fc45.x8 100% | 6.1 MiB/s | 43.5 KiB | 00m00s [ 27/187] gmp-1:6.3.0-6.fc45.x86_64 100% | 78.6 MiB/s | 321.8 KiB | 00m00s [ 28/187] coreutils-common-0:9.11-6.fc4 100% | 166.6 MiB/s | 2.2 MiB | 00m00s [ 29/187] libacl-0:2.4.0-2.fc45.x86_64 100% | 3.8 MiB/s | 27.5 KiB | 00m00s [ 30/187] libattr-0:2.6.0-2.fc45.x86_64 100% | 4.4 MiB/s | 18.1 KiB | 00m00s [ 31/187] libcap-0:2.78-2.fc45.x86_64 100% | 28.8 MiB/s | 88.6 KiB | 00m00s [ 32/187] libselinux-0:3.11-4.fc45.x86_ 100% | 33.7 MiB/s | 103.6 KiB | 00m00s [ 33/187] fedora-repos-0:45-0.5.noarch 100% | 4.6 MiB/s | 9.4 KiB | 00m00s [ 34/187] systemd-libs-0:261.2-1.fc45.x 100% | 132.1 MiB/s | 946.6 KiB | 00m00s [ 35/187] redhat-systemd-presets-0:102- 100% | 1.7 MiB/s | 8.5 KiB | 00m00s [ 36/187] openssl-libs-1:4.0.1-5.fc45.x 100% | 155.7 MiB/s | 2.3 MiB | 00m00s [ 37/187] glibc-common-0:2.44-1.fc45.x8 100% | 57.6 MiB/s | 412.5 KiB | 00m00s [ 38/187] pcre2-0:10.47-1.fc45.2.x86_64 100% | 45.0 MiB/s | 276.7 KiB | 00m00s [ 39/187] ed-0:1.22.5-3.fc45.x86_64 100% | 16.6 MiB/s | 85.2 KiB | 00m00s [ 40/187] R-srpm-macros-0:1.3.7-3.fc45. 100% | 2.7 MiB/s | 11.1 KiB | 00m00s [ 41/187] ansible-srpm-macros-0:1-22.fc 100% | 3.9 MiB/s | 19.8 KiB | 00m00s [ 42/187] build-reproducibility-srpm-ma 100% | 2.6 MiB/s | 10.8 KiB | 00m00s [ 43/187] cmake-srpm-macros-0:4.3.0-5.f 100% | 2.5 MiB/s | 10.3 KiB | 00m00s [ 44/187] dwz-0:0.17-3.fc45.x86_64 100% | 45.3 MiB/s | 139.2 KiB | 00m00s [ 45/187] erlang-srpm-macros-0:0.3.11-2 100% | 3.2 MiB/s | 10.0 KiB | 00m00s [ 46/187] efi-srpm-macros-0:6-9.fc45.no 100% | 7.0 MiB/s | 21.4 KiB | 00m00s [ 47/187] file-0:5.47-3.fc45.x86_64 100% | 24.1 MiB/s | 49.4 KiB | 00m00s [ 48/187] filesystem-srpm-macros-0:3.18 100% | 8.6 MiB/s | 26.4 KiB | 00m00s [ 49/187] fonts-srpm-macros-1:5.0.0-4.f 100% | 8.8 MiB/s | 27.2 KiB | 00m00s [ 50/187] forge-srpm-macros-0:0.4.0-5.f 100% | 4.8 MiB/s | 19.7 KiB | 00m00s [ 51/187] fpc-srpm-macros-0:1.3-17.fc45 100% | 2.5 MiB/s | 7.8 KiB | 00m00s [ 52/187] gap-srpm-macros-0:2-3.fc45.no 100% | 2.3 MiB/s | 9.3 KiB | 00m00s [ 53/187] ghc-srpm-macros-0:1.10-2.fc45 100% | 2.1 MiB/s | 8.5 KiB | 00m00s [ 54/187] gnat-srpm-macros-0:7-3.fc45.n 100% | 2.8 MiB/s | 8.6 KiB | 00m00s [ 55/187] gnome-srpm-macros-0:1.0-2.fc4 100% | 4.3 MiB/s | 8.8 KiB | 00m00s [ 56/187] go-srpm-macros-0:3.8.0-3.fc45 100% | 9.1 MiB/s | 27.8 KiB | 00m00s [ 57/187] java-srpm-macros-0:1-9.fc45.n 100% | 2.7 MiB/s | 8.3 KiB | 00m00s [ 58/187] kernel-srpm-macros-0:1.0-30.f 100% | 2.7 MiB/s | 8.3 KiB | 00m00s [ 59/187] lua-srpm-macros-0:1-18.fc45.n 100% | 2.8 MiB/s | 8.7 KiB | 00m00s [ 60/187] ocaml-srpm-macros-0:11-4.fc45 100% | 2.9 MiB/s | 9.0 KiB | 00m00s [ 61/187] openblas-srpm-macros-0:2-22.f 100% | 2.4 MiB/s | 7.5 KiB | 00m00s [ 62/187] perl-srpm-macros-0:1-65.fc45. 100% | 4.1 MiB/s | 8.4 KiB | 00m00s [ 63/187] package-notes-srpm-macros-0:0 100% | 3.4 MiB/s | 10.5 KiB | 00m00s [ 64/187] pyproject-srpm-macros-0:1.23. 100% | 7.6 MiB/s | 15.6 KiB | 00m00s [ 65/187] python-srpm-macros-0:3.15-2.f 100% | 11.6 MiB/s | 23.9 KiB | 00m00s [ 66/187] qt5-srpm-macros-0:5.15.18-3.f 100% | 3.9 MiB/s | 8.1 KiB | 00m00s [ 67/187] qt6-srpm-macros-0:6.11.1-2.fc 100% | 3.0 MiB/s | 9.2 KiB | 00m00s [ 68/187] rust-srpm-macros-0:28.5-2.fc4 100% | 2.8 MiB/s | 11.4 KiB | 00m00s [ 69/187] tree-sitter-srpm-macros-0:0.4 100% | 3.4 MiB/s | 14.0 KiB | 00m00s [ 70/187] rpm-0:6.0.92-2.fc45.x86_64 100% | 79.7 MiB/s | 571.4 KiB | 00m00s [ 71/187] zig-srpm-macros-0:1-9.fc45.no 100% | 2.2 MiB/s | 8.8 KiB | 00m00s [ 72/187] zip-0:3.0-46.fc45.x86_64 100% | 51.7 MiB/s | 264.6 KiB | 00m00s [ 73/187] debugedit-0:5.3-3.fc45.x86_64 100% | 21.5 MiB/s | 87.9 KiB | 00m00s [ 74/187] elfutils-0:0.195-3.fc45.x86_6 100% | 115.2 MiB/s | 590.0 KiB | 00m00s [ 75/187] elfutils-libelf-0:0.195-3.fc4 100% | 41.1 MiB/s | 210.4 KiB | 00m00s [ 76/187] libarchive-0:3.8.8-3.fc45.x86 100% | 72.5 MiB/s | 445.1 KiB | 00m00s [ 77/187] libgcc-0:16.1.1-4.fc45.1.x86_ 100% | 32.5 MiB/s | 133.3 KiB | 00m00s [ 78/187] libstdc++-0:16.1.1-4.fc45.1.x 100% | 199.6 MiB/s | 1.0 MiB | 00m00s [ 79/187] popt-0:1.19-11.fc45.x86_64 100% | 13.0 MiB/s | 66.6 KiB | 00m00s [ 80/187] readline-0:8.3-6.fc45.x86_64 100% | 74.5 MiB/s | 228.8 KiB | 00m00s [ 81/187] rpm-build-libs-0:6.0.92-2.fc4 100% | 21.9 MiB/s | 134.8 KiB | 00m00s [ 82/187] rpm-libs-0:6.0.92-2.fc45.x86_ 100% | 66.5 MiB/s | 476.7 KiB | 00m00s [ 83/187] zstd-0:1.5.7-6.fc45.x86_64 100% | 26.7 MiB/s | 191.7 KiB | 00m00s [ 84/187] audit-libs-0:4.2.1-2.fc45.x86 100% | 28.0 MiB/s | 143.3 KiB | 00m00s [ 85/187] libeconf-0:0.7.9-4.fc45.x86_6 100% | 8.8 MiB/s | 35.9 KiB | 00m00s [ 86/187] libsemanage-0:3.11-3.fc45.x86 100% | 31.1 MiB/s | 127.3 KiB | 00m00s [ 87/187] pam-libs-0:1.7.2-4.fc45.x86_6 100% | 14.3 MiB/s | 58.4 KiB | 00m00s [ 88/187] libxcrypt-0:4.5.2-4.fc45.x86_ 100% | 25.6 MiB/s | 130.9 KiB | 00m00s [ 89/187] setup-0:2.15.1-2.fc45.noarch 100% | 30.8 MiB/s | 157.6 KiB | 00m00s [ 90/187] xz-libs-1:5.8.3-2.fc45.x86_64 100% | 28.3 MiB/s | 116.1 KiB | 00m00s [ 91/187] mpfr-0:4.2.2-4.fc45.x86_64 100% | 69.8 MiB/s | 357.4 KiB | 00m00s [ 92/187] libblkid-0:2.42.2-3.fc45.x86_ 100% | 26.2 MiB/s | 133.9 KiB | 00m00s [ 93/187] libcap-ng-0:0.9.3-5.fc45.x86_ 100% | 11.2 MiB/s | 34.4 KiB | 00m00s [ 94/187] libfdisk-0:2.42.2-3.fc45.x86_ 100% | 55.2 MiB/s | 169.6 KiB | 00m00s [ 95/187] liblastlog2-0:2.42.2-3.fc45.x 100% | 8.0 MiB/s | 24.7 KiB | 00m00s [ 96/187] libmount-0:2.42.2-3.fc45.x86_ 100% | 57.7 MiB/s | 177.2 KiB | 00m00s [ 97/187] libuuid-0:2.42.2-3.fc45.x86_6 100% | 6.8 MiB/s | 27.7 KiB | 00m00s [ 98/187] libsmartcols-0:2.42.2-3.fc45. 100% | 17.3 MiB/s | 88.5 KiB | 00m00s [ 99/187] util-linux-core-0:2.42.2-3.fc 100% | 94.6 MiB/s | 581.0 KiB | 00m00s [100/187] zlib-ng-compat-0:2.3.3-6.fc45 100% | 22.1 MiB/s | 90.4 KiB | 00m00s [101/187] ncurses-base-0:6.6-3.fc45.noa 100% | 17.2 MiB/s | 88.1 KiB | 00m00s [102/187] gnulib-l10n-0:20241231-4.fc45 100% | 24.5 MiB/s | 150.4 KiB | 00m00s [103/187] glibc-gconv-extra-0:2.44-1.fc 100% | 121.4 MiB/s | 1.7 MiB | 00m00s [104/187] libsepol-0:3.11-2.fc45.x86_64 100% | 59.4 MiB/s | 365.2 KiB | 00m00s [105/187] crypto-policies-0:20260713-2. 100% | 31.7 MiB/s | 97.5 KiB | 00m00s [106/187] ca-certificates-0:2025.2.80_v 100% | 94.1 MiB/s | 963.4 KiB | 00m00s [107/187] fedora-gpg-keys-0:45-0.5.noar 100% | 20.1 MiB/s | 143.8 KiB | 00m00s [108/187] fips-provider-0:1.5.2-3.fc45. 100% | 161.6 MiB/s | 1.6 MiB | 00m00s [109/187] redhat-systemd-presets-common 100% | 3.2 MiB/s | 13.2 KiB | 00m00s [110/187] pcre2-syntax-0:10.47-1.fc45.2 100% | 53.7 MiB/s | 165.1 KiB | 00m00s [111/187] linkdupes-0:0.7.3-3.fc45.x86_ 100% | 110.4 MiB/s | 339.2 KiB | 00m00s [112/187] add-determinism-0:0.7.3-3.fc4 100% | 137.6 MiB/s | 845.7 KiB | 00m00s [113/187] file-libs-0:5.47-3.fc45.x86_6 100% | 121.7 MiB/s | 872.0 KiB | 00m00s [114/187] curl-0:8.21.0-5.fc45.x86_64 100% | 47.7 MiB/s | 244.0 KiB | 00m00s [115/187] elfutils-libs-0:0.195-3.fc45. 100% | 55.2 MiB/s | 282.8 KiB | 00m00s [116/187] elfutils-debuginfod-client-0: 100% | 9.1 MiB/s | 46.7 KiB | 00m00s [117/187] libzstd-0:1.5.7-6.fc45.x86_64 100% | 59.2 MiB/s | 363.9 KiB | 00m00s [118/187] libxml2-0:2.13.9-4.fc45.x86_6 100% | 116.3 MiB/s | 714.8 KiB | 00m00s [119/187] lz4-libs-0:1.10.0-5.fc45.x86_ 100% | 15.7 MiB/s | 80.4 KiB | 00m00s [120/187] libgomp-0:16.1.1-4.fc45.1.x86 100% | 55.0 MiB/s | 394.3 KiB | 00m00s [121/187] lua-libs-0:5.5.1-1.fc45.x86_6 100% | 23.5 MiB/s | 144.1 KiB | 00m00s [122/187] rpm-sign-libs-0:6.0.92-2.fc45 100% | 4.4 MiB/s | 27.0 KiB | 00m00s [123/187] rpm-sequoia-0:1.10.2-5.fc45.x 100% | 113.9 MiB/s | 933.3 KiB | 00m00s [124/187] json-c-0:0.18-9.fc45.x86_64 100% | 6.5 MiB/s | 46.7 KiB | 00m00s [125/187] sqlite-libs-0:3.53.4-1.fc45.x 100% | 99.1 MiB/s | 812.1 KiB | 00m00s [126/187] ima-evm-utils-libs-0:1.6.2-12 100% | 14.8 MiB/s | 30.2 KiB | 00m00s [127/187] libfsverity-0:1.7-4.fc45.x86_ 100% | 3.1 MiB/s | 19.0 KiB | 00m00s [128/187] gnupg2-0:2.4.9-18.fc45.x86_64 100% | 150.2 MiB/s | 1.7 MiB | 00m00s [129/187] gpgverify-0:2.2-5.fc45.noarch 100% | 1.4 MiB/s | 11.3 KiB | 00m00s [130/187] gnupg2-dirmngr-0:2.4.9-18.fc4 100% | 68.7 MiB/s | 281.6 KiB | 00m00s [131/187] gnupg2-keyboxd-0:2.4.9-18.fc4 100% | 47.2 MiB/s | 96.6 KiB | 00m00s [132/187] gnupg2-gpgconf-0:2.4.9-18.fc4 100% | 28.5 MiB/s | 116.5 KiB | 00m00s [133/187] gnupg2-verify-0:2.4.9-18.fc45 100% | 57.3 MiB/s | 176.1 KiB | 00m00s [134/187] libassuan-0:2.5.7-6.fc45.x86_ 100% | 33.5 MiB/s | 68.5 KiB | 00m00s [135/187] gnupg2-gpg-agent-0:2.4.9-18.f 100% | 34.3 MiB/s | 281.3 KiB | 00m00s [136/187] libgpg-error-0:1.61-2.fc45.x8 100% | 82.3 MiB/s | 252.9 KiB | 00m00s [137/187] libgcrypt-0:1.12.2-2.fc45.x86 100% | 122.9 MiB/s | 629.0 KiB | 00m00s [138/187] npth-0:1.8-5.fc45.x86_64 100% | 6.2 MiB/s | 25.5 KiB | 00m00s [139/187] tpm2-tss-0:4.2.0-1.fc45.x86_6 100% | 89.2 MiB/s | 456.8 KiB | 00m00s [140/187] libksba-0:1.8.0-3.fc45.x86_64 100% | 21.0 MiB/s | 172.2 KiB | 00m00s [141/187] openldap-0:2.6.13-4.fc45.x86_ 100% | 44.3 MiB/s | 272.3 KiB | 00m00s [142/187] gnutls-0:3.8.13-3.fc45.x86_64 100% | 118.5 MiB/s | 1.4 MiB | 00m00s [143/187] libusb1-0:1.0.30-2.fc45.x86_6 100% | 27.3 MiB/s | 83.8 KiB | 00m00s [144/187] libidn2-0:2.3.8-4.fc45.x86_64 100% | 42.8 MiB/s | 175.2 KiB | 00m00s [145/187] libtasn1-0:4.21.0-2.fc45.x86_ 100% | 24.7 MiB/s | 75.9 KiB | 00m00s [146/187] libunistring-0:1.1-12.fc45.x8 100% | 133.2 MiB/s | 545.8 KiB | 00m00s [147/187] nettle-0:4.0-5.fc45.x86_64 100% | 83.9 MiB/s | 429.7 KiB | 00m00s [148/187] cyrus-sasl-lib-0:2.1.28-37.fc 100% | 99.8 MiB/s | 817.8 KiB | 00m00s [149/187] p11-kit-0:0.26.5-1.fc45.x86_6 100% | 49.7 MiB/s | 560.0 KiB | 00m00s [150/187] libevent-0:2.1.12-19.fc45.x86 100% | 35.1 MiB/s | 287.3 KiB | 00m00s [151/187] libtool-ltdl-0:2.5.4-11.fc45. 100% | 9.0 MiB/s | 36.7 KiB | 00m00s [152/187] libffi-0:3.5.2-3.fc45.x86_64 100% | 8.2 MiB/s | 41.9 KiB | 00m00s [153/187] gdbm-libs-1:1.23-12.fc45.x86_ 100% | 14.2 MiB/s | 58.2 KiB | 00m00s [154/187] alternatives-0:1.33-6.fc45.x8 100% | 9.6 MiB/s | 39.4 KiB | 00m00s [155/187] jansson-0:2.14-5.fc45.x86_64 100% | 15.3 MiB/s | 46.9 KiB | 00m00s [156/187] pkgconf-pkg-config-0:2.5.1-2. 100% | 3.1 MiB/s | 9.5 KiB | 00m00s [157/187] pkgconf-m4-0:2.5.1-2.fc45.noa 100% | 3.4 MiB/s | 13.8 KiB | 00m00s [158/187] pkgconf-0:2.5.1-2.fc45.x86_64 100% | 6.0 MiB/s | 49.0 KiB | 00m00s [159/187] libpkgconf-0:2.5.1-2.fc45.x86 100% | 10.4 MiB/s | 42.6 KiB | 00m00s [160/187] p11-kit-trust-0:0.26.5-1.fc45 100% | 28.6 MiB/s | 146.3 KiB | 00m00s [161/187] binutils-0:2.47-1.fc45.x86_64 100% | 223.0 MiB/s | 6.2 MiB | 00m00s [162/187] fedora-release-0:45-0.10.noar 100% | 1.2 MiB/s | 12.0 KiB | 00m00s [163/187] systemd-standalone-sysusers-0 100% | 45.2 MiB/s | 416.4 KiB | 00m00s [164/187] fedora-release-identity-basic 100% | 2.1 MiB/s | 12.8 KiB | 00m00s [165/187] xxhash-libs-0:0.8.3-5.fc45.x8 100% | 5.8 MiB/s | 41.3 KiB | 00m00s [166/187] libcurl-0:8.21.0-5.fc45.x86_6 100% | 94.0 MiB/s | 481.3 KiB | 00m00s [167/187] libbrotli-0:1.2.0-6.fc45.x86_ 100% | 56.5 MiB/s | 347.3 KiB | 00m00s [168/187] krb5-libs-0:1.22.2-9.fc45.x86 100% | 65.4 MiB/s | 803.1 KiB | 00m00s [169/187] gdb-minimal-0:17.2-4.fc45.x86 100% | 158.0 MiB/s | 4.7 MiB | 00m00s [170/187] libnghttp2-0:1.69.0-5.fc45.x8 100% | 6.9 MiB/s | 77.2 KiB | 00m00s [171/187] libnghttp3-0:1.18.0-1.fc45.x8 100% | 7.3 MiB/s | 75.1 KiB | 00m00s [172/187] libpsl-0:0.23.1-1.fc45.x86_64 100% | 16.5 MiB/s | 67.6 KiB | 00m00s [173/187] libssh-0:0.12.2-1.fc45.x86_64 100% | 72.2 MiB/s | 295.9 KiB | 00m00s [174/187] ngtcp2-0:1.22.1-3.fc45.x86_64 100% | 30.8 MiB/s | 157.7 KiB | 00m00s [175/187] ngtcp2-crypto-ossl-0:1.22.1-3 100% | 6.8 MiB/s | 27.8 KiB | 00m00s [176/187] keyutils-libs-0:1.6.3-8.fc45. 100% | 10.2 MiB/s | 31.5 KiB | 00m00s [177/187] libcom_err-0:1.47.4-2.fc45.x8 100% | 8.7 MiB/s | 26.6 KiB | 00m00s [178/187] libverto-0:0.3.2-13.fc45.x86_ 100% | 10.2 MiB/s | 21.0 KiB | 00m00s [179/187] publicsuffix-list-dafsa-0:202 100% | 19.9 MiB/s | 61.1 KiB | 00m00s [180/187] libfido2-0:1.17.0-5.fc45.x86_ 100% | 34.8 MiB/s | 106.9 KiB | 00m00s [181/187] libssh-config-0:0.12.2-1.fc45 100% | 4.4 MiB/s | 8.9 KiB | 00m00s [182/187] libcbor-0:0.14.0-3.fc45.x86_6 100% | 9.0 MiB/s | 36.8 KiB | 00m00s [183/187] policycoreutils-0:3.11-2.fc45 100% | 42.5 MiB/s | 260.9 KiB | 00m00s [184/187] selinux-policy-0:45.11-1.fc45 100% | 8.7 MiB/s | 35.5 KiB | 00m00s [185/187] libselinux-utils-0:3.11-4.fc4 100% | 24.1 MiB/s | 123.4 KiB | 00m00s [186/187] rpm-plugin-selinux-0:6.0.92-2 100% | 3.5 MiB/s | 17.8 KiB | 00m00s [187/187] selinux-policy-targeted-0:45. 100% | 206.3 MiB/s | 6.8 MiB | 00m00s -------------------------------------------------------------------------------- [187/187] Total 100% | 165.9 MiB/s | 71.9 MiB | 00m00s Running transaction Importing OpenPGP key 0xF577861E: UserID : "Fedora (45) " Fingerprint: 4F50A6114CD5C6976A7F1179655A4B02F577861E From : file:///usr/share/distribution-gpg-keys/fedora/RPM-GPG-KEY-fedora-45-primary The key was successfully imported. [ 1/189] Verify package files 100% | 642.0 B/s | 187.0 B | 00m00s >>> Running %pretrans scriptlet: filesystem-0:3.18-59.fc45.x86_64 >>> Finished %pretrans scriptlet: filesystem-0:3.18-59.fc45.x86_64 >>> [RPM] failed to open /var/lib/mock/copr-custom-fedora-45-x86_64/root/etc/group for id/name lookup: No such file or directory [ 2/189] Prepare transaction 100% | 3.1 KiB/s | 187.0 B | 00m00s [ 3/189] Installing libgcc-0:16.1.1-4. 100% | 266.0 MiB/s | 272.4 KiB | 00m00s [ 4/189] Installing redhat-systemd-pre 100% | 0.0 B/s | 1.5 KiB | 00m00s [ 5/189] Installing redhat-systemd-pre 100% | 0.0 B/s | 18.1 KiB | 00m00s [ 6/189] Installing libssh-config-0:0. 100% | 0.0 B/s | 816.0 B | 00m00s [ 7/189] Installing publicsuffix-list- 100% | 0.0 B/s | 72.0 KiB | 00m00s [ 8/189] Installing fedora-release-ide 100% | 0.0 B/s | 912.0 B | 00m00s [ 9/189] Installing fedora-gpg-keys-0: 100% | 44.4 MiB/s | 181.7 KiB | 00m00s [ 10/189] Installing fedora-repos-0:45- 100% | 0.0 B/s | 5.9 KiB | 00m00s [ 11/189] Installing fedora-release-com 100% | 7.2 MiB/s | 7.4 KiB | 00m00s [ 12/189] Installing fedora-release-0:4 100% | 15.1 KiB/s | 124.0 B | 00m00s >>> Running sysusers scriptlet: setup-0:2.15.1-2.fc45.noarch >>> Finished sysusers scriptlet: setup-0:2.15.1-2.fc45.noarch >>> Scriptlet output: >>> Creating group 'adm' with GID 4. >>> Creating group 'audio' with GID 63. >>> Creating group 'cdrom' with GID 11. >>> Creating group 'clock' with GID 103. >>> Creating group 'dialout' with GID 18. >>> Creating group 'disk' with GID 6. >>> Creating group 'floppy' with GID 19. >>> Creating group 'ftp' with GID 50. >>> Creating group 'games' with GID 20. >>> Creating group 'input' with GID 104. >>> Creating group 'kmem' with GID 9. >>> Creating group 'kvm' with GID 36. >>> Creating group 'lock' with GID 54. >>> Creating group 'lp' with GID 7. >>> Creating group 'mail' with GID 12. >>> Creating group 'man' with GID 15. >>> Creating group 'mem' with GID 8. >>> Creating group 'nobody' with GID 65534. >>> Creating group 'render' with GID 105. >>> Creating group 'root' with GID 0. >>> Creating group 'sgx' with GID 106. >>> Creating group 'sys' with GID 3. >>> Creating group 'tape' with GID 33. >>> Creating group 'tty' with GID 5. >>> Creating group 'users' with GID 100. >>> Creating group 'utmp' with GID 22. >>> Creating group 'video' with GID 39. >>> Creating group 'wheel' with GID 10. >>> Creating user 'adm' (adm) with UID 3 and GID 4. >>> Creating group 'bin' with GID 1. >>> Creating user 'bin' (bin) with UID 1 and GID 1. >>> Creating group 'daemon' with GID 2. >>> Creating user 'daemon' (daemon) with UID 2 and GID 2. >>> Creating user 'ftp' (FTP User) with UID 14 and GID 50. >>> Creating user 'games' (games) with UID 12 and GID 100. >>> Creating user 'halt' (halt) with UID 7 and GID 0. >>> Creating user 'lp' (lp) with UID 4 and GID 7. >>> Creating user 'mail' (mail) with UID 8 and GID 12. >>> Creating user 'nobody' (Kernel Overflow User) with UID 65534 and GID 65534. >>> Creating user 'operator' (operator) with UID 11 and GID 0. >>> Creating user 'root' (Super User) with UID 0 and GID 0. >>> Creating user 'shutdown' (shutdown) with UID 6 and GID 0. >>> Creating user 'sync' (sync) with UID 5 and GID 0. >>> [ 13/189] Installing setup-0:2.15.1-2.f 100% | 37.6 MiB/s | 731.3 KiB | 00m00s [ 14/189] Installing filesystem-0:3.18- 100% | 2.5 MiB/s | 253.6 KiB | 00m00s [ 15/189] Installing pkgconf-m4-0:2.5.1 100% | 0.0 B/s | 14.7 KiB | 00m00s [ 16/189] Installing pcre2-syntax-0:10. 100% | 277.7 MiB/s | 284.3 KiB | 00m00s [ 17/189] Installing gnulib-l10n-0:2024 100% | 215.5 MiB/s | 661.9 KiB | 00m00s [ 18/189] Installing coreutils-common-0 100% | 377.8 MiB/s | 11.0 MiB | 00m00s [ 19/189] Installing ncurses-base-0:6.6 100% | 86.7 MiB/s | 355.3 KiB | 00m00s [ 20/189] Installing bash-0:5.3.15-2.fc 100% | 229.0 MiB/s | 8.5 MiB | 00m00s [ 21/189] Installing glibc-common-0:2.4 100% | 46.8 MiB/s | 1.0 MiB | 00m00s [ 22/189] Installing glibc-gconv-extra- 100% | 299.4 MiB/s | 7.8 MiB | 00m00s [ 23/189] Installing glibc-0:2.44-1.fc4 100% | 162.3 MiB/s | 7.1 MiB | 00m00s [ 24/189] Installing ncurses-libs-0:6.6 100% | 238.0 MiB/s | 974.9 KiB | 00m00s [ 25/189] Installing glibc-minimal-lang 100% | 0.0 B/s | 124.0 B | 00m00s [ 26/189] Installing zlib-ng-compat-0:2 100% | 162.5 MiB/s | 166.4 KiB | 00m00s [ 27/189] Installing bzip2-libs-0:1.0.8 100% | 79.7 MiB/s | 81.6 KiB | 00m00s [ 28/189] Installing libgpg-error-0:1.6 100% | 44.6 MiB/s | 959.7 KiB | 00m00s [ 29/189] Installing libstdc++-0:16.1.1 100% | 385.7 MiB/s | 3.1 MiB | 00m00s [ 30/189] Installing libzstd-0:1.5.7-6. 100% | 311.7 MiB/s | 957.4 KiB | 00m00s [ 31/189] Installing elfutils-libelf-0: 100% | 388.6 MiB/s | 1.2 MiB | 00m00s [ 32/189] Installing libassuan-0:2.5.7- 100% | 161.8 MiB/s | 165.7 KiB | 00m00s [ 33/189] Installing libgcrypt-0:1.12.2 100% | 332.5 MiB/s | 1.7 MiB | 00m00s [ 34/189] Installing readline-0:8.3-6.f 100% | 252.8 MiB/s | 517.7 KiB | 00m00s [ 35/189] Installing gmp-1:6.3.0-6.fc45 100% | 399.1 MiB/s | 817.4 KiB | 00m00s [ 36/189] Installing libacl-0:2.4.0-2.f 100% | 0.0 B/s | 44.7 KiB | 00m00s [ 37/189] Installing systemd-libs-0:261 100% | 340.3 MiB/s | 2.7 MiB | 00m00s [ 38/189] Installing xz-libs-1:5.8.3-2. 100% | 217.6 MiB/s | 222.8 KiB | 00m00s [ 39/189] Installing libuuid-0:2.42.2-3 100% | 37.5 MiB/s | 38.4 KiB | 00m00s [ 40/189] Installing popt-0:1.19-11.fc4 100% | 70.0 MiB/s | 143.3 KiB | 00m00s [ 41/189] Installing sqlite-libs-0:3.53 100% | 323.8 MiB/s | 1.6 MiB | 00m00s [ 42/189] Installing npth-0:1.8-5.fc45. 100% | 0.0 B/s | 50.6 KiB | 00m00s [ 43/189] Installing libblkid-0:2.42.2- 100% | 276.7 MiB/s | 283.4 KiB | 00m00s [ 44/189] Installing elfutils-libs-0:0. 100% | 350.2 MiB/s | 717.2 KiB | 00m00s [ 45/189] Installing libsepol-0:3.11-2. 100% | 282.3 MiB/s | 867.1 KiB | 00m00s [ 46/189] Installing gnupg2-gpgconf-0:2 100% | 13.9 MiB/s | 255.9 KiB | 00m00s [ 47/189] Installing pcre2-0:10.47-1.fc 100% | 351.5 MiB/s | 720.0 KiB | 00m00s [ 48/189] Installing libselinux-0:3.11- 100% | 201.6 MiB/s | 206.5 KiB | 00m00s [ 49/189] Installing grep-0:3.12-4.fc45 100% | 47.7 MiB/s | 1.0 MiB | 00m00s [ 50/189] Installing sed-0:4.10-2.fc45. 100% | 42.7 MiB/s | 874.9 KiB | 00m00s [ 51/189] Installing findutils-1:4.11.0 100% | 89.0 MiB/s | 2.0 MiB | 00m00s [ 52/189] Installing libxcrypt-0:4.5.2- 100% | 289.0 MiB/s | 295.9 KiB | 00m00s [ 53/189] Installing libtasn1-0:4.21.0- 100% | 174.3 MiB/s | 178.5 KiB | 00m00s [ 54/189] Installing libunistring-0:1.1 100% | 346.9 MiB/s | 1.7 MiB | 00m00s [ 55/189] Installing libidn2-0:2.3.8-4. 100% | 61.0 MiB/s | 562.6 KiB | 00m00s [ 56/189] Installing crypto-policies-0: 100% | 38.9 MiB/s | 159.5 KiB | 00m00s [ 57/189] Installing xz-1:5.8.3-2.fc45. 100% | 58.5 MiB/s | 1.4 MiB | 00m00s [ 58/189] Installing libmount-0:2.42.2- 100% | 198.1 MiB/s | 405.8 KiB | 00m00s [ 59/189] Installing gnupg2-verify-0:2. 100% | 19.4 MiB/s | 357.7 KiB | 00m00s [ 60/189] Installing mpfr-0:4.2.2-4.fc4 100% | 277.0 MiB/s | 850.9 KiB | 00m00s [ 61/189] Installing gawk-0:5.4.1-1.fc4 100% | 92.8 MiB/s | 2.2 MiB | 00m00s [ 62/189] Installing dwz-0:0.17-3.fc45. 100% | 15.9 MiB/s | 292.5 KiB | 00m00s [ 63/189] Installing libksba-0:1.8.0-3. 100% | 211.8 MiB/s | 433.7 KiB | 00m00s [ 64/189] Installing unzip-0:6.0-71.fc4 100% | 24.2 MiB/s | 445.3 KiB | 00m00s [ 65/189] Installing file-libs-0:5.47-3 100% | 641.4 MiB/s | 12.2 MiB | 00m00s [ 66/189] Installing file-0:5.47-3.fc45 100% | 5.6 MiB/s | 102.7 KiB | 00m00s [ 67/189] Installing diffutils-0:3.12-6 100% | 71.1 MiB/s | 1.6 MiB | 00m00s [ 68/189] Installing libattr-0:2.6.0-2. 100% | 24.7 MiB/s | 25.2 KiB | 00m00s [ 69/189] Installing libeconf-0:0.7.9-4 100% | 64.9 MiB/s | 66.4 KiB | 00m00s [ 70/189] Installing libcap-ng-0:0.9.3- 100% | 69.0 MiB/s | 70.6 KiB | 00m00s [ 71/189] Installing audit-libs-0:4.2.1 100% | 191.9 MiB/s | 393.1 KiB | 00m00s [ 72/189] Installing pam-libs-0:1.7.2-4 100% | 133.7 MiB/s | 136.9 KiB | 00m00s [ 73/189] Installing libcap-0:2.78-2.fc 100% | 11.0 MiB/s | 213.3 KiB | 00m00s [ 74/189] Installing libsemanage-0:3.11 100% | 310.7 MiB/s | 318.1 KiB | 00m00s [ 75/189] Installing libsmartcols-0:2.4 100% | 185.0 MiB/s | 189.5 KiB | 00m00s [ 76/189] Installing lua-libs-0:5.5.1-1 100% | 292.4 MiB/s | 299.4 KiB | 00m00s [ 77/189] Installing json-c-0:0.18-9.fc 100% | 82.0 MiB/s | 83.9 KiB | 00m00s [ 78/189] Installing libffi-0:3.5.2-3.f 100% | 83.1 MiB/s | 85.1 KiB | 00m00s [ 79/189] Installing p11-kit-0:0.26.5-1 100% | 101.3 MiB/s | 2.6 MiB | 00m00s [ 80/189] Installing alternatives-0:1.3 100% | 3.5 MiB/s | 63.6 KiB | 00m00s [ 81/189] Installing p11-kit-trust-0:0. 100% | 18.0 MiB/s | 480.1 KiB | 00m00s [ 82/189] Installing ngtcp2-0:1.22.1-3. 100% | 164.0 MiB/s | 335.8 KiB | 00m00s [ 83/189] Installing util-linux-core-0: 100% | 65.4 MiB/s | 1.5 MiB | 00m00s [ 84/189] Installing liblastlog2-0:2.42 100% | 6.4 MiB/s | 39.5 KiB | 00m00s [ 85/189] Installing zip-0:3.0-46.fc45. 100% | 32.5 MiB/s | 698.0 KiB | 00m00s [ 86/189] Installing gnupg2-keyboxd-0:2 100% | 33.0 MiB/s | 202.5 KiB | 00m00s [ 87/189] Installing libpsl-0:0.23.1-1. 100% | 79.6 MiB/s | 81.5 KiB | 00m00s [ 88/189] Installing tar-2:1.35-9.fc45. 100% | 114.4 MiB/s | 3.0 MiB | 00m00s [ 89/189] Installing linkdupes-0:0.7.3- 100% | 40.3 MiB/s | 783.5 KiB | 00m00s [ 90/189] Installing libselinux-utils-0 100% | 16.5 MiB/s | 320.4 KiB | 00m00s [ 91/189] Installing libfdisk-0:2.42.2- 100% | 192.1 MiB/s | 393.4 KiB | 00m00s [ 92/189] Installing fips-provider-0:1. 100% | 401.7 MiB/s | 4.8 MiB | 00m00s [ 93/189] Installing openssl-libs-1:4.0 100% | 370.8 MiB/s | 6.7 MiB | 00m00s [ 94/189] Installing coreutils-0:9.11-6 100% | 151.9 MiB/s | 5.9 MiB | 00m00s [ 95/189] Installing ca-certificates-0: 100% | 2.0 MiB/s | 2.4 MiB | 00m01s [ 96/189] Installing gzip-0:1.14-4.fc45 100% | 18.9 MiB/s | 407.2 KiB | 00m00s [ 97/189] Installing util-linux-0:2.42. 100% | 89.5 MiB/s | 3.8 MiB | 00m00s [ 98/189] Installing policycoreutils-0: 100% | 29.0 MiB/s | 921.4 KiB | 00m00s [ 99/189] Installing selinux-policy-0:4 100% | 1.5 MiB/s | 34.5 KiB | 00m00s [100/189] Installing selinux-policy-tar 100% | 201.0 MiB/s | 15.1 MiB | 00m00s [101/189] Installing rpm-sequoia-0:1.10 100% | 302.5 MiB/s | 2.4 MiB | 00m00s [102/189] Installing libfsverity-0:1.7- 100% | 0.0 B/s | 25.4 KiB | 00m00s [103/189] Installing libevent-0:2.1.12- 100% | 319.8 MiB/s | 982.6 KiB | 00m00s [104/189] Installing ngtcp2-crypto-ossl 100% | 0.0 B/s | 52.5 KiB | 00m00s [105/189] Installing libxml2-0:2.13.9-4 100% | 76.4 MiB/s | 1.8 MiB | 00m00s [106/189] Installing libusb1-0:1.0.30-2 100% | 22.2 MiB/s | 181.8 KiB | 00m00s >>> Running sysusers scriptlet: tpm2-tss-0:4.2.0-1.fc45.x86_64 >>> Finished sysusers scriptlet: tpm2-tss-0:4.2.0-1.fc45.x86_64 >>> Scriptlet output: >>> Creating group 'tss' with GID 59. >>> Creating user 'tss' (Account used for TPM access) with UID 59 and GID 59. >>> [107/189] Installing tpm2-tss-0:4.2.0-1 100% | 277.9 MiB/s | 1.7 MiB | 00m00s [108/189] Installing ima-evm-utils-libs 100% | 56.5 MiB/s | 57.9 KiB | 00m00s [109/189] Installing gnupg2-gpg-agent-0 100% | 24.7 MiB/s | 682.8 KiB | 00m00s [110/189] Installing nettle-0:4.0-5.fc4 100% | 262.0 MiB/s | 805.0 KiB | 00m00s [111/189] Installing gnutls-0:3.8.13-3. 100% | 348.9 MiB/s | 3.8 MiB | 00m00s [112/189] Installing zstd-0:1.5.7-6.fc4 100% | 26.0 MiB/s | 506.1 KiB | 00m00s [113/189] Installing bzip2-0:1.0.8-24.f 100% | 5.4 MiB/s | 99.5 KiB | 00m00s [114/189] Installing add-determinism-0: 100% | 93.9 MiB/s | 2.2 MiB | 00m00s [115/189] Installing build-reproducibil 100% | 0.0 B/s | 1.5 KiB | 00m00s [116/189] Installing cpio-0:2.15-10.fc4 100% | 52.5 MiB/s | 1.1 MiB | 00m00s [117/189] Installing ed-0:1.22.5-3.fc45 100% | 8.2 MiB/s | 152.0 KiB | 00m00s [118/189] Installing patch-0:2.8-5.fc45 100% | 12.4 MiB/s | 228.1 KiB | 00m00s [119/189] Installing lz4-libs-0:1.10.0- 100% | 162.5 MiB/s | 166.4 KiB | 00m00s [120/189] Installing libarchive-0:3.8.8 100% | 326.1 MiB/s | 1.0 MiB | 00m00s [121/189] Installing libgomp-0:16.1.1-4 100% | 282.6 MiB/s | 578.8 KiB | 00m00s [122/189] Installing libtool-ltdl-0:2.5 100% | 69.5 MiB/s | 71.1 KiB | 00m00s [123/189] Installing gdbm-libs-1:1.23-1 100% | 132.2 MiB/s | 135.4 KiB | 00m00s [124/189] Installing cyrus-sasl-lib-0:2 100% | 101.7 MiB/s | 2.3 MiB | 00m00s [125/189] Installing openldap-0:2.6.13- 100% | 221.9 MiB/s | 681.7 KiB | 00m00s [126/189] Installing gnupg2-dirmngr-0:2 100% | 23.8 MiB/s | 632.8 KiB | 00m00s [127/189] Installing gnupg2-0:2.4.9-18. 100% | 185.7 MiB/s | 6.5 MiB | 00m00s [128/189] Installing gpgverify-0:2.2-5. 100% | 0.0 B/s | 9.4 KiB | 00m00s [129/189] Installing jansson-0:2.14-5.f 100% | 88.2 MiB/s | 90.3 KiB | 00m00s [130/189] Installing libpkgconf-0:2.5.1 100% | 89.1 MiB/s | 91.3 KiB | 00m00s [131/189] Installing pkgconf-0:2.5.1-2. 100% | 5.2 MiB/s | 95.2 KiB | 00m00s [132/189] Installing pkgconf-pkg-config 100% | 104.3 KiB/s | 1.8 KiB | 00m00s [133/189] Installing systemd-standalone 100% | 46.1 MiB/s | 945.0 KiB | 00m00s [134/189] Installing rpm-libs-0:6.0.92- 100% | 274.8 MiB/s | 1.1 MiB | 00m00s [135/189] Installing rpm-sign-libs-0:6. 100% | 39.5 MiB/s | 40.5 KiB | 00m00s [136/189] Installing rpm-build-libs-0:6 100% | 282.4 MiB/s | 289.2 KiB | 00m00s [137/189] Installing xxhash-libs-0:0.8. 100% | 93.2 MiB/s | 95.4 KiB | 00m00s [138/189] Installing libbrotli-0:1.2.0- 100% | 282.3 MiB/s | 867.3 KiB | 00m00s [139/189] Installing libnghttp2-0:1.69. 100% | 163.4 MiB/s | 167.3 KiB | 00m00s [140/189] Installing libnghttp3-0:1.18. 100% | 161.0 MiB/s | 164.8 KiB | 00m00s [141/189] Installing keyutils-libs-0:1. 100% | 54.3 MiB/s | 55.6 KiB | 00m00s [142/189] Installing libcom_err-0:1.47. 100% | 62.6 MiB/s | 64.1 KiB | 00m00s [143/189] Installing libverto-0:0.3.2-1 100% | 26.4 MiB/s | 27.1 KiB | 00m00s [144/189] Installing krb5-libs-0:1.22.2 100% | 298.4 MiB/s | 2.4 MiB | 00m00s [145/189] Installing libcbor-0:0.14.0-3 100% | 82.9 MiB/s | 84.9 KiB | 00m00s [146/189] Installing libfido2-0:1.17.0- 100% | 252.0 MiB/s | 258.1 KiB | 00m00s [147/189] Installing libssh-0:0.12.2-1. 100% | 236.9 MiB/s | 727.8 KiB | 00m00s [148/189] Installing libcurl-0:8.21.0-5 100% | 351.4 MiB/s | 1.1 MiB | 00m00s [149/189] Installing elfutils-debuginfo 100% | 4.5 MiB/s | 82.1 KiB | 00m00s [150/189] Installing elfutils-0:0.195-3 100% | 119.5 MiB/s | 3.0 MiB | 00m00s [151/189] Installing binutils-0:2.47-1. 100% | 305.3 MiB/s | 28.4 MiB | 00m00s [152/189] Installing gdb-minimal-0:17.2 100% | 248.4 MiB/s | 14.2 MiB | 00m00s [153/189] Installing debugedit-0:5.3-3. 100% | 12.2 MiB/s | 224.1 KiB | 00m00s [154/189] Installing curl-0:8.21.0-5.fc 100% | 17.1 MiB/s | 490.6 KiB | 00m00s [155/189] Installing rpm-0:6.0.92-2.fc4 100% | 67.7 MiB/s | 2.5 MiB | 00m00s [156/189] Installing cmake-srpm-macros- 100% | 0.0 B/s | 804.0 B | 00m00s [157/189] Installing efi-srpm-macros-0: 100% | 0.0 B/s | 41.3 KiB | 00m00s [158/189] Installing java-srpm-macros-0 100% | 0.0 B/s | 1.1 KiB | 00m00s [159/189] Installing lua-srpm-macros-0: 100% | 0.0 B/s | 1.9 KiB | 00m00s [160/189] Installing tree-sitter-srpm-m 100% | 1.9 MiB/s | 9.6 KiB | 00m00s [161/189] Installing zig-srpm-macros-0: 100% | 0.0 B/s | 1.9 KiB | 00m00s [162/189] Installing filesystem-srpm-ma 100% | 0.0 B/s | 38.9 KiB | 00m00s [163/189] Installing rust-srpm-macros-0 100% | 0.0 B/s | 6.4 KiB | 00m00s [164/189] Installing qt6-srpm-macros-0: 100% | 0.0 B/s | 748.0 B | 00m00s [165/189] Installing qt5-srpm-macros-0: 100% | 0.0 B/s | 776.0 B | 00m00s [166/189] Installing perl-srpm-macros-0 100% | 0.0 B/s | 1.1 KiB | 00m00s [167/189] Installing package-notes-srpm 100% | 0.0 B/s | 2.1 KiB | 00m00s [168/189] Installing openblas-srpm-macr 100% | 0.0 B/s | 392.0 B | 00m00s [169/189] Installing ocaml-srpm-macros- 100% | 0.0 B/s | 2.1 KiB | 00m00s [170/189] Installing kernel-srpm-macros 100% | 0.0 B/s | 2.3 KiB | 00m00s [171/189] Installing gnome-srpm-macros- 100% | 0.0 B/s | 4.1 KiB | 00m00s [172/189] Installing gnat-srpm-macros-0 100% | 0.0 B/s | 1.3 KiB | 00m00s [173/189] Installing ghc-srpm-macros-0: 100% | 0.0 B/s | 1.0 KiB | 00m00s [174/189] Installing gap-srpm-macros-0: 100% | 0.0 B/s | 2.7 KiB | 00m00s [175/189] Installing fpc-srpm-macros-0: 100% | 0.0 B/s | 420.0 B | 00m00s [176/189] Installing ansible-srpm-macro 100% | 0.0 B/s | 36.2 KiB | 00m00s [177/189] Installing redhat-rpm-config- 100% | 93.0 MiB/s | 190.4 KiB | 00m00s [178/189] Installing forge-srpm-macros- 100% | 39.3 MiB/s | 40.3 KiB | 00m00s [179/189] Installing rpm-build-0:6.0.92 100% | 15.7 MiB/s | 322.2 KiB | 00m00s [180/189] Installing erlang-srpm-macros 100% | 0.0 B/s | 2.5 KiB | 00m00s [181/189] Installing pyproject-srpm-mac 100% | 0.0 B/s | 4.0 KiB | 00m00s [182/189] Installing fonts-srpm-macros- 100% | 0.0 B/s | 57.0 KiB | 00m00s [183/189] Installing go-srpm-macros-0:3 100% | 0.0 B/s | 63.0 KiB | 00m00s [184/189] Installing R-srpm-macros-0:1. 100% | 0.0 B/s | 4.4 KiB | 00m00s [185/189] Installing python-srpm-macros 100% | 0.0 B/s | 52.9 KiB | 00m00s [186/189] Installing rpm-plugin-selinux 100% | 0.0 B/s | 12.9 KiB | 00m00s [187/189] Installing which-0:2.25-2.fc4 100% | 4.4 MiB/s | 85.8 KiB | 00m00s [188/189] Installing shadow-utils-2:4.2 100% | 119.6 MiB/s | 3.9 MiB | 00m00s [189/189] Installing info-0:7.3-3.fc45. 100% | 50.5 KiB/s | 372.8 KiB | 00m07s Complete! Finish: installing minimal buildroot with dnf5 Start: creating root cache Finish: creating root cache Finish: chroot init INFO: Installed packages: INFO: R-srpm-macros-1.3.7-3.fc45.noarch add-determinism-0.7.3-3.fc45.x86_64 alternatives-1.33-6.fc45.x86_64 ansible-srpm-macros-1-22.fc45.noarch audit-libs-4.2.1-2.fc45.x86_64 bash-5.3.15-2.fc45.x86_64 binutils-2.47-1.fc45.x86_64 build-reproducibility-srpm-macros-0.7.3-3.fc45.noarch bzip2-1.0.8-24.fc45.x86_64 bzip2-libs-1.0.8-24.fc45.x86_64 ca-certificates-2025.2.80_v9.0.304-9.fc45.noarch cmake-srpm-macros-4.3.0-5.fc45.noarch coreutils-9.11-6.fc45.x86_64 coreutils-common-9.11-6.fc45.x86_64 cpio-2.15-10.fc45.x86_64 crypto-policies-20260713-2.gitc42da77.fc45.noarch curl-8.21.0-5.fc45.x86_64 cyrus-sasl-lib-2.1.28-37.fc45.x86_64 debugedit-5.3-3.fc45.x86_64 diffutils-3.12-6.fc45.x86_64 dwz-0.17-3.fc45.x86_64 ed-1.22.5-3.fc45.x86_64 efi-srpm-macros-6-9.fc45.noarch elfutils-0.195-3.fc45.x86_64 elfutils-debuginfod-client-0.195-3.fc45.x86_64 elfutils-libelf-0.195-3.fc45.x86_64 elfutils-libs-0.195-3.fc45.x86_64 erlang-srpm-macros-0.3.11-2.fc45.noarch fedora-gpg-keys-45-0.5.noarch fedora-release-45-0.10.noarch fedora-release-common-45-0.10.noarch fedora-release-identity-basic-45-0.10.noarch fedora-repos-45-0.5.noarch file-5.47-3.fc45.x86_64 file-libs-5.47-3.fc45.x86_64 filesystem-3.18-59.fc45.x86_64 filesystem-srpm-macros-3.18-59.fc45.noarch findutils-4.11.0-2.fc45.x86_64 fips-provider-1.5.2-3.fc45.x86_64 fonts-srpm-macros-5.0.0-4.fc45.noarch forge-srpm-macros-0.4.0-5.fc45.noarch fpc-srpm-macros-1.3-17.fc45.noarch gap-srpm-macros-2-3.fc45.noarch gawk-5.4.1-1.fc45.x86_64 gdb-minimal-17.2-4.fc45.x86_64 gdbm-libs-1.23-12.fc45.x86_64 ghc-srpm-macros-1.10-2.fc45.noarch glibc-2.44-1.fc45.x86_64 glibc-common-2.44-1.fc45.x86_64 glibc-gconv-extra-2.44-1.fc45.x86_64 glibc-minimal-langpack-2.44-1.fc45.x86_64 gmp-6.3.0-6.fc45.x86_64 gnat-srpm-macros-7-3.fc45.noarch gnome-srpm-macros-1.0-2.fc45.noarch gnulib-l10n-20241231-4.fc45.noarch gnupg2-2.4.9-18.fc45.x86_64 gnupg2-dirmngr-2.4.9-18.fc45.x86_64 gnupg2-gpg-agent-2.4.9-18.fc45.x86_64 gnupg2-gpgconf-2.4.9-18.fc45.x86_64 gnupg2-keyboxd-2.4.9-18.fc45.x86_64 gnupg2-verify-2.4.9-18.fc45.x86_64 gnutls-3.8.13-3.fc45.x86_64 go-srpm-macros-3.8.0-3.fc45.noarch gpg-pubkey-4f50a6114cd5c6976a7f1179655a4b02f577861e-6888bc98 gpgverify-2.2-5.fc45.noarch grep-3.12-4.fc45.x86_64 gzip-1.14-4.fc45.x86_64 ima-evm-utils-libs-1.6.2-12.fc45.x86_64 info-7.3-3.fc45.x86_64 jansson-2.14-5.fc45.x86_64 java-srpm-macros-1-9.fc45.noarch json-c-0.18-9.fc45.x86_64 kernel-srpm-macros-1.0-30.fc45.noarch keyutils-libs-1.6.3-8.fc45.x86_64 krb5-libs-1.22.2-9.fc45.x86_64 libacl-2.4.0-2.fc45.x86_64 libarchive-3.8.8-3.fc45.x86_64 libassuan-2.5.7-6.fc45.x86_64 libattr-2.6.0-2.fc45.x86_64 libblkid-2.42.2-3.fc45.x86_64 libbrotli-1.2.0-6.fc45.x86_64 libcap-2.78-2.fc45.x86_64 libcap-ng-0.9.3-5.fc45.x86_64 libcbor-0.14.0-3.fc45.x86_64 libcom_err-1.47.4-2.fc45.x86_64 libcurl-8.21.0-5.fc45.x86_64 libeconf-0.7.9-4.fc45.x86_64 libevent-2.1.12-19.fc45.x86_64 libfdisk-2.42.2-3.fc45.x86_64 libffi-3.5.2-3.fc45.x86_64 libfido2-1.17.0-5.fc45.x86_64 libfsverity-1.7-4.fc45.x86_64 libgcc-16.1.1-4.fc45.1.x86_64 libgcrypt-1.12.2-2.fc45.x86_64 libgomp-16.1.1-4.fc45.1.x86_64 libgpg-error-1.61-2.fc45.x86_64 libidn2-2.3.8-4.fc45.x86_64 libksba-1.8.0-3.fc45.x86_64 liblastlog2-2.42.2-3.fc45.x86_64 libmount-2.42.2-3.fc45.x86_64 libnghttp2-1.69.0-5.fc45.x86_64 libnghttp3-1.18.0-1.fc45.x86_64 libpkgconf-2.5.1-2.fc45.x86_64 libpsl-0.23.1-1.fc45.x86_64 libselinux-3.11-4.fc45.x86_64 libselinux-utils-3.11-4.fc45.x86_64 libsemanage-3.11-3.fc45.x86_64 libsepol-3.11-2.fc45.x86_64 libsmartcols-2.42.2-3.fc45.x86_64 libssh-0.12.2-1.fc45.x86_64 libssh-config-0.12.2-1.fc45.noarch libstdc++-16.1.1-4.fc45.1.x86_64 libtasn1-4.21.0-2.fc45.x86_64 libtool-ltdl-2.5.4-11.fc45.x86_64 libunistring-1.1-12.fc45.x86_64 libusb1-1.0.30-2.fc45.x86_64 libuuid-2.42.2-3.fc45.x86_64 libverto-0.3.2-13.fc45.x86_64 libxcrypt-4.5.2-4.fc45.x86_64 libxml2-2.13.9-4.fc45.x86_64 libzstd-1.5.7-6.fc45.x86_64 linkdupes-0.7.3-3.fc45.x86_64 lua-libs-5.5.1-1.fc45.x86_64 lua-srpm-macros-1-18.fc45.noarch lz4-libs-1.10.0-5.fc45.x86_64 mpfr-4.2.2-4.fc45.x86_64 ncurses-base-6.6-3.fc45.noarch ncurses-libs-6.6-3.fc45.x86_64 nettle-4.0-5.fc45.x86_64 ngtcp2-1.22.1-3.fc45.x86_64 ngtcp2-crypto-ossl-1.22.1-3.fc45.x86_64 npth-1.8-5.fc45.x86_64 ocaml-srpm-macros-11-4.fc45.noarch openblas-srpm-macros-2-22.fc45.noarch openldap-2.6.13-4.fc45.x86_64 openssl-libs-4.0.1-5.fc45.x86_64 p11-kit-0.26.5-1.fc45.x86_64 p11-kit-trust-0.26.5-1.fc45.x86_64 package-notes-srpm-macros-0.20-2.fc45.noarch pam-libs-1.7.2-4.fc45.x86_64 patch-2.8-5.fc45.x86_64 pcre2-10.47-1.fc45.2.x86_64 pcre2-syntax-10.47-1.fc45.2.noarch perl-srpm-macros-1-65.fc45.noarch pkgconf-2.5.1-2.fc45.x86_64 pkgconf-m4-2.5.1-2.fc45.noarch pkgconf-pkg-config-2.5.1-2.fc45.x86_64 policycoreutils-3.11-2.fc45.x86_64 popt-1.19-11.fc45.x86_64 publicsuffix-list-dafsa-20260624-2.fc45.noarch pyproject-srpm-macros-1.23.2-1.fc45.noarch python-srpm-macros-3.15-2.fc45.noarch qt5-srpm-macros-5.15.18-3.fc45.noarch qt6-srpm-macros-6.11.1-2.fc45.noarch readline-8.3-6.fc45.x86_64 redhat-rpm-config-344-5.fc45.noarch redhat-systemd-presets-102-3.fc45.noarch redhat-systemd-presets-common-102-3.fc45.noarch rpm-6.0.92-2.fc45.x86_64 rpm-build-6.0.92-2.fc45.x86_64 rpm-build-libs-6.0.92-2.fc45.x86_64 rpm-libs-6.0.92-2.fc45.x86_64 rpm-plugin-selinux-6.0.92-2.fc45.x86_64 rpm-sequoia-1.10.2-5.fc45.x86_64 rpm-sign-libs-6.0.92-2.fc45.x86_64 rust-srpm-macros-28.5-2.fc45.noarch sed-4.10-2.fc45.x86_64 selinux-policy-45.11-1.fc45.noarch selinux-policy-targeted-45.11-1.fc45.noarch setup-2.15.1-2.fc45.noarch shadow-utils-4.20.0-1.fc45.x86_64 sqlite-libs-3.53.4-1.fc45.x86_64 systemd-libs-261.2-1.fc45.x86_64 systemd-standalone-sysusers-261.2-1.fc45.x86_64 tar-1.35-9.fc45.x86_64 tpm2-tss-4.2.0-1.fc45.x86_64 tree-sitter-srpm-macros-0.4.6-2.fc45.noarch unzip-6.0-71.fc45.x86_64 util-linux-2.42.2-3.fc45.x86_64 util-linux-core-2.42.2-3.fc45.x86_64 which-2.25-2.fc45.x86_64 xxhash-libs-0.8.3-5.fc45.x86_64 xz-5.8.3-2.fc45.x86_64 xz-libs-5.8.3-2.fc45.x86_64 zig-srpm-macros-1-9.fc45.noarch zip-3.0-46.fc45.x86_64 zlib-ng-compat-2.3.3-6.fc45.x86_64 zstd-1.5.7-6.fc45.x86_64 Finish: run INFO:__main__:running command: mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --install git jq python3 rpmlint INFO: mock.py version 6.8 starting (python version = 3.14.5, NVR = mock-6.8-1.fc44), args: /usr/libexec/mock/mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --install git jq python3 rpmlint Start(bootstrap): init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish(bootstrap): init plugins Start: init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish: init plugins INFO: Signal handler active Start: run Mock Version: 6.8 INFO: Mock Version: 6.8 Start(bootstrap): chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start(bootstrap): cleaning package manager metadata Finish(bootstrap): cleaning package manager metadata INFO: Package manager dnf5 detected and used (fallback) Finish(bootstrap): chroot init Start: chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start: cleaning package manager metadata Finish: cleaning package manager metadata INFO: enabled HW Info plugin INFO: Package manager dnf5 detected and used (direct choice) Finish: chroot init INFO: installing package(s): git jq python3 rpmlint Updating and loading repositories: updates 100% | 126.2 KiB/s | 24.0 KiB | 00m00s fedora 100% | 300.6 KiB/s | 22.2 KiB | 00m00s Repositories loaded. Package Arch Version Repository Size Installing: git x86_64 0:2.55.0-2.fc45 fedora 57.7 KiB jq x86_64 0:1.8.2-5.fc45 fedora 472.4 KiB python3 x86_64 0:3.15.0~rc1-1.fc45 fedora 28.8 KiB rpmlint noarch 0:2.9.0-3.fc45 fedora 1.3 MiB Installing dependencies: abattis-cantarell-vf-fonts noarch 0:0.301-18.fc45 fedora 192.7 KiB aribb24 x86_64 0:1.0.3^20160216git5e9be27-6.fc45 fedora 83.0 KiB bubblewrap x86_64 0:0.11.2-2.fc45 fedora 134.9 KiB cairo x86_64 0:1.18.4-9.fc45 fedora 1.8 MiB cairo-gobject x86_64 0:1.18.4-9.fc45 fedora 31.0 KiB codec2 x86_64 0:1.2.0-10.fc45 fedora 1.4 MiB dash x86_64 0:0.5.13.2-2.fc45 fedora 175.9 KiB default-fonts-core-sans noarch 0:4.3-3.fc45 fedora 11.9 KiB desktop-file-utils x86_64 0:0.28-8.fc45 fedora 222.2 KiB devscripts-checkbashisms noarch 0:2.26.10-2.fc45 fedora 52.5 KiB emacs-filesystem x86_64 1:30.2-3.fc45 fedora 0.0 B enchant2 x86_64 0:2.8.19-2.fc45 fedora 214.1 KiB expat x86_64 0:2.8.1-2.fc45 fedora 323.5 KiB fdk-aac-free x86_64 0:2.0.3-3.fc45 fedora 628.3 KiB fontconfig x86_64 0:2.18.3-1.fc45 fedora 1.0 MiB fonts-filesystem noarch 1:5.0.0-4.fc45 fedora 0.0 B freetype x86_64 0:2.14.3-2.fc45 fedora 918.3 KiB fribidi x86_64 0:1.0.16-5.fc45 fedora 190.0 KiB gdk-pixbuf2 x86_64 0:2.44.8-1.fc45 fedora 2.6 MiB git-core x86_64 0:2.55.0-2.fc45 fedora 25.5 MiB git-core-doc noarch 0:2.55.0-2.fc45 fedora 18.9 MiB glib2 x86_64 0:2.89.3-1.fc45 fedora 15.2 MiB glycin-libs x86_64 0:2.2~beta-1.fc45 fedora 4.7 MiB glycin-loaders x86_64 0:2.2~beta-1.fc45 fedora 14.8 MiB google-noto-fonts-common noarch 0:20260601-3.fc45 fedora 17.7 KiB google-noto-sans-vf-fonts noarch 0:20260601-3.fc45 fedora 1.4 MiB graphite2 x86_64 0:1.3.14-22.fc45 fedora 191.4 KiB groff-base x86_64 0:1.24.1-2.fc45 fedora 4.2 MiB gsm x86_64 0:1.0.24-3.fc45 fedora 65.7 KiB harfbuzz x86_64 0:14.3.1-1.fc45 fedora 2.9 MiB highway x86_64 0:1.3.0-3.fc45 fedora 5.6 MiB hunspell x86_64 0:1.7.3-2.fc45 fedora 1.6 MiB hunspell-en-US noarch 0:0.20260225-3.fc45 fedora 506.7 KiB hunspell-filesystem x86_64 0:1.7.3-2.fc45 fedora 0.0 B hwdata noarch 0:0.410-1.fc45 fedora 10.0 MiB ilbc x86_64 0:3.0.4-21.fc45 fedora 91.3 KiB json-glib x86_64 0:1.10.8-11.fc45 fedora 596.2 KiB lame-libs x86_64 0:3.100-22.fc45 fedora 1.2 MiB lcms2 x86_64 0:2.16-8.fc45 fedora 445.8 KiB less x86_64 0:704-3.fc45 fedora 483.5 KiB libX11 x86_64 0:1.8.13-2.fc45 fedora 1.3 MiB libX11-common noarch 0:1.8.13-2.fc45 fedora 1.1 MiB libX11-xcb x86_64 0:1.8.13-2.fc45 fedora 10.8 KiB libXau x86_64 0:1.0.12-5.fc45 fedora 72.8 KiB libXext x86_64 0:1.3.6-6.fc45 fedora 89.9 KiB libXfixes x86_64 0:6.0.1-8.fc45 fedora 30.0 KiB libXft x86_64 0:2.3.8-11.fc45 fedora 168.3 KiB libXrender x86_64 0:0.9.12-5.fc45 fedora 49.9 KiB libXxf86vm x86_64 0:1.1.6-5.fc45 fedora 25.1 KiB libaom x86_64 0:3.13.3-3.fc45 fedora 5.1 MiB libappstream-glib x86_64 0:0.8.4-1.fc45 fedora 1.4 MiB libaribcaption x86_64 0:1.1.1-5.fc45 fedora 256.1 KiB libavcodec-free x86_64 0:8.1.2-10.fc45 fedora 10.3 MiB libavutil-free x86_64 0:8.1.2-10.fc45 fedora 975.3 KiB libdatrie x86_64 0:0.2.14-3.fc45 fedora 57.7 KiB libdav1d x86_64 0:1.5.3-2.fc45 fedora 1.7 MiB libdrm x86_64 0:2.4.134-2.fc45 fedora 405.9 KiB libedit x86_64 0:3.1-60.20260512cvs.fc45 fedora 248.3 KiB libglvnd x86_64 1:1.7.0-10.fc45 fedora 526.1 KiB libglvnd-glx x86_64 1:1.7.0-10.fc45 fedora 597.1 KiB libheif x86_64 0:1.23.1-9.fc45 fedora 2.4 MiB libjpeg-turbo x86_64 0:3.1.4.1-2.fc45 fedora 821.8 KiB libjxl x86_64 1:0.11.2-2.fc45 fedora 4.1 MiB liblc3 x86_64 0:1.1.3-9.fc45 fedora 170.7 KiB libogg x86_64 2:1.3.6-4.fc45 fedora 49.5 KiB libopenjph x86_64 0:0.31.0-1.fc45 fedora 510.5 KiB libpciaccess x86_64 0:0.16-18.fc45 fedora 48.4 KiB libpng x86_64 2:1.6.58-2.fc45 fedora 253.7 KiB librsvg2 x86_64 0:2.62.3-3.fc45 fedora 5.0 MiB libseccomp x86_64 0:2.6.1-3.fc45 fedora 222.2 KiB libswresample-free x86_64 0:8.1.2-10.fc45 fedora 155.2 KiB libthai x86_64 0:0.1.30-3.fc45 fedora 800.9 KiB libtheora x86_64 1:1.1.1-42.fc45 fedora 485.0 KiB libva x86_64 0:2.24.1-2.fc45 fedora 346.0 KiB libvdpau x86_64 0:1.5-12.fc45 fedora 20.6 KiB libvmaf x86_64 0:3.2.0-2.fc45 fedora 1.2 MiB libvorbis x86_64 1:1.3.7-21.fc45 fedora 837.0 KiB libvpl x86_64 1:2.17.0-2.fc45 fedora 433.7 KiB libvpx x86_64 0:1.16.0-3.fc45 fedora 3.3 MiB libwayland-client x86_64 0:1.26.0-1.fc45 fedora 66.0 KiB libwebp x86_64 0:1.6.0-4.fc45 fedora 968.1 KiB libxcb x86_64 0:1.17.0-8.fc45 fedora 1.1 MiB libxshmfence x86_64 0:1.3.2-9.fc45 fedora 12.3 KiB llvm-filesystem x86_64 0:22.1.8-20.fc45 fedora 0.0 B llvm-libs x86_64 0:22.1.8-20.fc45 fedora 140.5 MiB lm_sensors-libs x86_64 0:3.6.0-25.fc45 fedora 89.7 KiB lpcnetfreedv x86_64 0:0.5-11.fc45 fedora 14.8 MiB lzo x86_64 0:2.10-17.fc45 fedora 178.8 KiB mesa-dri-drivers x86_64 0:26.2.0-1.fc45 fedora 53.2 MiB mesa-filesystem x86_64 0:26.2.0-1.fc45 fedora 3.6 KiB mesa-libGL x86_64 0:26.2.0-1.fc45 fedora 378.3 KiB mesa-libgbm x86_64 0:26.2.0-1.fc45 fedora 19.5 KiB mpdecimal x86_64 0:4.0.1-4.fc45 fedora 221.2 KiB ncurses x86_64 0:6.6-3.fc45 fedora 611.5 KiB noopenh264 x86_64 0:2.6.0-5.fc45 fedora 39.0 KiB oniguruma x86_64 0:6.9.10-5.fc45 fedora 771.0 KiB openapv-libs x86_64 0:0.3.0.0-1.fc45 fedora 125.1 KiB opencore-amr x86_64 0:0.1.6-11.fc45 fedora 352.6 KiB openjpeg x86_64 0:2.5.4-4.fc45 fedora 464.2 KiB openssh x86_64 0:10.4p1-4.fc45 fedora 1.6 MiB openssh-clients x86_64 0:10.4p1-4.fc45 fedora 2.6 MiB opus x86_64 0:1.6-3.fc45 fedora 463.7 KiB pango x86_64 0:1.58.2-1.fc45 fedora 1.0 MiB perl-AutoLoader noarch 0:5.74-527.fc45 fedora 20.6 KiB perl-B x86_64 0:1.92-527.fc45 fedora 513.5 KiB perl-Carp noarch 0:1.54-527.fc45 fedora 46.6 KiB perl-Class-Struct noarch 0:0.68-527.fc45 fedora 25.4 KiB perl-Data-Dumper x86_64 0:2.192-528.fc45 fedora 115.5 KiB perl-Digest noarch 0:1.20-527.fc45 fedora 35.2 KiB perl-Digest-MD5 x86_64 0:2.59-527.fc45 fedora 59.5 KiB perl-DynaLoader x86_64 0:1.57-527.fc45 fedora 32.1 KiB perl-Encode x86_64 4:3.24-527.fc45 fedora 4.7 MiB perl-Errno x86_64 0:1.39-527.fc45 fedora 8.4 KiB perl-Error noarch 1:0.17030-4.fc45 fedora 76.8 KiB perl-Exporter noarch 0:5.79-527.fc45 fedora 54.2 KiB perl-Fcntl x86_64 0:1.20-527.fc45 fedora 44.7 KiB perl-File-Basename noarch 0:2.86-527.fc45 fedora 14.0 KiB perl-File-Path noarch 0:2.18-527.fc45 fedora 63.4 KiB perl-File-Temp noarch 1:0.231.200-527.fc45 fedora 163.7 KiB perl-File-stat noarch 0:1.15-527.fc45 fedora 13.7 KiB perl-FileHandle noarch 0:2.05-527.fc45 fedora 9.4 KiB perl-Getopt-Long noarch 1:2.58-527.fc45 fedora 144.5 KiB perl-Getopt-Std noarch 0:1.15-527.fc45 fedora 12.5 KiB perl-Git noarch 0:2.55.0-2.fc45 fedora 64.4 KiB perl-HTTP-Tiny noarch 0:0.096-528.fc45 fedora 162.4 KiB perl-IO x86_64 0:1.56-527.fc45 fedora 147.3 KiB perl-IO-Socket-IP noarch 0:0.44-527.fc45 fedora 100.5 KiB perl-IO-Socket-SSL noarch 0:2.099-2.fc45 fedora 726.9 KiB perl-IPC-Open3 noarch 0:1.24-527.fc45 fedora 27.7 KiB perl-MIME-Base32 noarch 0:1.303-26.fc45 fedora 30.7 KiB perl-MIME-Base64 x86_64 0:3.16-527.fc45 fedora 41.9 KiB perl-Net-SSLeay x86_64 0:1.96-5.fc45 fedora 1.3 MiB perl-POSIX x86_64 0:2.26-527.fc45 fedora 229.3 KiB perl-PathTools x86_64 0:3.95-527.fc45 fedora 180.0 KiB perl-Pod-Escapes noarch 1:1.07-527.fc45 fedora 24.9 KiB perl-Pod-Perldoc noarch 0:3.28.01-527.fc45 fedora 163.8 KiB perl-Pod-Simple noarch 1:3.48-527.fc45 fedora 565.2 KiB perl-Pod-Usage noarch 4:2.05-527.fc45 fedora 86.3 KiB perl-Scalar-List-Utils x86_64 5:1.70-527.fc45 fedora 144.8 KiB perl-SelectSaver noarch 0:1.03-527.fc45 fedora 2.1 KiB perl-Socket x86_64 4:2.041-527.fc45 fedora 120.7 KiB perl-Storable x86_64 1:3.41-527.fc45 fedora 234.9 KiB perl-Symbol noarch 0:1.09-527.fc45 fedora 6.8 KiB perl-Term-ANSIColor noarch 0:5.01-527.fc45 fedora 97.5 KiB perl-Term-Cap noarch 0:1.18-527.fc45 fedora 29.3 KiB perl-TermReadKey x86_64 0:2.38-29.fc45 fedora 63.8 KiB perl-Text-ParseWords noarch 0:3.31-527.fc45 fedora 13.6 KiB perl-Text-Tabs+Wrap noarch 0:2024.001-527.fc45 fedora 22.6 KiB perl-Time-HiRes x86_64 4:1.9780-527.fc45 fedora 115.6 KiB perl-Time-Local noarch 2:1.350-527.fc45 fedora 69.0 KiB perl-URI noarch 0:5.35-2.fc45 fedora 268.2 KiB perl-base noarch 0:2.27-527.fc45 fedora 12.6 KiB perl-constant noarch 0:1.33-528.fc45 fedora 26.3 KiB perl-if noarch 0:0.61.000-527.fc45 fedora 5.8 KiB perl-interpreter x86_64 4:5.44.0-527.fc45 fedora 119.8 KiB perl-lib x86_64 0:0.65-527.fc45 fedora 8.5 KiB perl-libnet noarch 0:3.15-528.fc45 fedora 288.4 KiB perl-libs x86_64 4:5.44.0-527.fc45 fedora 12.0 MiB perl-locale noarch 0:1.13-527.fc45 fedora 6.1 KiB perl-mro x86_64 0:1.30-527.fc45 fedora 41.4 KiB perl-overload noarch 0:1.40-527.fc45 fedora 71.6 KiB perl-overloading noarch 0:0.03-527.fc45 fedora 4.8 KiB perl-parent noarch 1:0.244-527.fc45 fedora 10.3 KiB perl-podlators noarch 1:6.1.0-2.fc45 fedora 324.7 KiB perl-vars noarch 0:1.05-527.fc45 fedora 3.9 KiB pixman x86_64 0:0.46.2-4.fc45 fedora 718.3 KiB python-pip-wheel noarch 0:26.1.2-2.fc45 fedora 1.2 MiB python3-construct noarch 0:2.10.70-14.fc45 fedora 1.0 MiB python3-enchant noarch 0:3.3.0-4.fc45 fedora 435.4 KiB python3-file-magic noarch 0:5.47-3.fc45 fedora 28.7 KiB python3-libs x86_64 0:3.15.0~rc1-1.fc45 fedora 48.1 MiB python3-packaging noarch 0:26.2-4.fc45 fedora 1.0 MiB python3-pybeam noarch 0:0.8.1-4.fc45 fedora 46.7 KiB python3-pyxdg noarch 0:0.28-4.fc45 fedora 471.7 KiB python3-rpm x86_64 0:6.0.92-2.fc45 fedora 179.3 KiB python3-six noarch 0:1.17.0-10.fc45 fedora 118.2 KiB python3-tomli-w noarch 0:1.2.0-12.fc45 fedora 35.2 KiB python3-zstandard x86_64 0:0.25.0-5.fc45 fedora 2.3 MiB rav1e-libs x86_64 0:0.8.1-4.fc45 fedora 3.0 MiB rpmlint-fedora-license-data noarch 0:1.75-2.fc45 fedora 23.7 KiB shared-mime-info x86_64 0:2.5.1-2.fc45 fedora 6.6 MiB snappy x86_64 0:1.2.2-6.fc45 fedora 79.9 KiB soxr x86_64 0:0.1.3-22.fc45 fedora 191.3 KiB speex x86_64 0:1.2.0-22.fc45 fedora 128.4 KiB spirv-tools-libs x86_64 0:2026.2-3.fc45 fedora 6.3 MiB svt-av1-libs x86_64 0:3.1.2-3.fc45 fedora 5.6 MiB twolame-libs x86_64 0:0.4.0-10.fc45 fedora 165.4 KiB tzdata noarch 0:2026c-1.fc45 fedora 1.2 MiB vo-amrwbenc x86_64 0:0.1.3-25.fc45 fedora 153.8 KiB xevd-libs x86_64 0:0.7.0-2.fc45 fedora 384.0 KiB xeve-libs x86_64 0:0.7.0-2.fc45 fedora 916.8 KiB xml-common noarch 0:0.6.3-69.fc45 fedora 78.4 KiB xvidcore x86_64 0:1.3.7-20.fc45 fedora 882.2 KiB zvbi x86_64 0:0.2.44-4.fc45 fedora 1.2 MiB Transaction Summary: Installing: 198 packages Total size of inbound packages is 133 MiB. Need to download 133 MiB. After this operation, 491 MiB extra will be used (install 491 MiB, remove 0 B). [ 1/198] git-0:2.55.0-2.fc45.x86_64 100% | 10.1 MiB/s | 41.4 KiB | 00m00s [ 2/198] rpmlint-0:2.9.0-3.fc45.noarch 100% | 21.0 MiB/s | 365.6 KiB | 00m00s [ 3/198] python3-0:3.15.0~rc1-1.fc45.x 100% | 6.6 MiB/s | 27.0 KiB | 00m00s [ 4/198] git-core-0:2.55.0-2.fc45.x86_ 100% | 160.6 MiB/s | 5.5 MiB | 00m00s [ 5/198] perl-File-Basename-0:2.86-527 100% | 5.5 MiB/s | 16.8 KiB | 00m00s [ 6/198] perl-Getopt-Long-1:2.58-527.f 100% | 20.6 MiB/s | 63.2 KiB | 00m00s [ 7/198] perl-Git-0:2.55.0-2.fc45.noar 100% | 6.2 MiB/s | 38.0 KiB | 00m00s [ 8/198] perl-IPC-Open3-0:1.24-527.fc4 100% | 11.6 MiB/s | 23.7 KiB | 00m00s [ 9/198] perl-PathTools-0:3.95-527.fc4 100% | 28.6 MiB/s | 88.0 KiB | 00m00s [ 10/198] perl-TermReadKey-0:2.38-29.fc 100% | 4.9 MiB/s | 35.1 KiB | 00m00s [ 11/198] perl-interpreter-4:5.44.0-527 100% | 11.8 MiB/s | 72.7 KiB | 00m00s [ 12/198] perl-lib-0:0.65-527.fc45.x86_ 100% | 2.4 MiB/s | 14.6 KiB | 00m00s [ 13/198] jq-0:1.8.2-5.fc45.x86_64 100% | 2.3 MiB/s | 222.4 KiB | 00m00s [ 14/198] desktop-file-utils-0:0.28-8.f 100% | 22.9 MiB/s | 70.3 KiB | 00m00s [ 15/198] dash-0:0.5.13.2-2.fc45.x86_64 100% | 25.4 MiB/s | 104.0 KiB | 00m00s [ 16/198] devscripts-checkbashisms-0:2. 100% | 10.0 MiB/s | 30.6 KiB | 00m00s [ 17/198] python3-enchant-0:3.3.0-4.fc4 100% | 22.2 MiB/s | 113.7 KiB | 00m00s [ 18/198] python3-file-magic-0:5.47-3.f 100% | 6.5 MiB/s | 19.8 KiB | 00m00s [ 19/198] python3-packaging-0:26.2-4.fc 100% | 77.5 MiB/s | 238.0 KiB | 00m00s [ 20/198] python3-pybeam-0:0.8.1-4.fc45 100% | 6.3 MiB/s | 32.1 KiB | 00m00s [ 21/198] python3-pyxdg-0:0.28-4.fc45.n 100% | 32.6 MiB/s | 133.5 KiB | 00m00s [ 22/198] python3-tomli-w-0:1.2.0-12.fc 100% | 7.6 MiB/s | 23.3 KiB | 00m00s [ 23/198] python3-rpm-0:6.0.92-2.fc45.x 100% | 9.7 MiB/s | 69.8 KiB | 00m00s [ 24/198] python3-zstandard-0:0.25.0-5. 100% | 171.8 MiB/s | 703.5 KiB | 00m00s [ 25/198] rpmlint-fedora-license-data-0 100% | 5.6 MiB/s | 28.4 KiB | 00m00s [ 26/198] oniguruma-0:6.9.10-5.fc45.x86 100% | 54.4 MiB/s | 223.0 KiB | 00m00s [ 27/198] expat-0:2.8.1-2.fc45.x86_64 100% | 25.4 MiB/s | 129.9 KiB | 00m00s [ 28/198] less-0:704-3.fc45.x86_64 100% | 44.6 MiB/s | 228.2 KiB | 00m00s [ 29/198] git-core-doc-0:2.55.0-2.fc45. 100% | 25.8 MiB/s | 3.2 MiB | 00m00s [ 30/198] openssh-clients-0:10.4p1-4.fc 100% | 100.6 MiB/s | 824.2 KiB | 00m00s [ 31/198] perl-Carp-0:1.54-527.fc45.noa 100% | 3.5 MiB/s | 28.6 KiB | 00m00s [ 32/198] perl-Exporter-0:5.79-527.fc45 100% | 6.0 MiB/s | 30.6 KiB | 00m00s [ 33/198] perl-Pod-Usage-4:2.05-527.fc4 100% | 13.1 MiB/s | 40.4 KiB | 00m00s [ 34/198] perl-Text-ParseWords-0:3.31-5 100% | 5.3 MiB/s | 16.2 KiB | 00m00s [ 35/198] perl-base-0:2.27-527.fc45.noa 100% | 5.2 MiB/s | 15.9 KiB | 00m00s [ 36/198] perl-constant-0:1.33-528.fc45 100% | 7.4 MiB/s | 22.7 KiB | 00m00s [ 37/198] perl-overload-0:1.40-527.fc45 100% | 8.8 MiB/s | 45.2 KiB | 00m00s [ 38/198] perl-Error-1:0.17030-4.fc45.n 100% | 6.6 MiB/s | 40.4 KiB | 00m00s [ 39/198] perl-Fcntl-0:1.20-527.fc45.x8 100% | 4.8 MiB/s | 29.4 KiB | 00m00s [ 40/198] python3-libs-0:3.15.0~rc1-1.f 100% | 196.7 MiB/s | 11.2 MiB | 00m00s [ 41/198] perl-IO-0:1.56-527.fc45.x86_6 100% | 5.1 MiB/s | 83.0 KiB | 00m00s [ 42/198] perl-POSIX-0:2.26-527.fc45.x8 100% | 7.9 MiB/s | 96.6 KiB | 00m00s [ 43/198] perl-Symbol-0:1.09-527.fc45.n 100% | 4.5 MiB/s | 13.9 KiB | 00m00s [ 44/198] perl-Errno-0:1.39-527.fc45.x8 100% | 4.8 MiB/s | 14.6 KiB | 00m00s [ 45/198] perl-Scalar-List-Utils-5:1.70 100% | 24.4 MiB/s | 75.1 KiB | 00m00s [ 46/198] perl-DynaLoader-0:1.57-527.fc 100% | 8.4 MiB/s | 25.7 KiB | 00m00s [ 47/198] perl-vars-0:1.05-527.fc45.noa 100% | 4.1 MiB/s | 12.7 KiB | 00m00s [ 48/198] emacs-filesystem-1:30.2-3.fc4 100% | 1.6 MiB/s | 8.1 KiB | 00m00s [ 49/198] perl-libs-4:5.44.0-527.fc45.x 100% | 146.6 MiB/s | 2.6 MiB | 00m00s [ 50/198] perl-File-Temp-1:0.231.200-52 100% | 5.8 MiB/s | 59.3 KiB | 00m00s [ 51/198] glib2-0:2.89.3-1.fc45.x86_64 100% | 144.1 MiB/s | 3.2 MiB | 00m00s [ 52/198] mpdecimal-0:4.0.1-4.fc45.x86_ 100% | 13.7 MiB/s | 98.5 KiB | 00m00s [ 53/198] python3-construct-0:2.10.70-1 100% | 17.4 MiB/s | 160.2 KiB | 00m00s [ 54/198] libedit-0:3.1-60.20260512cvs. 100% | 53.7 MiB/s | 110.0 KiB | 00m00s [ 55/198] tzdata-0:2026c-1.fc45.noarch 100% | 99.3 MiB/s | 712.0 KiB | 00m00s [ 56/198] python-pip-wheel-0:26.1.2-2.f 100% | 117.5 MiB/s | 1.2 MiB | 00m00s [ 57/198] openssh-0:10.4p1-4.fc45.x86_6 100% | 45.3 MiB/s | 371.1 KiB | 00m00s [ 58/198] perl-Pod-Perldoc-0:3.28.01-52 100% | 16.5 MiB/s | 84.7 KiB | 00m00s [ 59/198] perl-podlators-1:6.1.0-2.fc45 100% | 42.9 MiB/s | 131.6 KiB | 00m00s [ 60/198] perl-mro-0:1.30-527.fc45.x86_ 100% | 9.6 MiB/s | 29.5 KiB | 00m00s [ 61/198] perl-overloading-0:0.03-527.f 100% | 4.1 MiB/s | 12.5 KiB | 00m00s [ 62/198] perl-File-stat-0:1.15-527.fc4 100% | 5.6 MiB/s | 17.2 KiB | 00m00s [ 63/198] perl-Socket-4:2.041-527.fc45. 100% | 13.4 MiB/s | 55.0 KiB | 00m00s [ 64/198] perl-SelectSaver-0:1.03-527.f 100% | 2.8 MiB/s | 11.3 KiB | 00m00s [ 65/198] perl-locale-0:1.13-527.fc45.n 100% | 2.6 MiB/s | 13.2 KiB | 00m00s [ 66/198] perl-File-Path-0:2.18-527.fc4 100% | 11.3 MiB/s | 34.8 KiB | 00m00s [ 67/198] perl-parent-1:0.244-527.fc45. 100% | 4.8 MiB/s | 14.7 KiB | 00m00s [ 68/198] python3-six-0:1.17.0-10.fc45. 100% | 13.6 MiB/s | 41.8 KiB | 00m00s [ 69/198] perl-HTTP-Tiny-0:0.096-528.fc 100% | 19.0 MiB/s | 58.4 KiB | 00m00s [ 70/198] groff-base-0:1.24.1-2.fc45.x8 100% | 153.4 MiB/s | 1.2 MiB | 00m00s [ 71/198] perl-Pod-Simple-1:3.48-527.fc 100% | 43.4 MiB/s | 222.0 KiB | 00m00s [ 72/198] perl-Term-ANSIColor-0:5.01-52 100% | 11.6 MiB/s | 47.3 KiB | 00m00s [ 73/198] perl-Term-Cap-0:1.18-527.fc45 100% | 7.1 MiB/s | 21.7 KiB | 00m00s [ 74/198] perl-Class-Struct-0:0.68-527. 100% | 10.6 MiB/s | 21.8 KiB | 00m00s [ 75/198] perl-IO-Socket-SSL-0:2.099-2. 100% | 57.7 MiB/s | 236.2 KiB | 00m00s [ 76/198] perl-MIME-Base64-0:3.16-527.f 100% | 9.6 MiB/s | 29.6 KiB | 00m00s [ 77/198] perl-Net-SSLeay-0:1.96-5.fc45 100% | 92.3 MiB/s | 378.2 KiB | 00m00s [ 78/198] perl-Time-HiRes-4:1.9780-527. 100% | 13.9 MiB/s | 56.8 KiB | 00m00s [ 79/198] perl-Time-Local-2:1.350-527.f 100% | 11.1 MiB/s | 34.2 KiB | 00m00s [ 80/198] perl-Pod-Escapes-1:1.07-527.f 100% | 6.4 MiB/s | 19.6 KiB | 00m00s [ 81/198] perl-Text-Tabs+Wrap-0:2024.00 100% | 10.5 MiB/s | 21.5 KiB | 00m00s [ 82/198] perl-if-0:0.61.000-527.fc45.n 100% | 6.7 MiB/s | 13.7 KiB | 00m00s [ 83/198] ncurses-0:6.6-3.fc45.x86_64 100% | 140.3 MiB/s | 430.9 KiB | 00m00s [ 84/198] perl-IO-Socket-IP-0:0.44-527. 100% | 13.7 MiB/s | 42.0 KiB | 00m00s [ 85/198] perl-URI-0:5.35-2.fc45.noarch 100% | 49.1 MiB/s | 150.8 KiB | 00m00s [ 86/198] perl-AutoLoader-0:5.74-527.fc 100% | 5.1 MiB/s | 20.9 KiB | 00m00s [ 87/198] perl-MIME-Base32-0:1.303-26.f 100% | 6.7 MiB/s | 20.4 KiB | 00m00s [ 88/198] perl-Data-Dumper-0:2.192-528. 100% | 11.0 MiB/s | 56.4 KiB | 00m00s [ 89/198] perl-libnet-0:3.15-528.fc45.n 100% | 41.8 MiB/s | 128.3 KiB | 00m00s [ 90/198] perl-B-0:1.92-527.fc45.x86_64 100% | 44.4 MiB/s | 181.8 KiB | 00m00s [ 91/198] perl-Digest-MD5-0:2.59-527.fc 100% | 11.6 MiB/s | 35.6 KiB | 00m00s [ 92/198] perl-FileHandle-0:2.05-527.fc 100% | 3.0 MiB/s | 15.2 KiB | 00m00s [ 93/198] perl-Digest-0:1.20-527.fc45.n 100% | 4.8 MiB/s | 24.8 KiB | 00m00s [ 94/198] libappstream-glib-0:0.8.4-1.f 100% | 56.4 MiB/s | 404.6 KiB | 00m00s [ 95/198] gdk-pixbuf2-0:2.44.8-1.fc45.x 100% | 83.1 MiB/s | 510.5 KiB | 00m00s [ 96/198] json-glib-0:1.10.8-11.fc45.x8 100% | 28.7 MiB/s | 176.1 KiB | 00m00s [ 97/198] shared-mime-info-0:2.5.1-2.fc 100% | 117.6 MiB/s | 481.8 KiB | 00m00s [ 98/198] fontconfig-0:2.18.3-1.fc45.x8 100% | 62.2 MiB/s | 382.4 KiB | 00m00s [ 99/198] glycin-libs-0:2.2~beta-1.fc45 100% | 123.8 MiB/s | 1.7 MiB | 00m00s [100/198] libseccomp-0:2.6.1-3.fc45.x86 100% | 18.5 MiB/s | 75.6 KiB | 00m00s [101/198] default-fonts-core-sans-0:4.3 100% | 7.1 MiB/s | 29.1 KiB | 00m00s [102/198] fonts-filesystem-1:5.0.0-4.fc 100% | 2.1 MiB/s | 8.7 KiB | 00m00s [103/198] xml-common-0:0.6.3-69.fc45.no 100% | 3.0 MiB/s | 31.0 KiB | 00m00s [104/198] freetype-0:2.14.3-2.fc45.x86_ 100% | 39.4 MiB/s | 443.5 KiB | 00m00s [105/198] glycin-loaders-0:2.2~beta-1.f 100% | 120.3 MiB/s | 3.4 MiB | 00m00s [106/198] bubblewrap-0:0.11.2-2.fc45.x8 100% | 10.5 MiB/s | 64.4 KiB | 00m00s [107/198] cairo-0:1.18.4-9.fc45.x86_64 100% | 123.1 MiB/s | 756.6 KiB | 00m00s [108/198] libheif-0:1.23.1-9.fc45.x86_6 100% | 101.9 MiB/s | 834.4 KiB | 00m00s [109/198] libjxl-1:0.11.2-2.fc45.x86_64 100% | 121.4 MiB/s | 1.2 MiB | 00m00s [110/198] abattis-cantarell-vf-fonts-0: 100% | 39.1 MiB/s | 120.3 KiB | 00m00s [111/198] google-noto-sans-vf-fonts-0:2 100% | 119.9 MiB/s | 613.8 KiB | 00m00s [112/198] librsvg2-0:2.62.3-3.fc45.x86_ 100% | 109.1 MiB/s | 1.9 MiB | 00m00s [113/198] harfbuzz-0:14.3.1-1.fc45.x86_ 100% | 125.8 MiB/s | 1.1 MiB | 00m00s [114/198] libpng-2:1.6.58-2.fc45.x86_64 100% | 21.0 MiB/s | 129.1 KiB | 00m00s [115/198] libX11-0:1.8.13-2.fc45.x86_64 100% | 94.5 MiB/s | 677.7 KiB | 00m00s [116/198] libXext-0:1.3.6-6.fc45.x86_64 100% | 7.8 MiB/s | 40.1 KiB | 00m00s [117/198] libXrender-0:0.9.12-5.fc45.x8 100% | 5.4 MiB/s | 27.8 KiB | 00m00s [118/198] libxcb-0:1.17.0-8.fc45.x86_64 100% | 46.5 MiB/s | 237.9 KiB | 00m00s [119/198] lzo-0:2.10-17.fc45.x86_64 100% | 17.2 MiB/s | 70.6 KiB | 00m00s [120/198] pixman-0:0.46.2-4.fc45.x86_64 100% | 72.4 MiB/s | 296.7 KiB | 00m00s [121/198] libavutil-free-0:8.1.2-10.fc4 100% | 62.0 MiB/s | 381.2 KiB | 00m00s [122/198] libaom-0:3.13.3-3.fc45.x86_64 100% | 144.9 MiB/s | 1.9 MiB | 00m00s [123/198] libdav1d-0:1.5.3-2.fc45.x86_6 100% | 89.4 MiB/s | 640.9 KiB | 00m00s [124/198] libjpeg-turbo-0:3.1.4.1-2.fc4 100% | 39.5 MiB/s | 242.6 KiB | 00m00s [125/198] libopenjph-0:0.31.0-1.fc45.x8 100% | 34.5 MiB/s | 176.4 KiB | 00m00s [126/198] libavcodec-free-0:8.1.2-10.fc 100% | 173.0 MiB/s | 4.5 MiB | 00m00s [127/198] noopenh264-0:2.6.0-5.fc45.x86 100% | 4.2 MiB/s | 21.6 KiB | 00m00s [128/198] libwebp-0:1.6.0-4.fc45.x86_64 100% | 45.9 MiB/s | 328.9 KiB | 00m00s [129/198] openjpeg-0:2.5.4-4.fc45.x86_6 100% | 64.0 MiB/s | 196.7 KiB | 00m00s [130/198] rav1e-libs-0:0.8.1-4.fc45.x86 100% | 173.9 MiB/s | 1.0 MiB | 00m00s [131/198] highway-0:1.3.0-3.fc45.x86_64 100% | 57.4 MiB/s | 705.1 KiB | 00m00s [132/198] cairo-gobject-0:1.18.4-9.fc45 100% | 1.8 MiB/s | 16.8 KiB | 00m00s [133/198] svt-av1-libs-0:3.1.2-3.fc45.x 100% | 112.3 MiB/s | 2.0 MiB | 00m00s [134/198] google-noto-fonts-common-0:20 100% | 8.2 MiB/s | 16.7 KiB | 00m00s [135/198] pango-0:1.58.2-1.fc45.x86_64 100% | 90.0 MiB/s | 368.6 KiB | 00m00s [136/198] graphite2-0:1.3.14-22.fc45.x8 100% | 30.9 MiB/s | 94.8 KiB | 00m00s [137/198] libX11-common-0:1.8.13-2.fc45 100% | 57.1 MiB/s | 175.5 KiB | 00m00s [138/198] libXau-0:1.0.12-5.fc45.x86_64 100% | 10.9 MiB/s | 33.5 KiB | 00m00s [139/198] aribb24-0:1.0.3^20160216git5e 100% | 10.0 MiB/s | 41.0 KiB | 00m00s [140/198] libvmaf-0:3.2.0-2.fc45.x86_64 100% | 61.8 MiB/s | 316.3 KiB | 00m00s [141/198] codec2-0:1.2.0-10.fc45.x86_64 100% | 104.7 MiB/s | 643.4 KiB | 00m00s [142/198] gsm-0:1.0.24-3.fc45.x86_64 100% | 7.0 MiB/s | 36.1 KiB | 00m00s [143/198] fdk-aac-free-0:2.0.3-3.fc45.x 100% | 48.7 MiB/s | 349.1 KiB | 00m00s [144/198] ilbc-0:3.0.4-21.fc45.x86_64 100% | 11.2 MiB/s | 57.4 KiB | 00m00s [145/198] lame-libs-0:3.100-22.fc45.x86 100% | 110.8 MiB/s | 340.3 KiB | 00m00s [146/198] lcms2-0:2.16-8.fc45.x86_64 100% | 62.0 MiB/s | 190.3 KiB | 00m00s [147/198] libaribcaption-0:1.1.1-5.fc45 100% | 38.1 MiB/s | 117.0 KiB | 00m00s [148/198] liblc3-0:1.1.3-9.fc45.x86_64 100% | 34.5 MiB/s | 105.9 KiB | 00m00s [149/198] libswresample-free-0:8.1.2-10 100% | 23.1 MiB/s | 71.0 KiB | 00m00s [150/198] libtheora-1:1.1.1-42.fc45.x86 100% | 41.3 MiB/s | 169.2 KiB | 00m00s [151/198] libva-0:2.24.1-2.fc45.x86_64 100% | 40.0 MiB/s | 122.8 KiB | 00m00s [152/198] libvorbis-1:1.3.7-21.fc45.x86 100% | 62.1 MiB/s | 190.9 KiB | 00m00s [153/198] libvpl-1:2.17.0-2.fc45.x86_64 100% | 53.8 MiB/s | 165.4 KiB | 00m00s [154/198] openapv-libs-0:0.3.0.0-1.fc45 100% | 22.2 MiB/s | 68.2 KiB | 00m00s [155/198] libvpx-0:1.16.0-3.fc45.x86_64 100% | 134.1 MiB/s | 1.2 MiB | 00m00s [156/198] opencore-amr-0:0.1.6-11.fc45. 100% | 29.7 MiB/s | 182.7 KiB | 00m00s [157/198] opus-0:1.6-3.fc45.x86_64 100% | 49.7 MiB/s | 254.6 KiB | 00m00s [158/198] snappy-0:1.2.2-6.fc45.x86_64 100% | 14.1 MiB/s | 43.2 KiB | 00m00s [159/198] speex-0:1.2.0-22.fc45.x86_64 100% | 23.3 MiB/s | 71.6 KiB | 00m00s [160/198] twolame-libs-0:0.4.0-10.fc45. 100% | 22.2 MiB/s | 68.2 KiB | 00m00s [161/198] vo-amrwbenc-0:0.1.3-25.fc45.x 100% | 41.4 MiB/s | 84.9 KiB | 00m00s [162/198] xevd-libs-0:0.7.0-2.fc45.x86_ 100% | 42.2 MiB/s | 172.7 KiB | 00m00s [163/198] xeve-libs-0:0.7.0-2.fc45.x86_ 100% | 70.5 MiB/s | 288.8 KiB | 00m00s [164/198] xvidcore-0:1.3.7-20.fc45.x86_ 100% | 52.2 MiB/s | 267.4 KiB | 00m00s [165/198] zvbi-0:0.2.44-4.fc45.x86_64 100% | 108.1 MiB/s | 442.9 KiB | 00m00s [166/198] libdrm-0:2.4.134-2.fc45.x86_6 100% | 40.7 MiB/s | 166.7 KiB | 00m00s [167/198] libvdpau-0:1.5-12.fc45.x86_64 100% | 8.0 MiB/s | 16.3 KiB | 00m00s [168/198] libXft-0:2.3.8-11.fc45.x86_64 100% | 36.0 MiB/s | 73.7 KiB | 00m00s [169/198] fribidi-0:1.0.16-5.fc45.x86_6 100% | 13.0 MiB/s | 53.2 KiB | 00m00s [170/198] libthai-0:0.1.30-3.fc45.x86_6 100% | 52.8 MiB/s | 216.1 KiB | 00m00s [171/198] soxr-0:0.1.3-22.fc45.x86_64 100% | 28.6 MiB/s | 87.7 KiB | 00m00s [172/198] libogg-2:1.3.6-4.fc45.x86_64 100% | 8.2 MiB/s | 33.7 KiB | 00m00s [173/198] libX11-xcb-0:1.8.13-2.fc45.x8 100% | 2.7 MiB/s | 11.0 KiB | 00m00s [174/198] libXfixes-0:6.0.1-8.fc45.x86_ 100% | 6.2 MiB/s | 19.1 KiB | 00m00s [175/198] libglvnd-glx-1:1.7.0-10.fc45. 100% | 31.7 MiB/s | 129.7 KiB | 00m00s [176/198] libwayland-client-0:1.26.0-1. 100% | 11.6 MiB/s | 35.5 KiB | 00m00s [177/198] mesa-filesystem-0:26.2.0-1.fc 100% | 4.5 MiB/s | 13.7 KiB | 00m00s [178/198] libpciaccess-0:0.16-18.fc45.x 100% | 6.6 MiB/s | 27.2 KiB | 00m00s [179/198] lpcnetfreedv-0:0.5-11.fc45.x8 100% | 271.6 MiB/s | 7.3 MiB | 00m00s [180/198] libdatrie-0:0.2.14-3.fc45.x86 100% | 3.2 MiB/s | 32.9 KiB | 00m00s [181/198] libglvnd-1:1.7.0-10.fc45.x86_ 100% | 12.4 MiB/s | 114.0 KiB | 00m00s [182/198] mesa-libGL-0:26.2.0-1.fc45.x8 100% | 46.6 MiB/s | 143.1 KiB | 00m00s [183/198] libXxf86vm-0:1.1.6-5.fc45.x86 100% | 5.9 MiB/s | 18.0 KiB | 00m00s [184/198] hwdata-0:0.410-1.fc45.noarch 100% | 155.3 MiB/s | 1.7 MiB | 00m00s [185/198] libxshmfence-0:1.3.2-9.fc45.x 100% | 1.8 MiB/s | 13.1 KiB | 00m00s [186/198] lm_sensors-libs-0:3.6.0-25.fc 100% | 8.1 MiB/s | 41.4 KiB | 00m00s [187/198] mesa-libgbm-0:26.2.0-1.fc45.x 100% | 1.9 MiB/s | 19.6 KiB | 00m00s [188/198] spirv-tools-libs-0:2026.2-3.f 100% | 94.2 MiB/s | 1.8 MiB | 00m00s [189/198] llvm-filesystem-0:22.1.8-20.f 100% | 1.9 MiB/s | 11.8 KiB | 00m00s [190/198] enchant2-0:2.8.19-2.fc45.x86_ 100% | 11.9 MiB/s | 85.0 KiB | 00m00s [191/198] hunspell-0:1.7.3-2.fc45.x86_6 100% | 43.7 MiB/s | 581.7 KiB | 00m00s [192/198] hunspell-en-US-0:0.20260225-3 100% | 23.9 MiB/s | 171.2 KiB | 00m00s [193/198] mesa-dri-drivers-0:26.2.0-1.f 100% | 147.2 MiB/s | 13.8 MiB | 00m00s [194/198] hunspell-filesystem-0:1.7.3-2 100% | 519.1 KiB/s | 7.8 KiB | 00m00s [195/198] perl-Getopt-Std-0:1.15-527.fc 100% | 3.7 MiB/s | 15.4 KiB | 00m00s [196/198] perl-Encode-4:3.24-527.fc45.x 100% | 87.7 MiB/s | 1.1 MiB | 00m00s [197/198] perl-Storable-1:3.41-527.fc45 100% | 10.9 MiB/s | 100.6 KiB | 00m00s [198/198] llvm-libs-0:22.1.8-20.fc45.x8 100% | 193.7 MiB/s | 34.1 MiB | 00m00s -------------------------------------------------------------------------------- [198/198] Total 100% | 195.8 MiB/s | 132.9 MiB | 00m01s Running transaction [ 1/200] Verify package files 100% | 395.0 B/s | 198.0 B | 00m01s [ 2/200] Prepare transaction 100% | 2.8 KiB/s | 198.0 B | 00m00s [ 3/200] Installing glib2-0:2.89.3-1.f 100% | 246.3 MiB/s | 15.3 MiB | 00m00s [ 4/200] Installing expat-0:2.8.1-2.fc 100% | 16.7 MiB/s | 325.6 KiB | 00m00s [ 5/200] Installing libpng-2:1.6.58-2. 100% | 248.9 MiB/s | 254.9 KiB | 00m00s [ 6/200] Installing libX11-xcb-0:1.8.1 100% | 0.0 B/s | 11.7 KiB | 00m00s [ 7/200] Installing libdav1d-0:1.5.3-2 100% | 339.5 MiB/s | 1.7 MiB | 00m00s [ 8/200] Installing fonts-filesystem-1 100% | 769.5 KiB/s | 788.0 B | 00m00s [ 9/200] Installing shared-mime-info-0 100% | 101.2 MiB/s | 3.2 MiB | 00m00s [ 10/200] Installing hunspell-filesyste 100% | 0.0 B/s | 388.0 B | 00m00s [ 11/200] Installing mesa-filesystem-0: 100% | 0.0 B/s | 4.3 KiB | 00m00s [ 12/200] Installing libogg-2:1.3.6-4.f 100% | 49.8 MiB/s | 51.0 KiB | 00m00s [ 13/200] Installing libvpl-1:2.17.0-2. 100% | 212.7 MiB/s | 435.6 KiB | 00m00s [ 14/200] Installing svt-av1-libs-0:3.1 100% | 350.5 MiB/s | 5.6 MiB | 00m00s [ 15/200] Installing rav1e-libs-0:0.8.1 100% | 379.9 MiB/s | 3.0 MiB | 00m00s [ 16/200] Installing openjpeg-0:2.5.4-4 100% | 227.6 MiB/s | 466.2 KiB | 00m00s [ 17/200] Installing noopenh264-0:2.6.0 100% | 0.0 B/s | 40.6 KiB | 00m00s [ 18/200] Installing libwebp-0:1.6.0-4. 100% | 316.5 MiB/s | 972.2 KiB | 00m00s [ 19/200] Installing libedit-0:3.1-60.2 100% | 244.1 MiB/s | 250.0 KiB | 00m00s [ 20/200] Installing libtheora-1:1.1.1- 100% | 238.0 MiB/s | 487.4 KiB | 00m00s [ 21/200] Installing libvorbis-1:1.3.7- 100% | 409.9 MiB/s | 839.6 KiB | 00m00s [ 22/200] Installing hunspell-en-US-0:0 100% | 247.7 MiB/s | 507.4 KiB | 00m00s [ 23/200] Installing hunspell-0:1.7.3-2 100% | 60.5 MiB/s | 1.6 MiB | 00m00s [ 24/200] Installing enchant2-0:2.8.19- 100% | 11.8 MiB/s | 217.8 KiB | 00m00s [ 25/200] Installing abattis-cantarell- 100% | 189.9 MiB/s | 194.4 KiB | 00m00s [ 26/200] Installing aribb24-0:1.0.3^20 100% | 82.4 MiB/s | 84.4 KiB | 00m00s [ 27/200] Installing zvbi-0:0.2.44-4.fc 100% | 44.9 MiB/s | 1.2 MiB | 00m00s [ 28/200] Installing json-glib-0:1.10.8 100% | 148.5 MiB/s | 608.3 KiB | 00m00s [ 29/200] Installing llvm-filesystem-0: 100% | 0.0 B/s | 1.1 KiB | 00m00s [ 30/200] Installing llvm-libs-0:22.1.8 100% | 429.5 MiB/s | 140.5 MiB | 00m00s [ 31/200] Installing spirv-tools-libs-0 100% | 392.5 MiB/s | 6.3 MiB | 00m00s [ 32/200] Installing lm_sensors-libs-0: 100% | 88.7 MiB/s | 90.8 KiB | 00m00s [ 33/200] Installing libxshmfence-0:1.3 100% | 0.0 B/s | 13.4 KiB | 00m00s [ 34/200] Installing hwdata-0:0.410-1.f 100% | 502.2 MiB/s | 10.0 MiB | 00m00s [ 35/200] Installing libpciaccess-0:0.1 100% | 48.6 MiB/s | 49.8 KiB | 00m00s [ 36/200] Installing libdrm-0:2.4.134-2 100% | 200.1 MiB/s | 409.8 KiB | 00m00s [ 37/200] Installing libglvnd-1:1.7.0-1 100% | 515.1 MiB/s | 527.4 KiB | 00m00s [ 38/200] Installing libdatrie-0:0.2.14 100% | 57.5 MiB/s | 58.8 KiB | 00m00s [ 39/200] Installing libthai-0:0.1.30-3 100% | 261.3 MiB/s | 802.7 KiB | 00m00s [ 40/200] Installing libwayland-client- 100% | 65.6 MiB/s | 67.2 KiB | 00m00s [ 41/200] Installing soxr-0:0.1.3-22.fc 100% | 188.8 MiB/s | 193.3 KiB | 00m00s [ 42/200] Installing lpcnetfreedv-0:0.5 100% | 548.9 MiB/s | 14.8 MiB | 00m00s [ 43/200] Installing codec2-0:1.2.0-10. 100% | 341.3 MiB/s | 1.4 MiB | 00m00s [ 44/200] Installing fribidi-0:1.0.16-5 100% | 9.9 MiB/s | 192.6 KiB | 00m00s [ 45/200] Installing xvidcore-0:1.3.7-2 100% | 287.7 MiB/s | 883.9 KiB | 00m00s [ 46/200] Installing xeve-libs-0:0.7.0- 100% | 298.8 MiB/s | 917.9 KiB | 00m00s [ 47/200] Installing xevd-libs-0:0.7.0- 100% | 188.0 MiB/s | 385.1 KiB | 00m00s [ 48/200] Installing vo-amrwbenc-0:0.1. 100% | 151.7 MiB/s | 155.3 KiB | 00m00s [ 49/200] Installing twolame-libs-0:0.4 100% | 162.6 MiB/s | 166.5 KiB | 00m00s [ 50/200] Installing speex-0:1.2.0-22.f 100% | 127.3 MiB/s | 130.3 KiB | 00m00s [ 51/200] Installing snappy-0:1.2.2-6.f 100% | 79.6 MiB/s | 81.6 KiB | 00m00s [ 52/200] Installing opus-0:1.6-3.fc45. 100% | 227.0 MiB/s | 464.8 KiB | 00m00s [ 53/200] Installing opencore-amr-0:0.1 100% | 346.8 MiB/s | 355.1 KiB | 00m00s [ 54/200] Installing openapv-libs-0:0.3 100% | 123.6 MiB/s | 126.5 KiB | 00m00s [ 55/200] Installing libvpx-0:1.16.0-3. 100% | 367.8 MiB/s | 3.3 MiB | 00m00s [ 56/200] Installing liblc3-0:1.1.3-9.f 100% | 167.6 MiB/s | 171.7 KiB | 00m00s [ 57/200] Installing lcms2-0:2.16-8.fc4 100% | 218.5 MiB/s | 447.4 KiB | 00m00s [ 58/200] Installing lame-libs-0:3.100- 100% | 399.5 MiB/s | 1.2 MiB | 00m00s [ 59/200] Installing ilbc-0:3.0.4-21.fc 100% | 90.7 MiB/s | 92.8 KiB | 00m00s [ 60/200] Installing gsm-0:1.0.24-3.fc4 100% | 65.7 MiB/s | 67.3 KiB | 00m00s [ 61/200] Installing fdk-aac-free-0:2.0 100% | 307.5 MiB/s | 629.8 KiB | 00m00s [ 62/200] Installing libvmaf-0:3.2.0-2. 100% | 395.5 MiB/s | 1.2 MiB | 00m00s [ 63/200] Installing libaom-0:3.13.3-3. 100% | 391.5 MiB/s | 5.1 MiB | 00m00s [ 64/200] Installing libXau-0:1.0.12-5. 100% | 72.6 MiB/s | 74.3 KiB | 00m00s [ 65/200] Installing libxcb-0:1.17.0-8. 100% | 216.3 MiB/s | 1.1 MiB | 00m00s [ 66/200] Installing mesa-libgbm-0:26.2 100% | 19.7 MiB/s | 20.2 KiB | 00m00s [ 67/200] Installing mesa-dri-drivers-0 100% | 432.5 MiB/s | 53.2 MiB | 00m00s [ 68/200] Installing libX11-common-0:1. 100% | 148.2 MiB/s | 1.2 MiB | 00m00s [ 69/200] Installing libX11-0:1.8.13-2. 100% | 337.1 MiB/s | 1.3 MiB | 00m00s [ 70/200] Installing libXext-0:1.3.6-6. 100% | 89.0 MiB/s | 91.1 KiB | 00m00s [ 71/200] Installing libXrender-0:0.9.1 100% | 0.0 B/s | 51.2 KiB | 00m00s [ 72/200] Installing libvdpau-0:1.5-12. 100% | 21.8 MiB/s | 22.3 KiB | 00m00s [ 73/200] Installing libXxf86vm-0:1.1.6 100% | 0.0 B/s | 26.4 KiB | 00m00s [ 74/200] Installing mesa-libGL-0:26.2. 100% | 370.4 MiB/s | 379.3 KiB | 00m00s [ 75/200] Installing libglvnd-glx-1:1.7 100% | 292.3 MiB/s | 598.5 KiB | 00m00s [ 76/200] Installing libXfixes-0:6.0.1- 100% | 0.0 B/s | 31.4 KiB | 00m00s [ 77/200] Installing libva-0:2.24.1-2.f 100% | 170.9 MiB/s | 350.0 KiB | 00m00s [ 78/200] Installing libavutil-free-0:8 100% | 317.9 MiB/s | 976.6 KiB | 00m00s [ 79/200] Installing libswresample-free 100% | 152.8 MiB/s | 156.5 KiB | 00m00s [ 80/200] Installing graphite2-0:1.3.14 100% | 9.9 MiB/s | 193.5 KiB | 00m00s [ 81/200] Installing harfbuzz-0:14.3.1- 100% | 362.0 MiB/s | 2.9 MiB | 00m00s [ 82/200] Installing freetype-0:2.14.3- 100% | 299.5 MiB/s | 920.0 KiB | 00m00s [ 83/200] Installing google-noto-fonts- 100% | 0.0 B/s | 18.5 KiB | 00m00s [ 84/200] Installing google-noto-sans-v 100% | 347.8 MiB/s | 1.4 MiB | 00m00s [ 85/200] Installing default-fonts-core 100% | 17.8 MiB/s | 18.2 KiB | 00m00s [ 86/200] Installing highway-0:1.3.0-3. 100% | 510.6 MiB/s | 5.6 MiB | 00m00s [ 87/200] Installing libjxl-1:0.11.2-2. 100% | 411.4 MiB/s | 4.1 MiB | 00m00s [ 88/200] Installing libopenjph-0:0.31. 100% | 249.8 MiB/s | 511.6 KiB | 00m00s [ 89/200] Installing libjpeg-turbo-0:3. 100% | 402.1 MiB/s | 823.6 KiB | 00m00s [ 90/200] Installing pixman-0:0.46.2-4. 100% | 351.3 MiB/s | 719.4 KiB | 00m00s [ 91/200] Installing lzo-0:2.10-17.fc45 100% | 176.2 MiB/s | 180.4 KiB | 00m00s [ 92/200] Installing bubblewrap-0:0.11. 100% | 5.8 MiB/s | 137.2 KiB | 00m00s [ 93/200] Installing xml-common-0:0.6.3 100% | 79.2 MiB/s | 81.1 KiB | 00m00s [ 94/200] Installing fontconfig-0:2.18. 100% | 1.0 MiB/s | 1.1 MiB | 00m01s [ 95/200] Installing cairo-0:1.18.4-9.f 100% | 304.5 MiB/s | 1.8 MiB | 00m00s [ 96/200] Installing cairo-gobject-0:1. 100% | 0.0 B/s | 31.8 KiB | 00m00s [ 97/200] Installing libaribcaption-0:1 100% | 251.5 MiB/s | 257.5 KiB | 00m00s [ 98/200] Installing libXft-0:2.3.8-11. 100% | 165.8 MiB/s | 169.8 KiB | 00m00s [ 99/200] Installing pango-0:1.58.2-1.f 100% | 46.5 MiB/s | 1.0 MiB | 00m00s [100/200] Installing libseccomp-0:2.6.1 100% | 218.8 MiB/s | 224.0 KiB | 00m00s [101/200] Installing libavcodec-free-0: 100% | 332.9 MiB/s | 10.3 MiB | 00m00s [102/200] Installing libheif-0:1.23.1-9 100% | 337.9 MiB/s | 2.4 MiB | 00m00s [103/200] Installing glycin-loaders-0:2 100% | 447.8 MiB/s | 14.8 MiB | 00m00s [104/200] Installing glycin-libs-0:2.2~ 100% | 364.1 MiB/s | 4.7 MiB | 00m00s [105/200] Installing gdk-pixbuf2-0:2.44 100% | 97.0 MiB/s | 2.6 MiB | 00m00s [106/200] Installing librsvg2-0:2.62.3- 100% | 356.2 MiB/s | 5.0 MiB | 00m00s [107/200] Installing libappstream-glib- 100% | 61.1 MiB/s | 1.4 MiB | 00m00s [108/200] Installing ncurses-0:6.6-3.fc 100% | 22.4 MiB/s | 618.1 KiB | 00m00s [109/200] Installing groff-base-0:1.24. 100% | 102.6 MiB/s | 4.2 MiB | 00m00s [110/200] Installing perl-Digest-0:1.20 100% | 36.1 MiB/s | 37.0 KiB | 00m00s [111/200] Installing perl-Digest-MD5-0: 100% | 60.0 MiB/s | 61.4 KiB | 00m00s [112/200] Installing perl-FileHandle-0: 100% | 0.0 B/s | 9.8 KiB | 00m00s [113/200] Installing perl-B-0:1.92-527. 100% | 252.4 MiB/s | 516.9 KiB | 00m00s [114/200] Installing perl-libnet-0:3.15 100% | 143.4 MiB/s | 293.8 KiB | 00m00s [115/200] Installing perl-Data-Dumper-0 100% | 114.6 MiB/s | 117.4 KiB | 00m00s [116/200] Installing perl-MIME-Base32-0 100% | 31.4 MiB/s | 32.2 KiB | 00m00s [117/200] Installing perl-URI-0:5.35-2. 100% | 91.8 MiB/s | 282.0 KiB | 00m00s [118/200] Installing perl-AutoLoader-0: 100% | 0.0 B/s | 21.0 KiB | 00m00s [119/200] Installing perl-IO-Socket-IP- 100% | 99.9 MiB/s | 102.3 KiB | 00m00s [120/200] Installing perl-IO-Socket-SSL 100% | 238.0 MiB/s | 731.0 KiB | 00m00s [121/200] Installing perl-Net-SSLeay-0: 100% | 270.4 MiB/s | 1.4 MiB | 00m00s [122/200] Installing perl-if-0:0.61.000 100% | 0.0 B/s | 6.2 KiB | 00m00s [123/200] Installing perl-Text-Tabs+Wra 100% | 0.0 B/s | 23.9 KiB | 00m00s [124/200] Installing perl-Pod-Escapes-1 100% | 0.0 B/s | 25.9 KiB | 00m00s [125/200] Installing perl-Time-Local-2: 100% | 68.9 MiB/s | 70.6 KiB | 00m00s [126/200] Installing perl-Time-HiRes-4: 100% | 114.9 MiB/s | 117.7 KiB | 00m00s [127/200] Installing perl-File-Path-0:2 100% | 0.0 B/s | 64.4 KiB | 00m00s [128/200] Installing perl-locale-0:1.13 100% | 0.0 B/s | 6.5 KiB | 00m00s [129/200] Installing perl-HTTP-Tiny-0:0 100% | 160.6 MiB/s | 164.5 KiB | 00m00s [130/200] Installing perl-Pod-Simple-1: 100% | 280.7 MiB/s | 574.8 KiB | 00m00s [131/200] Installing perl-Class-Struct- 100% | 0.0 B/s | 25.9 KiB | 00m00s [132/200] Installing perl-File-Temp-1:0 100% | 161.6 MiB/s | 165.5 KiB | 00m00s [133/200] Installing perl-IPC-Open3-0:1 100% | 0.0 B/s | 28.5 KiB | 00m00s [134/200] Installing perl-Term-Cap-0:1. 100% | 0.0 B/s | 30.6 KiB | 00m00s [135/200] Installing perl-Term-ANSIColo 100% | 96.8 MiB/s | 99.1 KiB | 00m00s [136/200] Installing perl-POSIX-0:2.26- 100% | 225.1 MiB/s | 230.5 KiB | 00m00s [137/200] Installing perl-Pod-Perldoc-0 100% | 8.3 MiB/s | 169.4 KiB | 00m00s [138/200] Installing perl-podlators-1:6 100% | 16.9 MiB/s | 328.7 KiB | 00m00s [139/200] Installing perl-File-stat-0:1 100% | 0.0 B/s | 14.2 KiB | 00m00s [140/200] Installing perl-Socket-4:2.04 100% | 119.8 MiB/s | 122.7 KiB | 00m00s [141/200] Installing perl-SelectSaver-0 100% | 0.0 B/s | 2.5 KiB | 00m00s [142/200] Installing perl-Symbol-0:1.09 100% | 0.0 B/s | 7.3 KiB | 00m00s [143/200] Installing perl-Pod-Usage-4:2 100% | 4.8 MiB/s | 87.8 KiB | 00m00s [144/200] Installing perl-IO-0:1.56-527 100% | 148.0 MiB/s | 151.5 KiB | 00m00s [145/200] Installing perl-overloading-0 100% | 0.0 B/s | 5.5 KiB | 00m00s [146/200] Installing perl-mro-0:1.30-52 100% | 0.0 B/s | 42.5 KiB | 00m00s [147/200] Installing perl-Fcntl-0:1.20- 100% | 0.0 B/s | 45.8 KiB | 00m00s [148/200] Installing perl-base-0:2.27-5 100% | 0.0 B/s | 13.0 KiB | 00m00s [149/200] Installing perl-Text-ParseWor 100% | 0.0 B/s | 14.6 KiB | 00m00s [150/200] Installing perl-File-Basename 100% | 0.0 B/s | 14.6 KiB | 00m00s [151/200] Installing perl-Getopt-Long-1 100% | 143.8 MiB/s | 147.2 KiB | 00m00s [152/200] Installing perl-Storable-1:3. 100% | 230.9 MiB/s | 236.5 KiB | 00m00s [153/200] Installing perl-Getopt-Std-0: 100% | 0.0 B/s | 13.0 KiB | 00m00s [154/200] Installing perl-MIME-Base64-0 100% | 43.1 MiB/s | 44.1 KiB | 00m00s [155/200] Installing perl-parent-1:0.24 100% | 0.0 B/s | 11.0 KiB | 00m00s [156/200] Installing perl-overload-0:1. 100% | 0.0 B/s | 72.0 KiB | 00m00s [157/200] Installing perl-vars-0:1.05-5 100% | 0.0 B/s | 4.3 KiB | 00m00s [158/200] Installing perl-Scalar-List-U 100% | 145.1 MiB/s | 148.6 KiB | 00m00s [159/200] Installing perl-Errno-0:1.39- 100% | 0.0 B/s | 8.8 KiB | 00m00s [160/200] Installing perl-constant-0:1. 100% | 26.8 MiB/s | 27.4 KiB | 00m00s [161/200] Installing perl-Encode-4:3.24 100% | 156.5 MiB/s | 4.7 MiB | 00m00s [162/200] Installing perl-DynaLoader-0: 100% | 0.0 B/s | 32.5 KiB | 00m00s [163/200] Installing perl-PathTools-0:3 100% | 180.2 MiB/s | 184.5 KiB | 00m00s [164/200] Installing perl-Exporter-0:5. 100% | 0.0 B/s | 55.5 KiB | 00m00s [165/200] Installing perl-Carp-0:1.54-5 100% | 23.3 MiB/s | 47.7 KiB | 00m00s [166/200] Installing perl-libs-4:5.44.0 100% | 294.8 MiB/s | 12.1 MiB | 00m00s [167/200] Installing perl-interpreter-4 100% | 6.2 MiB/s | 121.4 KiB | 00m00s [168/200] Installing devscripts-checkba 100% | 2.9 MiB/s | 53.8 KiB | 00m00s [169/200] Installing perl-TermReadKey-0 100% | 16.1 MiB/s | 66.1 KiB | 00m00s [170/200] Installing perl-lib-0:0.65-52 100% | 0.0 B/s | 8.9 KiB | 00m00s [171/200] Installing perl-Error-1:0.170 100% | 78.1 MiB/s | 80.0 KiB | 00m00s [172/200] Installing openssh-0:10.4p1-4 100% | 75.1 MiB/s | 1.6 MiB | 00m00s [173/200] Installing openssh-clients-0: 100% | 75.8 MiB/s | 2.6 MiB | 00m00s [174/200] Installing tzdata-0:2026c-1.f 100% | 51.9 MiB/s | 1.5 MiB | 00m00s [175/200] Installing python-pip-wheel-0 100% | 622.9 MiB/s | 1.2 MiB | 00m00s [176/200] Installing mpdecimal-0:4.0.1- 100% | 31.1 MiB/s | 222.7 KiB | 00m00s [177/200] Installing python3-libs-0:3.1 100% | 330.2 MiB/s | 48.5 MiB | 00m00s [178/200] Installing python3-0:3.15.0~r 100% | 1.6 MiB/s | 30.5 KiB | 00m00s [179/200] Installing python3-enchant-0: 100% | 217.4 MiB/s | 445.2 KiB | 00m00s [180/200] Installing python3-file-magic 100% | 30.3 MiB/s | 31.0 KiB | 00m00s [181/200] Installing python3-packaging- 100% | 252.9 MiB/s | 1.0 MiB | 00m00s [182/200] Installing python3-pyxdg-0:0. 100% | 235.1 MiB/s | 481.4 KiB | 00m00s [183/200] Installing python3-rpm-0:6.0. 100% | 178.8 MiB/s | 183.1 KiB | 00m00s [184/200] Installing python3-tomli-w-0: 100% | 37.7 MiB/s | 38.6 KiB | 00m00s [185/200] Installing python3-zstandard- 100% | 389.9 MiB/s | 2.3 MiB | 00m00s [186/200] Installing python3-six-0:1.17 100% | 117.6 MiB/s | 120.5 KiB | 00m00s [187/200] Installing python3-construct- 100% | 335.7 MiB/s | 1.0 MiB | 00m00s [188/200] Installing python3-pybeam-0:0 100% | 52.0 MiB/s | 53.2 KiB | 00m00s [189/200] Installing emacs-filesystem-1 100% | 0.0 B/s | 812.0 B | 00m00s [190/200] Installing desktop-file-utils 100% | 11.6 MiB/s | 226.0 KiB | 00m00s [191/200] Installing less-0:704-3.fc45. 100% | 25.0 MiB/s | 487.3 KiB | 00m00s [192/200] Installing git-core-0:2.55.0- 100% | 332.2 MiB/s | 25.6 MiB | 00m00s [193/200] Installing git-core-doc-0:2.5 100% | 374.3 MiB/s | 19.1 MiB | 00m00s [194/200] Installing git-0:2.55.0-2.fc4 100% | 57.6 MiB/s | 59.0 KiB | 00m00s [195/200] Installing perl-Git-0:2.55.0- 100% | 0.0 B/s | 65.4 KiB | 00m00s [196/200] Installing oniguruma-0:6.9.10 100% | 377.5 MiB/s | 773.1 KiB | 00m00s [197/200] Installing dash-0:0.5.13.2-2. 100% | 6.7 MiB/s | 177.1 KiB | 00m00s [198/200] Installing rpmlint-0:2.9.0-3. 100% | 53.5 MiB/s | 1.3 MiB | 00m00s [199/200] Installing rpmlint-fedora-lic 100% | 24.2 MiB/s | 24.8 KiB | 00m00s [200/200] Installing jq-0:1.8.2-5.fc45. 100% | 1.4 MiB/s | 474.6 KiB | 00m00s Complete! INFO: Finish: run INFO:__main__:running command: mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --copyin /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/script /script INFO: mock.py version 6.8 starting (python version = 3.14.5, NVR = mock-6.8-1.fc44), args: /usr/libexec/mock/mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --copyin /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/script /script Start(bootstrap): init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish(bootstrap): init plugins Start: init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish: init plugins INFO: Signal handler active Start: run Mock Version: 6.8 INFO: Mock Version: 6.8 Start(bootstrap): chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start(bootstrap): cleaning package manager metadata Finish(bootstrap): cleaning package manager metadata INFO: Package manager dnf5 detected and used (fallback) Finish(bootstrap): chroot init Start: chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start: cleaning package manager metadata Finish: cleaning package manager metadata INFO: enabled HW Info plugin INFO: Package manager dnf5 detected and used (direct choice) Finish: chroot init INFO: copying /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/script to /var/lib/mock/copr-custom-fedora-45-x86_64/root/script Finish: run INFO:__main__:running command: mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --chroot 'set -ex; chmod a+x /script; rm -rf /workdir; mkdir -p /workdir; chown mockbuild /workdir;' INFO: mock.py version 6.8 starting (python version = 3.14.5, NVR = mock-6.8-1.fc44), args: /usr/libexec/mock/mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --chroot 'set -ex; chmod a+x /script; rm -rf /workdir; mkdir -p /workdir; chown mockbuild /workdir;' Start(bootstrap): init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish(bootstrap): init plugins Start: init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish: init plugins INFO: Signal handler active Start: run Mock Version: 6.8 INFO: Mock Version: 6.8 Start(bootstrap): chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start(bootstrap): cleaning package manager metadata Finish(bootstrap): cleaning package manager metadata INFO: Package manager dnf5 detected and used (fallback) Finish(bootstrap): chroot init Start: chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start: cleaning package manager metadata Finish: cleaning package manager metadata INFO: enabled HW Info plugin INFO: Package manager dnf5 detected and used (direct choice) Finish: chroot init INFO: Running in chroot: ['set -ex; chmod a+x /script; rm -rf /workdir; mkdir -p /workdir; chown mockbuild /workdir;'] Start: chroot ['set -ex; chmod a+x /script; rm -rf /workdir; mkdir -p /workdir; chown mockbuild /workdir;'] + chmod a+x /script + rm -rf /workdir + mkdir -p /workdir + chown mockbuild /workdir Finish: chroot ['set -ex; chmod a+x /script; rm -rf /workdir; mkdir -p /workdir; chown mockbuild /workdir;'] Finish: run INFO:__main__:running command: mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --copyin /var/lib/copr-rpmbuild/results/hook_payload /workdir/hook_payload INFO: mock.py version 6.8 starting (python version = 3.14.5, NVR = mock-6.8-1.fc44), args: /usr/libexec/mock/mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --copyin /var/lib/copr-rpmbuild/results/hook_payload /workdir/hook_payload Start(bootstrap): init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish(bootstrap): init plugins Start: init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish: init plugins INFO: Signal handler active Start: run Mock Version: 6.8 INFO: Mock Version: 6.8 Start(bootstrap): chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start(bootstrap): cleaning package manager metadata Finish(bootstrap): cleaning package manager metadata INFO: Package manager dnf5 detected and used (fallback) Finish(bootstrap): chroot init Start: chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start: cleaning package manager metadata Finish: cleaning package manager metadata INFO: enabled HW Info plugin INFO: Package manager dnf5 detected and used (direct choice) Finish: chroot init INFO: copying /var/lib/copr-rpmbuild/results/hook_payload to /var/lib/mock/copr-custom-fedora-45-x86_64/root/workdir/hook_payload Finish: run INFO:__main__:running command: mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --shell 'chmod a+r /workdir/hook_payload' INFO: mock.py version 6.8 starting (python version = 3.14.5, NVR = mock-6.8-1.fc44), args: /usr/libexec/mock/mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --shell 'chmod a+r /workdir/hook_payload' Start(bootstrap): init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish(bootstrap): init plugins Start: init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish: init plugins INFO: Signal handler active Start: run Start(bootstrap): chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start(bootstrap): cleaning package manager metadata Finish(bootstrap): cleaning package manager metadata INFO: Package manager dnf5 detected and used (fallback) Finish(bootstrap): chroot init Start: chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start: cleaning package manager metadata Finish: cleaning package manager metadata INFO: enabled HW Info plugin INFO: Package manager dnf5 detected and used (direct choice) Finish: chroot init Start: shell ]3008;start=e617cea31d734d0cb70578a83d302b3a;user=root;hostname=aws-x86-64-reserved-prod-19173131-20260817-163014;machineid=ec27318eb4c3c8caadd6d8f07a764711;bootid=c2a5c810d3fc4125b5559caed25c76e2;pid=13171;pidfdid=15801;comm=systemd-nspawn;container=766f7a4a914f4a86b8aabe576b29ddcf;type=container\]11;?\]2;🔵 Container 766f7a4a914f4a86b8aabe576b29ddcf on aws-x86-64-reserved-prod-19173131-20260817-163014\[!p]104\[?7h]3008;end=e617cea31d734d0cb70578a83d302b3a\Finish: shell Finish: run INFO:__main__:running command: mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --unpriv --chroot 'set -xe ; cd /workdir ; COPR_OWNER=lizardbyte COPR_PROJECT=pulls COPR_PACKAGE=Sunshine COPR_RESULTDIR=/workdir /script' INFO: mock.py version 6.8 starting (python version = 3.14.5, NVR = mock-6.8-1.fc44), args: /usr/libexec/mock/mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --unpriv --chroot 'set -xe ; cd /workdir ; COPR_OWNER=lizardbyte COPR_PROJECT=pulls COPR_PACKAGE=Sunshine COPR_RESULTDIR=/workdir /script' Start(bootstrap): init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish(bootstrap): init plugins Start: init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish: init plugins INFO: Signal handler active Start: run Mock Version: 6.8 INFO: Mock Version: 6.8 Start(bootstrap): chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start(bootstrap): cleaning package manager metadata Finish(bootstrap): cleaning package manager metadata INFO: Package manager dnf5 detected and used (fallback) Finish(bootstrap): chroot init Start: chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start: cleaning package manager metadata Finish: cleaning package manager metadata INFO: enabled HW Info plugin INFO: Package manager dnf5 detected and used (direct choice) Finish: chroot init INFO: Running in chroot: ['set -xe ; cd /workdir ; COPR_OWNER=lizardbyte COPR_PROJECT=pulls COPR_PACKAGE=Sunshine COPR_RESULTDIR=/workdir /script'] Start: chroot ['set -xe ; cd /workdir ; COPR_OWNER=lizardbyte COPR_PROJECT=pulls COPR_PACKAGE=Sunshine COPR_RESULTDIR=/workdir /script'] + cd /workdir + COPR_OWNER=lizardbyte + COPR_PROJECT=pulls + COPR_PACKAGE=Sunshine + COPR_RESULTDIR=/workdir + /script + set -e + resultdir=/workdir + git clone https://github.com/lizardbyte/Sunshine.git --depth 1 Cloning into 'Sunshine'... + cd Sunshine + [[ -z '' ]] + [[ -f /workdir/hook_payload ]] + git clone https://github.com/praiskup/copr-ci-tooling /workdir/cct --depth 1 Cloning into '/workdir/cct'... + export PATH=/workdir/cct:/usr/bin:/bin:/usr/sbin:/sbin + PATH=/workdir/cct:/usr/bin:/bin:/usr/sbin:/sbin + echo --- + cat /workdir/hook_payload --- { "type": "PR", "pr_id": "5507", "git_hash": "b17c129490abbe41fd0f942ce685377fd468eaed" }--- + echo --- ++ jq -r '.pr_id // empty' /workdir/hook_payload + PR=5507 + [[ -z 5507 ]] + BRANCH=pr/5507 + copr-travis-checkout /workdir/hook_payload From https://github.com/lizardbyte/Sunshine * [new ref] b17c129490abbe41fd0f942ce685377fd468eaed -> pull-requests/pr-detached-5507 * [new tag] 0.5.0 -> 0.5.0 * [new tag] v0.1.0 -> v0.1.0 * [new tag] v0.1.1 -> v0.1.1 * [new tag] v0.10.0 -> v0.10.0 * [new tag] v0.10.1 -> v0.10.1 * [new tag] v0.11.0 -> v0.11.0 * [new tag] v0.11.1 -> v0.11.1 * [new tag] v0.12.0 -> v0.12.0 * [new tag] v0.13.0 -> v0.13.0 * [new tag] v0.14.0 -> v0.14.0 * [new tag] v0.14.1 -> v0.14.1 * [new tag] v0.2.0 -> v0.2.0 * [new tag] v0.3.0 -> v0.3.0 * [new tag] v0.3.1 -> v0.3.1 * [new tag] v0.4.0 -> v0.4.0 * [new tag] v0.6.0 -> v0.6.0 * [new tag] v0.7.0 -> v0.7.0 * [new tag] v0.7.1 -> v0.7.1 * [new tag] v0.7.7 -> v0.7.7 * [new tag] v0.8.0 -> v0.8.0 * [new tag] v0.9.0 -> v0.9.0 * [new tag] v2025.118.151840 -> v2025.118.151840 * [new tag] v2025.122.141614 -> v2025.122.141614 * [new tag] v2025.628.4510 -> v2025.628.4510 * [new tag] v2025.923.33222 -> v2025.923.33222 * [new tag] v2025.924.154138 -> v2025.924.154138 * [new tag] v2026.516.143833 -> v2026.516.143833 * [new tag] v2026.808.164219 -> v2026.808.164219 Note: switching to 'refs/remotes/pull-requests/pr-detached-5507'. You are in 'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any branches by switching back to a branch. If you want to create a new branch to retain commits you create, you may do so (now or later) by using -c with the switch command. Example: git switch -c Or undo this operation with: git switch - Turn off this advice by setting config variable advice.detachedHead to false HEAD is now at b17c1294 Merge 3eff04a3a255ad4ba00dbdef040c70f6235d3403 into 687e12d013a838e1769ffdf996eb1d5ef8402660 + EXCLUDED_PATHS=() + [[ -f .copr-ci ]] + [[ 0 -gt 0 ]] + git submodule update --init --recursive --depth 1 Submodule 'packaging/linux/flatpak/deps/flatpak-builder-tools' (https://github.com/flatpak/flatpak-builder-tools.git) registered for path 'packaging/linux/flatpak/deps/flatpak-builder-tools' Submodule 'third-party/Simple-Web-Server' (https://github.com/LizardByte-infrastructure/Simple-Web-Server.git) registered for path 'third-party/Simple-Web-Server' Submodule 'third-party/TPCircularBuffer' (https://github.com/michaeltyson/TPCircularBuffer.git) registered for path 'third-party/TPCircularBuffer' Submodule 'third-party/ViGEmClient' (https://github.com/LizardByte/Virtual-Gamepad-Emulation-Client.git) registered for path 'third-party/ViGEmClient' Submodule 'third-party/build-deps' (https://github.com/LizardByte/build-deps.git) registered for path 'third-party/build-deps' Submodule 'third-party/doxyconfig' (https://github.com/LizardByte/doxyconfig.git) registered for path 'third-party/doxyconfig' Submodule 'third-party/glad' (https://github.com/Dav1dde/glad.git) registered for path 'third-party/glad' Submodule 'third-party/libdisplaydevice' (https://github.com/LizardByte/libdisplaydevice.git) registered for path 'third-party/libdisplaydevice' Submodule 'third-party/libvirtualhid' (https://github.com/LizardByte/libvirtualhid.git) registered for path 'third-party/libvirtualhid' Submodule 'third-party/lizardbyte-common' (https://github.com/LizardByte/lizardbyte-common.git) registered for path 'third-party/lizardbyte-common' Submodule 'third-party/moonlight-common-c' (https://github.com/moonlight-stream/moonlight-common-c.git) registered for path 'third-party/moonlight-common-c' Submodule 'third-party/nvapi' (https://github.com/NVIDIA/nvapi.git) registered for path 'third-party/nvapi' Submodule 'third-party/plasma-wayland-protocols' (https://github.com/KDE/plasma-wayland-protocols.git) registered for path 'third-party/plasma-wayland-protocols' Submodule 'third-party/tray' (https://github.com/LizardByte/tray.git) registered for path 'third-party/tray' Submodule 'third-party/wayland-protocols' (https://github.com/LizardByte-infrastructure/wayland-protocols.git) registered for path 'third-party/wayland-protocols' Submodule 'third-party/wlr-protocols' (https://github.com/LizardByte-infrastructure/wlr-protocols.git) registered for path 'third-party/wlr-protocols' Cloning into '/workdir/Sunshine/packaging/linux/flatpak/deps/flatpak-builder-tools'... Cloning into '/workdir/Sunshine/third-party/Simple-Web-Server'... Cloning into '/workdir/Sunshine/third-party/TPCircularBuffer'... Cloning into '/workdir/Sunshine/third-party/ViGEmClient'... Cloning into '/workdir/Sunshine/third-party/build-deps'... Cloning into '/workdir/Sunshine/third-party/doxyconfig'... Cloning into '/workdir/Sunshine/third-party/glad'... Cloning into '/workdir/Sunshine/third-party/libdisplaydevice'... Cloning into '/workdir/Sunshine/third-party/libvirtualhid'... Cloning into '/workdir/Sunshine/third-party/lizardbyte-common'... Cloning into '/workdir/Sunshine/third-party/moonlight-common-c'... Cloning into '/workdir/Sunshine/third-party/nvapi'... Cloning into '/workdir/Sunshine/third-party/plasma-wayland-protocols'... Cloning into '/workdir/Sunshine/third-party/tray'... Cloning into '/workdir/Sunshine/third-party/wayland-protocols'... Cloning into '/workdir/Sunshine/third-party/wlr-protocols'... From https://github.com/flatpak/flatpak-builder-tools * branch ac5a296ac6111aa2319daf532f609a067b88d8a9 -> FETCH_HEAD Submodule path 'packaging/linux/flatpak/deps/flatpak-builder-tools': checked out 'ac5a296ac6111aa2319daf532f609a067b88d8a9' Submodule path 'third-party/Simple-Web-Server': checked out '546895a93a29062bb178367b46c7afb72da9881e' Submodule path 'third-party/TPCircularBuffer': checked out 'cc520397504bb72bc6df79ff03eb72988a6dc50d' Submodule path 'third-party/ViGEmClient': checked out '8d71f6740ffff4671cdadbca255ce528e3cd3fef' From https://github.com/LizardByte/build-deps * branch a9a9277cdafe8a0ff9f197915fe43b383ed4f36b -> FETCH_HEAD Submodule path 'third-party/build-deps': checked out 'a9a9277cdafe8a0ff9f197915fe43b383ed4f36b' Submodule 'third-party/FFmpeg/AMF' (https://github.com/GPUOpen-LibrariesAndSDKs/AMF.git) registered for path 'third-party/build-deps/third-party/FFmpeg/AMF' Submodule 'third-party/FFmpeg/FFmpeg' (https://github.com/FFmpeg/FFmpeg.git) registered for path 'third-party/build-deps/third-party/FFmpeg/FFmpeg' Submodule 'third-party/FFmpeg/SVT-AV1' (https://github.com/LizardByte-infrastructure/SVT-AV1.git) registered for path 'third-party/build-deps/third-party/FFmpeg/SVT-AV1' Submodule 'third-party/FFmpeg/Vulkan-Headers' (https://github.com/KhronosGroup/Vulkan-Headers.git) registered for path 'third-party/build-deps/third-party/FFmpeg/Vulkan-Headers' Submodule 'third-party/FFmpeg/Vulkan-Loader' (https://github.com/KhronosGroup/Vulkan-Loader.git) registered for path 'third-party/build-deps/third-party/FFmpeg/Vulkan-Loader' Submodule 'third-party/FFmpeg/nv-codec-headers' (https://github.com/FFmpeg/nv-codec-headers.git) registered for path 'third-party/build-deps/third-party/FFmpeg/nv-codec-headers' Submodule 'third-party/FFmpeg/x264' (https://github.com/LizardByte-infrastructure/x264.git) registered for path 'third-party/build-deps/third-party/FFmpeg/x264' Submodule 'third-party/FFmpeg/x265_git' (https://github.com/LizardByte-infrastructure/x265_git.git) registered for path 'third-party/build-deps/third-party/FFmpeg/x265_git' Cloning into '/workdir/Sunshine/third-party/build-deps/third-party/FFmpeg/AMF'... Cloning into '/workdir/Sunshine/third-party/build-deps/third-party/FFmpeg/FFmpeg'... Cloning into '/workdir/Sunshine/third-party/build-deps/third-party/FFmpeg/SVT-AV1'... Cloning into '/workdir/Sunshine/third-party/build-deps/third-party/FFmpeg/Vulkan-Headers'... Cloning into '/workdir/Sunshine/third-party/build-deps/third-party/FFmpeg/Vulkan-Loader'... Cloning into '/workdir/Sunshine/third-party/build-deps/third-party/FFmpeg/nv-codec-headers'... Cloning into '/workdir/Sunshine/third-party/build-deps/third-party/FFmpeg/x264'... Cloning into '/workdir/Sunshine/third-party/build-deps/third-party/FFmpeg/x265_git'... From https://github.com/GPUOpen-LibrariesAndSDKs/AMF * branch eadd00804d5f7e5cd8c85d540073198312870776 -> FETCH_HEAD Submodule path 'third-party/build-deps/third-party/FFmpeg/AMF': checked out 'eadd00804d5f7e5cd8c85d540073198312870776' From https://github.com/FFmpeg/FFmpeg * branch 38b88335f99e76ed89ff3c93f877fdefce736c13 -> FETCH_HEAD Submodule path 'third-party/build-deps/third-party/FFmpeg/FFmpeg': checked out '38b88335f99e76ed89ff3c93f877fdefce736c13' From https://github.com/LizardByte-infrastructure/SVT-AV1 * branch 9292ec8e32bce26f781f277ec8739b53426c4300 -> FETCH_HEAD Submodule path 'third-party/build-deps/third-party/FFmpeg/SVT-AV1': checked out '9292ec8e32bce26f781f277ec8739b53426c4300' From https://github.com/KhronosGroup/Vulkan-Headers * branch e3b1eec08173d6b825cd3ac88c885a63b621504a -> FETCH_HEAD Submodule path 'third-party/build-deps/third-party/FFmpeg/Vulkan-Headers': checked out 'e3b1eec08173d6b825cd3ac88c885a63b621504a' From https://github.com/KhronosGroup/Vulkan-Loader * branch 5f157b62e333c63260d05d81bf66faa216ab0fb8 -> FETCH_HEAD Submodule path 'third-party/build-deps/third-party/FFmpeg/Vulkan-Loader': checked out '5f157b62e333c63260d05d81bf66faa216ab0fb8' From https://github.com/FFmpeg/nv-codec-headers * branch 0a6fba9a2820628b8103464f4c8753ee05838baa -> FETCH_HEAD Submodule path 'third-party/build-deps/third-party/FFmpeg/nv-codec-headers': checked out '0a6fba9a2820628b8103464f4c8753ee05838baa' From https://github.com/LizardByte-infrastructure/x264 * branch b35605ace3ddf7c1a5d67a2eb553f034aef41d55 -> FETCH_HEAD Submodule path 'third-party/build-deps/third-party/FFmpeg/x264': checked out 'b35605ace3ddf7c1a5d67a2eb553f034aef41d55' From https://github.com/LizardByte-infrastructure/x265_git * branch 1d117bed4747758b51bd2c124d738527e30392cb -> FETCH_HEAD Submodule path 'third-party/build-deps/third-party/FFmpeg/x265_git': checked out '1d117bed4747758b51bd2c124d738527e30392cb' From https://github.com/LizardByte/doxyconfig * branch e552f7c9f00cd0cf24764a37d0905935b3d2c188 -> FETCH_HEAD Submodule path 'third-party/doxyconfig': checked out 'e552f7c9f00cd0cf24764a37d0905935b3d2c188' Submodule 'doxygen-awesome-css' (https://github.com/jothepro/doxygen-awesome-css.git) registered for path 'third-party/doxyconfig/doxygen-awesome-css' Cloning into '/workdir/Sunshine/third-party/doxyconfig/doxygen-awesome-css'... From https://github.com/jothepro/doxygen-awesome-css * branch d52eafe3e9303399fda15661f3d7bb8fe3d7eabc -> FETCH_HEAD Submodule path 'third-party/doxyconfig/doxygen-awesome-css': checked out 'd52eafe3e9303399fda15661f3d7bb8fe3d7eabc' From https://github.com/Dav1dde/glad * branch 73db193f853e2ee079bf3ca8a64aa2eaf6459043 -> FETCH_HEAD Submodule path 'third-party/glad': checked out '73db193f853e2ee079bf3ca8a64aa2eaf6459043' From https://github.com/LizardByte/libdisplaydevice * branch 6e9722f89103320c948dc1199066c9e17a69e88a -> FETCH_HEAD Submodule path 'third-party/libdisplaydevice': checked out '6e9722f89103320c948dc1199066c9e17a69e88a' Submodule 'third-party/doxyconfig' (https://github.com/LizardByte/doxyconfig.git) registered for path 'third-party/libdisplaydevice/third-party/doxyconfig' Submodule 'third-party/lizardbyte-common' (https://github.com/LizardByte/lizardbyte-common.git) registered for path 'third-party/libdisplaydevice/third-party/lizardbyte-common' Cloning into '/workdir/Sunshine/third-party/libdisplaydevice/third-party/doxyconfig'... Cloning into '/workdir/Sunshine/third-party/libdisplaydevice/third-party/lizardbyte-common'... From https://github.com/LizardByte/doxyconfig * branch e552f7c9f00cd0cf24764a37d0905935b3d2c188 -> FETCH_HEAD Submodule path 'third-party/libdisplaydevice/third-party/doxyconfig': checked out 'e552f7c9f00cd0cf24764a37d0905935b3d2c188' Submodule 'doxygen-awesome-css' (https://github.com/jothepro/doxygen-awesome-css.git) registered for path 'third-party/libdisplaydevice/third-party/doxyconfig/doxygen-awesome-css' Cloning into '/workdir/Sunshine/third-party/libdisplaydevice/third-party/doxyconfig/doxygen-awesome-css'... From https://github.com/jothepro/doxygen-awesome-css * branch d52eafe3e9303399fda15661f3d7bb8fe3d7eabc -> FETCH_HEAD Submodule path 'third-party/libdisplaydevice/third-party/doxyconfig/doxygen-awesome-css': checked out 'd52eafe3e9303399fda15661f3d7bb8fe3d7eabc' From https://github.com/LizardByte/lizardbyte-common * branch 06cd442b808f02f1674f3192a84d25b9a503c482 -> FETCH_HEAD Submodule path 'third-party/libdisplaydevice/third-party/lizardbyte-common': checked out '06cd442b808f02f1674f3192a84d25b9a503c482' Submodule 'third-party/doxyconfig' (https://github.com/LizardByte/doxyconfig.git) registered for path 'third-party/libdisplaydevice/third-party/lizardbyte-common/third-party/doxyconfig' Submodule 'third-party/googletest' (https://github.com/google/googletest.git) registered for path 'third-party/libdisplaydevice/third-party/lizardbyte-common/third-party/googletest' Cloning into '/workdir/Sunshine/third-party/libdisplaydevice/third-party/lizardbyte-common/third-party/doxyconfig'... Cloning into '/workdir/Sunshine/third-party/libdisplaydevice/third-party/lizardbyte-common/third-party/googletest'... From https://github.com/LizardByte/doxyconfig * branch e552f7c9f00cd0cf24764a37d0905935b3d2c188 -> FETCH_HEAD Submodule path 'third-party/libdisplaydevice/third-party/lizardbyte-common/third-party/doxyconfig': checked out 'e552f7c9f00cd0cf24764a37d0905935b3d2c188' Submodule 'doxygen-awesome-css' (https://github.com/jothepro/doxygen-awesome-css.git) registered for path 'third-party/libdisplaydevice/third-party/lizardbyte-common/third-party/doxyconfig/doxygen-awesome-css' Cloning into '/workdir/Sunshine/third-party/libdisplaydevice/third-party/lizardbyte-common/third-party/doxyconfig/doxygen-awesome-css'... From https://github.com/jothepro/doxygen-awesome-css * branch d52eafe3e9303399fda15661f3d7bb8fe3d7eabc -> FETCH_HEAD Submodule path 'third-party/libdisplaydevice/third-party/lizardbyte-common/third-party/doxyconfig/doxygen-awesome-css': checked out 'd52eafe3e9303399fda15661f3d7bb8fe3d7eabc' From https://github.com/google/googletest * branch 52eb8108c5bdec04579160ae17225d66034bd723 -> FETCH_HEAD Submodule path 'third-party/libdisplaydevice/third-party/lizardbyte-common/third-party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' Submodule path 'third-party/libvirtualhid': checked out '6b06ea99f0d96ff54dbd4f4d7adf0588aa154a66' Submodule 'third-party/doxyconfig' (https://github.com/LizardByte/doxyconfig.git) registered for path 'third-party/libvirtualhid/third-party/doxyconfig' Submodule 'third-party/lizardbyte-common' (https://github.com/LizardByte/lizardbyte-common.git) registered for path 'third-party/libvirtualhid/third-party/lizardbyte-common' Cloning into '/workdir/Sunshine/third-party/libvirtualhid/third-party/doxyconfig'... Cloning into '/workdir/Sunshine/third-party/libvirtualhid/third-party/lizardbyte-common'... From https://github.com/LizardByte/doxyconfig * branch e552f7c9f00cd0cf24764a37d0905935b3d2c188 -> FETCH_HEAD Submodule path 'third-party/libvirtualhid/third-party/doxyconfig': checked out 'e552f7c9f00cd0cf24764a37d0905935b3d2c188' Submodule 'doxygen-awesome-css' (https://github.com/jothepro/doxygen-awesome-css.git) registered for path 'third-party/libvirtualhid/third-party/doxyconfig/doxygen-awesome-css' Cloning into '/workdir/Sunshine/third-party/libvirtualhid/third-party/doxyconfig/doxygen-awesome-css'... From https://github.com/jothepro/doxygen-awesome-css * branch d52eafe3e9303399fda15661f3d7bb8fe3d7eabc -> FETCH_HEAD Submodule path 'third-party/libvirtualhid/third-party/doxyconfig/doxygen-awesome-css': checked out 'd52eafe3e9303399fda15661f3d7bb8fe3d7eabc' From https://github.com/LizardByte/lizardbyte-common * branch 011ad2bb139083dcf4ec21f9c09f07470891a668 -> FETCH_HEAD Submodule path 'third-party/libvirtualhid/third-party/lizardbyte-common': checked out '011ad2bb139083dcf4ec21f9c09f07470891a668' Submodule 'third-party/doxyconfig' (https://github.com/LizardByte/doxyconfig.git) registered for path 'third-party/libvirtualhid/third-party/lizardbyte-common/third-party/doxyconfig' Submodule 'third-party/googletest' (https://github.com/google/googletest.git) registered for path 'third-party/libvirtualhid/third-party/lizardbyte-common/third-party/googletest' Cloning into '/workdir/Sunshine/third-party/libvirtualhid/third-party/lizardbyte-common/third-party/doxyconfig'... Cloning into '/workdir/Sunshine/third-party/libvirtualhid/third-party/lizardbyte-common/third-party/googletest'... From https://github.com/LizardByte/doxyconfig * branch e552f7c9f00cd0cf24764a37d0905935b3d2c188 -> FETCH_HEAD Submodule path 'third-party/libvirtualhid/third-party/lizardbyte-common/third-party/doxyconfig': checked out 'e552f7c9f00cd0cf24764a37d0905935b3d2c188' Submodule 'doxygen-awesome-css' (https://github.com/jothepro/doxygen-awesome-css.git) registered for path 'third-party/libvirtualhid/third-party/lizardbyte-common/third-party/doxyconfig/doxygen-awesome-css' Cloning into '/workdir/Sunshine/third-party/libvirtualhid/third-party/lizardbyte-common/third-party/doxyconfig/doxygen-awesome-css'... From https://github.com/jothepro/doxygen-awesome-css * branch d52eafe3e9303399fda15661f3d7bb8fe3d7eabc -> FETCH_HEAD Submodule path 'third-party/libvirtualhid/third-party/lizardbyte-common/third-party/doxyconfig/doxygen-awesome-css': checked out 'd52eafe3e9303399fda15661f3d7bb8fe3d7eabc' From https://github.com/google/googletest + a2118f6...71edd0e main -> origin/main (forced update) From https://github.com/google/googletest * branch 52eb8108c5bdec04579160ae17225d66034bd723 -> FETCH_HEAD Submodule path 'third-party/libvirtualhid/third-party/lizardbyte-common/third-party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' From https://github.com/LizardByte/lizardbyte-common * branch 011ad2bb139083dcf4ec21f9c09f07470891a668 -> FETCH_HEAD Submodule path 'third-party/lizardbyte-common': checked out '011ad2bb139083dcf4ec21f9c09f07470891a668' Submodule 'third-party/doxyconfig' (https://github.com/LizardByte/doxyconfig.git) registered for path 'third-party/lizardbyte-common/third-party/doxyconfig' Submodule 'third-party/googletest' (https://github.com/google/googletest.git) registered for path 'third-party/lizardbyte-common/third-party/googletest' Cloning into '/workdir/Sunshine/third-party/lizardbyte-common/third-party/doxyconfig'... Cloning into '/workdir/Sunshine/third-party/lizardbyte-common/third-party/googletest'... From https://github.com/LizardByte/doxyconfig * branch e552f7c9f00cd0cf24764a37d0905935b3d2c188 -> FETCH_HEAD Submodule path 'third-party/lizardbyte-common/third-party/doxyconfig': checked out 'e552f7c9f00cd0cf24764a37d0905935b3d2c188' Submodule 'doxygen-awesome-css' (https://github.com/jothepro/doxygen-awesome-css.git) registered for path 'third-party/lizardbyte-common/third-party/doxyconfig/doxygen-awesome-css' Cloning into '/workdir/Sunshine/third-party/lizardbyte-common/third-party/doxyconfig/doxygen-awesome-css'... From https://github.com/jothepro/doxygen-awesome-css * branch d52eafe3e9303399fda15661f3d7bb8fe3d7eabc -> FETCH_HEAD Submodule path 'third-party/lizardbyte-common/third-party/doxyconfig/doxygen-awesome-css': checked out 'd52eafe3e9303399fda15661f3d7bb8fe3d7eabc' From https://github.com/google/googletest * branch 52eb8108c5bdec04579160ae17225d66034bd723 -> FETCH_HEAD Submodule path 'third-party/lizardbyte-common/third-party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' Submodule path 'third-party/moonlight-common-c': checked out 'e41355ea01670fd4c830b384009d31dd0339a705' Submodule 'enet' (https://github.com/cgutman/enet.git) registered for path 'third-party/moonlight-common-c/enet' Submodule 'nanors' (https://github.com/sleepybishop/nanors.git) registered for path 'third-party/moonlight-common-c/nanors' Cloning into '/workdir/Sunshine/third-party/moonlight-common-c/enet'... Cloning into '/workdir/Sunshine/third-party/moonlight-common-c/nanors'... Submodule path 'third-party/moonlight-common-c/enet': checked out 'aca87840b57f045a1f7f9299e4b1b9b8e2a5e2f1' From https://github.com/sleepybishop/nanors * branch b1e3c22ca0cdc0bb83e3cd6ed1a2fc77869ed99a -> FETCH_HEAD Submodule path 'third-party/moonlight-common-c/nanors': checked out 'b1e3c22ca0cdc0bb83e3cd6ed1a2fc77869ed99a' Submodule path 'third-party/nvapi': checked out 'cd6918f60b3c9a0476fdfe7e89bb32330602049d' From https://github.com/KDE/plasma-wayland-protocols * branch 4c015e90ae6c88f2ffa766e899387ef431eade49 -> FETCH_HEAD Submodule path 'third-party/plasma-wayland-protocols': checked out '4c015e90ae6c88f2ffa766e899387ef431eade49' From https://github.com/LizardByte/tray * branch 1d0d69623fe7ddb3da180db4b99417f9497d4f79 -> FETCH_HEAD Submodule path 'third-party/tray': checked out '1d0d69623fe7ddb3da180db4b99417f9497d4f79' Submodule 'third-party/doxyconfig' (https://github.com/LizardByte/doxyconfig.git) registered for path 'third-party/tray/third-party/doxyconfig' Submodule 'third-party/lizardbyte-common' (https://github.com/LizardByte/lizardbyte-common.git) registered for path 'third-party/tray/third-party/lizardbyte-common' Cloning into '/workdir/Sunshine/third-party/tray/third-party/doxyconfig'... Cloning into '/workdir/Sunshine/third-party/tray/third-party/lizardbyte-common'... From https://github.com/LizardByte/doxyconfig * branch e552f7c9f00cd0cf24764a37d0905935b3d2c188 -> FETCH_HEAD Submodule path 'third-party/tray/third-party/doxyconfig': checked out 'e552f7c9f00cd0cf24764a37d0905935b3d2c188' Submodule 'doxygen-awesome-css' (https://github.com/jothepro/doxygen-awesome-css.git) registered for path 'third-party/tray/third-party/doxyconfig/doxygen-awesome-css' Cloning into '/workdir/Sunshine/third-party/tray/third-party/doxyconfig/doxygen-awesome-css'... From https://github.com/jothepro/doxygen-awesome-css * branch d52eafe3e9303399fda15661f3d7bb8fe3d7eabc -> FETCH_HEAD Submodule path 'third-party/tray/third-party/doxyconfig/doxygen-awesome-css': checked out 'd52eafe3e9303399fda15661f3d7bb8fe3d7eabc' From https://github.com/LizardByte/lizardbyte-common * branch 011ad2bb139083dcf4ec21f9c09f07470891a668 -> FETCH_HEAD Submodule path 'third-party/tray/third-party/lizardbyte-common': checked out '011ad2bb139083dcf4ec21f9c09f07470891a668' Submodule 'third-party/doxyconfig' (https://github.com/LizardByte/doxyconfig.git) registered for path 'third-party/tray/third-party/lizardbyte-common/third-party/doxyconfig' Submodule 'third-party/googletest' (https://github.com/google/googletest.git) registered for path 'third-party/tray/third-party/lizardbyte-common/third-party/googletest' Cloning into '/workdir/Sunshine/third-party/tray/third-party/lizardbyte-common/third-party/doxyconfig'... Cloning into '/workdir/Sunshine/third-party/tray/third-party/lizardbyte-common/third-party/googletest'... From https://github.com/LizardByte/doxyconfig * branch e552f7c9f00cd0cf24764a37d0905935b3d2c188 -> FETCH_HEAD Submodule path 'third-party/tray/third-party/lizardbyte-common/third-party/doxyconfig': checked out 'e552f7c9f00cd0cf24764a37d0905935b3d2c188' Submodule 'doxygen-awesome-css' (https://github.com/jothepro/doxygen-awesome-css.git) registered for path 'third-party/tray/third-party/lizardbyte-common/third-party/doxyconfig/doxygen-awesome-css' Cloning into '/workdir/Sunshine/third-party/tray/third-party/lizardbyte-common/third-party/doxyconfig/doxygen-awesome-css'... From https://github.com/jothepro/doxygen-awesome-css * branch d52eafe3e9303399fda15661f3d7bb8fe3d7eabc -> FETCH_HEAD Submodule path 'third-party/tray/third-party/lizardbyte-common/third-party/doxyconfig/doxygen-awesome-css': checked out 'd52eafe3e9303399fda15661f3d7bb8fe3d7eabc' From https://github.com/google/googletest * branch 52eb8108c5bdec04579160ae17225d66034bd723 -> FETCH_HEAD Submodule path 'third-party/tray/third-party/lizardbyte-common/third-party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' From https://github.com/LizardByte-infrastructure/wayland-protocols * branch ee78491a237eaff9389a0ccf8680521d074407d3 -> FETCH_HEAD Submodule path 'third-party/wayland-protocols': checked out 'ee78491a237eaff9389a0ccf8680521d074407d3' Submodule path 'third-party/wlr-protocols': checked out 'bf4fc79abc359eea5a0edec0ac6d4a2b2955f82a' ++ git tag --points-at HEAD ++ head -n1 + TAG= TAG=0.0.5507 + [[ -z '' ]] + TAG=0.0.5507 + TAG=0.0.5507 + echo TAG=0.0.5507 ++ git rev-parse HEAD + COMMIT=b17c129490abbe41fd0f942ce685377fd468eaed + echo COMMIT=b17c129490abbe41fd0f942ce685377fd468eaed COMMIT=b17c129490abbe41fd0f942ce685377fd468eaed Found spec file in ./packaging/linux/copr + directories=("." "./packaging/linux/copr") + for dir in "${directories[@]}" + [[ -f ./Sunshine.spec ]] + for dir in "${directories[@]}" + [[ -f ./packaging/linux/copr/Sunshine.spec ]] + echo 'Found spec file in ./packaging/linux/copr' + rpmlint ./packaging/linux/copr/Sunshine.spec ============================ rpmlint session starts ============================ rpmlint: 2.9.0 configuration: /usr/lib/python3.15/site-packages/rpmlint/configdefaults.toml /etc/xdg/rpmlint/fedora-spdx-licenses.toml /etc/xdg/rpmlint/fedora.toml /etc/xdg/rpmlint/scoring.toml /etc/xdg/rpmlint/users-groups.toml /etc/xdg/rpmlint/warn-on-functions.toml checks: 32, packages: 1 Sunshine.spec: W: specfile-warning sh: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8): No such file or directory Sunshine.spec: W: invalid-url Source0: tarball.tar.gz 0 packages and 1 specfiles checked; 0 errors, 2 warnings, 1 filtered, 0 badness; has taken 0.0 s + mv ./packaging/linux/copr/Sunshine.spec /workdir + break + [[ ! -f /workdir/Sunshine.spec ]] + sed -i 's|%global build_version 0|%global build_version 0.0.5507|' /workdir/Sunshine.spec + sed -i 's|%global branch 0|%global branch pr/5507|' /workdir/Sunshine.spec + sed -i 's|%global commit 0|%global commit b17c129490abbe41fd0f942ce685377fd468eaed|' /workdir/Sunshine.spec + TAR_EXCLUDE_ARGS=() + tar -czf /workdir/tarball.tar.gz . Finish: chroot ['set -xe ; cd /workdir ; COPR_OWNER=lizardbyte COPR_PROJECT=pulls COPR_PACKAGE=Sunshine COPR_RESULTDIR=/workdir /script'] Finish: run Running: mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --copyout /workdir /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/srcdir cmd: ['mock', '-r', '/var/lib/copr-rpmbuild/results/mock-config.cfg', '--copyout', '/workdir', '/var/lib/copr-rpmbuild/workspace/workdir-r081tmic/srcdir'] cwd: . rc: 0 stdout: stderr: INFO: mock.py version 6.8 starting (python version = 3.14.5, NVR = mock-6.8-1.fc44), args: /usr/libexec/mock/mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --copyout /workdir /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/srcdir Start(bootstrap): init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish(bootstrap): init plugins Start: init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish: init plugins INFO: Signal handler active Start: run Mock Version: 6.8 INFO: Mock Version: 6.8 Start(bootstrap): chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64-bootstrap/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start(bootstrap): cleaning package manager metadata Finish(bootstrap): cleaning package manager metadata INFO: Package manager dnf5 detected and used (fallback) Finish(bootstrap): chroot init Start: chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-45-x86_64/root. INFO: calling preinit hooks INFO: enabled root cache INFO: enabled package manager cache Start: cleaning package manager metadata Finish: cleaning package manager metadata INFO: enabled HW Info plugin INFO: Package manager dnf5 detected and used (direct choice) Finish: chroot init INFO: copying /var/lib/mock/copr-custom-fedora-45-x86_64/root/workdir to /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/srcdir Finish: run Running: mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --scrub all cmd: ['mock', '-r', '/var/lib/copr-rpmbuild/results/mock-config.cfg', '--scrub', 'all'] cwd: . rc: 0 stdout: stderr: INFO: mock.py version 6.8 starting (python version = 3.14.5, NVR = mock-6.8-1.fc44), args: /usr/libexec/mock/mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --scrub all Start(bootstrap): init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish(bootstrap): init plugins Start: init plugins INFO: tmpfs initialized INFO: selinux enabled INFO: chroot_scan: initialized INFO: compress_logs: initialized Finish: init plugins INFO: Signal handler active Start: run Start: scrub ['all'] INFO: scrubbing everything for mock-config INFO: unmounting tmpfs. INFO: unmounting tmpfs. Finish: scrub ['all'] Finish: run Running: rpmbuild -bs --define '_sourcedir /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/srcdir' --define '_rpmdir /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/srcdir' --define '_builddir /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/srcdir' --define '_specdir /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/srcdir' --define '_srcrpmdir /var/lib/copr-rpmbuild/results' /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/srcdir/Sunshine.spec cmd: ['rpmbuild', '-bs', '--define', '_sourcedir /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/srcdir', '--define', '_rpmdir /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/srcdir', '--define', '_builddir /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/srcdir', '--define', '_specdir /var/lib/copr-rpmbuild/workspace/workdir-r081tmic/srcdir', '--define', '_srcrpmdir /var/lib/copr-rpmbuild/results', '/var/lib/copr-rpmbuild/workspace/workdir-r081tmic/srcdir/Sunshine.spec'] cwd: . rc: 0 stdout: Wrote: /var/lib/copr-rpmbuild/results/Sunshine-0.0.5507-1.src.rpm RPM build warnings: stderr: warning: %source_date_epoch_from_changelog is set, but %changelog has no entries to take a date from %source_date_epoch_from_changelog is set, but %changelog has no entries to take a date from Output: ['mock-config.cfg', 'Sunshine-0.0.5507-1.src.rpm', 'hook_payload'] Running SRPMResults tool Using distributions_in_build for this build. Extracting arch-specific tags for fedora-43 Extracting arch-specific tags for fedora-44 Extracting arch-specific tags for fedora-45 Tag "fedora-45" is not defined in "/tmp/tmpod1n4rxf" database, macros have unexpected values! Extracting arch-specific tags for fedora-rawhide Package info: { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5507", "release": "1" } SRPMResults finished