Warning: Permanently added '13.222.237.99' (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/10191687 Version: 1.6 PID: 10029 Logging PID: 10031 Task: {'appstream': False, 'background': True, 'build_id': 10191687, 'chroot': 'fedora-44-x86_64', 'package_name': 'Sunshine', 'project_dirname': 'beta', 'project_name': 'beta', 'project_owner': 'lizardbyte', 'repos': [], 'sandbox': 'lizardbyte/beta--71d110d7-b653-4759-9db4-ee1d046290af', 'source_json': {'builddeps': 'git jq python3 rpmlint', 'chroot': 'fedora-44-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': 'tmpd3r13gn_'}, 'source_type': 9, 'submitter': None, 'task_id': '10191687'} 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-ne_vjoza/script --builddeps 'git jq python3 rpmlint' --hook-payload-file /var/lib/copr-rpmbuild/results/hook_payload --env COPR_OWNER=lizardbyte --env COPR_PROJECT=beta --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.6 starting (python version = 3.14.2, NVR = mock-6.6-1.fc43), 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.6 INFO: Mock Version: 6.6 Start(bootstrap): chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-44-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:44 INFO: Pulling image: registry.fedoraproject.org/fedora:44 INFO: Tagging container image as mock-bootstrap-cea66ee4-9d99-49fb-8c96-2379647e18c3 INFO: Checking that b185e93c85e04f235e8e716ea9cf9e27650638f585ebfab9d63a4830199b9943 image matches host's architecture INFO: Copy content of container b185e93c85e04f235e8e716ea9cf9e27650638f585ebfab9d63a4830199b9943 to /var/lib/mock/copr-custom-fedora-44-x86_64-bootstrap/root INFO: mounting b185e93c85e04f235e8e716ea9cf9e27650638f585ebfab9d63a4830199b9943 with podman image mount INFO: image b185e93c85e04f235e8e716ea9cf9e27650638f585ebfab9d63a4830199b9943 as /var/lib/containers/storage/overlay/d03b01aaea35aa4cb318b72a68b7901940295f5deb10adbc234d69e8ad360da4/merged INFO: umounting image b185e93c85e04f235e8e716ea9cf9e27650638f585ebfab9d63a4830199b9943 (/var/lib/containers/storage/overlay/d03b01aaea35aa4cb318b72a68b7901940295f5deb10adbc234d69e8ad360da4/merged) with podman image umount INFO: Removing image mock-bootstrap-cea66ee4-9d99-49fb-8c96-2379647e18c3 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-44-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% | 68.9 KiB/s | 30.1 KiB | 00m00s fedora 100% | 18.5 MiB/s | 36.2 MiB | 00m02s Repositories loaded. Package Arch Version Repository Size Installing group/module packages: bash x86_64 0:5.3.9-3.fc44 fedora 8.5 MiB bzip2 x86_64 0:1.0.8-23.fc44 fedora 95.0 KiB coreutils x86_64 0:9.9-4.fc44 fedora 5.4 MiB cpio x86_64 0:2.15-9.fc44 fedora 1.1 MiB diffutils x86_64 0:3.12-5.fc44 fedora 1.6 MiB fedora-release-common noarch 0:44-0.14 fedora 20.5 KiB findutils x86_64 1:4.10.0-7.fc44 fedora 1.9 MiB gawk x86_64 0:5.3.2-3.fc44 fedora 1.8 MiB glibc-minimal-langpack x86_64 0:2.43-1.fc44 fedora 0.0 B grep x86_64 0:3.12-3.fc44 fedora 1.0 MiB gzip x86_64 0:1.14-2.fc44 fedora 401.6 KiB info x86_64 0:7.2-9.fc44 fedora 365.6 KiB patch x86_64 0:2.8-4.fc44 fedora 226.6 KiB redhat-rpm-config noarch 0:343-19.fc44 fedora 183.6 KiB rpm-build x86_64 0:6.0.1-2.fc44 fedora 294.6 KiB sed x86_64 0:4.9-7.fc44 fedora 857.2 KiB shadow-utils x86_64 2:4.19.0-6.fc44 fedora 4.0 MiB tar x86_64 2:1.35-8.fc44 fedora 3.0 MiB unzip x86_64 0:6.0-69.fc44 fedora 445.8 KiB util-linux x86_64 0:2.41.3-12.fc44 fedora 3.5 MiB which x86_64 0:2.23-4.fc44 fedora 83.4 KiB xz x86_64 1:5.8.2-2.fc44 fedora 1.3 MiB Installing dependencies: R-srpm-macros noarch 0:1.3.4-3.fc44 fedora 3.4 KiB add-determinism x86_64 0:0.7.2-4.fc44 fedora 2.2 MiB alternatives x86_64 0:1.33-5.fc44 fedora 62.1 KiB ansible-srpm-macros noarch 0:1-20.1.fc44 fedora 35.7 KiB audit-libs x86_64 0:4.1.3-1.fc44 fedora 390.5 KiB binutils x86_64 0:2.46-1.fc44 fedora 27.2 MiB build-reproducibility-srpm-macros noarch 0:0.7.2-4.fc44 fedora 1.2 KiB bzip2-libs x86_64 0:1.0.8-23.fc44 fedora 80.5 KiB ca-certificates noarch 0:2025.2.80_v9.0.304-5.fc44 fedora 2.7 MiB cmake-srpm-macros noarch 0:4.2.3-2.fc44 fedora 524.0 B coreutils-common x86_64 0:9.9-4.fc44 fedora 11.2 MiB crypto-policies noarch 0:20251128-3.git19878fe.fc44 fedora 132.6 KiB curl x86_64 0:8.18.0-4.fc44 fedora 480.0 KiB cyrus-sasl-lib x86_64 0:2.1.28-35.fc44 fedora 2.3 MiB debugedit x86_64 0:5.2-6.fc44 fedora 218.3 KiB dwz x86_64 0:0.16-3.fc44 fedora 290.9 KiB ed x86_64 0:1.22.4-2.fc44 fedora 149.1 KiB efi-srpm-macros noarch 0:6-6.fc44 fedora 40.2 KiB elfutils x86_64 0:0.194-3.fc44 fedora 2.9 MiB elfutils-debuginfod-client x86_64 0:0.194-3.fc44 fedora 83.7 KiB elfutils-default-yama-scope noarch 0:0.194-3.fc44 fedora 1.8 KiB elfutils-libelf x86_64 0:0.194-3.fc44 fedora 1.1 MiB elfutils-libs x86_64 0:0.194-3.fc44 fedora 715.3 KiB fedora-gpg-keys noarch 0:44-0.3 fedora 133.4 KiB fedora-release noarch 0:44-0.14 fedora 0.0 B fedora-release-identity-basic noarch 0:44-0.14 fedora 656.0 B fedora-repos noarch 0:44-0.3 fedora 4.9 KiB file x86_64 0:5.46-9.fc44 fedora 100.1 KiB file-libs x86_64 0:5.46-9.fc44 fedora 11.9 MiB filesystem x86_64 0:3.18-52.fc44 fedora 112.0 B filesystem-srpm-macros noarch 0:3.18-52.fc44 fedora 38.2 KiB fonts-srpm-macros noarch 1:5.0.0-2.fc44 fedora 55.8 KiB forge-srpm-macros noarch 0:0.4.0-4.fc44 fedora 38.9 KiB fpc-srpm-macros noarch 0:1.3-16.fc44 fedora 144.0 B gap-srpm-macros noarch 0:2-2.fc44 fedora 2.1 KiB gdb-minimal x86_64 0:17.1-2.fc44 fedora 14.3 MiB gdbm-libs x86_64 1:1.23-11.fc44 fedora 129.6 KiB ghc-srpm-macros noarch 0:1.10-1.fc44 fedora 792.0 B glibc x86_64 0:2.43-1.fc44 fedora 6.9 MiB glibc-common x86_64 0:2.43-1.fc44 fedora 1.0 MiB glibc-gconv-extra x86_64 0:2.43-1.fc44 fedora 7.4 MiB gmp x86_64 1:6.3.0-5.fc44 fedora 815.2 KiB gnat-srpm-macros noarch 0:7-2.fc44 fedora 1.0 KiB gnulib-l10n noarch 0:20241231-2.fc44 fedora 655.0 KiB gnupg2 x86_64 0:2.4.9-5.fc44 fedora 6.5 MiB gnupg2-dirmngr x86_64 0:2.4.9-5.fc44 fedora 633.9 KiB gnupg2-gpg-agent x86_64 0:2.4.9-5.fc44 fedora 682.5 KiB gnupg2-gpgconf x86_64 0:2.4.9-5.fc44 fedora 249.7 KiB gnupg2-keyboxd x86_64 0:2.4.9-5.fc44 fedora 201.2 KiB gnupg2-verify x86_64 0:2.4.9-5.fc44 fedora 360.3 KiB gnutls x86_64 0:3.8.12-1.fc44 fedora 3.7 MiB go-srpm-macros noarch 0:3.8.0-2.fc44 fedora 61.9 KiB gpgverify noarch 0:2.2-4.fc44 fedora 8.7 KiB ima-evm-utils-libs x86_64 0:1.6.2-8.fc44 fedora 60.6 KiB jansson x86_64 0:2.14-4.fc44 fedora 88.9 KiB java-srpm-macros noarch 0:1-8.fc44 fedora 870.0 B json-c x86_64 0:0.18-8.fc44 fedora 82.6 KiB kernel-srpm-macros noarch 0:1.0-28.fc44 fedora 1.9 KiB keyutils-libs x86_64 0:1.6.3-7.fc44 fedora 54.2 KiB krb5-libs x86_64 0:1.22.2-2.fc44 fedora 2.4 MiB libacl x86_64 0:2.3.2-6.fc44 fedora 35.8 KiB libarchive x86_64 0:3.8.4-2.fc44 fedora 991.2 KiB libassuan x86_64 0:2.5.7-5.fc44 fedora 163.8 KiB libattr x86_64 0:2.5.2-8.fc44 fedora 24.3 KiB libblkid x86_64 0:2.41.3-12.fc44 fedora 274.3 KiB libbrotli x86_64 0:1.2.0-3.fc44 fedora 865.0 KiB libcap x86_64 0:2.77-2.fc44 fedora 212.1 KiB libcap-ng x86_64 0:0.9-7.fc44 fedora 68.7 KiB libcbor x86_64 0:0.13.0-2.fc44 fedora 79.5 KiB libcom_err x86_64 0:1.47.3-4.fc44 fedora 63.0 KiB libcurl x86_64 0:8.18.0-4.fc44 fedora 1.0 MiB libeconf x86_64 0:0.7.9-3.fc44 fedora 64.8 KiB libevent x86_64 0:2.1.12-17.fc44 fedora 978.7 KiB libfdisk x86_64 0:2.41.3-12.fc44 fedora 388.3 KiB libffi x86_64 0:3.5.2-2.fc44 fedora 87.7 KiB libfido2 x86_64 0:1.16.0-5.fc44 fedora 246.4 KiB libfsverity x86_64 0:1.6-4.fc44 fedora 28.4 KiB libgcc x86_64 0:16.0.1-0.5.fc44 fedora 270.6 KiB libgcrypt x86_64 0:1.11.2-1.fc44 fedora 1.6 MiB libgomp x86_64 0:16.0.1-0.5.fc44 fedora 571.8 KiB libgpg-error x86_64 0:1.58-2.fc44 fedora 941.6 KiB libidn2 x86_64 0:2.3.8-3.fc44 fedora 556.4 KiB libksba x86_64 0:1.6.7-5.fc44 fedora 414.4 KiB liblastlog2 x86_64 0:2.41.3-12.fc44 fedora 37.6 KiB libmount x86_64 0:2.41.3-12.fc44 fedora 388.6 KiB libnghttp2 x86_64 0:1.68.0-3.fc44 fedora 166.1 KiB libnghttp3 x86_64 0:1.15.0-1.fc44 fedora 159.2 KiB libpkgconf x86_64 0:2.5.1-1.fc44 fedora 90.1 KiB libpsl x86_64 0:0.21.5-7.fc44 fedora 76.3 KiB libselinux x86_64 0:3.10-1.fc44 fedora 201.0 KiB libselinux-utils x86_64 0:3.10-1.fc44 fedora 305.7 KiB libsemanage x86_64 0:3.10-1.fc44 fedora 312.3 KiB libsepol x86_64 0:3.10-1.fc44 fedora 870.0 KiB libsmartcols x86_64 0:2.41.3-12.fc44 fedora 188.3 KiB libssh x86_64 0:0.12.0-1.fc44 fedora 719.1 KiB libssh-config noarch 0:0.12.0-1.fc44 fedora 277.0 B libstdc++ x86_64 0:16.0.1-0.5.fc44 fedora 2.9 MiB libtasn1 x86_64 0:4.20.0-3.fc44 fedora 180.2 KiB libtool-ltdl x86_64 0:2.5.4-10.fc44 fedora 70.0 KiB libunistring x86_64 0:1.1-11.fc44 fedora 1.7 MiB libusb1 x86_64 0:1.0.29-5.fc44 fedora 175.2 KiB libuuid x86_64 0:2.41.3-12.fc44 fedora 37.2 KiB libverto x86_64 0:0.3.2-12.fc44 fedora 25.3 KiB libxcrypt x86_64 0:4.5.2-3.fc44 fedora 293.2 KiB libxml2 x86_64 0:2.12.10-6.fc44 fedora 1.8 MiB libzstd x86_64 0:1.5.7-5.fc44 fedora 956.1 KiB linkdupes x86_64 0:0.7.2-4.fc44 fedora 789.3 KiB lua-libs x86_64 0:5.4.8-5.fc44 fedora 281.7 KiB lua-srpm-macros noarch 0:1-17.fc44 fedora 1.3 KiB lz4-libs x86_64 0:1.10.0-4.fc44 fedora 157.3 KiB mpfr x86_64 0:4.2.2-3.fc44 fedora 849.1 KiB ncurses-base noarch 0:6.6-1.fc44 fedora 329.7 KiB ncurses-libs x86_64 0:6.6-1.fc44 fedora 968.9 KiB nettle x86_64 0:3.10.1-3.fc44 fedora 794.3 KiB ngtcp2 x86_64 0:1.19.0-2.fc44 fedora 330.2 KiB ngtcp2-crypto-ossl x86_64 0:1.19.0-2.fc44 fedora 51.6 KiB npth x86_64 0:1.8-4.fc44 fedora 49.5 KiB ocaml-srpm-macros noarch 0:11-3.fc44 fedora 1.9 KiB openblas-srpm-macros noarch 0:2-21.fc44 fedora 112.0 B openldap x86_64 0:2.6.10-7.fc44 fedora 667.5 KiB openssl-libs x86_64 1:3.5.5-1.fc44 fedora 9.2 MiB p11-kit x86_64 0:0.26.2-1.fc44 fedora 2.6 MiB p11-kit-trust x86_64 0:0.26.2-1.fc44 fedora 478.3 KiB package-notes-srpm-macros noarch 0:0.5-16.fc44 fedora 1.6 KiB pam-libs x86_64 0:1.7.2-1.fc44 fedora 130.5 KiB pcre2 x86_64 0:10.47-1.fc44.1 fedora 718.6 KiB pcre2-syntax noarch 0:10.47-1.fc44.1 fedora 281.9 KiB perl-srpm-macros noarch 0:1-61.fc44 fedora 861.0 B pkgconf x86_64 0:2.5.1-1.fc44 fedora 92.7 KiB pkgconf-m4 noarch 0:2.5.1-1.fc44 fedora 14.3 KiB pkgconf-pkg-config x86_64 0:2.5.1-1.fc44 fedora 989.0 B policycoreutils x86_64 0:3.10-1.fc44 fedora 884.1 KiB popt x86_64 0:1.19-10.fc44 fedora 132.6 KiB publicsuffix-list-dafsa noarch 0:20260116-1.fc44 fedora 70.4 KiB pyproject-srpm-macros noarch 0:1.18.6-2.fc44 fedora 1.9 KiB python-srpm-macros noarch 0:3.14-10.fc44 fedora 51.6 KiB qt5-srpm-macros noarch 0:5.15.18-2.fc44 fedora 500.0 B qt6-srpm-macros noarch 0:6.10.2-1.fc44 fedora 472.0 B readline x86_64 0:8.3-4.fc44 fedora 519.5 KiB rpm x86_64 0:6.0.1-2.fc44 fedora 3.1 MiB rpm-build-libs x86_64 0:6.0.1-2.fc44 fedora 276.3 KiB rpm-libs x86_64 0:6.0.1-2.fc44 fedora 961.2 KiB rpm-plugin-selinux x86_64 0:6.0.1-2.fc44 fedora 11.9 KiB rpm-sequoia x86_64 0:1.10.0-2.fc44 fedora 2.5 MiB rpm-sign-libs x86_64 0:6.0.1-2.fc44 fedora 39.6 KiB rust-srpm-macros noarch 0:28.4-3.fc44 fedora 5.5 KiB selinux-policy noarch 0:42.23-1.fc44 fedora 32.0 KiB selinux-policy-targeted noarch 0:42.23-1.fc44 fedora 18.5 MiB setup noarch 0:2.15.0-28.fc44 fedora 724.9 KiB sqlite-libs x86_64 0:3.51.2-1.fc44 fedora 1.6 MiB systemd-libs x86_64 0:259.1-1.fc44 fedora 2.4 MiB systemd-standalone-sysusers x86_64 0:259.1-1.fc44 fedora 305.7 KiB tpm2-tss x86_64 0:4.1.3-9.fc44 fedora 1.6 MiB tree-sitter-srpm-macros noarch 0:0.4.2-2.fc44 fedora 8.3 KiB util-linux-core x86_64 0:2.41.3-12.fc44 fedora 1.5 MiB xxhash-libs x86_64 0:0.8.3-4.fc44 fedora 94.0 KiB xz-libs x86_64 1:5.8.2-2.fc44 fedora 217.7 KiB zig-srpm-macros noarch 0:1-8.fc44 fedora 1.3 KiB zip x86_64 0:3.0-45.fc44 fedora 698.0 KiB zlib-ng-compat x86_64 0:2.3.3-2.fc44 fedora 165.6 KiB zstd x86_64 0:1.5.7-5.fc44 fedora 502.4 KiB Installing groups: Buildsystem building group Transaction Summary: Installing: 183 packages Total size of inbound packages is 69 MiB. Need to download 69 MiB. After this operation, 223 MiB extra will be used (install 223 MiB, remove 0 B). [ 1/183] bzip2-0:1.0.8-23.fc44.x86_64 100% | 187.4 KiB/s | 52.1 KiB | 00m00s [ 2/183] cpio-0:2.15-9.fc44.x86_64 100% | 1.2 MiB/s | 293.3 KiB | 00m00s [ 3/183] coreutils-0:9.9-4.fc44.x86_64 100% | 1.8 MiB/s | 1.2 MiB | 00m01s [ 4/183] diffutils-0:3.12-5.fc44.x86_6 100% | 2.6 MiB/s | 395.3 KiB | 00m00s [ 5/183] bash-0:5.3.9-3.fc44.x86_64 100% | 2.8 MiB/s | 1.9 MiB | 00m01s [ 6/183] fedora-release-common-0:44-0. 100% | 378.1 KiB/s | 24.2 KiB | 00m00s [ 7/183] glibc-minimal-langpack-0:2.43 100% | 1.1 MiB/s | 78.5 KiB | 00m00s [ 8/183] grep-0:3.12-3.fc44.x86_64 100% | 3.9 MiB/s | 301.6 KiB | 00m00s [ 9/183] findutils-1:4.10.0-7.fc44.x86 100% | 4.9 MiB/s | 552.5 KiB | 00m00s [ 10/183] gzip-0:1.14-2.fc44.x86_64 100% | 2.5 MiB/s | 179.1 KiB | 00m00s [ 11/183] info-0:7.2-9.fc44.x86_64 100% | 2.6 MiB/s | 186.7 KiB | 00m00s [ 12/183] patch-0:2.8-4.fc44.x86_64 100% | 1.5 MiB/s | 115.2 KiB | 00m00s [ 13/183] redhat-rpm-config-0:343-19.fc 100% | 1.2 MiB/s | 79.4 KiB | 00m00s [ 14/183] rpm-build-0:6.0.1-2.fc44.x86_ 100% | 2.0 MiB/s | 139.9 KiB | 00m00s [ 15/183] sed-0:4.9-7.fc44.x86_64 100% | 3.6 MiB/s | 319.2 KiB | 00m00s [ 16/183] shadow-utils-2:4.19.0-6.fc44. 100% | 13.1 MiB/s | 1.3 MiB | 00m00s [ 17/183] tar-2:1.35-8.fc44.x86_64 100% | 8.5 MiB/s | 868.2 KiB | 00m00s [ 18/183] unzip-0:6.0-69.fc44.x86_64 100% | 2.5 MiB/s | 199.6 KiB | 00m00s [ 19/183] which-0:2.23-4.fc44.x86_64 100% | 629.8 KiB/s | 42.2 KiB | 00m00s [ 20/183] xz-1:5.8.2-2.fc44.x86_64 100% | 6.7 MiB/s | 607.2 KiB | 00m00s [ 21/183] util-linux-0:2.41.3-12.fc44.x 100% | 12.4 MiB/s | 1.2 MiB | 00m00s [ 22/183] gawk-0:5.3.2-3.fc44.x86_64 100% | 7.8 MiB/s | 1.1 MiB | 00m00s [ 23/183] filesystem-0:3.18-52.fc44.x86 100% | 11.3 MiB/s | 1.3 MiB | 00m00s [ 24/183] ncurses-libs-0:6.6-1.fc44.x86 100% | 4.5 MiB/s | 344.1 KiB | 00m00s [ 25/183] glibc-0:2.43-1.fc44.x86_64 100% | 18.7 MiB/s | 2.4 MiB | 00m00s [ 26/183] bzip2-libs-0:1.0.8-23.fc44.x8 100% | 684.1 KiB/s | 43.8 KiB | 00m00s [ 27/183] gmp-1:6.3.0-5.fc44.x86_64 100% | 4.4 MiB/s | 322.5 KiB | 00m00s [ 28/183] libacl-0:2.3.2-6.fc44.x86_64 100% | 387.9 KiB/s | 24.8 KiB | 00m00s [ 29/183] coreutils-common-0:9.9-4.fc44 100% | 15.5 MiB/s | 2.1 MiB | 00m00s [ 30/183] libattr-0:2.5.2-8.fc44.x86_64 100% | 275.8 KiB/s | 17.9 KiB | 00m00s [ 31/183] libcap-0:2.77-2.fc44.x86_64 100% | 1.3 MiB/s | 88.5 KiB | 00m00s [ 32/183] libselinux-0:3.10-1.fc44.x86_ 100% | 1.5 MiB/s | 102.0 KiB | 00m00s [ 33/183] fedora-repos-0:44-0.3.noarch 100% | 142.2 KiB/s | 9.2 KiB | 00m00s [ 34/183] systemd-libs-0:259.1-1.fc44.x 100% | 9.4 MiB/s | 867.5 KiB | 00m00s [ 35/183] openssl-libs-1:3.5.5-1.fc44.x 100% | 23.3 MiB/s | 2.7 MiB | 00m00s [ 36/183] glibc-common-0:2.43-1.fc44.x8 100% | 5.2 MiB/s | 370.6 KiB | 00m00s [ 37/183] pcre2-0:10.47-1.fc44.1.x86_64 100% | 3.7 MiB/s | 277.7 KiB | 00m00s [ 38/183] ed-0:1.22.4-2.fc44.x86_64 100% | 1.3 MiB/s | 85.6 KiB | 00m00s [ 39/183] R-srpm-macros-0:1.3.4-3.fc44. 100% | 166.5 KiB/s | 10.8 KiB | 00m00s [ 40/183] ansible-srpm-macros-0:1-20.1. 100% | 314.1 KiB/s | 20.1 KiB | 00m00s [ 41/183] build-reproducibility-srpm-ma 100% | 201.9 KiB/s | 13.1 KiB | 00m00s [ 42/183] cmake-srpm-macros-0:4.2.3-2.f 100% | 162.0 KiB/s | 10.5 KiB | 00m00s [ 43/183] efi-srpm-macros-0:6-6.fc44.no 100% | 341.7 KiB/s | 22.6 KiB | 00m00s [ 44/183] file-0:5.46-9.fc44.x86_64 100% | 753.8 KiB/s | 49.0 KiB | 00m00s [ 45/183] dwz-0:0.16-3.fc44.x86_64 100% | 1.1 MiB/s | 138.9 KiB | 00m00s [ 46/183] filesystem-srpm-macros-0:3.18 100% | 403.5 KiB/s | 26.6 KiB | 00m00s [ 47/183] forge-srpm-macros-0:0.4.0-4.f 100% | 312.3 KiB/s | 20.0 KiB | 00m00s [ 48/183] fonts-srpm-macros-1:5.0.0-2.f 100% | 414.9 KiB/s | 27.4 KiB | 00m00s [ 49/183] fpc-srpm-macros-0:1.3-16.fc44 100% | 120.3 KiB/s | 7.9 KiB | 00m00s [ 50/183] gap-srpm-macros-0:2-2.fc44.no 100% | 142.8 KiB/s | 9.1 KiB | 00m00s [ 51/183] ghc-srpm-macros-0:1.10-1.fc44 100% | 135.2 KiB/s | 8.8 KiB | 00m00s [ 52/183] gnat-srpm-macros-0:7-2.fc44.n 100% | 132.5 KiB/s | 8.7 KiB | 00m00s [ 53/183] go-srpm-macros-0:3.8.0-2.fc44 100% | 441.0 KiB/s | 28.2 KiB | 00m00s [ 54/183] java-srpm-macros-0:1-8.fc44.n 100% | 123.0 KiB/s | 8.1 KiB | 00m00s [ 55/183] kernel-srpm-macros-0:1.0-28.f 100% | 139.2 KiB/s | 9.0 KiB | 00m00s [ 56/183] lua-srpm-macros-0:1-17.fc44.n 100% | 138.7 KiB/s | 8.9 KiB | 00m00s [ 57/183] ocaml-srpm-macros-0:11-3.fc44 100% | 142.7 KiB/s | 9.3 KiB | 00m00s [ 58/183] openblas-srpm-macros-0:2-21.f 100% | 118.3 KiB/s | 7.8 KiB | 00m00s [ 59/183] package-notes-srpm-macros-0:0 100% | 142.1 KiB/s | 9.1 KiB | 00m00s [ 60/183] perl-srpm-macros-0:1-61.fc44. 100% | 129.6 KiB/s | 8.4 KiB | 00m00s [ 61/183] pyproject-srpm-macros-0:1.18. 100% | 208.0 KiB/s | 13.5 KiB | 00m00s [ 62/183] python-srpm-macros-0:3.14-10. 100% | 374.3 KiB/s | 24.0 KiB | 00m00s [ 63/183] qt5-srpm-macros-0:5.15.18-2.f 100% | 133.7 KiB/s | 8.7 KiB | 00m00s [ 64/183] qt6-srpm-macros-0:6.10.2-1.fc 100% | 137.9 KiB/s | 9.1 KiB | 00m00s [ 65/183] rust-srpm-macros-0:28.4-3.fc4 100% | 170.2 KiB/s | 11.1 KiB | 00m00s [ 66/183] rpm-0:6.0.1-2.fc44.x86_64 100% | 7.0 MiB/s | 578.3 KiB | 00m00s [ 67/183] tree-sitter-srpm-macros-0:0.4 100% | 204.1 KiB/s | 13.5 KiB | 00m00s [ 68/183] zig-srpm-macros-0:1-8.fc44.no 100% | 135.5 KiB/s | 8.8 KiB | 00m00s [ 69/183] zip-0:3.0-45.fc44.x86_64 100% | 3.6 MiB/s | 264.4 KiB | 00m00s [ 70/183] debugedit-0:5.2-6.fc44.x86_64 100% | 1.3 MiB/s | 86.7 KiB | 00m00s [ 71/183] elfutils-0:0.194-3.fc44.x86_6 100% | 7.9 MiB/s | 583.9 KiB | 00m00s [ 72/183] elfutils-libelf-0:0.194-3.fc4 100% | 2.9 MiB/s | 205.1 KiB | 00m00s [ 73/183] libarchive-0:3.8.4-2.fc44.x86 100% | 6.1 MiB/s | 441.4 KiB | 00m00s [ 74/183] libgcc-0:16.0.1-0.5.fc44.x86_ 100% | 1.7 MiB/s | 117.4 KiB | 00m00s [ 75/183] popt-0:1.19-10.fc44.x86_64 100% | 1.0 MiB/s | 66.9 KiB | 00m00s [ 76/183] libstdc++-0:16.0.1-0.5.fc44.x 100% | 10.0 MiB/s | 940.1 KiB | 00m00s [ 77/183] readline-0:8.3-4.fc44.x86_64 100% | 3.3 MiB/s | 229.8 KiB | 00m00s [ 78/183] rpm-build-libs-0:6.0.1-2.fc44 100% | 1.9 MiB/s | 132.2 KiB | 00m00s [ 79/183] rpm-libs-0:6.0.1-2.fc44.x86_6 100% | 5.3 MiB/s | 415.5 KiB | 00m00s [ 80/183] zstd-0:1.5.7-5.fc44.x86_64 100% | 2.8 MiB/s | 192.5 KiB | 00m00s [ 81/183] audit-libs-0:4.1.3-1.fc44.x86 100% | 2.1 MiB/s | 142.1 KiB | 00m00s [ 82/183] libeconf-0:0.7.9-3.fc44.x86_6 100% | 565.9 KiB/s | 36.2 KiB | 00m00s [ 83/183] libsemanage-0:3.10-1.fc44.x86 100% | 1.9 MiB/s | 127.3 KiB | 00m00s [ 84/183] libxcrypt-0:4.5.2-3.fc44.x86_ 100% | 1.9 MiB/s | 131.2 KiB | 00m00s [ 85/183] pam-libs-0:1.7.2-1.fc44.x86_6 100% | 923.0 KiB/s | 59.1 KiB | 00m00s [ 86/183] setup-0:2.15.0-28.fc44.noarch 100% | 2.3 MiB/s | 157.2 KiB | 00m00s [ 87/183] xz-libs-1:5.8.2-2.fc44.x86_64 100% | 1.7 MiB/s | 116.8 KiB | 00m00s [ 88/183] mpfr-0:4.2.2-3.fc44.x86_64 100% | 4.7 MiB/s | 357.8 KiB | 00m00s [ 89/183] libblkid-0:2.41.3-12.fc44.x86 100% | 1.9 MiB/s | 129.4 KiB | 00m00s [ 90/183] libcap-ng-0:0.9-7.fc44.x86_64 100% | 495.6 KiB/s | 32.7 KiB | 00m00s [ 91/183] libfdisk-0:2.41.3-12.fc44.x86 100% | 2.4 MiB/s | 168.1 KiB | 00m00s [ 92/183] liblastlog2-0:2.41.3-12.fc44. 100% | 355.5 KiB/s | 23.5 KiB | 00m00s [ 93/183] libmount-0:2.41.3-12.fc44.x86 100% | 2.5 MiB/s | 171.0 KiB | 00m00s [ 94/183] libsmartcols-0:2.41.3-12.fc44 100% | 1.3 MiB/s | 86.9 KiB | 00m00s [ 95/183] libuuid-0:2.41.3-12.fc44.x86_ 100% | 409.9 KiB/s | 26.6 KiB | 00m00s [ 96/183] util-linux-core-0:2.41.3-12.f 100% | 7.5 MiB/s | 557.8 KiB | 00m00s [ 97/183] zlib-ng-compat-0:2.3.3-2.fc44 100% | 1.4 MiB/s | 91.0 KiB | 00m00s [ 98/183] glibc-gconv-extra-0:2.43-1.fc 100% | 19.1 MiB/s | 1.6 MiB | 00m00s [ 99/183] ncurses-base-0:6.6-1.fc44.noa 100% | 1.3 MiB/s | 88.0 KiB | 00m00s [100/183] gnulib-l10n-0:20241231-2.fc44 100% | 2.2 MiB/s | 150.3 KiB | 00m00s [101/183] libsepol-0:3.10-1.fc44.x86_64 100% | 5.2 MiB/s | 367.6 KiB | 00m00s [102/183] ca-certificates-0:2025.2.80_v 100% | 11.9 MiB/s | 973.5 KiB | 00m00s [103/183] crypto-policies-0:20251128-3. 100% | 1.5 MiB/s | 98.3 KiB | 00m00s [104/183] fedora-gpg-keys-0:44-0.3.noar 100% | 2.1 MiB/s | 141.4 KiB | 00m00s [105/183] pcre2-syntax-0:10.47-1.fc44.1 100% | 2.4 MiB/s | 164.7 KiB | 00m00s [106/183] add-determinism-0:0.7.2-4.fc4 100% | 9.4 MiB/s | 862.4 KiB | 00m00s [107/183] linkdupes-0:0.7.2-4.fc44.x86_ 100% | 4.9 MiB/s | 346.9 KiB | 00m00s [108/183] file-libs-0:5.46-9.fc44.x86_6 100% | 10.7 MiB/s | 853.4 KiB | 00m00s [109/183] curl-0:8.18.0-4.fc44.x86_64 100% | 3.4 MiB/s | 240.8 KiB | 00m00s [110/183] elfutils-libs-0:0.194-3.fc44. 100% | 4.1 MiB/s | 282.8 KiB | 00m00s [111/183] elfutils-debuginfod-client-0: 100% | 708.0 KiB/s | 46.7 KiB | 00m00s [112/183] libzstd-0:1.5.7-5.fc44.x86_64 100% | 4.8 MiB/s | 364.2 KiB | 00m00s [113/183] libxml2-0:2.12.10-6.fc44.x86_ 100% | 9.6 MiB/s | 724.6 KiB | 00m00s [114/183] lz4-libs-0:1.10.0-4.fc44.x86_ 100% | 1.1 MiB/s | 77.7 KiB | 00m00s [115/183] libgomp-0:16.0.1-0.5.fc44.x86 100% | 5.0 MiB/s | 376.8 KiB | 00m00s [116/183] lua-libs-0:5.4.8-5.fc44.x86_6 100% | 2.0 MiB/s | 136.6 KiB | 00m00s [117/183] rpm-sign-libs-0:6.0.1-2.fc44. 100% | 424.8 KiB/s | 28.0 KiB | 00m00s [118/183] sqlite-libs-0:3.51.2-1.fc44.x 100% | 10.4 MiB/s | 799.2 KiB | 00m00s [119/183] rpm-sequoia-0:1.10.0-2.fc44.x 100% | 10.0 MiB/s | 939.7 KiB | 00m00s [120/183] elfutils-default-yama-scope-0 100% | 183.2 KiB/s | 11.9 KiB | 00m00s [121/183] json-c-0:0.18-8.fc44.x86_64 100% | 702.0 KiB/s | 46.3 KiB | 00m00s [122/183] ima-evm-utils-libs-0:1.6.2-8. 100% | 454.0 KiB/s | 30.0 KiB | 00m00s [123/183] gnupg2-0:2.4.9-5.fc44.x86_64 100% | 14.4 MiB/s | 1.7 MiB | 00m00s [124/183] libfsverity-0:1.6-4.fc44.x86_ 100% | 296.0 KiB/s | 19.2 KiB | 00m00s [125/183] gpgverify-0:2.2-4.fc44.noarch 100% | 172.7 KiB/s | 11.2 KiB | 00m00s [126/183] gnupg2-dirmngr-0:2.4.9-5.fc44 100% | 3.9 MiB/s | 282.4 KiB | 00m00s [127/183] gnupg2-gpg-agent-0:2.4.9-5.fc 100% | 4.0 MiB/s | 281.3 KiB | 00m00s [128/183] gnupg2-gpgconf-0:2.4.9-5.fc44 100% | 1.7 MiB/s | 117.1 KiB | 00m00s [129/183] gnupg2-keyboxd-0:2.4.9-5.fc44 100% | 1.5 MiB/s | 97.3 KiB | 00m00s [130/183] gnupg2-verify-0:2.4.9-5.fc44. 100% | 2.6 MiB/s | 176.8 KiB | 00m00s [131/183] libassuan-0:2.5.7-5.fc44.x86_ 100% | 1.0 MiB/s | 68.9 KiB | 00m00s [132/183] libgcrypt-0:1.11.2-1.fc44.x86 100% | 7.5 MiB/s | 596.1 KiB | 00m00s [133/183] libgpg-error-0:1.58-2.fc44.x8 100% | 3.6 MiB/s | 254.1 KiB | 00m00s [134/183] npth-0:1.8-4.fc44.x86_64 100% | 390.2 KiB/s | 25.8 KiB | 00m00s [135/183] libksba-0:1.6.7-5.fc44.x86_64 100% | 2.4 MiB/s | 167.4 KiB | 00m00s [136/183] tpm2-tss-0:4.1.3-9.fc44.x86_6 100% | 5.8 MiB/s | 440.9 KiB | 00m00s [137/183] gnutls-0:3.8.12-1.fc44.x86_64 100% | 17.1 MiB/s | 1.4 MiB | 00m00s [138/183] libusb1-0:1.0.29-5.fc44.x86_6 100% | 1.2 MiB/s | 82.8 KiB | 00m00s [139/183] openldap-0:2.6.10-7.fc44.x86_ 100% | 3.8 MiB/s | 271.1 KiB | 00m00s [140/183] libidn2-0:2.3.8-3.fc44.x86_64 100% | 2.6 MiB/s | 175.6 KiB | 00m00s [141/183] libtasn1-0:4.20.0-3.fc44.x86_ 100% | 1.2 MiB/s | 76.2 KiB | 00m00s [142/183] libunistring-0:1.1-11.fc44.x8 100% | 7.3 MiB/s | 547.8 KiB | 00m00s [143/183] nettle-0:3.10.1-3.fc44.x86_64 100% | 6.0 MiB/s | 428.0 KiB | 00m00s [144/183] p11-kit-0:0.26.2-1.fc44.x86_6 100% | 7.0 MiB/s | 555.7 KiB | 00m00s [145/183] libevent-0:2.1.12-17.fc44.x86 100% | 4.1 MiB/s | 287.4 KiB | 00m00s [146/183] cyrus-sasl-lib-0:2.1.28-35.fc 100% | 10.2 MiB/s | 800.7 KiB | 00m00s [147/183] libtool-ltdl-0:2.5.4-10.fc44. 100% | 578.6 KiB/s | 37.0 KiB | 00m00s [148/183] libffi-0:3.5.2-2.fc44.x86_64 100% | 642.0 KiB/s | 42.4 KiB | 00m00s [149/183] gdbm-libs-1:1.23-11.fc44.x86_ 100% | 891.0 KiB/s | 58.8 KiB | 00m00s [150/183] alternatives-0:1.33-5.fc44.x8 100% | 628.4 KiB/s | 40.8 KiB | 00m00s [151/183] jansson-0:2.14-4.fc44.x86_64 100% | 713.9 KiB/s | 47.1 KiB | 00m00s [152/183] pkgconf-pkg-config-0:2.5.1-1. 100% | 145.7 KiB/s | 9.5 KiB | 00m00s [153/183] pkgconf-0:2.5.1-1.fc44.x86_64 100% | 737.8 KiB/s | 48.7 KiB | 00m00s [154/183] binutils-0:2.46-1.fc44.x86_64 100% | 30.5 MiB/s | 6.1 MiB | 00m00s [155/183] pkgconf-m4-0:2.5.1-1.fc44.noa 100% | 211.6 KiB/s | 13.8 KiB | 00m00s [156/183] libpkgconf-0:2.5.1-1.fc44.x86 100% | 646.6 KiB/s | 42.7 KiB | 00m00s [157/183] p11-kit-trust-0:0.26.2-1.fc44 100% | 2.2 MiB/s | 146.4 KiB | 00m00s [158/183] fedora-release-0:44-0.14.noar 100% | 201.3 KiB/s | 13.1 KiB | 00m00s [159/183] systemd-standalone-sysusers-0 100% | 2.2 MiB/s | 150.1 KiB | 00m00s [160/183] xxhash-libs-0:0.8.3-4.fc44.x8 100% | 624.6 KiB/s | 41.2 KiB | 00m00s [161/183] fedora-release-identity-basic 100% | 209.9 KiB/s | 13.9 KiB | 00m00s [162/183] gdb-minimal-0:17.1-2.fc44.x86 100% | 47.9 MiB/s | 4.8 MiB | 00m00s [163/183] libcurl-0:8.18.0-4.fc44.x86_6 100% | 6.3 MiB/s | 454.7 KiB | 00m00s [164/183] krb5-libs-0:1.22.2-2.fc44.x86 100% | 10.2 MiB/s | 803.8 KiB | 00m00s [165/183] libbrotli-0:1.2.0-3.fc44.x86_ 100% | 5.1 MiB/s | 347.8 KiB | 00m00s [166/183] libnghttp3-0:1.15.0-1.fc44.x8 100% | 1.1 MiB/s | 73.9 KiB | 00m00s [167/183] libpsl-0:0.21.5-7.fc44.x86_64 100% | 1.0 MiB/s | 65.3 KiB | 00m00s [168/183] libnghttp2-0:1.68.0-3.fc44.x8 100% | 589.1 KiB/s | 77.2 KiB | 00m00s [169/183] libssh-0:0.12.0-1.fc44.x86_64 100% | 4.2 MiB/s | 293.8 KiB | 00m00s [170/183] ngtcp2-0:1.19.0-2.fc44.x86_64 100% | 2.3 MiB/s | 154.8 KiB | 00m00s [171/183] ngtcp2-crypto-ossl-0:1.19.0-2 100% | 421.1 KiB/s | 27.4 KiB | 00m00s [172/183] libcom_err-0:1.47.3-4.fc44.x8 100% | 423.6 KiB/s | 27.1 KiB | 00m00s [173/183] keyutils-libs-0:1.6.3-7.fc44. 100% | 477.7 KiB/s | 31.5 KiB | 00m00s [174/183] libverto-0:0.3.2-12.fc44.x86_ 100% | 325.0 KiB/s | 21.1 KiB | 00m00s [175/183] libfido2-0:1.16.0-5.fc44.x86_ 100% | 1.6 MiB/s | 104.5 KiB | 00m00s [176/183] publicsuffix-list-dafsa-0:202 100% | 913.3 KiB/s | 60.3 KiB | 00m00s [177/183] libssh-config-0:0.12.0-1.fc44 100% | 144.9 KiB/s | 9.4 KiB | 00m00s [178/183] libcbor-0:0.13.0-2.fc44.x86_6 100% | 561.8 KiB/s | 36.0 KiB | 00m00s [179/183] policycoreutils-0:3.10-1.fc44 100% | 3.7 MiB/s | 258.7 KiB | 00m00s [180/183] selinux-policy-0:42.23-1.fc44 100% | 1.0 MiB/s | 68.6 KiB | 00m00s [181/183] selinux-policy-targeted-0:42. 100% | 40.1 MiB/s | 6.8 MiB | 00m00s [182/183] libselinux-utils-0:3.10-1.fc4 100% | 1.8 MiB/s | 119.6 KiB | 00m00s [183/183] rpm-plugin-selinux-0:6.0.1-2. 100% | 299.4 KiB/s | 19.2 KiB | 00m00s -------------------------------------------------------------------------------- [183/183] Total 100% | 13.6 MiB/s | 68.8 MiB | 00m05s Running transaction Importing OpenPGP key 0x6D9F90A6: UserID : "Fedora (44) " Fingerprint: 36F612DCF27F7D1A48A835E4DBFCF71C6D9F90A6 From : file:///usr/share/distribution-gpg-keys/fedora/RPM-GPG-KEY-fedora-44-primary The key was successfully imported. [ 1/185] Verify package files 100% | 778.0 B/s | 183.0 B | 00m00s [ 2/185] Prepare transaction 100% | 4.0 KiB/s | 183.0 B | 00m00s [ 3/185] Installing libgcc-0:16.0.1-0. 100% | 266.0 MiB/s | 272.3 KiB | 00m00s [ 4/185] Installing libssh-config-0:0. 100% | 0.0 B/s | 816.0 B | 00m00s [ 5/185] Installing publicsuffix-list- 100% | 0.0 B/s | 71.1 KiB | 00m00s [ 6/185] Installing fedora-release-ide 100% | 0.0 B/s | 912.0 B | 00m00s [ 7/185] Installing fedora-gpg-keys-0: 100% | 59.3 MiB/s | 182.1 KiB | 00m00s [ 8/185] Installing fedora-repos-0:44- 100% | 0.0 B/s | 5.7 KiB | 00m00s [ 9/185] Installing fedora-release-com 100% | 24.2 MiB/s | 24.8 KiB | 00m00s [ 10/185] Installing fedora-release-0:4 100% | 17.3 KiB/s | 124.0 B | 00m00s >>> Running sysusers scriptlet: setup-0:2.15.0-28.fc44.noarch >>> Finished sysusers scriptlet: setup-0:2.15.0-28.fc44.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. >>> [ 11/185] Installing setup-0:2.15.0-28. 100% | 59.5 MiB/s | 730.6 KiB | 00m00s [ 12/185] Installing filesystem-0:3.18- 100% | 3.2 MiB/s | 212.8 KiB | 00m00s [ 13/185] Installing pkgconf-m4-0:2.5.1 100% | 0.0 B/s | 14.7 KiB | 00m00s [ 14/185] Installing pcre2-syntax-0:10. 100% | 277.7 MiB/s | 284.3 KiB | 00m00s [ 15/185] Installing gnulib-l10n-0:2024 100% | 215.5 MiB/s | 661.9 KiB | 00m00s [ 16/185] Installing coreutils-common-0 100% | 449.1 MiB/s | 11.2 MiB | 00m00s [ 17/185] Installing ncurses-base-0:6.6 100% | 115.7 MiB/s | 355.3 KiB | 00m00s [ 18/185] Installing bash-0:5.3.9-3.fc4 100% | 314.1 MiB/s | 8.5 MiB | 00m00s [ 19/185] Installing glibc-common-0:2.4 100% | 68.3 MiB/s | 1.0 MiB | 00m00s [ 20/185] Installing glibc-gconv-extra- 100% | 339.3 MiB/s | 7.5 MiB | 00m00s [ 21/185] Installing glibc-0:2.43-1.fc4 100% | 217.2 MiB/s | 7.0 MiB | 00m00s [ 22/185] Installing ncurses-libs-0:6.6 100% | 317.5 MiB/s | 975.4 KiB | 00m00s [ 23/185] Installing glibc-minimal-lang 100% | 0.0 B/s | 124.0 B | 00m00s [ 24/185] Installing zlib-ng-compat-0:2 100% | 162.6 MiB/s | 166.5 KiB | 00m00s [ 25/185] Installing bzip2-libs-0:1.0.8 100% | 0.0 B/s | 81.6 KiB | 00m00s [ 26/185] Installing libgpg-error-0:1.5 100% | 71.2 MiB/s | 947.5 KiB | 00m00s [ 27/185] Installing libstdc++-0:16.0.1 100% | 416.9 MiB/s | 2.9 MiB | 00m00s [ 28/185] Installing libassuan-0:2.5.7- 100% | 161.8 MiB/s | 165.7 KiB | 00m00s [ 29/185] Installing libgcrypt-0:1.11.2 100% | 394.0 MiB/s | 1.6 MiB | 00m00s [ 30/185] Installing readline-0:8.3-4.f 100% | 509.4 MiB/s | 521.6 KiB | 00m00s [ 31/185] Installing gmp-1:6.3.0-5.fc44 100% | 399.2 MiB/s | 817.5 KiB | 00m00s [ 32/185] Installing xz-libs-1:5.8.2-2. 100% | 213.7 MiB/s | 218.8 KiB | 00m00s [ 33/185] Installing libuuid-0:2.41.3-1 100% | 0.0 B/s | 38.2 KiB | 00m00s [ 34/185] Installing systemd-libs-0:259 100% | 407.1 MiB/s | 2.4 MiB | 00m00s [ 35/185] Installing popt-0:1.19-10.fc4 100% | 68.0 MiB/s | 139.3 KiB | 00m00s [ 36/185] Installing libzstd-0:1.5.7-5. 100% | 467.5 MiB/s | 957.4 KiB | 00m00s [ 37/185] Installing elfutils-libelf-0: 100% | 564.4 MiB/s | 1.1 MiB | 00m00s [ 38/185] Installing npth-0:1.8-4.fc44. 100% | 0.0 B/s | 50.6 KiB | 00m00s [ 39/185] Installing libblkid-0:2.41.3- 100% | 269.0 MiB/s | 275.4 KiB | 00m00s [ 40/185] Installing libxcrypt-0:4.5.2- 100% | 289.0 MiB/s | 295.9 KiB | 00m00s [ 41/185] Installing libsepol-0:3.10-1. 100% | 425.3 MiB/s | 871.0 KiB | 00m00s [ 42/185] Installing sqlite-libs-0:3.51 100% | 397.6 MiB/s | 1.6 MiB | 00m00s [ 43/185] Installing gnupg2-gpgconf-0:2 100% | 22.4 MiB/s | 251.8 KiB | 00m00s [ 44/185] Installing libattr-0:2.5.2-8. 100% | 0.0 B/s | 25.2 KiB | 00m00s [ 45/185] Installing libacl-0:2.3.2-6.f 100% | 0.0 B/s | 36.6 KiB | 00m00s [ 46/185] Installing pcre2-0:10.47-1.fc 100% | 351.6 MiB/s | 720.0 KiB | 00m00s [ 47/185] Installing libselinux-0:3.10- 100% | 197.5 MiB/s | 202.3 KiB | 00m00s [ 48/185] Installing grep-0:3.12-3.fc44 100% | 71.6 MiB/s | 1.0 MiB | 00m00s [ 49/185] Installing sed-0:4.9-7.fc44.x 100% | 65.0 MiB/s | 865.4 KiB | 00m00s [ 50/185] Installing findutils-1:4.10.0 100% | 124.6 MiB/s | 1.9 MiB | 00m00s [ 51/185] Installing libtasn1-0:4.20.0- 100% | 177.7 MiB/s | 182.0 KiB | 00m00s [ 52/185] Installing libunistring-0:1.1 100% | 433.6 MiB/s | 1.7 MiB | 00m00s [ 53/185] Installing libidn2-0:2.3.8-3. 100% | 68.7 MiB/s | 562.6 KiB | 00m00s [ 54/185] Installing crypto-policies-0: 100% | 38.5 MiB/s | 157.7 KiB | 00m00s [ 55/185] Installing xz-1:5.8.2-2.fc44. 100% | 85.6 MiB/s | 1.4 MiB | 00m00s [ 56/185] Installing libmount-0:2.41.3- 100% | 380.6 MiB/s | 389.7 KiB | 00m00s [ 57/185] Installing gnupg2-verify-0:2. 100% | 32.1 MiB/s | 361.7 KiB | 00m00s [ 58/185] Installing dwz-0:0.16-3.fc44. 100% | 25.9 MiB/s | 292.3 KiB | 00m00s [ 59/185] Installing mpfr-0:4.2.2-3.fc4 100% | 415.4 MiB/s | 850.8 KiB | 00m00s [ 60/185] Installing gawk-0:5.3.2-3.fc4 100% | 114.6 MiB/s | 1.8 MiB | 00m00s [ 61/185] Installing libksba-0:1.6.7-5. 100% | 407.1 MiB/s | 416.9 KiB | 00m00s [ 62/185] Installing unzip-0:6.0-69.fc4 100% | 39.9 MiB/s | 449.3 KiB | 00m00s [ 63/185] Installing file-libs-0:5.46-9 100% | 741.3 MiB/s | 11.9 MiB | 00m00s [ 64/185] Installing file-0:5.46-9.fc44 100% | 9.0 MiB/s | 101.6 KiB | 00m00s [ 65/185] Installing diffutils-0:3.12-5 100% | 112.3 MiB/s | 1.6 MiB | 00m00s [ 66/185] Installing libeconf-0:0.7.9-3 100% | 0.0 B/s | 66.4 KiB | 00m00s [ 67/185] Installing libcap-ng-0:0.9-7. 100% | 0.0 B/s | 70.5 KiB | 00m00s [ 68/185] Installing audit-libs-0:4.1.3 100% | 383.8 MiB/s | 393.1 KiB | 00m00s [ 69/185] Installing pam-libs-0:1.7.2-1 100% | 129.8 MiB/s | 132.9 KiB | 00m00s [ 70/185] Installing libcap-0:2.77-2.fc 100% | 19.3 MiB/s | 217.2 KiB | 00m00s [ 71/185] Installing libsemanage-0:3.10 100% | 306.7 MiB/s | 314.1 KiB | 00m00s [ 72/185] Installing libsmartcols-0:2.4 100% | 184.9 MiB/s | 189.3 KiB | 00m00s [ 73/185] Installing lua-libs-0:5.4.8-5 100% | 276.6 MiB/s | 283.2 KiB | 00m00s [ 74/185] Installing json-c-0:0.18-8.fc 100% | 0.0 B/s | 83.9 KiB | 00m00s [ 75/185] Installing libffi-0:3.5.2-2.f 100% | 87.0 MiB/s | 89.1 KiB | 00m00s [ 76/185] Installing p11-kit-0:0.26.2-1 100% | 144.1 MiB/s | 2.6 MiB | 00m00s [ 77/185] Installing alternatives-0:1.3 100% | 6.2 MiB/s | 63.6 KiB | 00m00s [ 78/185] Installing p11-kit-trust-0:0. 100% | 26.0 MiB/s | 480.0 KiB | 00m00s [ 79/185] Installing ngtcp2-0:1.19.0-2. 100% | 323.9 MiB/s | 331.7 KiB | 00m00s [ 80/185] Installing openssl-libs-1:3.5 100% | 437.5 MiB/s | 9.2 MiB | 00m00s [ 81/185] Installing coreutils-0:9.9-4. 100% | 189.2 MiB/s | 5.5 MiB | 00m00s [ 82/185] Installing ca-certificates-0: 100% | 2.4 MiB/s | 2.5 MiB | 00m01s [ 83/185] Installing gzip-0:1.14-2.fc44 100% | 30.6 MiB/s | 407.1 KiB | 00m00s [ 84/185] Installing rpm-sequoia-0:1.10 100% | 411.0 MiB/s | 2.5 MiB | 00m00s [ 85/185] Installing libfsverity-0:1.6- 100% | 0.0 B/s | 29.4 KiB | 00m00s [ 86/185] Installing libevent-0:2.1.12- 100% | 319.8 MiB/s | 982.4 KiB | 00m00s [ 87/185] Installing ngtcp2-crypto-ossl 100% | 51.2 MiB/s | 52.5 KiB | 00m00s [ 88/185] Installing util-linux-core-0: 100% | 92.7 MiB/s | 1.5 MiB | 00m00s [ 89/185] Installing zip-0:3.0-45.fc44. 100% | 57.1 MiB/s | 701.9 KiB | 00m00s [ 90/185] Installing gnupg2-keyboxd-0:2 100% | 39.5 MiB/s | 202.5 KiB | 00m00s [ 91/185] Installing libpsl-0:0.21.5-7. 100% | 75.6 MiB/s | 77.4 KiB | 00m00s [ 92/185] Installing tar-2:1.35-8.fc44. 100% | 165.4 MiB/s | 3.0 MiB | 00m00s [ 93/185] Installing linkdupes-0:0.7.2- 100% | 59.4 MiB/s | 790.7 KiB | 00m00s [ 94/185] Installing libselinux-utils-0 100% | 26.0 MiB/s | 320.1 KiB | 00m00s [ 95/185] Installing liblastlog2-0:2.41 100% | 7.8 MiB/s | 39.8 KiB | 00m00s [ 96/185] Installing systemd-standalone 100% | 24.9 MiB/s | 306.2 KiB | 00m00s [ 97/185] Installing rpm-libs-0:6.0.1-2 100% | 313.4 MiB/s | 962.8 KiB | 00m00s [ 98/185] Installing libfdisk-0:2.41.3- 100% | 190.2 MiB/s | 389.4 KiB | 00m00s [ 99/185] Installing util-linux-0:2.41. 100% | 119.4 MiB/s | 3.6 MiB | 00m00s [100/185] Installing policycoreutils-0: 100% | 40.5 MiB/s | 912.6 KiB | 00m00s [101/185] Installing selinux-policy-0:4 100% | 1.9 MiB/s | 33.6 KiB | 00m00s [102/185] Installing selinux-policy-tar 100% | 217.8 MiB/s | 14.8 MiB | 00m00s [103/185] Installing zstd-0:1.5.7-5.fc4 100% | 38.0 MiB/s | 506.0 KiB | 00m00s [104/185] Installing libusb1-0:1.0.29-5 100% | 24.7 MiB/s | 176.9 KiB | 00m00s >>> Running sysusers scriptlet: tpm2-tss-0:4.1.3-9.fc44.x86_64 >>> Finished sysusers scriptlet: tpm2-tss-0:4.1.3-9.fc44.x86_64 >>> Scriptlet output: >>> Creating group 'tss' with GID 59. >>> Creating user 'tss' (Account used for TPM access) with UID 59 and GID 59. >>> [105/185] Installing tpm2-tss-0:4.1.3-9 100% | 326.6 MiB/s | 1.6 MiB | 00m00s [106/185] Installing ima-evm-utils-libs 100% | 60.4 MiB/s | 61.9 KiB | 00m00s [107/185] Installing gnupg2-gpg-agent-0 100% | 37.2 MiB/s | 686.5 KiB | 00m00s [108/185] Installing libxml2-0:2.12.10- 100% | 118.0 MiB/s | 1.8 MiB | 00m00s [109/185] Installing nettle-0:3.10.1-3. 100% | 389.4 MiB/s | 797.4 KiB | 00m00s [110/185] Installing gnutls-0:3.8.12-1. 100% | 415.1 MiB/s | 3.7 MiB | 00m00s [111/185] Installing bzip2-0:1.0.8-23.f 100% | 8.8 MiB/s | 99.5 KiB | 00m00s [112/185] Installing add-determinism-0: 100% | 146.0 MiB/s | 2.2 MiB | 00m00s [113/185] Installing build-reproducibil 100% | 0.0 B/s | 1.5 KiB | 00m00s [114/185] Installing cpio-0:2.15-9.fc44 100% | 78.8 MiB/s | 1.1 MiB | 00m00s [115/185] Installing ed-0:1.22.4-2.fc44 100% | 13.4 MiB/s | 151.4 KiB | 00m00s [116/185] Installing patch-0:2.8-4.fc44 100% | 20.2 MiB/s | 228.1 KiB | 00m00s [117/185] Installing lz4-libs-0:1.10.0- 100% | 154.6 MiB/s | 158.4 KiB | 00m00s [118/185] Installing libarchive-0:3.8.4 100% | 323.3 MiB/s | 993.1 KiB | 00m00s [119/185] Installing libgomp-0:16.0.1-0 100% | 559.8 MiB/s | 573.2 KiB | 00m00s [120/185] Installing libtool-ltdl-0:2.5 100% | 0.0 B/s | 71.1 KiB | 00m00s [121/185] Installing gdbm-libs-1:1.23-1 100% | 128.3 MiB/s | 131.3 KiB | 00m00s [122/185] Installing cyrus-sasl-lib-0:2 100% | 144.4 MiB/s | 2.3 MiB | 00m00s [123/185] Installing openldap-0:2.6.10- 100% | 327.8 MiB/s | 671.3 KiB | 00m00s [124/185] Installing gnupg2-dirmngr-0:2 100% | 36.6 MiB/s | 636.6 KiB | 00m00s [125/185] Installing gnupg2-0:2.4.9-5.f 100% | 250.3 MiB/s | 6.5 MiB | 00m00s [126/185] Installing rpm-sign-libs-0:6. 100% | 0.0 B/s | 40.5 KiB | 00m00s [127/185] Installing gpgverify-0:2.2-4. 100% | 0.0 B/s | 9.4 KiB | 00m00s [128/185] Installing jansson-0:2.14-4.f 100% | 88.2 MiB/s | 90.3 KiB | 00m00s [129/185] Installing libpkgconf-0:2.5.1 100% | 89.1 MiB/s | 91.3 KiB | 00m00s [130/185] Installing pkgconf-0:2.5.1-1. 100% | 8.5 MiB/s | 95.2 KiB | 00m00s [131/185] Installing pkgconf-pkg-config 100% | 177.3 KiB/s | 1.8 KiB | 00m00s [132/185] Installing xxhash-libs-0:0.8. 100% | 93.2 MiB/s | 95.4 KiB | 00m00s [133/185] Installing libbrotli-0:1.2.0- 100% | 282.3 MiB/s | 867.3 KiB | 00m00s [134/185] Installing libnghttp2-0:1.68. 100% | 163.3 MiB/s | 167.3 KiB | 00m00s [135/185] Installing libnghttp3-0:1.15. 100% | 156.8 MiB/s | 160.6 KiB | 00m00s [136/185] Installing keyutils-libs-0:1. 100% | 0.0 B/s | 55.6 KiB | 00m00s [137/185] Installing libcom_err-0:1.47. 100% | 0.0 B/s | 64.1 KiB | 00m00s [138/185] Installing libverto-0:0.3.2-1 100% | 26.4 MiB/s | 27.1 KiB | 00m00s [139/185] Installing krb5-libs-0:1.22.2 100% | 342.7 MiB/s | 2.4 MiB | 00m00s [140/185] Installing libcbor-0:0.13.0-2 100% | 0.0 B/s | 80.9 KiB | 00m00s [141/185] Installing libfido2-0:1.16.0- 100% | 242.1 MiB/s | 247.9 KiB | 00m00s [142/185] Installing libssh-0:0.12.0-1. 100% | 352.1 MiB/s | 721.2 KiB | 00m00s [143/185] Installing libcurl-0:8.18.0-4 100% | 331.4 MiB/s | 1.0 MiB | 00m00s [144/185] Installing curl-0:8.18.0-4.fc 100% | 24.8 MiB/s | 482.6 KiB | 00m00s [145/185] Installing rpm-0:6.0.1-2.fc44 100% | 91.1 MiB/s | 2.6 MiB | 00m00s [146/185] Installing cmake-srpm-macros- 100% | 0.0 B/s | 804.0 B | 00m00s [147/185] Installing efi-srpm-macros-0: 100% | 0.0 B/s | 41.2 KiB | 00m00s [148/185] Installing java-srpm-macros-0 100% | 0.0 B/s | 1.1 KiB | 00m00s [149/185] Installing lua-srpm-macros-0: 100% | 0.0 B/s | 1.9 KiB | 00m00s [150/185] Installing tree-sitter-srpm-m 100% | 0.0 B/s | 9.3 KiB | 00m00s [151/185] Installing zig-srpm-macros-0: 100% | 0.0 B/s | 1.9 KiB | 00m00s [152/185] Installing filesystem-srpm-ma 100% | 0.0 B/s | 38.9 KiB | 00m00s [153/185] Installing elfutils-default-y 100% | 510.7 KiB/s | 2.0 KiB | 00m00s [154/185] Installing elfutils-libs-0:0. 100% | 350.1 MiB/s | 717.0 KiB | 00m00s [155/185] Installing elfutils-debuginfo 100% | 7.0 MiB/s | 86.0 KiB | 00m00s [156/185] Installing elfutils-0:0.194-3 100% | 174.1 MiB/s | 3.0 MiB | 00m00s [157/185] Installing binutils-0:2.46-1. 100% | 378.8 MiB/s | 27.3 MiB | 00m00s [158/185] Installing gdb-minimal-0:17.1 100% | 333.3 MiB/s | 14.3 MiB | 00m00s [159/185] Installing debugedit-0:5.2-6. 100% | 19.7 MiB/s | 221.6 KiB | 00m00s [160/185] Installing rpm-build-libs-0:6 100% | 270.6 MiB/s | 277.1 KiB | 00m00s [161/185] Installing rust-srpm-macros-0 100% | 0.0 B/s | 6.4 KiB | 00m00s [162/185] Installing qt6-srpm-macros-0: 100% | 0.0 B/s | 748.0 B | 00m00s [163/185] Installing qt5-srpm-macros-0: 100% | 0.0 B/s | 776.0 B | 00m00s [164/185] Installing perl-srpm-macros-0 100% | 0.0 B/s | 1.1 KiB | 00m00s [165/185] Installing package-notes-srpm 100% | 0.0 B/s | 2.0 KiB | 00m00s [166/185] Installing openblas-srpm-macr 100% | 0.0 B/s | 392.0 B | 00m00s [167/185] Installing ocaml-srpm-macros- 100% | 0.0 B/s | 2.1 KiB | 00m00s [168/185] Installing kernel-srpm-macros 100% | 0.0 B/s | 2.3 KiB | 00m00s [169/185] Installing gnat-srpm-macros-0 100% | 0.0 B/s | 1.3 KiB | 00m00s [170/185] Installing ghc-srpm-macros-0: 100% | 0.0 B/s | 1.0 KiB | 00m00s [171/185] Installing gap-srpm-macros-0: 100% | 0.0 B/s | 2.7 KiB | 00m00s [172/185] Installing fpc-srpm-macros-0: 100% | 0.0 B/s | 420.0 B | 00m00s [173/185] Installing ansible-srpm-macro 100% | 0.0 B/s | 36.2 KiB | 00m00s [174/185] Installing redhat-rpm-config- 100% | 37.1 MiB/s | 189.9 KiB | 00m00s [175/185] Installing forge-srpm-macros- 100% | 0.0 B/s | 40.3 KiB | 00m00s [176/185] Installing fonts-srpm-macros- 100% | 0.0 B/s | 57.0 KiB | 00m00s [177/185] Installing go-srpm-macros-0:3 100% | 0.0 B/s | 63.0 KiB | 00m00s [178/185] Installing rpm-build-0:6.0.1- 100% | 24.7 MiB/s | 303.7 KiB | 00m00s [179/185] Installing pyproject-srpm-mac 100% | 0.0 B/s | 2.5 KiB | 00m00s [180/185] Installing R-srpm-macros-0:1. 100% | 0.0 B/s | 4.2 KiB | 00m00s [181/185] Installing python-srpm-macros 100% | 0.0 B/s | 52.9 KiB | 00m00s [182/185] Installing rpm-plugin-selinux 100% | 0.0 B/s | 12.9 KiB | 00m00s [183/185] Installing which-0:2.23-4.fc4 100% | 7.0 MiB/s | 85.6 KiB | 00m00s [184/185] Installing shadow-utils-2:4.1 100% | 160.9 MiB/s | 4.0 MiB | 00m00s [185/185] Installing info-0:7.2-9.fc44. 100% | 64.3 KiB/s | 366.0 KiB | 00m06s 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.4-3.fc44.noarch add-determinism-0.7.2-4.fc44.x86_64 alternatives-1.33-5.fc44.x86_64 ansible-srpm-macros-1-20.1.fc44.noarch audit-libs-4.1.3-1.fc44.x86_64 bash-5.3.9-3.fc44.x86_64 binutils-2.46-1.fc44.x86_64 build-reproducibility-srpm-macros-0.7.2-4.fc44.noarch bzip2-1.0.8-23.fc44.x86_64 bzip2-libs-1.0.8-23.fc44.x86_64 ca-certificates-2025.2.80_v9.0.304-5.fc44.noarch cmake-srpm-macros-4.2.3-2.fc44.noarch coreutils-9.9-4.fc44.x86_64 coreutils-common-9.9-4.fc44.x86_64 cpio-2.15-9.fc44.x86_64 crypto-policies-20251128-3.git19878fe.fc44.noarch curl-8.18.0-4.fc44.x86_64 cyrus-sasl-lib-2.1.28-35.fc44.x86_64 debugedit-5.2-6.fc44.x86_64 diffutils-3.12-5.fc44.x86_64 dwz-0.16-3.fc44.x86_64 ed-1.22.4-2.fc44.x86_64 efi-srpm-macros-6-6.fc44.noarch elfutils-0.194-3.fc44.x86_64 elfutils-debuginfod-client-0.194-3.fc44.x86_64 elfutils-default-yama-scope-0.194-3.fc44.noarch elfutils-libelf-0.194-3.fc44.x86_64 elfutils-libs-0.194-3.fc44.x86_64 fedora-gpg-keys-44-0.3.noarch fedora-release-44-0.14.noarch fedora-release-common-44-0.14.noarch fedora-release-identity-basic-44-0.14.noarch fedora-repos-44-0.3.noarch file-5.46-9.fc44.x86_64 file-libs-5.46-9.fc44.x86_64 filesystem-3.18-52.fc44.x86_64 filesystem-srpm-macros-3.18-52.fc44.noarch findutils-4.10.0-7.fc44.x86_64 fonts-srpm-macros-5.0.0-2.fc44.noarch forge-srpm-macros-0.4.0-4.fc44.noarch fpc-srpm-macros-1.3-16.fc44.noarch gap-srpm-macros-2-2.fc44.noarch gawk-5.3.2-3.fc44.x86_64 gdb-minimal-17.1-2.fc44.x86_64 gdbm-libs-1.23-11.fc44.x86_64 ghc-srpm-macros-1.10-1.fc44.noarch glibc-2.43-1.fc44.x86_64 glibc-common-2.43-1.fc44.x86_64 glibc-gconv-extra-2.43-1.fc44.x86_64 glibc-minimal-langpack-2.43-1.fc44.x86_64 gmp-6.3.0-5.fc44.x86_64 gnat-srpm-macros-7-2.fc44.noarch gnulib-l10n-20241231-2.fc44.noarch gnupg2-2.4.9-5.fc44.x86_64 gnupg2-dirmngr-2.4.9-5.fc44.x86_64 gnupg2-gpg-agent-2.4.9-5.fc44.x86_64 gnupg2-gpgconf-2.4.9-5.fc44.x86_64 gnupg2-keyboxd-2.4.9-5.fc44.x86_64 gnupg2-verify-2.4.9-5.fc44.x86_64 gnutls-3.8.12-1.fc44.x86_64 go-srpm-macros-3.8.0-2.fc44.noarch gpg-pubkey-36f612dcf27f7d1a48a835e4dbfcf71c6d9f90a6-6786af3b gpgverify-2.2-4.fc44.noarch grep-3.12-3.fc44.x86_64 gzip-1.14-2.fc44.x86_64 ima-evm-utils-libs-1.6.2-8.fc44.x86_64 info-7.2-9.fc44.x86_64 jansson-2.14-4.fc44.x86_64 java-srpm-macros-1-8.fc44.noarch json-c-0.18-8.fc44.x86_64 kernel-srpm-macros-1.0-28.fc44.noarch keyutils-libs-1.6.3-7.fc44.x86_64 krb5-libs-1.22.2-2.fc44.x86_64 libacl-2.3.2-6.fc44.x86_64 libarchive-3.8.4-2.fc44.x86_64 libassuan-2.5.7-5.fc44.x86_64 libattr-2.5.2-8.fc44.x86_64 libblkid-2.41.3-12.fc44.x86_64 libbrotli-1.2.0-3.fc44.x86_64 libcap-2.77-2.fc44.x86_64 libcap-ng-0.9-7.fc44.x86_64 libcbor-0.13.0-2.fc44.x86_64 libcom_err-1.47.3-4.fc44.x86_64 libcurl-8.18.0-4.fc44.x86_64 libeconf-0.7.9-3.fc44.x86_64 libevent-2.1.12-17.fc44.x86_64 libfdisk-2.41.3-12.fc44.x86_64 libffi-3.5.2-2.fc44.x86_64 libfido2-1.16.0-5.fc44.x86_64 libfsverity-1.6-4.fc44.x86_64 libgcc-16.0.1-0.5.fc44.x86_64 libgcrypt-1.11.2-1.fc44.x86_64 libgomp-16.0.1-0.5.fc44.x86_64 libgpg-error-1.58-2.fc44.x86_64 libidn2-2.3.8-3.fc44.x86_64 libksba-1.6.7-5.fc44.x86_64 liblastlog2-2.41.3-12.fc44.x86_64 libmount-2.41.3-12.fc44.x86_64 libnghttp2-1.68.0-3.fc44.x86_64 libnghttp3-1.15.0-1.fc44.x86_64 libpkgconf-2.5.1-1.fc44.x86_64 libpsl-0.21.5-7.fc44.x86_64 libselinux-3.10-1.fc44.x86_64 libselinux-utils-3.10-1.fc44.x86_64 libsemanage-3.10-1.fc44.x86_64 libsepol-3.10-1.fc44.x86_64 libsmartcols-2.41.3-12.fc44.x86_64 libssh-0.12.0-1.fc44.x86_64 libssh-config-0.12.0-1.fc44.noarch libstdc++-16.0.1-0.5.fc44.x86_64 libtasn1-4.20.0-3.fc44.x86_64 libtool-ltdl-2.5.4-10.fc44.x86_64 libunistring-1.1-11.fc44.x86_64 libusb1-1.0.29-5.fc44.x86_64 libuuid-2.41.3-12.fc44.x86_64 libverto-0.3.2-12.fc44.x86_64 libxcrypt-4.5.2-3.fc44.x86_64 libxml2-2.12.10-6.fc44.x86_64 libzstd-1.5.7-5.fc44.x86_64 linkdupes-0.7.2-4.fc44.x86_64 lua-libs-5.4.8-5.fc44.x86_64 lua-srpm-macros-1-17.fc44.noarch lz4-libs-1.10.0-4.fc44.x86_64 mpfr-4.2.2-3.fc44.x86_64 ncurses-base-6.6-1.fc44.noarch ncurses-libs-6.6-1.fc44.x86_64 nettle-3.10.1-3.fc44.x86_64 ngtcp2-1.19.0-2.fc44.x86_64 ngtcp2-crypto-ossl-1.19.0-2.fc44.x86_64 npth-1.8-4.fc44.x86_64 ocaml-srpm-macros-11-3.fc44.noarch openblas-srpm-macros-2-21.fc44.noarch openldap-2.6.10-7.fc44.x86_64 openssl-libs-3.5.5-1.fc44.x86_64 p11-kit-0.26.2-1.fc44.x86_64 p11-kit-trust-0.26.2-1.fc44.x86_64 package-notes-srpm-macros-0.5-16.fc44.noarch pam-libs-1.7.2-1.fc44.x86_64 patch-2.8-4.fc44.x86_64 pcre2-10.47-1.fc44.1.x86_64 pcre2-syntax-10.47-1.fc44.1.noarch perl-srpm-macros-1-61.fc44.noarch pkgconf-2.5.1-1.fc44.x86_64 pkgconf-m4-2.5.1-1.fc44.noarch pkgconf-pkg-config-2.5.1-1.fc44.x86_64 policycoreutils-3.10-1.fc44.x86_64 popt-1.19-10.fc44.x86_64 publicsuffix-list-dafsa-20260116-1.fc44.noarch pyproject-srpm-macros-1.18.6-2.fc44.noarch python-srpm-macros-3.14-10.fc44.noarch qt5-srpm-macros-5.15.18-2.fc44.noarch qt6-srpm-macros-6.10.2-1.fc44.noarch readline-8.3-4.fc44.x86_64 redhat-rpm-config-343-19.fc44.noarch rpm-6.0.1-2.fc44.x86_64 rpm-build-6.0.1-2.fc44.x86_64 rpm-build-libs-6.0.1-2.fc44.x86_64 rpm-libs-6.0.1-2.fc44.x86_64 rpm-plugin-selinux-6.0.1-2.fc44.x86_64 rpm-sequoia-1.10.0-2.fc44.x86_64 rpm-sign-libs-6.0.1-2.fc44.x86_64 rust-srpm-macros-28.4-3.fc44.noarch sed-4.9-7.fc44.x86_64 selinux-policy-42.23-1.fc44.noarch selinux-policy-targeted-42.23-1.fc44.noarch setup-2.15.0-28.fc44.noarch shadow-utils-4.19.0-6.fc44.x86_64 sqlite-libs-3.51.2-1.fc44.x86_64 systemd-libs-259.1-1.fc44.x86_64 systemd-standalone-sysusers-259.1-1.fc44.x86_64 tar-1.35-8.fc44.x86_64 tpm2-tss-4.1.3-9.fc44.x86_64 tree-sitter-srpm-macros-0.4.2-2.fc44.noarch unzip-6.0-69.fc44.x86_64 util-linux-2.41.3-12.fc44.x86_64 util-linux-core-2.41.3-12.fc44.x86_64 which-2.23-4.fc44.x86_64 xxhash-libs-0.8.3-4.fc44.x86_64 xz-5.8.2-2.fc44.x86_64 xz-libs-5.8.2-2.fc44.x86_64 zig-srpm-macros-1-8.fc44.noarch zip-3.0-45.fc44.x86_64 zlib-ng-compat-2.3.3-2.fc44.x86_64 zstd-1.5.7-5.fc44.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.6 starting (python version = 3.14.2, NVR = mock-6.6-1.fc43), 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.6 INFO: Mock Version: 6.6 Start(bootstrap): chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-44-x86_64-bootstrap/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-44-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-44-x86_64/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-44-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: fedora 100% | 91.8 KiB/s | 24.4 KiB | 00m00s updates 100% | 177.4 KiB/s | 27.0 KiB | 00m00s Repositories loaded. Package Arch Version Repository Size Installing: git x86_64 0:2.53.0-1.fc44 fedora 56.4 KiB jq x86_64 0:1.8.1-2.fc44 fedora 465.4 KiB python3 x86_64 0:3.14.3-1.fc44 fedora 28.7 KiB rpmlint noarch 0:2.8.0-3.fc44 fedora 1.3 MiB Installing dependencies: abattis-cantarell-vf-fonts noarch 0:0.301-17.fc44 fedora 192.7 KiB bubblewrap x86_64 0:0.11.0-4.fc44 fedora 134.8 KiB cairo x86_64 0:1.18.4-6.fc44 fedora 1.8 MiB cairo-gobject x86_64 0:1.18.4-6.fc44 fedora 31.0 KiB dash x86_64 0:0.5.13.1-3.fc44 fedora 175.9 KiB default-fonts-core-sans noarch 0:4.2-6.fc44 fedora 11.9 KiB desktop-file-utils x86_64 0:0.28-5.fc44 fedora 218.0 KiB devscripts-checkbashisms noarch 0:2.26.5-1.fc44 fedora 52.5 KiB emacs-filesystem x86_64 1:30.2-2.fc44 fedora 0.0 B enchant2 x86_64 0:2.8.14-2.fc44 fedora 218.2 KiB expat x86_64 0:2.7.3-2.fc44 fedora 316.8 KiB fontconfig x86_64 0:2.17.0-4.fc44 fedora 776.4 KiB fonts-filesystem noarch 1:5.0.0-2.fc44 fedora 0.0 B freetype x86_64 0:2.14.1-2.fc44 fedora 922.2 KiB fribidi x86_64 0:1.0.16-4.fc44 fedora 190.0 KiB gdk-pixbuf2 x86_64 0:2.44.4-2.fc44 fedora 2.5 MiB git-core x86_64 0:2.53.0-1.fc44 fedora 24.6 MiB git-core-doc noarch 0:2.53.0-1.fc44 fedora 18.6 MiB glib2 x86_64 0:2.87.2-2.fc44 fedora 15.1 MiB glycin-libs x86_64 0:2.0.5-4.fc44 fedora 4.2 MiB glycin-loaders x86_64 0:2.0.5-4.fc44 fedora 12.7 MiB google-noto-fonts-common noarch 0:20251201-2.fc44 fedora 17.7 KiB google-noto-sans-vf-fonts noarch 0:20251201-2.fc44 fedora 1.4 MiB graphite2 x86_64 0:1.3.14-20.fc44 fedora 191.5 KiB groff-base x86_64 0:1.23.0-12.fc44 fedora 3.9 MiB harfbuzz x86_64 0:12.3.2-1.fc44 fedora 2.7 MiB highway x86_64 0:1.3.0-2.fc44 fedora 5.5 MiB hunspell x86_64 0:1.7.2-11.fc44 fedora 1.4 MiB hunspell-en-US noarch 0:0.20201207-13.fc44 fedora 557.4 KiB hunspell-filesystem x86_64 0:1.7.2-11.fc44 fedora 0.0 B json-glib x86_64 0:1.10.8-5.fc44 fedora 596.2 KiB lcms2 x86_64 0:2.16-7.fc44 fedora 445.7 KiB less x86_64 0:691-2.fc44 fedora 464.5 KiB libX11 x86_64 0:1.8.12-3.fc44 fedora 1.3 MiB libX11-common noarch 0:1.8.12-3.fc44 fedora 1.1 MiB libXau x86_64 0:1.0.12-4.fc44 fedora 72.8 KiB libXext x86_64 0:1.3.6-5.fc44 fedora 89.8 KiB libXft x86_64 0:2.3.8-10.fc44 fedora 168.3 KiB libXrender x86_64 0:0.9.12-4.fc44 fedora 49.9 KiB libaom x86_64 0:3.13.1-5.fc44 fedora 5.1 MiB libappstream-glib x86_64 0:0.8.3-5.fc44 fedora 1.4 MiB libdatrie x86_64 0:0.2.14-2.fc44 fedora 61.7 KiB libdav1d x86_64 0:1.5.2-3.fc44 fedora 1.7 MiB libedit x86_64 0:3.1-58.20251016cvs.fc44 fedora 248.1 KiB libheif x86_64 0:1.21.2-1.fc44 fedora 1.8 MiB libjpeg-turbo x86_64 0:3.1.2-2.fc44 fedora 816.8 KiB libjxl x86_64 1:0.11.1-8.fc44 fedora 4.1 MiB libopenjph x86_64 0:0.25.3-3.fc44 fedora 482.1 KiB libpng x86_64 2:1.6.55-1.fc44 fedora 249.6 KiB librsvg2 x86_64 0:2.61.0-6.fc44 fedora 5.1 MiB libseccomp x86_64 0:2.6.0-3.fc44 fedora 224.8 KiB libthai x86_64 0:0.1.30-2.fc44 fedora 800.9 KiB libvmaf x86_64 0:3.0.0-5.fc44 fedora 846.8 KiB libwebp x86_64 0:1.6.0-3.fc44 fedora 968.0 KiB libxcb x86_64 0:1.17.0-7.fc44 fedora 1.1 MiB lzo x86_64 0:2.10-16.fc44 fedora 174.8 KiB mpdecimal x86_64 0:4.0.1-3.fc44 fedora 217.1 KiB ncurses x86_64 0:6.6-1.fc44 fedora 611.4 KiB noopenh264 x86_64 0:2.6.0-4.fc44 fedora 39.0 KiB oniguruma x86_64 0:6.9.10-4.fc44 fedora 770.9 KiB openjpeg x86_64 0:2.5.4-3.fc44 fedora 464.2 KiB openssh x86_64 0:10.2p1-3.fc44 fedora 1.4 MiB openssh-clients x86_64 0:10.2p1-3.fc44 fedora 2.7 MiB pango x86_64 0:1.57.0-4.fc44 fedora 1.0 MiB perl-AutoLoader noarch 0:5.74-522.fc44 fedora 20.6 KiB perl-B x86_64 0:1.89-522.fc44 fedora 501.2 KiB perl-Carp noarch 0:1.54-521.fc44 fedora 46.6 KiB perl-Class-Struct noarch 0:0.68-522.fc44 fedora 25.4 KiB perl-Data-Dumper x86_64 0:2.191-522.fc44 fedora 115.5 KiB perl-Digest noarch 0:1.20-521.fc44 fedora 35.3 KiB perl-Digest-MD5 x86_64 0:2.59-521.fc44 fedora 59.6 KiB perl-DynaLoader x86_64 0:1.57-522.fc44 fedora 32.1 KiB perl-Encode x86_64 4:3.21-521.fc44 fedora 4.7 MiB perl-Errno x86_64 0:1.38-522.fc44 fedora 8.4 KiB perl-Error noarch 1:0.17030-3.fc44 fedora 76.8 KiB perl-Exporter noarch 0:5.79-521.fc44 fedora 54.3 KiB perl-Fcntl x86_64 0:1.20-522.fc44 fedora 48.7 KiB perl-File-Basename noarch 0:2.86-522.fc44 fedora 14.0 KiB perl-File-Path noarch 0:2.18-522.fc44 fedora 63.5 KiB perl-File-Temp noarch 1:0.231.200-2.fc44 fedora 163.7 KiB perl-File-stat noarch 0:1.14-522.fc44 fedora 12.5 KiB perl-FileHandle noarch 0:2.05-522.fc44 fedora 9.4 KiB perl-Getopt-Long noarch 1:2.58-521.fc44 fedora 144.5 KiB perl-Getopt-Std noarch 0:1.14-522.fc44 fedora 11.2 KiB perl-Git noarch 0:2.53.0-1.fc44 fedora 64.4 KiB perl-HTTP-Tiny noarch 0:0.092-2.fc44 fedora 157.6 KiB perl-IO x86_64 0:1.55-522.fc44 fedora 147.3 KiB perl-IO-Socket-IP noarch 0:0.43-522.fc44 fedora 100.3 KiB perl-IO-Socket-SSL noarch 0:2.098-2.fc44 fedora 723.5 KiB perl-IPC-Open3 noarch 0:1.24-522.fc44 fedora 27.7 KiB perl-MIME-Base32 noarch 0:1.303-25.fc44 fedora 30.7 KiB perl-MIME-Base64 x86_64 0:3.16-521.fc44 fedora 41.9 KiB perl-Net-SSLeay x86_64 0:1.94-12.fc44 fedora 1.3 MiB perl-POSIX x86_64 0:2.23-522.fc44 fedora 229.4 KiB perl-PathTools x86_64 0:3.94-521.fc44 fedora 179.9 KiB perl-Pod-Escapes noarch 1:1.07-521.fc44 fedora 24.9 KiB perl-Pod-Perldoc noarch 0:3.28.01-522.fc44 fedora 163.7 KiB perl-Pod-Simple noarch 1:3.47-4.fc44 fedora 565.3 KiB perl-Pod-Usage noarch 4:2.05-521.fc44 fedora 86.3 KiB perl-Scalar-List-Utils x86_64 5:1.70-2.fc44 fedora 144.8 KiB perl-SelectSaver noarch 0:1.02-522.fc44 fedora 2.2 KiB perl-Socket x86_64 4:2.040-3.fc44 fedora 120.1 KiB perl-Storable x86_64 1:3.37-522.fc44 fedora 235.1 KiB perl-Symbol noarch 0:1.09-522.fc44 fedora 6.8 KiB perl-Term-ANSIColor noarch 0:5.01-522.fc44 fedora 97.5 KiB perl-Term-Cap noarch 0:1.18-521.fc44 fedora 29.3 KiB perl-TermReadKey x86_64 0:2.38-27.fc44 fedora 63.9 KiB perl-Text-ParseWords noarch 0:3.31-521.fc44 fedora 13.6 KiB perl-Text-Tabs+Wrap noarch 0:2024.001-521.fc44 fedora 22.6 KiB perl-Time-HiRes x86_64 4:1.9778-521.fc44 fedora 115.6 KiB perl-Time-Local noarch 2:1.350-521.fc44 fedora 69.0 KiB perl-URI noarch 0:5.34-3.fc44 fedora 268.0 KiB perl-base noarch 0:2.27-522.fc44 fedora 12.6 KiB perl-constant noarch 0:1.33-522.fc44 fedora 26.2 KiB perl-if noarch 0:0.61.000-522.fc44 fedora 5.8 KiB perl-interpreter x86_64 4:5.42.0-522.fc44 fedora 118.5 KiB perl-lib x86_64 0:0.65-522.fc44 fedora 8.5 KiB perl-libnet noarch 0:3.15-522.fc44 fedora 289.4 KiB perl-libs x86_64 4:5.42.0-522.fc44 fedora 11.6 MiB perl-locale noarch 0:1.13-522.fc44 fedora 6.1 KiB perl-mro x86_64 0:1.29-522.fc44 fedora 41.4 KiB perl-overload noarch 0:1.40-522.fc44 fedora 71.6 KiB perl-overloading noarch 0:0.02-522.fc44 fedora 4.9 KiB perl-parent noarch 1:0.244-521.fc44 fedora 10.3 KiB perl-podlators noarch 1:6.0.2-521.fc44 fedora 317.5 KiB perl-vars noarch 0:1.05-522.fc44 fedora 3.9 KiB pixman x86_64 0:0.46.2-3.fc44 fedora 718.2 KiB python-pip-wheel noarch 0:25.3-2.fc44 fedora 1.2 MiB python3-construct noarch 0:2.10.70-12.fc44 fedora 1.0 MiB python3-enchant noarch 0:3.3.0-2.fc44 fedora 428.2 KiB python3-file-magic noarch 0:5.46-9.fc44 fedora 28.5 KiB python3-libs x86_64 0:3.14.3-1.fc44 fedora 43.7 MiB python3-packaging noarch 0:25.0-8.fc44 fedora 607.4 KiB python3-pybeam noarch 0:0.8.1-2.fc44 fedora 46.6 KiB python3-pyxdg noarch 0:0.28-1.fc44 fedora 469.8 KiB python3-rpm x86_64 0:6.0.1-2.fc44 fedora 179.2 KiB python3-six noarch 0:1.17.0-8.fc44 fedora 118.0 KiB python3-tomli-w noarch 0:1.2.0-7.fc44 fedora 34.8 KiB python3-zstandard x86_64 0:0.25.0-2.fc44 fedora 2.3 MiB rav1e-libs x86_64 0:0.8.1-3.fc44 fedora 3.1 MiB rpmlint-fedora-license-data noarch 0:1.73-2.fc44 fedora 23.8 KiB shared-mime-info x86_64 0:2.4-3.fc44 fedora 5.2 MiB svt-av1-libs x86_64 0:3.1.2-2.fc44 fedora 5.6 MiB tzdata noarch 0:2025c-2.fc44 fedora 1.2 MiB xml-common noarch 0:0.6.3-68.fc44 fedora 78.4 KiB Transaction Summary: Installing: 149 packages Total size of inbound packages is 60 MiB. Need to download 60 MiB. After this operation, 226 MiB extra will be used (install 226 MiB, remove 0 B). [ 1/149] git-0:2.53.0-1.fc44.x86_64 100% | 251.4 KiB/s | 41.0 KiB | 00m00s [ 2/149] python3-0:3.14.3-1.fc44.x86_6 100% | 477.3 KiB/s | 28.2 KiB | 00m00s [ 3/149] jq-0:1.8.1-2.fc44.x86_64 100% | 917.6 KiB/s | 215.6 KiB | 00m00s [ 4/149] rpmlint-0:2.8.0-3.fc44.noarch 100% | 1.2 MiB/s | 364.3 KiB | 00m00s [ 5/149] perl-File-Basename-0:2.86-522 100% | 292.1 KiB/s | 16.7 KiB | 00m00s [ 6/149] git-core-doc-0:2.53.0-1.fc44. 100% | 15.2 MiB/s | 3.1 MiB | 00m00s [ 7/149] perl-Getopt-Long-1:2.58-521.f 100% | 558.0 KiB/s | 63.6 KiB | 00m00s [ 8/149] perl-IPC-Open3-0:1.24-522.fc4 100% | 377.4 KiB/s | 23.4 KiB | 00m00s [ 9/149] perl-Git-0:2.53.0-1.fc44.noar 100% | 427.9 KiB/s | 38.1 KiB | 00m00s [ 10/149] perl-PathTools-0:3.94-521.fc4 100% | 1.2 MiB/s | 87.3 KiB | 00m00s [ 11/149] perl-TermReadKey-0:2.38-27.fc 100% | 506.5 KiB/s | 35.5 KiB | 00m00s [ 12/149] git-core-0:2.53.0-1.fc44.x86_ 100% | 12.9 MiB/s | 5.3 MiB | 00m00s [ 13/149] perl-lib-0:0.65-522.fc44.x86_ 100% | 277.3 KiB/s | 14.4 KiB | 00m00s [ 14/149] perl-interpreter-4:5.42.0-522 100% | 1.2 MiB/s | 71.8 KiB | 00m00s [ 15/149] dash-0:0.5.13.1-3.fc44.x86_64 100% | 2.1 MiB/s | 104.3 KiB | 00m00s [ 16/149] devscripts-checkbashisms-0:2. 100% | 791.9 KiB/s | 30.1 KiB | 00m00s [ 17/149] desktop-file-utils-0:0.28-5.f 100% | 1.4 MiB/s | 69.8 KiB | 00m00s [ 18/149] python3-enchant-0:3.3.0-2.fc4 100% | 2.5 MiB/s | 113.4 KiB | 00m00s [ 19/149] python3-file-magic-0:5.46-9.f 100% | 482.4 KiB/s | 19.8 KiB | 00m00s [ 20/149] python3-packaging-0:25.0-8.fc 100% | 1.7 MiB/s | 161.2 KiB | 00m00s [ 21/149] python3-pybeam-0:0.8.1-2.fc44 100% | 319.7 KiB/s | 32.3 KiB | 00m00s [ 22/149] python3-pyxdg-0:0.28-1.fc44.n 100% | 1.3 MiB/s | 133.7 KiB | 00m00s [ 23/149] python3-tomli-w-0:1.2.0-7.fc4 100% | 455.9 KiB/s | 23.3 KiB | 00m00s [ 24/149] python3-rpm-0:6.0.1-2.fc44.x8 100% | 765.0 KiB/s | 71.1 KiB | 00m00s [ 25/149] rpmlint-fedora-license-data-0 100% | 694.0 KiB/s | 30.5 KiB | 00m00s [ 26/149] oniguruma-0:6.9.10-4.fc44.x86 100% | 4.1 MiB/s | 220.0 KiB | 00m00s [ 27/149] python3-zstandard-0:0.25.0-2. 100% | 5.6 MiB/s | 703.8 KiB | 00m00s [ 28/149] python3-libs-0:3.14.3-1.fc44. 100% | 64.4 MiB/s | 10.1 MiB | 00m00s [ 29/149] less-0:691-2.fc44.x86_64 100% | 1.3 MiB/s | 220.0 KiB | 00m00s [ 30/149] expat-0:2.7.3-2.fc44.x86_64 100% | 678.2 KiB/s | 124.8 KiB | 00m00s [ 31/149] perl-Carp-0:1.54-521.fc44.noa 100% | 479.7 KiB/s | 28.8 KiB | 00m00s [ 32/149] perl-Exporter-0:5.79-521.fc44 100% | 497.1 KiB/s | 30.8 KiB | 00m00s [ 33/149] openssh-clients-0:10.2p1-3.fc 100% | 5.8 MiB/s | 771.0 KiB | 00m00s [ 34/149] perl-Pod-Usage-4:2.05-521.fc4 100% | 625.6 KiB/s | 40.7 KiB | 00m00s [ 35/149] perl-Text-ParseWords-0:3.31-5 100% | 253.4 KiB/s | 16.5 KiB | 00m00s [ 36/149] perl-base-0:2.27-522.fc44.noa 100% | 221.1 KiB/s | 15.7 KiB | 00m00s [ 37/149] perl-overload-0:1.40-522.fc44 100% | 715.2 KiB/s | 45.1 KiB | 00m00s [ 38/149] perl-Error-1:0.17030-3.fc44.n 100% | 575.9 KiB/s | 40.3 KiB | 00m00s [ 39/149] perl-Fcntl-0:1.20-522.fc44.x8 100% | 635.4 KiB/s | 29.2 KiB | 00m00s [ 40/149] perl-constant-0:1.33-522.fc44 100% | 147.7 KiB/s | 22.9 KiB | 00m00s [ 41/149] perl-POSIX-0:2.23-522.fc44.x8 100% | 1.7 MiB/s | 96.5 KiB | 00m00s [ 42/149] perl-IO-0:1.55-522.fc44.x86_6 100% | 887.7 KiB/s | 81.7 KiB | 00m00s [ 43/149] perl-Errno-0:1.38-522.fc44.x8 100% | 209.0 KiB/s | 14.4 KiB | 00m00s [ 44/149] perl-Scalar-List-Utils-5:1.70 100% | 1.1 MiB/s | 75.4 KiB | 00m00s [ 45/149] perl-Symbol-0:1.09-522.fc44.n 100% | 93.2 KiB/s | 13.7 KiB | 00m00s [ 46/149] perl-libs-4:5.42.0-522.fc44.x 100% | 27.1 MiB/s | 2.6 MiB | 00m00s [ 47/149] perl-vars-0:1.05-522.fc44.noa 100% | 198.0 KiB/s | 12.5 KiB | 00m00s [ 48/149] perl-DynaLoader-0:1.57-522.fc 100% | 252.3 KiB/s | 25.5 KiB | 00m00s [ 49/149] emacs-filesystem-1:30.2-2.fc4 100% | 121.9 KiB/s | 8.0 KiB | 00m00s [ 50/149] perl-File-Temp-1:0.231.200-2. 100% | 863.2 KiB/s | 59.6 KiB | 00m00s [ 51/149] python3-construct-0:2.10.70-1 100% | 2.3 MiB/s | 160.1 KiB | 00m00s [ 52/149] mpdecimal-0:4.0.1-3.fc44.x86_ 100% | 1.7 MiB/s | 99.1 KiB | 00m00s [ 53/149] python-pip-wheel-0:25.3-2.fc4 100% | 14.7 MiB/s | 1.1 MiB | 00m00s [ 54/149] tzdata-0:2025c-2.fc44.noarch 100% | 5.9 MiB/s | 714.3 KiB | 00m00s [ 55/149] glib2-0:2.87.2-2.fc44.x86_64 100% | 10.7 MiB/s | 3.1 MiB | 00m00s [ 56/149] libedit-0:3.1-58.20251016cvs. 100% | 997.0 KiB/s | 109.7 KiB | 00m00s [ 57/149] perl-Pod-Perldoc-0:3.28.01-52 100% | 2.4 MiB/s | 86.1 KiB | 00m00s [ 58/149] perl-podlators-1:6.0.2-521.fc 100% | 2.4 MiB/s | 128.5 KiB | 00m00s [ 59/149] openssh-0:10.2p1-3.fc44.x86_6 100% | 3.0 MiB/s | 355.1 KiB | 00m00s [ 60/149] perl-mro-0:1.29-522.fc44.x86_ 100% | 396.1 KiB/s | 29.3 KiB | 00m00s [ 61/149] perl-overloading-0:0.02-522.f 100% | 199.9 KiB/s | 12.4 KiB | 00m00s [ 62/149] perl-SelectSaver-0:1.02-522.f 100% | 267.0 KiB/s | 11.2 KiB | 00m00s [ 63/149] perl-File-stat-0:1.14-522.fc4 100% | 209.4 KiB/s | 16.5 KiB | 00m00s [ 64/149] perl-Socket-4:2.040-3.fc44.x8 100% | 1.1 MiB/s | 55.3 KiB | 00m00s [ 65/149] perl-File-Path-0:2.18-522.fc4 100% | 542.4 KiB/s | 35.3 KiB | 00m00s [ 66/149] perl-parent-1:0.244-521.fc44. 100% | 248.0 KiB/s | 14.9 KiB | 00m00s [ 67/149] perl-locale-0:1.13-522.fc44.n 100% | 88.4 KiB/s | 13.0 KiB | 00m00s [ 68/149] python3-six-0:1.17.0-8.fc44.n 100% | 477.3 KiB/s | 42.0 KiB | 00m00s [ 69/149] groff-base-0:1.23.0-12.fc44.x 100% | 8.1 MiB/s | 1.1 MiB | 00m00s [ 70/149] perl-Pod-Simple-1:3.47-4.fc44 100% | 1.7 MiB/s | 220.0 KiB | 00m00s [ 71/149] perl-Term-ANSIColor-0:5.01-52 100% | 619.2 KiB/s | 47.7 KiB | 00m00s [ 72/149] perl-HTTP-Tiny-0:0.092-2.fc44 100% | 389.0 KiB/s | 57.2 KiB | 00m00s [ 73/149] perl-IO-Socket-SSL-0:2.098-2. 100% | 3.4 MiB/s | 234.7 KiB | 00m00s [ 74/149] perl-Term-Cap-0:1.18-521.fc44 100% | 278.5 KiB/s | 22.0 KiB | 00m00s [ 75/149] perl-Class-Struct-0:0.68-522. 100% | 185.9 KiB/s | 21.6 KiB | 00m00s [ 76/149] perl-MIME-Base64-0:3.16-521.f 100% | 595.4 KiB/s | 29.8 KiB | 00m00s [ 77/149] perl-Net-SSLeay-0:1.94-12.fc4 100% | 3.4 MiB/s | 373.4 KiB | 00m00s [ 78/149] perl-Pod-Escapes-1:1.07-521.f 100% | 582.1 KiB/s | 19.8 KiB | 00m00s [ 79/149] perl-Time-HiRes-4:1.9778-521. 100% | 529.6 KiB/s | 57.2 KiB | 00m00s [ 80/149] perl-Time-Local-2:1.350-521.f 100% | 310.9 KiB/s | 34.5 KiB | 00m00s [ 81/149] perl-Text-Tabs+Wrap-0:2024.00 100% | 293.9 KiB/s | 21.8 KiB | 00m00s [ 82/149] perl-if-0:0.61.000-522.fc44.n 100% | 173.0 KiB/s | 13.5 KiB | 00m00s [ 83/149] perl-IO-Socket-IP-0:0.43-522. 100% | 1.2 MiB/s | 42.2 KiB | 00m00s [ 84/149] perl-URI-0:5.34-3.fc44.noarch 100% | 1.8 MiB/s | 149.2 KiB | 00m00s [ 85/149] perl-AutoLoader-0:5.74-522.fc 100% | 304.8 KiB/s | 20.7 KiB | 00m00s [ 86/149] perl-MIME-Base32-0:1.303-25.f 100% | 336.4 KiB/s | 20.5 KiB | 00m00s [ 87/149] perl-Data-Dumper-0:2.191-522. 100% | 725.0 KiB/s | 56.5 KiB | 00m00s [ 88/149] perl-libnet-0:3.15-522.fc44.n 100% | 1.4 MiB/s | 128.4 KiB | 00m00s [ 89/149] ncurses-0:6.6-1.fc44.x86_64 100% | 1.2 MiB/s | 429.8 KiB | 00m00s [ 90/149] perl-Digest-MD5-0:2.59-521.fc 100% | 455.9 KiB/s | 36.0 KiB | 00m00s [ 91/149] perl-FileHandle-0:2.05-522.fc 100% | 267.6 KiB/s | 15.0 KiB | 00m00s [ 92/149] perl-B-0:1.89-522.fc44.x86_64 100% | 900.5 KiB/s | 177.4 KiB | 00m00s [ 93/149] perl-Digest-0:1.20-521.fc44.n 100% | 306.9 KiB/s | 24.9 KiB | 00m00s [ 94/149] libappstream-glib-0:0.8.3-5.f 100% | 3.1 MiB/s | 403.5 KiB | 00m00s [ 95/149] gdk-pixbuf2-0:2.44.4-2.fc44.x 100% | 3.6 MiB/s | 489.4 KiB | 00m00s [ 96/149] json-glib-0:1.10.8-5.fc44.x86 100% | 1.5 MiB/s | 175.5 KiB | 00m00s [ 97/149] glycin-libs-0:2.0.5-4.fc44.x8 100% | 14.2 MiB/s | 1.5 MiB | 00m00s [ 98/149] shared-mime-info-0:2.4-3.fc44 100% | 3.7 MiB/s | 402.0 KiB | 00m00s [ 99/149] fontconfig-0:2.17.0-4.fc44.x8 100% | 3.2 MiB/s | 278.2 KiB | 00m00s [100/149] glycin-loaders-0:2.0.5-4.fc44 100% | 29.6 MiB/s | 2.8 MiB | 00m00s [101/149] lcms2-0:2.16-7.fc44.x86_64 100% | 2.0 MiB/s | 191.4 KiB | 00m00s [102/149] libseccomp-0:2.6.0-3.fc44.x86 100% | 539.3 KiB/s | 77.1 KiB | 00m00s [103/149] default-fonts-core-sans-0:4.2 100% | 372.9 KiB/s | 29.5 KiB | 00m00s [104/149] fonts-filesystem-1:5.0.0-2.fc 100% | 84.7 KiB/s | 8.9 KiB | 00m00s [105/149] freetype-0:2.14.1-2.fc44.x86_ 100% | 7.4 MiB/s | 445.5 KiB | 00m00s [106/149] cairo-0:1.18.4-6.fc44.x86_64 100% | 11.4 MiB/s | 756.8 KiB | 00m00s [107/149] bubblewrap-0:0.11.0-4.fc44.x8 100% | 753.2 KiB/s | 66.3 KiB | 00m00s [108/149] xml-common-0:0.6.3-68.fc44.no 100% | 230.6 KiB/s | 31.1 KiB | 00m00s [109/149] libheif-0:1.21.2-1.fc44.x86_6 100% | 8.4 MiB/s | 668.3 KiB | 00m00s [110/149] libjxl-1:0.11.1-8.fc44.x86_64 100% | 14.6 MiB/s | 1.2 MiB | 00m00s [111/149] librsvg2-0:2.61.0-6.fc44.x86_ 100% | 20.5 MiB/s | 1.9 MiB | 00m00s [112/149] abattis-cantarell-vf-fonts-0: 100% | 1.3 MiB/s | 120.4 KiB | 00m00s [113/149] harfbuzz-0:12.3.2-1.fc44.x86_ 100% | 13.8 MiB/s | 1.1 MiB | 00m00s [114/149] libX11-0:1.8.12-3.fc44.x86_64 100% | 14.1 MiB/s | 680.3 KiB | 00m00s [115/149] libpng-2:1.6.55-1.fc44.x86_64 100% | 1.4 MiB/s | 128.8 KiB | 00m00s [116/149] google-noto-sans-vf-fonts-0:2 100% | 3.1 MiB/s | 614.9 KiB | 00m00s [117/149] libXext-0:1.3.6-5.fc44.x86_64 100% | 617.0 KiB/s | 40.7 KiB | 00m00s [118/149] libXrender-0:0.9.12-4.fc44.x8 100% | 276.1 KiB/s | 27.9 KiB | 00m00s [119/149] libxcb-0:1.17.0-7.fc44.x86_64 100% | 2.8 MiB/s | 238.0 KiB | 00m00s [120/149] lzo-0:2.10-16.fc44.x86_64 100% | 917.1 KiB/s | 69.7 KiB | 00m00s [121/149] libaom-0:3.13.1-5.fc44.x86_64 100% | 21.1 MiB/s | 1.9 MiB | 00m00s [122/149] pixman-0:0.46.2-3.fc44.x86_64 100% | 2.7 MiB/s | 297.4 KiB | 00m00s [123/149] libdav1d-0:1.5.2-3.fc44.x86_6 100% | 6.2 MiB/s | 641.4 KiB | 00m00s [124/149] libwebp-0:1.6.0-3.fc44.x86_64 100% | 4.7 MiB/s | 329.9 KiB | 00m00s [125/149] libjpeg-turbo-0:3.1.2-2.fc44. 100% | 2.4 MiB/s | 243.8 KiB | 00m00s [126/149] libopenjph-0:0.25.3-3.fc44.x8 100% | 1.4 MiB/s | 161.9 KiB | 00m00s [127/149] rav1e-libs-0:0.8.1-3.fc44.x86 100% | 10.3 MiB/s | 1.1 MiB | 00m00s [128/149] openjpeg-0:2.5.4-3.fc44.x86_6 100% | 1.4 MiB/s | 198.1 KiB | 00m00s [129/149] noopenh264-0:2.6.0-4.fc44.x86 100% | 137.6 KiB/s | 22.0 KiB | 00m00s [130/149] cairo-gobject-0:1.18.4-6.fc44 100% | 269.9 KiB/s | 17.0 KiB | 00m00s [131/149] svt-av1-libs-0:3.1.2-2.fc44.x 100% | 16.5 MiB/s | 2.0 MiB | 00m00s [132/149] highway-0:1.3.0-2.fc44.x86_64 100% | 5.3 MiB/s | 694.6 KiB | 00m00s [133/149] pango-0:1.57.0-4.fc44.x86_64 100% | 2.7 MiB/s | 360.3 KiB | 00m00s [134/149] graphite2-0:1.3.14-20.fc44.x8 100% | 1.1 MiB/s | 96.5 KiB | 00m00s [135/149] google-noto-fonts-common-0:20 100% | 155.6 KiB/s | 17.7 KiB | 00m00s [136/149] libXau-0:1.0.12-4.fc44.x86_64 100% | 340.6 KiB/s | 33.7 KiB | 00m00s [137/149] libvmaf-0:3.0.0-5.fc44.x86_64 100% | 1.0 MiB/s | 202.9 KiB | 00m00s [138/149] libX11-common-0:1.8.12-3.fc44 100% | 804.4 KiB/s | 175.4 KiB | 00m00s [139/149] libXft-0:2.3.8-10.fc44.x86_64 100% | 1.0 MiB/s | 74.3 KiB | 00m00s [140/149] libthai-0:0.1.30-2.fc44.x86_6 100% | 2.1 MiB/s | 216.1 KiB | 00m00s [141/149] fribidi-0:1.0.16-4.fc44.x86_6 100% | 225.9 KiB/s | 53.8 KiB | 00m00s [142/149] libdatrie-0:0.2.14-2.fc44.x86 100% | 446.7 KiB/s | 33.1 KiB | 00m00s [143/149] enchant2-0:2.8.14-2.fc44.x86_ 100% | 1.7 MiB/s | 85.6 KiB | 00m00s [144/149] hunspell-filesystem-0:1.7.2-1 100% | 122.4 KiB/s | 7.7 KiB | 00m00s [145/149] hunspell-en-US-0:0.20201207-1 100% | 2.1 MiB/s | 180.5 KiB | 00m00s [146/149] hunspell-0:1.7.2-11.fc44.x86_ 100% | 4.2 MiB/s | 517.3 KiB | 00m00s [147/149] perl-Getopt-Std-0:1.14-522.fc 100% | 168.7 KiB/s | 15.2 KiB | 00m00s [148/149] perl-Encode-4:3.21-521.fc44.x 100% | 8.7 MiB/s | 1.1 MiB | 00m00s [149/149] perl-Storable-1:3.37-522.fc44 100% | 1.0 MiB/s | 100.9 KiB | 00m00s -------------------------------------------------------------------------------- [149/149] Total 100% | 12.0 MiB/s | 59.9 MiB | 00m05s Running transaction [ 1/151] Verify package files 100% | 756.0 B/s | 149.0 B | 00m00s [ 2/151] Prepare transaction 100% | 2.7 KiB/s | 149.0 B | 00m00s [ 3/151] Installing glib2-0:2.87.2-2.f 100% | 314.3 MiB/s | 15.1 MiB | 00m00s [ 4/151] Installing fonts-filesystem-1 100% | 769.5 KiB/s | 788.0 B | 00m00s [ 5/151] Installing shared-mime-info-0 100% | 118.0 MiB/s | 2.6 MiB | 00m00s [ 6/151] Installing hunspell-filesyste 100% | 0.0 B/s | 388.0 B | 00m00s [ 7/151] Installing libdav1d-0:1.5.2-3 100% | 424.3 MiB/s | 1.7 MiB | 00m00s [ 8/151] Installing libpng-2:1.6.55-1. 100% | 245.0 MiB/s | 250.9 KiB | 00m00s [ 9/151] Installing expat-0:2.7.3-2.fc 100% | 26.0 MiB/s | 318.9 KiB | 00m00s [ 10/151] Installing hunspell-en-US-0:0 100% | 272.5 MiB/s | 558.1 KiB | 00m00s [ 11/151] Installing hunspell-0:1.7.2-1 100% | 85.3 MiB/s | 1.4 MiB | 00m00s [ 12/151] Installing enchant2-0:2.8.14- 100% | 18.1 MiB/s | 221.9 KiB | 00m00s [ 13/151] Installing abattis-cantarell- 100% | 189.9 MiB/s | 194.4 KiB | 00m00s [ 14/151] Installing json-glib-0:1.10.8 100% | 148.5 MiB/s | 608.3 KiB | 00m00s [ 15/151] Installing libdatrie-0:0.2.14 100% | 0.0 B/s | 62.8 KiB | 00m00s [ 16/151] Installing libthai-0:0.1.30-2 100% | 391.9 MiB/s | 802.7 KiB | 00m00s [ 17/151] Installing fribidi-0:1.0.16-4 100% | 17.1 MiB/s | 192.5 KiB | 00m00s [ 18/151] Installing libvmaf-0:3.0.0-5. 100% | 414.1 MiB/s | 848.2 KiB | 00m00s [ 19/151] Installing libaom-0:3.13.1-5. 100% | 423.8 MiB/s | 5.1 MiB | 00m00s [ 20/151] Installing libXau-0:1.0.12-4. 100% | 72.6 MiB/s | 74.3 KiB | 00m00s [ 21/151] Installing libxcb-0:1.17.0-7. 100% | 269.4 MiB/s | 1.1 MiB | 00m00s [ 22/151] Installing libX11-common-0:1. 100% | 169.5 MiB/s | 1.2 MiB | 00m00s [ 23/151] Installing libX11-0:1.8.12-3. 100% | 448.0 MiB/s | 1.3 MiB | 00m00s [ 24/151] Installing libXrender-0:0.9.1 100% | 0.0 B/s | 51.2 KiB | 00m00s [ 25/151] Installing libXext-0:1.3.6-5. 100% | 88.9 MiB/s | 91.1 KiB | 00m00s [ 26/151] Installing graphite2-0:1.3.14 100% | 17.2 MiB/s | 193.6 KiB | 00m00s [ 27/151] Installing harfbuzz-0:12.3.2- 100% | 391.4 MiB/s | 2.7 MiB | 00m00s [ 28/151] Installing freetype-0:2.14.1- 100% | 300.7 MiB/s | 923.9 KiB | 00m00s [ 29/151] Installing google-noto-fonts- 100% | 0.0 B/s | 18.5 KiB | 00m00s [ 30/151] Installing google-noto-sans-v 100% | 347.8 MiB/s | 1.4 MiB | 00m00s [ 31/151] Installing default-fonts-core 100% | 17.8 MiB/s | 18.2 KiB | 00m00s [ 32/151] Installing highway-0:1.3.0-2. 100% | 614.9 MiB/s | 5.5 MiB | 00m00s [ 33/151] Installing libjxl-1:0.11.1-8. 100% | 456.7 MiB/s | 4.1 MiB | 00m00s [ 34/151] Installing svt-av1-libs-0:3.1 100% | 431.6 MiB/s | 5.6 MiB | 00m00s [ 35/151] Installing rav1e-libs-0:0.8.1 100% | 440.5 MiB/s | 3.1 MiB | 00m00s [ 36/151] Installing openjpeg-0:2.5.4-3 100% | 227.6 MiB/s | 466.1 KiB | 00m00s [ 37/151] Installing noopenh264-0:2.6.0 100% | 39.7 MiB/s | 40.6 KiB | 00m00s [ 38/151] Installing libwebp-0:1.6.0-3. 100% | 316.4 MiB/s | 972.1 KiB | 00m00s [ 39/151] Installing libopenjph-0:0.25. 100% | 471.9 MiB/s | 483.3 KiB | 00m00s [ 40/151] Installing libjpeg-turbo-0:3. 100% | 399.7 MiB/s | 818.5 KiB | 00m00s [ 41/151] Installing libheif-0:1.21.2-1 100% | 454.4 MiB/s | 1.8 MiB | 00m00s [ 42/151] Installing pixman-0:0.46.2-3. 100% | 351.2 MiB/s | 719.3 KiB | 00m00s [ 43/151] Installing lzo-0:2.10-16.fc44 100% | 172.3 MiB/s | 176.4 KiB | 00m00s [ 44/151] Installing bubblewrap-0:0.11. 100% | 8.9 MiB/s | 137.1 KiB | 00m00s [ 45/151] Installing xml-common-0:0.6.3 100% | 79.2 MiB/s | 81.1 KiB | 00m00s [ 46/151] Installing fontconfig-0:2.17. 100% | 772.6 KiB/s | 795.8 KiB | 00m01s [ 47/151] Installing cairo-0:1.18.4-6.f 100% | 365.4 MiB/s | 1.8 MiB | 00m00s [ 48/151] Installing cairo-gobject-0:1. 100% | 0.0 B/s | 31.8 KiB | 00m00s [ 49/151] Installing libXft-0:2.3.8-10. 100% | 165.8 MiB/s | 169.8 KiB | 00m00s [ 50/151] Installing pango-0:1.57.0-4.f 100% | 71.6 MiB/s | 1.0 MiB | 00m00s [ 51/151] Installing libseccomp-0:2.6.0 100% | 221.4 MiB/s | 226.7 KiB | 00m00s [ 52/151] Installing lcms2-0:2.16-7.fc4 100% | 218.4 MiB/s | 447.3 KiB | 00m00s [ 53/151] Installing librsvg2-0:2.61.0- 100% | 422.3 MiB/s | 5.1 MiB | 00m00s [ 54/151] Installing glycin-loaders-0:2 100% | 530.6 MiB/s | 12.7 MiB | 00m00s [ 55/151] Installing glycin-libs-0:2.0. 100% | 424.0 MiB/s | 4.2 MiB | 00m00s [ 56/151] Installing gdk-pixbuf2-0:2.44 100% | 133.3 MiB/s | 2.5 MiB | 00m00s [ 57/151] Installing libappstream-glib- 100% | 93.1 MiB/s | 1.4 MiB | 00m00s [ 58/151] Installing ncurses-0:6.6-1.fc 100% | 33.5 MiB/s | 618.0 KiB | 00m00s [ 59/151] Installing groff-base-0:1.23. 100% | 139.1 MiB/s | 3.9 MiB | 00m00s [ 60/151] Installing perl-Digest-0:1.20 100% | 0.0 B/s | 37.1 KiB | 00m00s [ 61/151] Installing perl-Digest-MD5-0: 100% | 60.0 MiB/s | 61.5 KiB | 00m00s [ 62/151] Installing perl-FileHandle-0: 100% | 0.0 B/s | 9.8 KiB | 00m00s [ 63/151] Installing perl-B-0:1.89-522. 100% | 246.4 MiB/s | 504.5 KiB | 00m00s [ 64/151] Installing perl-libnet-0:3.15 100% | 287.8 MiB/s | 294.7 KiB | 00m00s [ 65/151] Installing perl-Data-Dumper-0 100% | 114.7 MiB/s | 117.4 KiB | 00m00s [ 66/151] Installing perl-MIME-Base32-0 100% | 31.4 MiB/s | 32.2 KiB | 00m00s [ 67/151] Installing perl-URI-0:5.34-3. 100% | 137.6 MiB/s | 281.8 KiB | 00m00s [ 68/151] Installing perl-AutoLoader-0: 100% | 0.0 B/s | 21.0 KiB | 00m00s [ 69/151] Installing perl-IO-Socket-IP- 100% | 99.8 MiB/s | 102.2 KiB | 00m00s [ 70/151] Installing perl-IO-Socket-SSL 100% | 355.3 MiB/s | 727.6 KiB | 00m00s [ 71/151] Installing perl-Net-SSLeay-0: 100% | 269.4 MiB/s | 1.3 MiB | 00m00s [ 72/151] Installing perl-if-0:0.61.000 100% | 0.0 B/s | 6.2 KiB | 00m00s [ 73/151] Installing perl-Text-Tabs+Wra 100% | 0.0 B/s | 23.9 KiB | 00m00s [ 74/151] Installing perl-Pod-Escapes-1 100% | 0.0 B/s | 25.9 KiB | 00m00s [ 75/151] Installing perl-Time-Local-2: 100% | 68.9 MiB/s | 70.6 KiB | 00m00s [ 76/151] Installing perl-Time-HiRes-4: 100% | 114.9 MiB/s | 117.7 KiB | 00m00s [ 77/151] Installing perl-File-Path-0:2 100% | 0.0 B/s | 64.5 KiB | 00m00s [ 78/151] Installing perl-locale-0:1.13 100% | 0.0 B/s | 6.5 KiB | 00m00s [ 79/151] Installing perl-HTTP-Tiny-0:0 100% | 155.9 MiB/s | 159.7 KiB | 00m00s [ 80/151] Installing perl-Pod-Simple-1: 100% | 280.7 MiB/s | 574.9 KiB | 00m00s [ 81/151] Installing perl-Class-Struct- 100% | 0.0 B/s | 25.9 KiB | 00m00s [ 82/151] Installing perl-File-Temp-1:0 100% | 161.6 MiB/s | 165.5 KiB | 00m00s [ 83/151] Installing perl-IPC-Open3-0:1 100% | 0.0 B/s | 28.5 KiB | 00m00s [ 84/151] Installing perl-Term-Cap-0:1. 100% | 0.0 B/s | 30.6 KiB | 00m00s [ 85/151] Installing perl-Term-ANSIColo 100% | 96.9 MiB/s | 99.2 KiB | 00m00s [ 86/151] Installing perl-POSIX-0:2.23- 100% | 225.2 MiB/s | 230.6 KiB | 00m00s [ 87/151] Installing perl-Pod-Perldoc-0 100% | 13.8 MiB/s | 169.2 KiB | 00m00s [ 88/151] Installing perl-podlators-1:6 100% | 28.5 MiB/s | 321.4 KiB | 00m00s [ 89/151] Installing perl-File-stat-0:1 100% | 0.0 B/s | 13.1 KiB | 00m00s [ 90/151] Installing perl-Socket-4:2.04 100% | 119.3 MiB/s | 122.2 KiB | 00m00s [ 91/151] Installing perl-SelectSaver-0 100% | 0.0 B/s | 2.6 KiB | 00m00s [ 92/151] Installing perl-Symbol-0:1.09 100% | 0.0 B/s | 7.3 KiB | 00m00s [ 93/151] Installing perl-Pod-Usage-4:2 100% | 7.8 MiB/s | 87.9 KiB | 00m00s [ 94/151] Installing perl-IO-0:1.55-522 100% | 148.0 MiB/s | 151.5 KiB | 00m00s [ 95/151] Installing perl-overloading-0 100% | 0.0 B/s | 5.6 KiB | 00m00s [ 96/151] Installing perl-mro-0:1.29-52 100% | 0.0 B/s | 42.6 KiB | 00m00s [ 97/151] Installing perl-Fcntl-0:1.20- 100% | 0.0 B/s | 49.8 KiB | 00m00s [ 98/151] Installing perl-base-0:2.27-5 100% | 0.0 B/s | 13.0 KiB | 00m00s [ 99/151] Installing perl-Text-ParseWor 100% | 0.0 B/s | 14.6 KiB | 00m00s [100/151] Installing perl-File-Basename 100% | 0.0 B/s | 14.6 KiB | 00m00s [101/151] Installing perl-Getopt-Long-1 100% | 143.8 MiB/s | 147.2 KiB | 00m00s [102/151] Installing perl-Storable-1:3. 100% | 231.2 MiB/s | 236.7 KiB | 00m00s [103/151] Installing perl-Getopt-Std-0: 100% | 0.0 B/s | 11.8 KiB | 00m00s [104/151] Installing perl-MIME-Base64-0 100% | 43.1 MiB/s | 44.2 KiB | 00m00s [105/151] Installing perl-parent-1:0.24 100% | 0.0 B/s | 11.0 KiB | 00m00s [106/151] Installing perl-overload-0:1. 100% | 0.0 B/s | 72.0 KiB | 00m00s [107/151] Installing perl-vars-0:1.05-5 100% | 0.0 B/s | 4.3 KiB | 00m00s [108/151] Installing perl-Scalar-List-U 100% | 145.0 MiB/s | 148.5 KiB | 00m00s [109/151] Installing perl-Errno-0:1.38- 100% | 0.0 B/s | 8.8 KiB | 00m00s [110/151] Installing perl-constant-0:1. 100% | 0.0 B/s | 27.4 KiB | 00m00s [111/151] Installing perl-Encode-4:3.21 100% | 223.5 MiB/s | 4.7 MiB | 00m00s [112/151] Installing perl-DynaLoader-0: 100% | 0.0 B/s | 32.5 KiB | 00m00s [113/151] Installing perl-PathTools-0:3 100% | 180.1 MiB/s | 184.4 KiB | 00m00s [114/151] Installing perl-Exporter-0:5. 100% | 0.0 B/s | 55.6 KiB | 00m00s [115/151] Installing perl-Carp-0:1.54-5 100% | 23.3 MiB/s | 47.7 KiB | 00m00s [116/151] Installing perl-libs-4:5.42.0 100% | 333.7 MiB/s | 11.7 MiB | 00m00s [117/151] Installing perl-interpreter-4 100% | 10.7 MiB/s | 120.2 KiB | 00m00s [118/151] Installing devscripts-checkba 100% | 4.8 MiB/s | 53.8 KiB | 00m00s [119/151] Installing perl-TermReadKey-0 100% | 64.5 MiB/s | 66.1 KiB | 00m00s [120/151] Installing perl-lib-0:0.65-52 100% | 0.0 B/s | 8.9 KiB | 00m00s [121/151] Installing perl-Error-1:0.170 100% | 78.1 MiB/s | 80.0 KiB | 00m00s [122/151] Installing openssh-0:10.2p1-3 100% | 102.4 MiB/s | 1.4 MiB | 00m00s [123/151] Installing libedit-0:3.1-58.2 100% | 243.9 MiB/s | 249.8 KiB | 00m00s [124/151] Installing openssh-clients-0: 100% | 111.0 MiB/s | 2.7 MiB | 00m00s [125/151] Installing tzdata-0:2025c-2.f 100% | 56.0 MiB/s | 1.5 MiB | 00m00s [126/151] Installing python-pip-wheel-0 100% | 602.0 MiB/s | 1.2 MiB | 00m00s [127/151] Installing mpdecimal-0:4.0.1- 100% | 42.7 MiB/s | 218.6 KiB | 00m00s [128/151] Installing python3-libs-0:3.1 100% | 383.8 MiB/s | 44.1 MiB | 00m00s [129/151] Installing python3-0:3.14.3-1 100% | 2.5 MiB/s | 30.5 KiB | 00m00s [130/151] Installing python3-enchant-0: 100% | 213.8 MiB/s | 437.9 KiB | 00m00s [131/151] Installing python3-file-magic 100% | 30.1 MiB/s | 30.8 KiB | 00m00s [132/151] Installing python3-packaging- 100% | 201.8 MiB/s | 619.9 KiB | 00m00s [133/151] Installing python3-pyxdg-0:0. 100% | 234.2 MiB/s | 479.6 KiB | 00m00s [134/151] Installing python3-rpm-0:6.0. 100% | 178.7 MiB/s | 183.0 KiB | 00m00s [135/151] Installing python3-tomli-w-0: 100% | 37.4 MiB/s | 38.3 KiB | 00m00s [136/151] Installing python3-zstandard- 100% | 389.2 MiB/s | 2.3 MiB | 00m00s [137/151] Installing python3-six-0:1.17 100% | 117.5 MiB/s | 120.3 KiB | 00m00s [138/151] Installing python3-construct- 100% | 334.1 MiB/s | 1.0 MiB | 00m00s [139/151] Installing python3-pybeam-0:0 100% | 51.9 MiB/s | 53.1 KiB | 00m00s [140/151] Installing emacs-filesystem-1 100% | 0.0 B/s | 812.0 B | 00m00s [141/151] Installing desktop-file-utils 100% | 18.0 MiB/s | 221.7 KiB | 00m00s [142/151] Installing less-0:691-2.fc44. 100% | 38.1 MiB/s | 468.1 KiB | 00m00s [143/151] Installing git-core-0:2.53.0- 100% | 403.5 MiB/s | 24.6 MiB | 00m00s [144/151] Installing git-core-doc-0:2.5 100% | 426.4 MiB/s | 18.8 MiB | 00m00s [145/151] Installing git-0:2.53.0-1.fc4 100% | 0.0 B/s | 57.7 KiB | 00m00s [146/151] Installing perl-Git-0:2.53.0- 100% | 0.0 B/s | 65.4 KiB | 00m00s [147/151] Installing oniguruma-0:6.9.10 100% | 377.5 MiB/s | 773.1 KiB | 00m00s [148/151] Installing dash-0:0.5.13.1-3. 100% | 9.6 MiB/s | 177.1 KiB | 00m00s [149/151] Installing rpmlint-0:2.8.0-3. 100% | 78.3 MiB/s | 1.3 MiB | 00m00s [150/151] Installing rpmlint-fedora-lic 100% | 0.0 B/s | 24.9 KiB | 00m00s [151/151] Installing jq-0:1.8.1-2.fc44. 100% | 2.0 MiB/s | 467.7 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-ne_vjoza/script /script INFO: mock.py version 6.6 starting (python version = 3.14.2, NVR = mock-6.6-1.fc43), args: /usr/libexec/mock/mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --copyin /var/lib/copr-rpmbuild/workspace/workdir-ne_vjoza/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.6 INFO: Mock Version: 6.6 Start(bootstrap): chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-44-x86_64-bootstrap/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-44-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-44-x86_64/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-44-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-ne_vjoza/script to /var/lib/mock/copr-custom-fedora-44-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.6 starting (python version = 3.14.2, NVR = mock-6.6-1.fc43), 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.6 INFO: Mock Version: 6.6 Start(bootstrap): chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-44-x86_64-bootstrap/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-44-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-44-x86_64/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-44-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.6 starting (python version = 3.14.2, NVR = mock-6.6-1.fc43), 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.6 INFO: Mock Version: 6.6 Start(bootstrap): chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-44-x86_64-bootstrap/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-44-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-44-x86_64/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-44-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-44-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.6 starting (python version = 3.14.2, NVR = mock-6.6-1.fc43), 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-44-x86_64-bootstrap/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-44-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-44-x86_64/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-44-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=9ad0ae01eae7426f955d261e719a578f;user=root;hostname=aws-x86-64-normalreserved-prod-02843170-20260305-011027;machineid=ec2ec6147d769b3397821e28a4b0c750;bootid=d686a4cc10854b71966cfc53f2c75ae6;pid=12859;pidfdid=12860;comm=systemd-nspawn;container=61745d90cee148ef936aef48d3b5b58a;type=container\]11;?\]2;🔵 Container 61745d90cee148ef936aef48d3b5b58a on aws-x86-64-normalreserved-prod-02843170-20260305-011027\]3008;end=9ad0ae01eae7426f955d261e719a578f\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=beta COPR_PACKAGE=Sunshine COPR_RESULTDIR=/workdir /script' INFO: mock.py version 6.6 starting (python version = 3.14.2, NVR = mock-6.6-1.fc43), 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=beta 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.6 INFO: Mock Version: 6.6 Start(bootstrap): chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-44-x86_64-bootstrap/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-44-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-44-x86_64/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-44-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=beta COPR_PACKAGE=Sunshine COPR_RESULTDIR=/workdir /script'] Start: chroot ['set -xe ; cd /workdir ; COPR_OWNER=lizardbyte COPR_PROJECT=beta COPR_PACKAGE=Sunshine COPR_RESULTDIR=/workdir /script'] + cd /workdir + COPR_OWNER=lizardbyte + COPR_PROJECT=beta + 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": "PUSH", "git_hash": "a97ed29b4e0e456f0edb65c68f5aa3e6ae431bdd" }--- + echo --- ++ jq -r '.pr_id // empty' /workdir/hook_payload + PR= + [[ -z '' ]] + BRANCH=master + copr-travis-checkout /workdir/hook_payload Note: switching to 'a97ed29b4e0e456f0edb65c68f5aa3e6ae431bdd'. 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 a97ed29 build(deps-dev): bump serve from 14.2.5 to 14.2.6 in the dev-dependencies group (#4814) + 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 'packaging/linux/flatpak/deps/shared-modules' (https://github.com/flathub/shared-modules.git) registered for path 'packaging/linux/flatpak/deps/shared-modules' 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/googletest' (https://github.com/google/googletest.git) registered for path 'third-party/googletest' Submodule 'third-party/inputtino' (https://github.com/games-on-whales/inputtino.git) registered for path 'third-party/inputtino' Submodule 'third-party/libdisplaydevice' (https://github.com/LizardByte/libdisplaydevice.git) registered for path 'third-party/libdisplaydevice' 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/nanors' (https://github.com/sleepybishop/nanors.git) registered for path 'third-party/nanors' Submodule 'third-party/nv-codec-headers' (https://github.com/FFmpeg/nv-codec-headers.git) registered for path 'third-party/nv-codec-headers' Submodule 'third-party/nvapi-open-source-sdk' (https://github.com/LizardByte/nvapi-open-source-sdk.git) registered for path 'third-party/nvapi-open-source-sdk' 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/packaging/linux/flatpak/deps/shared-modules'... 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/googletest'... Cloning into '/workdir/Sunshine/third-party/inputtino'... Cloning into '/workdir/Sunshine/third-party/libdisplaydevice'... Cloning into '/workdir/Sunshine/third-party/moonlight-common-c'... Cloning into '/workdir/Sunshine/third-party/nanors'... Cloning into '/workdir/Sunshine/third-party/nv-codec-headers'... Cloning into '/workdir/Sunshine/third-party/nvapi-open-source-sdk'... Cloning into '/workdir/Sunshine/third-party/tray'... Cloning into '/workdir/Sunshine/third-party/wayland-protocols'... Cloning into '/workdir/Sunshine/third-party/wlr-protocols'... Submodule path 'packaging/linux/flatpak/deps/flatpak-builder-tools': checked out '5de461271d05f43f267b954ac6010b410378ae47' Submodule path 'packaging/linux/flatpak/deps/shared-modules': checked out 'fc1122496c63b13aa96ca2351a9662294291b9e0' 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 91ac60f3a051819d7d9975b8757730a9471ee8de -> FETCH_HEAD Submodule path 'third-party/build-deps': checked out '91ac60f3a051819d7d9975b8757730a9471ee8de' 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 afed28d37aca1938da2eedc50599bb3535a987ec -> FETCH_HEAD Submodule path 'third-party/build-deps/third-party/FFmpeg/AMF': checked out 'afed28d37aca1938da2eedc50599bb3535a987ec' From https://github.com/FFmpeg/FFmpeg * branch 15504610b0dc12c56e5e9f94ff06c873382368f5 -> FETCH_HEAD Submodule path 'third-party/build-deps/third-party/FFmpeg/FFmpeg': checked out '15504610b0dc12c56e5e9f94ff06c873382368f5' From https://github.com/LizardByte-infrastructure/SVT-AV1 * branch b33dcc56cc64fcb3b3569094af8ab1d0d81ab4c1 -> FETCH_HEAD Submodule path 'third-party/build-deps/third-party/FFmpeg/SVT-AV1': checked out 'b33dcc56cc64fcb3b3569094af8ab1d0d81ab4c1' Submodule path 'third-party/build-deps/third-party/FFmpeg/Vulkan-Headers': checked out 'ad9ce1235e88dc09287e19171dfac384db8ec32c' From https://github.com/KhronosGroup/Vulkan-Loader * branch bac41319cafb4527a2a959237b17611dd08bfe11 -> FETCH_HEAD Submodule path 'third-party/build-deps/third-party/FFmpeg/Vulkan-Loader': checked out 'bac41319cafb4527a2a959237b17611dd08bfe11' From https://github.com/FFmpeg/nv-codec-headers * branch 22441b505d9d9afc1e3002290820909846c24bdc -> FETCH_HEAD Submodule path 'third-party/build-deps/third-party/FFmpeg/nv-codec-headers': checked out '22441b505d9d9afc1e3002290820909846c24bdc' 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 ba47416c88a7f5661fa1ed24b7300ef62185e877 -> FETCH_HEAD Submodule path 'third-party/doxyconfig': checked out 'ba47416c88a7f5661fa1ed24b7300ef62185e877' 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'... Submodule path 'third-party/doxyconfig/doxygen-awesome-css': checked out '1f3620084ff75734ed192101acf40e9dff01d848' From https://github.com/google/googletest * branch 52eb8108c5bdec04579160ae17225d66034bd723 -> FETCH_HEAD Submodule path 'third-party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' Submodule path 'third-party/inputtino': checked out '504f0abc7da8ebc351f8300fb2ed98db5438ee48' From https://github.com/LizardByte/libdisplaydevice * branch b46492be8e5d1933ead8fb8867a7910ed10b610a -> FETCH_HEAD Submodule path 'third-party/libdisplaydevice': checked out 'b46492be8e5d1933ead8fb8867a7910ed10b610a' Submodule 'third-party/doxyconfig' (https://github.com/LizardByte/doxyconfig.git) registered for path 'third-party/libdisplaydevice/third-party/doxyconfig' Submodule 'third-party/googletest' (https://github.com/google/googletest.git) registered for path 'third-party/libdisplaydevice/third-party/googletest' Cloning into '/workdir/Sunshine/third-party/libdisplaydevice/third-party/doxyconfig'... Cloning into '/workdir/Sunshine/third-party/libdisplaydevice/third-party/googletest'... From https://github.com/LizardByte/doxyconfig * branch 89c8ec928a11e04a75f06a00ddaa3848fc5edf27 -> FETCH_HEAD Submodule path 'third-party/libdisplaydevice/third-party/doxyconfig': checked out '89c8ec928a11e04a75f06a00ddaa3848fc5edf27' 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'... Submodule path 'third-party/libdisplaydevice/third-party/doxyconfig/doxygen-awesome-css': checked out '1f3620084ff75734ed192101acf40e9dff01d848' From https://github.com/google/googletest * branch f8d7d77c06936315286eb55f8de22cd23c188571 -> FETCH_HEAD Submodule path 'third-party/libdisplaydevice/third-party/googletest': checked out 'f8d7d77c06936315286eb55f8de22cd23c188571' Submodule path 'third-party/moonlight-common-c': checked out '62687809b1f7410c3db4be2527503a54ae408d70' Submodule 'enet' (https://github.com/cgutman/enet.git) registered for path 'third-party/moonlight-common-c/enet' Submodule 'nanors/deps/simde' (https://github.com/simd-everywhere/simde-no-tests.git) registered for path 'third-party/moonlight-common-c/nanors/deps/simde' Cloning into '/workdir/Sunshine/third-party/moonlight-common-c/enet'... Cloning into '/workdir/Sunshine/third-party/moonlight-common-c/nanors/deps/simde'... Submodule path 'third-party/moonlight-common-c/enet': checked out 'c7353c059373f8d3fc83d451f8f1a477be3dc94e' From https://github.com/simd-everywhere/simde-no-tests * branch 595b743dcebc05756244a66dcd78e9d64c07b3b7 -> FETCH_HEAD Submodule path 'third-party/moonlight-common-c/nanors/deps/simde': checked out '595b743dcebc05756244a66dcd78e9d64c07b3b7' Submodule path 'third-party/nanors': checked out '19f07b513e924e471cadd141943c1ec4adc8d0e0' From https://github.com/FFmpeg/nv-codec-headers * branch 22441b505d9d9afc1e3002290820909846c24bdc -> FETCH_HEAD Submodule path 'third-party/nv-codec-headers': checked out '22441b505d9d9afc1e3002290820909846c24bdc' From https://github.com/LizardByte/nvapi-open-source-sdk * branch cce4e90b629f712ae6eebafac97739bd1196cdef -> FETCH_HEAD Submodule path 'third-party/nvapi-open-source-sdk': checked out 'cce4e90b629f712ae6eebafac97739bd1196cdef' From https://github.com/LizardByte/tray * branch 4caf0d0868aa45b98373249db8761551f7da7b03 -> FETCH_HEAD Submodule path 'third-party/tray': checked out '4caf0d0868aa45b98373249db8761551f7da7b03' Submodule 'third-party/doxyconfig' (https://github.com/LizardByte/doxyconfig.git) registered for path 'third-party/tray/third-party/doxyconfig' Submodule 'third-party/googletest' (https://github.com/google/googletest.git) registered for path 'third-party/tray/third-party/googletest' Cloning into '/workdir/Sunshine/third-party/tray/third-party/doxyconfig'... Cloning into '/workdir/Sunshine/third-party/tray/third-party/googletest'... From https://github.com/LizardByte/doxyconfig * branch 1188ef2b96efb3e003a591ee01714339c2d9161c -> FETCH_HEAD Submodule path 'third-party/tray/third-party/doxyconfig': checked out '1188ef2b96efb3e003a591ee01714339c2d9161c' 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 c085b886e38d47c30c7cad0865d641cdf5f2df86 -> FETCH_HEAD Submodule path 'third-party/tray/third-party/doxyconfig/doxygen-awesome-css': checked out 'c085b886e38d47c30c7cad0865d641cdf5f2df86' From https://github.com/google/googletest * branch f8d7d77c06936315286eb55f8de22cd23c188571 -> FETCH_HEAD Submodule path 'third-party/tray/third-party/googletest': checked out 'f8d7d77c06936315286eb55f8de22cd23c188571' From https://github.com/LizardByte-infrastructure/wayland-protocols * branch 88223018d1b578d0d8869866da66d9608e05f928 -> FETCH_HEAD Submodule path 'third-party/wayland-protocols': checked out '88223018d1b578d0d8869866da66d9608e05f928' Submodule path 'third-party/wlr-protocols': checked out 'a741f0ac5d655338a5100fc34bc8cec87d237346' ++ git tag --points-at HEAD ++ head -n1 + TAG=v2026.304.211804 TAG=2026.304.211804 + [[ -z v2026.304.211804 ]] + TAG=2026.304.211804 + echo TAG=2026.304.211804 ++ git rev-parse HEAD + COMMIT=a97ed29b4e0e456f0edb65c68f5aa3e6ae431bdd COMMIT=a97ed29b4e0e456f0edb65c68f5aa3e6ae431bdd + echo COMMIT=a97ed29b4e0e456f0edb65c68f5aa3e6ae431bdd + 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 Found spec file in ./packaging/linux/copr ============================ rpmlint session starts ============================ rpmlint: 2.8.0 configuration: /usr/lib/python3.14/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 2026.304.211804|' /workdir/Sunshine.spec + sed -i 's|%global branch 0|%global branch master|' /workdir/Sunshine.spec + sed -i 's|%global commit 0|%global commit a97ed29b4e0e456f0edb65c68f5aa3e6ae431bdd|' /workdir/Sunshine.spec + TAR_EXCLUDE_ARGS=() + tar -czf /workdir/tarball.tar.gz . Finish: chroot ['set -xe ; cd /workdir ; COPR_OWNER=lizardbyte COPR_PROJECT=beta 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-ne_vjoza/srcdir cmd: ['mock', '-r', '/var/lib/copr-rpmbuild/results/mock-config.cfg', '--copyout', '/workdir', '/var/lib/copr-rpmbuild/workspace/workdir-ne_vjoza/srcdir'] cwd: . rc: 0 stdout: stderr: INFO: mock.py version 6.6 starting (python version = 3.14.2, NVR = mock-6.6-1.fc43), args: /usr/libexec/mock/mock -r /var/lib/copr-rpmbuild/results/mock-config.cfg --copyout /workdir /var/lib/copr-rpmbuild/workspace/workdir-ne_vjoza/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.6 INFO: Mock Version: 6.6 Start(bootstrap): chroot init INFO: mounting tmpfs at /var/lib/mock/copr-custom-fedora-44-x86_64-bootstrap/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-44-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-44-x86_64/root. INFO: reusing tmpfs at /var/lib/mock/copr-custom-fedora-44-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-44-x86_64/root/workdir to /var/lib/copr-rpmbuild/workspace/workdir-ne_vjoza/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.6 starting (python version = 3.14.2, NVR = mock-6.6-1.fc43), 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-ne_vjoza/srcdir' --define '_rpmdir /var/lib/copr-rpmbuild/workspace/workdir-ne_vjoza/srcdir' --define '_builddir /var/lib/copr-rpmbuild/workspace/workdir-ne_vjoza/srcdir' --define '_specdir /var/lib/copr-rpmbuild/workspace/workdir-ne_vjoza/srcdir' --define '_srcrpmdir /var/lib/copr-rpmbuild/results' /var/lib/copr-rpmbuild/workspace/workdir-ne_vjoza/srcdir/Sunshine.spec cmd: ['rpmbuild', '-bs', '--define', '_sourcedir /var/lib/copr-rpmbuild/workspace/workdir-ne_vjoza/srcdir', '--define', '_rpmdir /var/lib/copr-rpmbuild/workspace/workdir-ne_vjoza/srcdir', '--define', '_builddir /var/lib/copr-rpmbuild/workspace/workdir-ne_vjoza/srcdir', '--define', '_specdir /var/lib/copr-rpmbuild/workspace/workdir-ne_vjoza/srcdir', '--define', '_srcrpmdir /var/lib/copr-rpmbuild/results', '/var/lib/copr-rpmbuild/workspace/workdir-ne_vjoza/srcdir/Sunshine.spec'] cwd: . rc: 0 stdout: Wrote: /var/lib/copr-rpmbuild/results/Sunshine-2026.304.211804-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: ['Sunshine-2026.304.211804-1.src.rpm', 'hook_payload', 'mock-config.cfg'] Running SRPMResults tool Package info: { "name": "Sunshine", "epoch": null, "version": "2026.304.211804", "release": "1", "exclusivearch": [], "excludearch": [] } SRPMResults finished