From fb71d1d9a5dbd44ec537db55739689c01db62977 Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Wed, 18 Jun 2025 12:41:20 +0200 Subject: [PATCH 1/5] .tekton: enabling hermetic builds This will enforce Konflux to prefetch the dependencies defined in the lock.yaml files with [1]. Then during the build, Konflux will 1. inject the repositories where the deps are stored, 2. configure the clients to pull the deps from there, 3. build without network. As rpm is still not fully supported [2], we have to enable `dev-package-managers` for now in the pipeline. All specific files enabling hermetic builds are located in the `ci/hermetic/` folder. You can find the helper scripts that automate the process of generating the lock YAML files, replacing the manual steps. The automation streamlines the workflow, reduces the chance of human error, and ensures consistency in the generated lock files. More details can be found in the updated README. This required adaptations to `build.sh` and the Dockerfile to support both hermetic and non-hermetic build processes. [1] https://github.com/konflux-ci/build-definitions/tree/main/task/prefetch-dependencies-oci-ta/0.2 [2] https://github.com/hermetoproject/hermeto?tab=readme-ov-file#package-managers --- .gitignore | 3 + .tekton/coreos-assembler-pull-request.yaml | 10 + .tekton/coreos-assembler-push.yaml | 10 + .tekton/kola-nfs-pull-request.yaml | 15 +- .tekton/kola-nfs-push.yaml | 13 +- .tekton/kola-tang-pull-request.yaml | 14 +- .tekton/kola-tang-push.yaml | 13 +- .tekton/kola-targetcli-pull-request.yaml | 14 +- .tekton/kola-targetcli-push.yaml | 13 +- Dockerfile | 2 + build.sh | 17 +- ci/hermetic/Dockerfile | 1 + ci/hermetic/README.md | 34 + ci/hermetic/artifacts.lock.yaml | 15 + ci/hermetic/rpms.in.yaml | 200 + ci/hermetic/rpms.lock.yaml | 6910 ++++++++++++++++++++ ci/hermetic/update_artifacts_lockfile | 153 + ci/hermetic/update_package_list | 252 + ci/hermetic/update_rpms_lockfile | 53 + src/kola-container-image-deps.txt | 8 + 20 files changed, 7738 insertions(+), 12 deletions(-) create mode 120000 ci/hermetic/Dockerfile create mode 100644 ci/hermetic/README.md create mode 100644 ci/hermetic/artifacts.lock.yaml create mode 100644 ci/hermetic/rpms.in.yaml create mode 100644 ci/hermetic/rpms.lock.yaml create mode 100755 ci/hermetic/update_artifacts_lockfile create mode 100755 ci/hermetic/update_package_list create mode 100755 ci/hermetic/update_rpms_lockfile create mode 100644 src/kola-container-image-deps.txt diff --git a/.gitignore b/.gitignore index edee5d6a22..6f07bd506d 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,6 @@ __pycache__/ # generated by `make all` /bin/ + +# generated by `hermeto` when pulling the dependencies locally with hermeto +hermeto-output/ diff --git a/.tekton/coreos-assembler-pull-request.yaml b/.tekton/coreos-assembler-pull-request.yaml index 3ca16fda2b..9f67cc1cb8 100644 --- a/.tekton/coreos-assembler-pull-request.yaml +++ b/.tekton/coreos-assembler-pull-request.yaml @@ -34,6 +34,16 @@ spec: value: Dockerfile - name: path-context value: . + - name: hermetic + value: true + - name: prefetch-input + value: '[{"type": "rpm", "path": "ci/hermetic"}, {"path": "ci/hermetic", "type": "generic"}]' + # Note: to be removed once rpm fully supported + # https://github.com/hermetoproject/hermeto?tab=readme-ov-file#package-managers + - name: dev-package-managers + value: true + - name: build-args + value: ["NO_NETWORK=1"] pipelineRef: params: - name: bundle diff --git a/.tekton/coreos-assembler-push.yaml b/.tekton/coreos-assembler-push.yaml index 6ca4fddd50..5aaa00e11f 100644 --- a/.tekton/coreos-assembler-push.yaml +++ b/.tekton/coreos-assembler-push.yaml @@ -31,6 +31,16 @@ spec: value: Dockerfile - name: path-context value: . + - name: hermetic + value: true + - name: prefetch-input + value: '[{"type": "rpm", "path": "ci/hermetic"}, {"path": "ci/hermetic", "type": "generic"}]' + # Note: to be removed once rpm fully supported + # https://github.com/hermetoproject/hermeto?tab=readme-ov-file#package-managers + - name: dev-package-managers + value: true + - name: build-args + value: ["NO_NETWORK=1"] pipelineRef: params: - name: bundle diff --git a/.tekton/kola-nfs-pull-request.yaml b/.tekton/kola-nfs-pull-request.yaml index 79385286b6..44c34c3fc7 100644 --- a/.tekton/kola-nfs-pull-request.yaml +++ b/.tekton/kola-nfs-pull-request.yaml @@ -9,8 +9,11 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./tests/containers/nfs/***".pathChanged() || ".tekton/kola-nfs-pull-request.yaml".pathChanged() - || "Containerfile".pathChanged() ) + == "main" && + ("tests/containers/nfs/***".pathChanged() || + ".tekton/kola-nfs-pull-request.yaml".pathChanged() || + "ci/hermetic/rpms.lock.yaml".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: coreos-assembler @@ -35,6 +38,14 @@ spec: value: Containerfile - name: path-context value: tests/containers/nfs + - name: hermetic + value: true + - name: prefetch-input + value: '[{"type": "rpm", "path": "ci/hermetic"}]' + # Note: to be removed once rpm fully supported + # https://github.com/hermetoproject/hermeto?tab=readme-ov-file#package-managers + - name: dev-package-managers + value: true pipelineRef: params: - name: bundle diff --git a/.tekton/kola-nfs-push.yaml b/.tekton/kola-nfs-push.yaml index 23dd25000a..aac521f3e2 100644 --- a/.tekton/kola-nfs-push.yaml +++ b/.tekton/kola-nfs-push.yaml @@ -8,7 +8,10 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && "./tests/containers/nfs/***".pathChanged() + == "main" && + ("tests/containers/nfs/***".pathChanged() || + "ci/hermetic/rpms.lock.yaml".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: coreos-assembler @@ -31,6 +34,14 @@ spec: value: Containerfile - name: path-context value: tests/containers/nfs + - name: hermetic + value: true + - name: prefetch-input + value: '[{"type": "rpm", "path": "ci/hermetic"}]' + # Note: to be removed once rpm fully supported + # https://github.com/hermetoproject/hermeto?tab=readme-ov-file#package-managers + - name: dev-package-managers + value: true pipelineRef: params: - name: bundle diff --git a/.tekton/kola-tang-pull-request.yaml b/.tekton/kola-tang-pull-request.yaml index 403ea29a01..c1550d031d 100644 --- a/.tekton/kola-tang-pull-request.yaml +++ b/.tekton/kola-tang-pull-request.yaml @@ -9,7 +9,11 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./tests/containers/tang/***".pathChanged() || ".tekton/kola-tang-pull-request.yaml".pathChanged()) + == "main" && + ("tests/containers/tang/***".pathChanged() || + ".tekton/kola-tang-pull-request.yaml".pathChanged() || + "ci/hermetic/rpms.lock.yaml".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: coreos-assembler @@ -34,6 +38,14 @@ spec: value: ./tests/containers/tang/Containerfile - name: path-context value: . + - name: hermetic + value: true + - name: prefetch-input + value: '[{"type": "rpm", "path": "ci/hermetic"}]' + # Note: to be removed once rpm fully supported + # https://github.com/hermetoproject/hermeto?tab=readme-ov-file#package-managers + - name: dev-package-managers + value: true pipelineRef: params: - name: bundle diff --git a/.tekton/kola-tang-push.yaml b/.tekton/kola-tang-push.yaml index 58e1fe7599..308a4d2506 100644 --- a/.tekton/kola-tang-push.yaml +++ b/.tekton/kola-tang-push.yaml @@ -8,7 +8,10 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && "./tests/containers/tang/***".pathChanged() + == "main" && + ("tests/containers/tang/***".pathChanged() || + "ci/hermetic/rpms.lock.yaml".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: coreos-assembler @@ -31,6 +34,14 @@ spec: value: ./tests/containers/tang/Containerfile - name: path-context value: . + - name: hermetic + value: true + - name: prefetch-input + value: '[{"type": "rpm", "path": "ci/hermetic"}]' + # Note: to be removed once rpm fully supported + # https://github.com/hermetoproject/hermeto?tab=readme-ov-file#package-managers + - name: dev-package-managers + value: true pipelineRef: params: - name: bundle diff --git a/.tekton/kola-targetcli-pull-request.yaml b/.tekton/kola-targetcli-pull-request.yaml index 28e7da59bb..a5a14963b1 100644 --- a/.tekton/kola-targetcli-pull-request.yaml +++ b/.tekton/kola-targetcli-pull-request.yaml @@ -9,7 +9,11 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./tests/containers/targetcli/***".pathChanged() || ".tekton/kola-targetcli-pull-request.yaml".pathChanged()) + == "main" && + ("tests/containers/targetcli/***".pathChanged() || + ".tekton/kola-targetcli-pull-request.yaml".pathChanged() || + "ci/hermetic/rpms.lock.yaml".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: coreos-assembler @@ -34,6 +38,14 @@ spec: value: ./tests/containers/targetcli/Containerfile - name: path-context value: . + - name: hermetic + value: true + - name: prefetch-input + value: '[{"type": "rpm", "path": "ci/hermetic"}]' + # Note: to be removed once rpm fully supported + # https://github.com/hermetoproject/hermeto?tab=readme-ov-file#package-managers + - name: dev-package-managers + value: true pipelineRef: params: - name: bundle diff --git a/.tekton/kola-targetcli-push.yaml b/.tekton/kola-targetcli-push.yaml index 341e1155a7..8ab43a624c 100644 --- a/.tekton/kola-targetcli-push.yaml +++ b/.tekton/kola-targetcli-push.yaml @@ -8,7 +8,10 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && "./tests/containers/targetcli/***".pathChanged() + == "main" && + ("tests/containers/targetcli/***".pathChanged() || + "ci/hermetic/rpms.lock.yaml".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: coreos-assembler @@ -31,6 +34,14 @@ spec: value: ./tests/containers/targetcli/Containerfile - name: path-context value: . + - name: hermetic + value: true + - name: prefetch-input + value: '[{"type": "rpm", "path": "ci/hermetic"}]' + # Note: to be removed once rpm fully supported + # https://github.com/hermetoproject/hermeto?tab=readme-ov-file#package-managers + - name: dev-package-managers + value: true pipelineRef: params: - name: bundle diff --git a/Dockerfile b/Dockerfile index 8bc4f63389..febc4dae67 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,8 @@ # https://github.com/openshift/release/tree/master/ci-operator/config/coreos/coreos-assembler/coreos-coreos-assembler-main.yaml FROM quay.io/fedora/fedora:42 WORKDIR /root/containerbuild +# This variable is enabled by Konflux to build the container image hermatically. +ARG NO_NETWORK=0 # Keep this Dockerfile idempotent for local development rebuild use cases. USER root diff --git a/build.sh b/build.sh index b1b18d140d..2e942dbc51 100755 --- a/build.sh +++ b/build.sh @@ -31,6 +31,7 @@ srcdir=$(pwd) configure_yum_repos() { [ "${arch}" == "riscv64" ] && return # No continuous repo for riscv64 yet + [ "${NO_NETWORK}" == "1" ] && return local version_id version_id=$(. /etc/os-release && echo ${VERSION_ID}) # Add continuous tag for latest build tools and mark as required so we @@ -46,7 +47,7 @@ install_rpms() { # First, a general update; this is best practice. We also hit an issue recently # where qemu implicitly depended on an updated libusbx but didn't have a versioned # requires https://bugzilla.redhat.com/show_bug.cgi?id=1625641 - yum -y distro-sync + [ "${NO_NETWORK}" == "0" ] && yum -y distro-sync # xargs is part of findutils, which may not be installed yum -y install /usr/bin/xargs @@ -104,10 +105,16 @@ install_rpms() { # to CoreOS. install_ocp_tools() { [ "${arch}" == "riscv64" ] && return # No ocp tools for riscv64 - # If $OCP_VERSION is defined we'll grab that specific version. - # Otherwise we'll get the latest. - local url="https://mirror.openshift.com/pub/openshift-v4/${arch}/clients/ocp/latest${OCP_VERSION:+-$OCP_VERSION}/openshift-client-linux.tar.gz" - curl -L "$url" | tar zxf - oc + if [ "${NO_NETWORK}" == "0" ]; then + # If $OCP_VERSION is defined we'll grab that specific version. + # Otherwise we'll get the latest. + local url="https://mirror.openshift.com/pub/openshift-v4/${arch}/clients/ocp/latest${OCP_VERSION:+-$OCP_VERSION}/openshift-client-linux.tar.gz" + curl -L "$url" | tar zxf - oc + else + local oc_archive="" + oc_archive=$(find /*/output/deps/generic/ -name "openshift-client-linux-${arch}.tar.gz") + tar zxf "$oc_archive" oc + fi mv oc /usr/bin } diff --git a/ci/hermetic/Dockerfile b/ci/hermetic/Dockerfile new file mode 120000 index 0000000000..36c49d2a30 --- /dev/null +++ b/ci/hermetic/Dockerfile @@ -0,0 +1 @@ +../../Dockerfile \ No newline at end of file diff --git a/ci/hermetic/README.md b/ci/hermetic/README.md new file mode 100644 index 0000000000..0d9abb7a9a --- /dev/null +++ b/ci/hermetic/README.md @@ -0,0 +1,34 @@ +# Hermetic builds for coreos-assembler and Konflux + +The `*.lock.yaml` files generated will be consumed by the [prefetch-dependencies-oci-ta](https://github.com/konflux-ci/build-definitions/tree/main/task/prefetch-dependencies-oci-ta) Konflux task. +This task will download the dependencies and generate an OCI image containing them. +Then the OCI image will be pull during the build process by the [buildah-remote-oci-ta ](https://github.com/konflux-ci/build-definitions/tree/main/task/buildah-remote-oci-ta) Konflux task. + +## To generate the rpms.lock.yaml file +The script below 1. updates the packages list in 'rpms.in.yaml' and 2. updates the 'rpms.lock.yaml' afterward. +The packages list is generated based on the content of the *deps*.txt file located in src/. +```bash +./update_rpms_lockfile +``` +To test if everything is fine, you can fetch the dependencies and store them on your disk: +```bash +alias hermeto='podman run --rm -ti -v "$PWD:$PWD:z" -w "$PWD" quay.io/konflux-ci/hermeto:latest' +hermeto fetch-deps --dev-package-managers --source ./ --output ./hermeto-output '{"path": ".", "type": "rpm"}' +``` +Konflux runs similar command within [prefetch-dependencies-oci-ta](https://github.com/konflux-ci/build-definitions/tree/main/task/prefetch-dependencies-oci-ta) task. + +## To generate the artifacts.lock.yaml file +```bash +./update_artifacts_lockfile +``` +To test if everything is fine, you can fetch the dependencies and store them on your disk: +```bash +alias hermeto='podman run --rm -ti -v "$PWD:$PWD:z" -w "$PWD" quay.io/konflux-ci/hermeto:latest' +hermeto fetch-deps --source ./ --output ./hermeto-output '{"path": ".", "type": "generic"}' +``` + +## Download everything together +```bash +alias hermeto='podman run --rm -ti -v "$PWD:$PWD:z" -w "$PWD" quay.io/konflux-ci/hermeto:latest' +hermeto fetch-deps --dev-package-managers --source ./ --output ./hermeto-output '[{"path": ".", "type": "rpm"}, {"path": ".", "type": "generic"}]' +``` diff --git a/ci/hermetic/artifacts.lock.yaml b/ci/hermetic/artifacts.lock.yaml new file mode 100644 index 0000000000..e868ef01d8 --- /dev/null +++ b/ci/hermetic/artifacts.lock.yaml @@ -0,0 +1,15 @@ +metadata: + version: '1.0' +artifacts: + - download_url: 'https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/ocp/latest/openshift-client-linux.tar.gz' + checksum: 'sha256:ee95462864b988040da09613d5aa691c1d3576813b532d2fcec1e67ccbb4164a' + filename: 'openshift-client-linux-x86_64.tar.gz' + - download_url: 'https://mirror.openshift.com/pub/openshift-v4/s390x/clients/ocp/latest/openshift-client-linux.tar.gz' + checksum: 'sha256:516e7dd49806a0664177c04473ac2991d1ada53d28501c552135e7abe86043e5' + filename: 'openshift-client-linux-s390x.tar.gz' + - download_url: 'https://mirror.openshift.com/pub/openshift-v4/ppc64le/clients/ocp/latest/openshift-client-linux.tar.gz' + checksum: 'sha256:49bd2d47add43270f936246bd8eb57123cde8e16e823180f2ad7589e9f480657' + filename: 'openshift-client-linux-ppc64le.tar.gz' + - download_url: 'https://mirror.openshift.com/pub/openshift-v4/aarch64/clients/ocp/latest/openshift-client-linux.tar.gz' + checksum: 'sha256:546ea80a6670b0338b05d9babaf2791ddc9c219411f67e76ec5c41de98e9fefb' + filename: 'openshift-client-linux-aarch64.tar.gz' diff --git a/ci/hermetic/rpms.in.yaml b/ci/hermetic/rpms.in.yaml new file mode 100644 index 0000000000..93ad9ba0c5 --- /dev/null +++ b/ci/hermetic/rpms.in.yaml @@ -0,0 +1,200 @@ +contentOrigin: + # We use 'baseurl' directive instead of 'metalink' in order to always pull from the same repo. This would avoid + # rpms.lock.yaml file to be edited with another repo URL but with the same ENVRAs. As this rpms.lock.yaml file + # is generated locally by an operator (or bot), the URL in the resulting file would depend on its connection if + # we use the 'metalink' directive. + # The repo URL defined below is hosted by Red Hat. + # We define our Dockerfile as source of truth for the $releasever value. Also, we take advantage of the layered + # image mechanism by asking rpm-lockfile-prototype to extract the base image from our Dockerfile and discover + # only the remaining packages not yet installed. + repos: + - repoid: "fedora" + baseurl: "https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/$releasever/Everything/$basearch/os/" + varsFromContainerfile: "Dockerfile" + - repoid: "updates" + baseurl: "https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/$releasever/Everything/$basearch/" + varsFromContainerfile: "Dockerfile" + - repoid: "coreos-continuous" + baseurl: "https://kojipkgs.fedoraproject.org/repos-dist/f$releasever-coreos-continuous/latest/$basearch/" + varsFromContainerfile: "Dockerfile" + +context: + bare: false + +# TODO: for now we only enable x86_64 to speed up development and we'll add the remaining arches once the +# whole pipeline (i.e build, testing and release) ready. +arches: + - x86_64 + +# The list of packages below is meant to be updated automatically with +# 'update_rpms_lock_yaml.sh' script. Do not edit this list manually. +# ANY CHANGES MADE BELOW WILL BE LOST! +# Please refer to the README file located at the root directory of this file. +packages: + - /usr/bin/clear + - /usr/bin/ignition-validate + - /usr/bin/ps + - /usr/bin/qemu-img + - /usr/bin/reset + - name: awscli2 + arches: + only: + - x86_64 + - bash + - name: bootupd + arches: + only: + - aarch64 + - x86_64 + - bsdtar + - btrfs-progs + - buildah + - butane + - ca-certificates + - composefs + - copr-cli + - coreos-installer + - coreutils + - createrepo_c + - cryptsetup + - dhcp-client + - distribution-gpg-keys + - dnf-utils + - dosfstools + - dumb-init + - e2fsprogs + - erofs-utils + - fedora-messaging + - fedora-repos-ostree + - gdisk + - genisoimage + - git + - golang + - golang-github-aliyun-cli + - name: grub2 + arches: + only: + - aarch64 + - ppc64le + - x86_64 + - name: grub2-efi-aa64 + arches: + only: + - aarch64 + - name: grub2-efi-x64 + arches: + only: + - x86_64 + - name: grub2-tools-extra + arches: + only: + - aarch64 + - ppc64le + - x86_64 + - iproute + - iptables + - iptables-libs + - jq + - kernel-modules + - kmod + - koji-utils + - krb5-libs + - krb5-workstation + - libguestfs-tools + - libguestfs-tools-c + - name: lorax + arches: + only: + - s390x + - make + - nfs-utils + - openssh-clients + - openssl + - osbuild + - osbuild-ostree + - osbuild-selinux + - osbuild-tools + - podman + - policycoreutils + - name: powerpc-utils + arches: + only: + - ppc64le + - procps-ng + - pylint + - python-anytree + - python3 + - python3-boto3 + - python3-botocore + - python3-createrepo_c + - python3-fedfind + - python3-flake8 + - python3-flufl-lock + - python3-gobject-base + - python3-jsonschema + - python3-junit_xml + - python3-koji + - python3-koji-cli-plugins + - python3-libvirt + - python3-pyrsistent + - python3-pytest + - python3-pytest-cov + - python3-pyyaml + - python3-requests + - python3-resultsdb_api + - python3-resultsdb_conventions + - python3-resultsdb_conventions-fedora + - python3-tenacity + - qemu-kvm + - qemu-system-aarch64-core + - qemu-system-ppc-core + - qemu-system-s390x-core + - qemu-system-x86-core + - rpm-build + - rpm-ostree + - rsync + - name: s390utils-base + arches: + only: + - s390x + - selinux-policy + - selinux-policy-targeted + - shellcheck + - name: shim-aa64 + arches: + only: + - aarch64 + - name: shim-x64 + arches: + only: + - x86_64 + - skopeo + - squashfs-tools + - strace + - sudo + - supermin + - swtpm + - name: syslinux-nonlinux + arches: + only: + - x86_64 + - systemd + - tang + - tar + - targetcli + - time + - tmux + - util-linux + - name: veritysetup + arches: + only: + - s390x + - vim-minimal + - virtiofsd + - xfsprogs + - name: xorriso + arches: + only: + - ppc64le + - s390x + - zip diff --git a/ci/hermetic/rpms.lock.yaml b/ci/hermetic/rpms.lock.yaml new file mode 100644 index 0000000000..93bb17edca --- /dev/null +++ b/ci/hermetic/rpms.lock.yaml @@ -0,0 +1,6910 @@ +--- +lockfileVersion: 1 +lockfileVendor: redhat +arches: +- arch: x86_64 + packages: + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/abattis-cantarell-vf-fonts-0.301-14.fc42.noarch.rpm + repoid: fedora + size: 123140 + checksum: sha256:2707abffb7ed1014144386bd00678043b142269e7f75675ea5c0c920ba0b79a4 + name: abattis-cantarell-vf-fonts + evr: 0.301-14.fc42 + sourcerpm: abattis-cantarell-fonts-0.301-14.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/acl-2.3.2-3.fc42.x86_64.rpm + repoid: fedora + size: 72477 + checksum: sha256:aa4297dc52866f3bdb6c92c2866de0edb7553ddaeef828fb7b68342fb3eb7659 + name: acl + evr: 2.3.2-3.fc42 + sourcerpm: acl-2.3.2-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/add-determinism-0.6.0-1.fc42.x86_64.rpm + repoid: fedora + size: 940335 + checksum: sha256:448bd22fa8fa4158f329c2214b89c1f1792832b1756910e6203783ed41cb9db7 + name: add-determinism + evr: 0.6.0-1.fc42 + sourcerpm: rust-add-determinism-0.6.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/adwaita-cursor-theme-48.0-1.fc42.noarch.rpm + repoid: fedora + size: 388743 + checksum: sha256:b33885d015fc293c6feb17ac0ecab6d1c931f6f04b955517192ae1a63354cb46 + name: adwaita-cursor-theme + evr: 48.0-1.fc42 + sourcerpm: adwaita-icon-theme-48.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/adwaita-icon-theme-48.0-1.fc42.noarch.rpm + repoid: fedora + size: 408741 + checksum: sha256:6eec44a83c8b913efbe8d86f1f6c9ef3428411caf6082e660434619d113de000 + name: adwaita-icon-theme + evr: 48.0-1.fc42 + sourcerpm: adwaita-icon-theme-48.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/adwaita-icon-theme-legacy-46.2-3.fc42.noarch.rpm + repoid: fedora + size: 2598274 + checksum: sha256:2be0caf6f5340481ef6c1dc8a53999ddf29e16fd6229304c2584769125367a35 + name: adwaita-icon-theme-legacy + evr: 46.2-3.fc42 + sourcerpm: adwaita-icon-theme-legacy-46.2-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/adwaita-mono-fonts-48.2-2.fc42.noarch.rpm + repoid: fedora + size: 1434446 + checksum: sha256:cca8fb252f9a686f1960d7d29a2d3d771e0d7d1abb7137aac0341afb0451ba03 + name: adwaita-mono-fonts + evr: 48.2-2.fc42 + sourcerpm: adwaita-fonts-48.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/adwaita-sans-fonts-48.2-2.fc42.noarch.rpm + repoid: fedora + size: 782289 + checksum: sha256:03a3308417f5587c96abc3920eb5d2d5a743bc4218987e9d17fe531378aedfb4 + name: adwaita-sans-fonts + evr: 48.2-2.fc42 + sourcerpm: adwaita-fonts-48.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/ansible-srpm-macros-1-17.1.fc42.noarch.rpm + repoid: fedora + size: 20802 + checksum: sha256:0dfd16e4dcf514418e53e7d94579d9328162b6f1998d5e66a4034f62d34aa331 + name: ansible-srpm-macros + evr: 1-17.1.fc42 + sourcerpm: ansible-packaging-1-17.1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/apr-1.7.5-2.fc42.x86_64.rpm + repoid: fedora + size: 126841 + checksum: sha256:4ffd846d202aed5de385c1ce00bb2620029731047446f9f4217b5673b71d60fe + name: apr + evr: 1.7.5-2.fc42 + sourcerpm: apr-1.7.5-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/apr-util-1.6.3-22.fc42.x86_64.rpm + repoid: fedora + size: 96770 + checksum: sha256:ae4b529b1017bd178c38ca705d776196006c3c9818535a3dfd86240f10817907 + name: apr-util + evr: 1.6.3-22.fc42 + sourcerpm: apr-util-1.6.3-22.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/apr-util-lmdb-1.6.3-22.fc42.x86_64.rpm + repoid: fedora + size: 13936 + checksum: sha256:63d7f1a6c22b4ad745ab129b1d82c8c0ce4a06b3579c08ae00a24618d2659998 + name: apr-util-lmdb + evr: 1.6.3-22.fc42 + sourcerpm: apr-util-1.6.3-22.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/apr-util-openssl-1.6.3-22.fc42.x86_64.rpm + repoid: fedora + size: 15463 + checksum: sha256:2adb5b4cd4294e0cb4eff0397b4d165b43f49a1c0ad017cc9daf44ccb36eaf15 + name: apr-util-openssl + evr: 1.6.3-22.fc42 + sourcerpm: apr-util-1.6.3-22.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/aribb24-1.0.3^20160216git5e9be27-2.fc42.x86_64.rpm + repoid: fedora + size: 39254 + checksum: sha256:3f3379f6193286871bb16dba3796ed4a76151cedaf4529165aa2e468ff35b591 + name: aribb24 + evr: 1.0.3^20160216git5e9be27-2.fc42 + sourcerpm: aribb24-1.0.3^20160216git5e9be27-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/attr-2.5.2-5.fc42.x86_64.rpm + repoid: fedora + size: 59282 + checksum: sha256:3cf1319853675cbbfd1ede320f2bd7d24119a3e6fa777d857af8b598ace00e82 + name: attr + evr: 2.5.2-5.fc42 + sourcerpm: attr-2.5.2-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/augeas-libs-1.14.2-0.4.20250324git4dffa3d.fc42.x86_64.rpm + repoid: fedora + size: 422680 + checksum: sha256:d8a0b562ac65aadf90cb0923f39c07ef63537e9e16fb35693595cd6dff649d82 + name: augeas-libs + evr: 1.14.2-0.4.20250324git4dffa3d.fc42 + sourcerpm: augeas-1.14.2-0.4.20250324git4dffa3d.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/avahi-glib-0.9~rc2-2.fc42.x86_64.rpm + repoid: fedora + size: 15645 + checksum: sha256:8d69040e16455efccdbb6d4a0fadda5ab7129c8842b6b97b1dd3b9c867e9b05b + name: avahi-glib + evr: 0.9~rc2-2.fc42 + sourcerpm: avahi-0.9~rc2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/avahi-libs-0.9~rc2-2.fc42.x86_64.rpm + repoid: fedora + size: 70793 + checksum: sha256:57351662e643224f3f1b5932298b5fd75b4760411b8378d02018dc4280317d99 + name: avahi-libs + evr: 0.9~rc2-2.fc42 + sourcerpm: avahi-0.9~rc2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/avif-pixbuf-loader-1.1.1-1.fc42.x86_64.rpm + repoid: fedora + size: 16587 + checksum: sha256:3985271f18a903664df11a503ebfd438904d602c6268452a0abec1a01d0e53b8 + name: avif-pixbuf-loader + evr: 1.1.1-1.fc42 + sourcerpm: libavif-1.1.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/a/awscli2-2.25.0-1.fc42.noarch.rpm + repoid: fedora + size: 14371309 + checksum: sha256:3111e5155fccc119aa4104703134322631f54bf783e68e92e77a0f02e82fabfe + name: awscli2 + evr: 2.25.0-1.fc42 + sourcerpm: awscli2-2.25.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/b/binutils-2.44-3.fc42.x86_64.rpm + repoid: fedora + size: 6098686 + checksum: sha256:9657d854cbe19334c9bd7b12ceca74f0690fa60f7a5135330dbdfcab8bf6631a + name: binutils + evr: 2.44-3.fc42 + sourcerpm: binutils-2.44-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/b/boost-iostreams-1.83.0-12.fc42.x86_64.rpm + repoid: fedora + size: 41294 + checksum: sha256:b625c941fe2e46d9438c7a01d2d14fd38fc02a3de282e6e972e903eff629b9a2 + name: boost-iostreams + evr: 1.83.0-12.fc42 + sourcerpm: boost-1.83.0-12.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/b/boost-system-1.83.0-12.fc42.x86_64.rpm + repoid: fedora + size: 14893 + checksum: sha256:88ab1a9cae902efdf790ed0e99d02e37a4a75d13f1fae7c579beaeb1033d937c + name: boost-system + evr: 1.83.0-12.fc42 + sourcerpm: boost-1.83.0-12.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/b/boost-thread-1.83.0-12.fc42.x86_64.rpm + repoid: fedora + size: 62150 + checksum: sha256:4379597c56dd40cc4a9ffa857ad072d79f9f39d5d0e81b66e55a939445ff2d35 + name: boost-thread + evr: 1.83.0-12.fc42 + sourcerpm: boost-1.83.0-12.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/b/brlapi-0.8.6-8.fc42.x86_64.rpm + repoid: fedora + size: 194129 + checksum: sha256:167c8a37e98d7e76a2d35a868e37f7509e29c3615bbf7603dcae9edfa55549ca + name: brlapi + evr: 0.8.6-8.fc42 + sourcerpm: brltty-6.7-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/b/bsdtar-3.7.7-4.fc42.x86_64.rpm + repoid: fedora + size: 66381 + checksum: sha256:e144a75d14cc7dd37c76a0ea88e773221903e090fd2369325dc9e804eafccc26 + name: bsdtar + evr: 3.7.7-4.fc42 + sourcerpm: libarchive-3.7.7-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/b/btrfs-progs-6.14-1.fc42.x86_64.rpm + repoid: fedora + size: 1322763 + checksum: sha256:90b6b985cde8d977a3a0bc703da8439e89c549e4d10535113ec2216d4c2d754b + name: btrfs-progs + evr: 6.14-1.fc42 + sourcerpm: btrfs-progs-6.14-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/b/bubblewrap-0.10.0-1.fc42.x86_64.rpm + repoid: fedora + size: 64170 + checksum: sha256:472d0d265bf65d06913b5a86de3f8f27fe60083ef541dc9536e6a3ba093ad66a + name: bubblewrap + evr: 0.10.0-1.fc42 + sourcerpm: bubblewrap-0.10.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/b/build-reproducibility-srpm-macros-0.6.0-1.fc42.noarch.rpm + repoid: fedora + size: 11964 + checksum: sha256:ea51a1dbe6db1723640d46e550d71967040920a096a90faa6da099181aed8134 + name: build-reproducibility-srpm-macros + evr: 0.6.0-1.fc42 + sourcerpm: rust-add-determinism-0.6.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/cairo-1.18.2-3.fc42.x86_64.rpm + repoid: fedora + size: 749368 + checksum: sha256:ea4cde69b6c94af5288c2cb0bea5fbc1a8d16971a7e886c7dc7575682747e888 + name: cairo + evr: 1.18.2-3.fc42 + sourcerpm: cairo-1.18.2-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/cairo-gobject-1.18.2-3.fc42.x86_64.rpm + repoid: fedora + size: 17738 + checksum: sha256:5b63afc1fc329609423a573685bae0c7c3c3b2fea01d562cc0a6e317635bcdf8 + name: cairo-gobject + evr: 1.18.2-3.fc42 + sourcerpm: cairo-1.18.2-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/capstone-5.0.1-7.fc42.x86_64.rpm + repoid: fedora + size: 1034822 + checksum: sha256:9f540624ca0dc2d054ab003e2e7cda1d8c3bb59d63e714157fa1618a42539483 + name: capstone + evr: 5.0.1-7.fc42 + sourcerpm: capstone-5.0.1-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/catatonit-0.2.1-1.fc42.x86_64.rpm + repoid: fedora + size: 332922 + checksum: sha256:815165b5d4e09fcf48e0501d61cf5ea0fa29a8836a08f8b556e74b45574dce18 + name: catatonit + evr: 0.2.1-1.fc42 + sourcerpm: catatonit-0.2.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/cdparanoia-libs-10.2-47.fc42.x86_64.rpm + repoid: fedora + size: 55309 + checksum: sha256:ab84a6df8d6cfdc181c09bb9a3c34316790aef563126ad19c25aa243d7efaf18 + name: cdparanoia-libs + evr: 10.2-47.fc42 + sourcerpm: cdparanoia-10.2-47.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/checkpolicy-3.8-1.fc42.x86_64.rpm + repoid: fedora + size: 368278 + checksum: sha256:90328b5d23a7e905fb39ebbbc0ca1b9bdc6ecd301dfe8b31627ae7a6d8f38d59 + name: checkpolicy + evr: 3.8-1.fc42 + sourcerpm: checkpolicy-3.8-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/cjson-1.7.18-2.fc42.x86_64.rpm + repoid: fedora + size: 32998 + checksum: sha256:266282c6199358040d13f94a1426b42fc148a54b3bb7ec79b178d73097e0df59 + name: cjson + evr: 1.7.18-2.fc42 + sourcerpm: cjson-1.7.18-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/clevis-21-10.fc42.x86_64.rpm + repoid: fedora + size: 55705 + checksum: sha256:9f1fcf5ccc610e28d08cfc982f1294b2a4ee752b34cb599032c564e0cd65275d + name: clevis + evr: 21-10.fc42 + sourcerpm: clevis-21-10.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/clevis-luks-21-10.fc42.x86_64.rpm + repoid: fedora + size: 34190 + checksum: sha256:e23c5a5a2d2e60a00009b1bde5cbd8d5b2124f58423fe15b4c5fbc06a36ff68e + name: clevis-luks + evr: 21-10.fc42 + sourcerpm: clevis-21-10.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/clevis-pin-tpm2-0.5.3-9.fc42.x86_64.rpm + repoid: fedora + size: 934497 + checksum: sha256:4a9a332e148bb750637e687ae3464d6b15c8d202f03ea15c8cd295740d253a0b + name: clevis-pin-tpm2 + evr: 0.5.3-9.fc42 + sourcerpm: clevis-pin-tpm2-0.5.3-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/codec2-1.2.0-6.fc42.x86_64.rpm + repoid: fedora + size: 659839 + checksum: sha256:d178aded88e7a80abc6eba89b2c8adf24ff35b11e9a8d9e27afc4e4c1a56b5c1 + name: codec2 + evr: 1.2.0-6.fc42 + sourcerpm: codec2-1.2.0-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/colord-libs-1.4.7-6.fc42.x86_64.rpm + repoid: fedora + size: 236624 + checksum: sha256:3783a003c5bbf35c385b0f2828106294c6051164521ce6e39a46935e2041d26d + name: colord-libs + evr: 1.4.7-6.fc42 + sourcerpm: colord-1.4.7-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/composefs-1.0.8-2.fc42.x86_64.rpm + repoid: fedora + size: 65009 + checksum: sha256:7ecd88c7f66cc25e672ee8ec37d7fa92e8bf5d3c1cbbfd410ebaf2a1917392ab + name: composefs + evr: 1.0.8-2.fc42 + sourcerpm: composefs-1.0.8-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/composefs-libs-1.0.8-2.fc42.x86_64.rpm + repoid: fedora + size: 57234 + checksum: sha256:d2c40ba9ba97bbbfc249d291ad0feb140c5bc6faf828c07a7feee97ceecb15f6 + name: composefs-libs + evr: 1.0.8-2.fc42 + sourcerpm: composefs-1.0.8-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/conmon-2.1.13-1.fc42.x86_64.rpm + repoid: fedora + size: 51796 + checksum: sha256:f05c4838284709ffb12a4d20cbbf697d3501ffafb22edc9919a114ecef124940 + name: conmon + evr: 2:2.1.13-1.fc42 + sourcerpm: conmon-2.1.13-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/copr-cli-2.1-1.fc42.noarch.rpm + repoid: fedora + size: 94139 + checksum: sha256:27fac99e909926a41ef1348616cb82c8a07eaf9520d13a74da35e8ae5ffdf198 + name: copr-cli + evr: 2.1-1.fc42 + sourcerpm: copr-cli-2.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/cpio-2.15-4.fc42.x86_64.rpm + repoid: fedora + size: 301680 + checksum: sha256:6b54a992cade632f82ce9613e47bd8cf1c05349c48b0bef84fc717416892144b + name: cpio + evr: 2.15-4.fc42 + sourcerpm: cpio-2.15-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/createrepo_c-1.2.0-3.fc42.x86_64.rpm + repoid: fedora + size: 79697 + checksum: sha256:5f1063c95e9c3354d3dca6ca9dea68cb2fa77b416a65b75224c1e38f6e9417d4 + name: createrepo_c + evr: 1.2.0-3.fc42 + sourcerpm: createrepo_c-1.2.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/createrepo_c-libs-1.2.0-3.fc42.x86_64.rpm + repoid: fedora + size: 114711 + checksum: sha256:23e1beec833fa88ee298680127b8b4db5920a01c26d1fbc614b9f11146721d8b + name: createrepo_c-libs + evr: 1.2.0-3.fc42 + sourcerpm: createrepo_c-1.2.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/cryptsetup-2.7.5-2.fc42.x86_64.rpm + repoid: fedora + size: 337255 + checksum: sha256:0efcb787ffbf40c413f0da14c2f5ca00a6ddc0879b03a26774d75b685a17f19f + name: cryptsetup + evr: 2.7.5-2.fc42 + sourcerpm: cryptsetup-2.7.5-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/cryptsetup-libs-2.7.5-2.fc42.x86_64.rpm + repoid: fedora + size: 549083 + checksum: sha256:c3a902a7eef3fe2037bc135b72dc1892eb72a7d8cf0351072aef3aad3c78e892 + name: cryptsetup-libs + evr: 2.7.5-2.fc42 + sourcerpm: cryptsetup-2.7.5-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/c/cyrus-sasl-gssapi-2.1.28-30.fc42.x86_64.rpm + repoid: fedora + size: 27142 + checksum: sha256:7f47d364a79c3467454d22dae3ac490b407cd23fc893900d050d3cb9c6735242 + name: cyrus-sasl-gssapi + evr: 2.1.28-30.fc42 + sourcerpm: cyrus-sasl-2.1.28-30.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/dbus-1.16.0-3.fc42.x86_64.rpm + repoid: fedora + size: 7945 + checksum: sha256:b15732d75a470eeb48789259a93e19eadd6c8a18e27e2e8d46f935a7673d9dfc + name: dbus + evr: 1:1.16.0-3.fc42 + sourcerpm: dbus-1.16.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/dbus-broker-36-5.fc42.x86_64.rpm + repoid: fedora + size: 178304 + checksum: sha256:8ab6f5750243d0840d59d1cacff4d18397eb722c9494a8d1ff59bf32689e3541 + name: dbus-broker + evr: 36-5.fc42 + sourcerpm: dbus-broker-36-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/dbus-common-1.16.0-3.fc42.noarch.rpm + repoid: fedora + size: 14800 + checksum: sha256:69dc203b3cbc8ca33f87b37bca181b57ee4902161f2a1dc5976d3b858288fd65 + name: dbus-common + evr: 1:1.16.0-3.fc42 + sourcerpm: dbus-1.16.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/dbus-libs-1.16.0-3.fc42.x86_64.rpm + repoid: fedora + size: 153002 + checksum: sha256:244b33283a532a1abac4599fb5a748c7e07e1ae09e5ed022d7560b5b75e26a2c + name: dbus-libs + evr: 1:1.16.0-3.fc42 + sourcerpm: dbus-1.16.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/dconf-0.40.0-15.fc42.x86_64.rpm + repoid: fedora + size: 112147 + checksum: sha256:4778db70d3aac48b468f3a3e77fbbed7e140a70f6abb99959c308c122ac91866 + name: dconf + evr: 0.40.0-15.fc42 + sourcerpm: dconf-0.40.0-15.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/default-fonts-core-sans-4.2-4.fc42.noarch.rpm + repoid: fedora + size: 32023 + checksum: sha256:ed7720399d848ef1ebee7777126084cbf4c5dd68aec5c31b4788fcec6177a9c9 + name: default-fonts-core-sans + evr: 4.2-4.fc42 + sourcerpm: langpacks-4.2-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/device-mapper-1.02.204-3.fc42.x86_64.rpm + repoid: fedora + size: 140422 + checksum: sha256:c63668294464345d424a04f83ea9388738ea8c0d86a28878357600507a622b6a + name: device-mapper + evr: 1.02.204-3.fc42 + sourcerpm: lvm2-2.03.30-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/device-mapper-event-1.02.204-3.fc42.x86_64.rpm + repoid: fedora + size: 35627 + checksum: sha256:7470b7bb8c9b9d9350d2d87112be22c2974ec710b4d2788cd1d3547f8002f3e3 + name: device-mapper-event + evr: 1.02.204-3.fc42 + sourcerpm: lvm2-2.03.30-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/device-mapper-event-libs-1.02.204-3.fc42.x86_64.rpm + repoid: fedora + size: 31927 + checksum: sha256:3ef0b399dbe9739f6a9faf60db27f099002d8a153ad3b5d3fba6e2f6cbcb40e4 + name: device-mapper-event-libs + evr: 1.02.204-3.fc42 + sourcerpm: lvm2-2.03.30-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/device-mapper-libs-1.02.204-3.fc42.x86_64.rpm + repoid: fedora + size: 184364 + checksum: sha256:654f7d92f438a49521de8d7fdc9bde3776f3d36d6154b54481c0e47553454a35 + name: device-mapper-libs + evr: 1.02.204-3.fc42 + sourcerpm: lvm2-2.03.30-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/device-mapper-multipath-libs-0.10.0-5.fc42.x86_64.rpm + repoid: fedora + size: 299270 + checksum: sha256:f7151747efc6759badd81f369a80d50078427482bb8bec8edc5e63b87a3adfc4 + name: device-mapper-multipath-libs + evr: 0.10.0-5.fc42 + sourcerpm: device-mapper-multipath-0.10.0-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/device-mapper-persistent-data-1.1.0-3.fc42.x86_64.rpm + repoid: fedora + size: 1198501 + checksum: sha256:d342be02a6bf4381dfb816599f175760e7dd096b6df347d93d210c57ffbcf27c + name: device-mapper-persistent-data + evr: 1.1.0-3.fc42 + sourcerpm: device-mapper-persistent-data-1.1.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/dhcp-client-4.4.3-16.P1.fc42.x86_64.rpm + repoid: fedora + size: 852075 + checksum: sha256:61c794cbb89313b6eb8a735c426bf33cce6c4adb648cdc55cb3039c87fa934fd + name: dhcp-client + evr: 12:4.4.3-16.P1.fc42 + sourcerpm: dhcp-4.4.3-16.P1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/dhcp-common-4.4.3-16.P1.fc42.noarch.rpm + repoid: fedora + size: 129080 + checksum: sha256:5ca112d27af7caf8531d9ecdd83b305f9288eae6617c119fdd04a49dcfc6d763 + name: dhcp-common + evr: 12:4.4.3-16.P1.fc42 + sourcerpm: dhcp-4.4.3-16.P1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/dhcpcd-10.1.0-2.fc42.x86_64.rpm + repoid: fedora + size: 241710 + checksum: sha256:9443d0f37e085ee86909e8b0fe4984c9d6aac6e16111c41ee312a3de9ce8606a + name: dhcpcd + evr: 10.1.0-2.fc42 + sourcerpm: dhcpcd-10.1.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/dmidecode-3.6-6.fc42.x86_64.rpm + repoid: fedora + size: 98795 + checksum: sha256:96e01c81e499d02f1651525def66219cd252b7d4477a9cb04acf0fa3c9705b01 + name: dmidecode + evr: 1:3.6-6.fc42 + sourcerpm: dmidecode-3.6-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/dnf-data-4.23.0-1.fc42.noarch.rpm + repoid: fedora + size: 41754 + checksum: sha256:f794440a38315eef1a2c28fb479938dd48e0ed7a12d033c376e0d4fef726e062 + name: dnf-data + evr: 4.23.0-1.fc42 + sourcerpm: dnf-4.23.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/dnf-plugins-core-4.10.1-1.fc42.noarch.rpm + repoid: fedora + size: 39707 + checksum: sha256:6a7a0ff3af1ad7e2ce80b60b0aab772a9cdd352876baf3f3e70725f131b538ac + name: dnf-plugins-core + evr: 4.10.1-1.fc42 + sourcerpm: dnf-plugins-core-4.10.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/dnf-utils-4.10.1-1.fc42.noarch.rpm + repoid: fedora + size: 35717 + checksum: sha256:169c6357ccae05685630298e3d61e5b3422a45ae9d7a41c4b4aeb48291de47ae + name: dnf-utils + evr: 4.10.1-1.fc42 + sourcerpm: dnf-plugins-core-4.10.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/dosfstools-4.2-15.fc42.x86_64.rpm + repoid: fedora + size: 107082 + checksum: sha256:5884718645423db54886f9541189bad922ad9c0099b364d71a6cd1d484c96ef0 + name: dosfstools + evr: 4.2-15.fc42 + sourcerpm: dosfstools-4.2-15.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/drpm-0.5.2-8.fc42.x86_64.rpm + repoid: fedora + size: 65888 + checksum: sha256:df4af93302caf9ace5d3d731779bebaf623512463ac7548718c130694b00e9fa + name: drpm + evr: 0.5.2-8.fc42 + sourcerpm: drpm-0.5.2-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/duktape-2.7.0-9.fc42.x86_64.rpm + repoid: fedora + size: 173696 + checksum: sha256:dc5330e7a91ae3a65fa58644635474ad00b14e3afdf832d4f2073d6bed87986d + name: duktape + evr: 2.7.0-9.fc42 + sourcerpm: duktape-2.7.0-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/dumb-init-1.2.5-13.fc42.x86_64.rpm + repoid: fedora + size: 21840 + checksum: sha256:83e0757d82de3c53af8fdfe6a0a2445c4c3a0c461ea45178962c9c6d136703d7 + name: dumb-init + evr: 1.2.5-13.fc42 + sourcerpm: dumb-init-1.2.5-13.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/d/dwz-0.15-9.fc42.x86_64.rpm + repoid: fedora + size: 138960 + checksum: sha256:57e2b9e191f508ef15ea9edf3147cac7f0dc501f3e89eccb8d9581262dd753c6 + name: dwz + evr: 0.15-9.fc42 + sourcerpm: dwz-0.15-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/e/e2fsprogs-1.47.2-3.fc42.x86_64.rpm + repoid: fedora + size: 1116640 + checksum: sha256:c3a8f1e6d8e58d1726b0363fe71c4e363b7bf3886928a98c7532830398ff961f + name: e2fsprogs + evr: 1.47.2-3.fc42 + sourcerpm: e2fsprogs-1.47.2-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/e/e2fsprogs-libs-1.47.2-3.fc42.x86_64.rpm + repoid: fedora + size: 234030 + checksum: sha256:93f8f08fa580675263608a3d634f7e48038ee52de3849dc4602886f5e40f2a2e + name: e2fsprogs-libs + evr: 1.47.2-3.fc42 + sourcerpm: e2fsprogs-1.47.2-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/e/ed-1.21-2.fc42.x86_64.rpm + repoid: fedora + size: 83944 + checksum: sha256:5a6eae5dc9e2074d5886df77041e9b9c5ebb989002d5fb43fb240375a8f3edc5 + name: ed + evr: 1.21-2.fc42 + sourcerpm: ed-1.21-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/e/efivar-libs-39-8.fc42.x86_64.rpm + repoid: fedora + size: 136242 + checksum: sha256:4c060cfe1ba16a40e6be5995d4dc6224f9bd7b7ead49814af74dc1b6de362da5 + name: efivar-libs + evr: 39-8.fc42 + sourcerpm: efivar-39-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/e/emacs-filesystem-30.0-4.fc42.noarch.rpm + repoid: fedora + size: 7532 + checksum: sha256:417b5bb92565095ad2e5f4609524c380300dc39b6cfe8cf0432f6aa5820700e3 + name: emacs-filesystem + evr: 1:30.0-4.fc42 + sourcerpm: emacs-filesystem-30.0-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/e/exempi-2.6.4-7.fc42.x86_64.rpm + repoid: fedora + size: 597497 + checksum: sha256:9698d6814c7466dd85e8bc32c2bba01f9c984fdb32305bdbe65372e52fcca746 + name: exempi + evr: 2.6.4-7.fc42 + sourcerpm: exempi-2.6.4-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/e/exiv2-0.28.5-1.fc42.x86_64.rpm + repoid: fedora + size: 2151344 + checksum: sha256:e2442829da985896d4a6045172cca12214f0517d202c4c86cb95c3db51bb737d + name: exiv2 + evr: 0.28.5-1.fc42 + sourcerpm: exiv2-0.28.5-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/e/exiv2-libs-0.28.5-1.fc42.x86_64.rpm + repoid: fedora + size: 925406 + checksum: sha256:651224606c295e3cc47551980cd4df99979bbf1ab90fd14ce67cca63548fd5cd + name: exiv2-libs + evr: 0.28.5-1.fc42 + sourcerpm: exiv2-0.28.5-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/e/expat-2.7.1-1.fc42.x86_64.rpm + repoid: fedora + size: 117827 + checksum: sha256:c9e745fe28ce7935f6d885d0a1150550190610378ba81b5210f70a3de52de4a9 + name: expat + evr: 2.7.1-1.fc42 + sourcerpm: expat-2.7.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/f/fdk-aac-free-2.0.0-15.fc42.x86_64.rpm + repoid: fedora + size: 350591 + checksum: sha256:69adbc07ec8d2a8d9e82d2afc25178c2bd7b4e574cbffff05e796b5faaccaff1 + name: fdk-aac-free + evr: 2.0.0-15.fc42 + sourcerpm: fdk-aac-free-2.0.0-15.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/f/fedora-repos-ostree-42-1.noarch.rpm + repoid: fedora + size: 8513 + checksum: sha256:4ad5d79cceab2891e7a57e45903dd85614e65d13c7ecdd32d33dc6efdcd823de + name: fedora-repos-ostree + evr: 42-1 + sourcerpm: fedora-repos-42-1.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/f/fftw-libs-single-3.3.10-15.fc42.x86_64.rpm + repoid: fedora + size: 1269301 + checksum: sha256:8dab3b59528dc532336553635e090966d7c99d4b155096c4cf2a38726db87d60 + name: fftw-libs-single + evr: 3.3.10-15.fc42 + sourcerpm: fftw-3.3.10-15.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/f/flac-libs-1.4.3-6.fc42.x86_64.rpm + repoid: fedora + size: 280901 + checksum: sha256:9b2bdfb3ac10b2ca3a5ba33cea7df787035c67623f1c3496f880671977db3758 + name: flac-libs + evr: 1.4.3-6.fc42 + sourcerpm: flac-1.4.3-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/f/fontconfig-2.16.0-2.fc42.x86_64.rpm + repoid: fedora + size: 278564 + checksum: sha256:5f183ee7dcb7dd0a58b35b9dfe905c95172f74510cc9becd11cab591291f74df + name: fontconfig + evr: 2.16.0-2.fc42 + sourcerpm: fontconfig-2.16.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/f/forge-srpm-macros-0.4.0-2.fc42.noarch.rpm + repoid: fedora + size: 20327 + checksum: sha256:cd1468980926126f6997a3196e8f6c2c4ab9d4d47c20773d83e867635d3e2549 + name: forge-srpm-macros + evr: 0.4.0-2.fc42 + sourcerpm: forge-srpm-macros-0.4.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/f/fpc-srpm-macros-1.3-14.fc42.noarch.rpm + repoid: fedora + size: 8212 + checksum: sha256:d8d1e0f58dc98ed181864c8815833432f2f462b87ec0acd689e66eba056e01e4 + name: fpc-srpm-macros + evr: 1.3-14.fc42 + sourcerpm: fpc-srpm-macros-1.3-14.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/f/freetype-2.13.3-2.fc42.x86_64.rpm + repoid: fedora + size: 425427 + checksum: sha256:d0044fa1d4b564b02e58e628c7389397d60ef59f57b3d9fc6b9ed3ae4e546971 + name: freetype + evr: 2.13.3-2.fc42 + sourcerpm: freetype-2.13.3-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/f/fribidi-1.0.16-2.fc42.x86_64.rpm + repoid: fedora + size: 54850 + checksum: sha256:cea5a260a76988140c1aabb08f393b28eba1911c78256c1f99d7e3c7af4d9e18 + name: fribidi + evr: 1.0.16-2.fc42 + sourcerpm: fribidi-1.0.16-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/f/fuse-2.9.9-23.fc42.x86_64.rpm + repoid: fedora + size: 81654 + checksum: sha256:7cbb838e2ecd6d5359a59a63a5b49ed353148396b1675533da12a0ddcb3e172d + name: fuse + evr: 2.9.9-23.fc42 + sourcerpm: fuse-2.9.9-23.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/f/fuse-common-3.16.2-5.fc42.x86_64.rpm + repoid: fedora + size: 8808 + checksum: sha256:1754f75a3d4ac0ea43863e4c6b902e77cdf65416e095b9b3d92ab83f080e2512 + name: fuse-common + evr: 3.16.2-5.fc42 + sourcerpm: fuse3-3.16.2-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/f/fuse-libs-2.9.9-23.fc42.x86_64.rpm + repoid: fedora + size: 99862 + checksum: sha256:2ff273e9d9925904645811d6f6d264ab83cfc6a25c26e427c49c779ba7a09122 + name: fuse-libs + evr: 2.9.9-23.fc42 + sourcerpm: fuse-2.9.9-23.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/f/fuse-overlayfs-1.13-3.fc42.x86_64.rpm + repoid: fedora + size: 68087 + checksum: sha256:12398270f1656a880323e5d8aaee312f78ada7aedf741db49f1cd71c082f713b + name: fuse-overlayfs + evr: 1.13-3.fc42 + sourcerpm: fuse-overlayfs-1.13-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/f/fuse3-3.16.2-5.fc42.x86_64.rpm + repoid: fedora + size: 58813 + checksum: sha256:ddaf7920a47cafdf21c949d1ef85d0f1c98c0623f817b2b1f9b514f5c2b70258 + name: fuse3 + evr: 3.16.2-5.fc42 + sourcerpm: fuse3-3.16.2-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/f/fuse3-libs-3.16.2-5.fc42.x86_64.rpm + repoid: fedora + size: 96510 + checksum: sha256:771a382a6c2ff032718e1de5aa41e32f08aa2115a82b0aa622af78b3e3656beb + name: fuse3-libs + evr: 3.16.2-5.fc42 + sourcerpm: fuse3-3.16.2-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/game-music-emu-0.6.3-17.fc42.x86_64.rpm + repoid: fedora + size: 158089 + checksum: sha256:53a19accdd437aa01dcb4ec35f52dc29ad582dde1917266a1ca10e586d2b2027 + name: game-music-emu + evr: 0.6.3-17.fc42 + sourcerpm: game-music-emu-0.6.3-17.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gdisk-1.0.10-3.fc42.x86_64.rpm + repoid: fedora + size: 264652 + checksum: sha256:24d056f0492173396092f15978c08f5a881abfe526bbebeba0937a3c88265c07 + name: gdisk + evr: 1.0.10-3.fc42 + sourcerpm: gdisk-1.0.10-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gdk-pixbuf2-2.42.12-10.fc42.x86_64.rpm + repoid: fedora + size: 502386 + checksum: sha256:d02b522b9ec30d4c71122943a9cb2090db0a78966bea3e6cdccbe50ebcb04489 + name: gdk-pixbuf2 + evr: 2.42.12-10.fc42 + sourcerpm: gdk-pixbuf2-2.42.12-10.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gdk-pixbuf2-modules-2.42.12-10.fc42.x86_64.rpm + repoid: fedora + size: 28600 + checksum: sha256:50bcbba4fd2a05c7d97db31a9d567fe69415c52af4d2abb6d2ff5fb76c50d1d6 + name: gdk-pixbuf2-modules + evr: 2.42.12-10.fc42 + sourcerpm: gdk-pixbuf2-2.42.12-10.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/genisoimage-1.1.11-59.fc42.x86_64.rpm + repoid: fedora + size: 335067 + checksum: sha256:398e7816133b259216ea1e26b4d6694ab79db12e52195a65d9085610e6ee81b6 + name: genisoimage + evr: 1.1.11-59.fc42 + sourcerpm: cdrkit-1.1.11-59.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/geoclue2-2.7.2-2.fc42.x86_64.rpm + repoid: fedora + size: 147575 + checksum: sha256:d0779855074682f8dc22b4bfeaed3e17240a37ae43a9a100f1137c9ff9e831e3 + name: geoclue2 + evr: 2.7.2-2.fc42 + sourcerpm: geoclue2-2.7.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/geolite2-city-20191217-14.fc42.noarch.rpm + repoid: fedora + size: 23694864 + checksum: sha256:db9f402b9b7da2ab9636d5a3a904cacebb9018a24274c554c01c1f4014781057 + name: geolite2-city + evr: 20191217-14.fc42 + sourcerpm: geolite2-20191217-14.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/geolite2-country-20191217-14.fc42.noarch.rpm + repoid: fedora + size: 1685850 + checksum: sha256:fd2c6209bf4612904e3af1d8ccd2eaf83029d5d1aa3e104b8b46f18e48e518d5 + name: geolite2-country + evr: 20191217-14.fc42 + sourcerpm: geolite2-20191217-14.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gettext-envsubst-0.23.1-2.fc42.x86_64.rpm + repoid: fedora + size: 38637 + checksum: sha256:e18f8c31780d720244d631af3cd02ea3884b30e7c2679f6a8928ca8ac3e7c5ed + name: gettext-envsubst + evr: 0.23.1-2.fc42 + sourcerpm: gettext-0.23.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gettext-libs-0.23.1-2.fc42.x86_64.rpm + repoid: fedora + size: 778681 + checksum: sha256:19f67841324547de0836b0977e1dc287a1e4362dea9c384c5fc578e9037a080a + name: gettext-libs + evr: 0.23.1-2.fc42 + sourcerpm: gettext-0.23.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gettext-runtime-0.23.1-2.fc42.x86_64.rpm + repoid: fedora + size: 118919 + checksum: sha256:e639196487b04cc0efd22cf64be17e0618b88895fe5ebba5635cb5b92bccd001 + name: gettext-runtime + evr: 0.23.1-2.fc42 + sourcerpm: gettext-0.23.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/ghc-srpm-macros-1.9.2-2.fc42.noarch.rpm + repoid: fedora + size: 9376 + checksum: sha256:b8231e8853623d804f525f9e88c831d50f2756b687d561eee4cba69e6cfedaa6 + name: ghc-srpm-macros + evr: 1.9.2-2.fc42 + sourcerpm: ghc-srpm-macros-1.9.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/git-2.49.0-1.fc42.x86_64.rpm + repoid: fedora + size: 52522 + checksum: sha256:4a54ecfa6611e9451d058d0de6767f947d14f9bf7db87c32a14c8e7f853b44db + name: git + evr: 2.49.0-1.fc42 + sourcerpm: git-2.49.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/git-core-2.49.0-1.fc42.x86_64.rpm + repoid: fedora + size: 5091079 + checksum: sha256:189ff41b3487b8d8d16494a2915d5e4c3e5cfef64250f5f99728490b061bb0fd + name: git-core + evr: 2.49.0-1.fc42 + sourcerpm: git-2.49.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/git-core-doc-2.49.0-1.fc42.noarch.rpm + repoid: fedora + size: 3178391 + checksum: sha256:fdeda4cdad78fa6f48d311ef4368d34623e160cd74382b2496dc2a6e07514b3e + name: git-core-doc + evr: 2.49.0-1.fc42 + sourcerpm: git-2.49.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/glib-networking-2.80.1-1.fc42.x86_64.rpm + repoid: fedora + size: 206267 + checksum: sha256:8f8c5c666e4fc127c4d934b8113b59726b8825ccb34bfb89def25869e07cdeca + name: glib-networking + evr: 2.80.1-1.fc42 + sourcerpm: glib-networking-2.80.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/glusterfs-client-xlators-11.1-8.fc42.x86_64.rpm + repoid: fedora + size: 791942 + checksum: sha256:6180d96ed675ec5bb98b7454c824eda4bc1cb91b78cac5dddeaa6f10b34874be + name: glusterfs-client-xlators + evr: 11.1-8.fc42 + sourcerpm: glusterfs-11.1-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gnat-srpm-macros-6-7.fc42.noarch.rpm + repoid: fedora + size: 8818 + checksum: sha256:0aaf2ebea5842cbbe07099943bb40cd0e1f62cf3ff06edd47e60cae461f2533f + name: gnat-srpm-macros + evr: 6-7.fc42 + sourcerpm: gnat-srpm-macros-6-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gnupg2-2.4.7-2.fc42.x86_64.rpm + repoid: fedora + size: 2912079 + checksum: sha256:f675a5c31bc583118389f56cda3d1adf2e1cd44acd92a342a2125c3a538557ef + name: gnupg2 + evr: 2.4.7-2.fc42 + sourcerpm: gnupg2-2.4.7-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gnupg2-smime-2.4.7-2.fc42.x86_64.rpm + repoid: fedora + size: 269872 + checksum: sha256:bcf23bf59856a81a832c7a842ac3e7fd754153e6513f04fd356a4583511d3b25 + name: gnupg2-smime + evr: 2.4.7-2.fc42 + sourcerpm: gnupg2-2.4.7-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gnutls-dane-3.8.9-3.fc42.x86_64.rpm + repoid: fedora + size: 43436 + checksum: sha256:39a7eab8ea732e89f589fe247644d0cb64598987e0d2e3277a1e3a4090b60761 + name: gnutls-dane + evr: 3.8.9-3.fc42 + sourcerpm: gnutls-3.8.9-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gnutls-utils-3.8.9-3.fc42.x86_64.rpm + repoid: fedora + size: 313244 + checksum: sha256:a1b08efbe53361565cc345753d6208db42218f8d7af98e70b4f441b895bd833c + name: gnutls-utils + evr: 3.8.9-3.fc42 + sourcerpm: gnutls-3.8.9-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/go-filesystem-3.6.0-6.fc42.x86_64.rpm + repoid: fedora + size: 8867 + checksum: sha256:20cc3cd9a2b597444b80f6cfd266218ffbd944071e4366fe91d8c92a08b69ead + name: go-filesystem + evr: 3.6.0-6.fc42 + sourcerpm: go-rpm-macros-3.6.0-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/go-srpm-macros-3.6.0-6.fc42.noarch.rpm + repoid: fedora + size: 28322 + checksum: sha256:677c782cdde009da911ed8d4de880f910c163db203d078e19e65b146e75d4d58 + name: go-srpm-macros + evr: 3.6.0-6.fc42 + sourcerpm: go-rpm-macros-3.6.0-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gobject-introspection-1.84.0-1.fc42.x86_64.rpm + repoid: fedora + size: 122816 + checksum: sha256:18356aabe8938da167caa30a4c05e1cd3b5926d0c783dc5c45ada272e8eaa3e9 + name: gobject-introspection + evr: 1.84.0-1.fc42 + sourcerpm: gobject-introspection-1.84.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/golang-github-aliyun-cli-3.0.125-7.fc41.x86_64.rpm + repoid: fedora + size: 3967699 + checksum: sha256:74f2846c9bd9138e0f205b71c214ec6daf64bb6417c263a77cc6b999207ac3d6 + name: golang-github-aliyun-cli + evr: 3.0.125-7.fc41 + sourcerpm: golang-github-aliyun-cli-3.0.125-7.fc41.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/google-noto-fonts-common-20250301-1.fc42.noarch.rpm + repoid: fedora + size: 17482 + checksum: sha256:20717c78521e38ddd7817e89559a4d829a8a2c7d7eb6bc1de7d68ebd9ddf499b + name: google-noto-fonts-common + evr: 20250301-1.fc42 + sourcerpm: google-noto-fonts-20250301-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/google-noto-sans-vf-fonts-20250301-1.fc42.noarch.rpm + repoid: fedora + size: 629278 + checksum: sha256:5bac826026b849bfa0367c6fa23f3f400e6dd4a7b51b404ea16ff57a47bc311c + name: google-noto-sans-vf-fonts + evr: 20250301-1.fc42 + sourcerpm: google-noto-fonts-20250301-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gperftools-libs-2.15-5.fc42.x86_64.rpm + repoid: fedora + size: 318183 + checksum: sha256:95c96df845208e1520db10d0e29aaa6ebc5bf575249113f9c60b99f100b962e9 + name: gperftools-libs + evr: 2.15-5.fc42 + sourcerpm: gperftools-2.15-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gpgme-1.24.2-1.fc42.x86_64.rpm + repoid: fedora + size: 224920 + checksum: sha256:d112d61c278f59eb56422bd589a461b2d5a84f27fd8b757a11ac480b38e22cc2 + name: gpgme + evr: 1.24.2-1.fc42 + sourcerpm: gpgme-1.24.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gpgmepp-1.24.2-1.fc42.x86_64.rpm + repoid: fedora + size: 147006 + checksum: sha256:db3f719ce81f06e3da00c8729a29958b58832e70c738a081063042d1d9944684 + name: gpgmepp + evr: 1.24.2-1.fc42 + sourcerpm: gpgme-1.24.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/graphene-1.10.6-10.fc42.x86_64.rpm + repoid: fedora + size: 62735 + checksum: sha256:ff7a7c1f6aa4e21a3db4a9b3684ad403cd3e8065713aeefa87aac836c76b25ab + name: graphene + evr: 1.10.6-10.fc42 + sourcerpm: graphene-1.10.6-10.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/graphite2-1.3.14-18.fc42.x86_64.rpm + repoid: fedora + size: 98074 + checksum: sha256:2350d806b61a41246b7ad582235862ac476ea62397902a1cb3ece5d9669b9ada + name: graphite2 + evr: 1.3.14-18.fc42 + sourcerpm: graphite2-1.3.14-18.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/groff-1.23.0-8.fc42.x86_64.rpm + repoid: fedora + size: 1402472 + checksum: sha256:1d20bcc0f63d5d7e36c0542146f311edab97783719bfb24633b0e3ec8fa6fdff + name: groff + evr: 1.23.0-8.fc42 + sourcerpm: groff-1.23.0-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/groff-base-1.23.0-8.fc42.x86_64.rpm + repoid: fedora + size: 1158189 + checksum: sha256:5a57a184ad7a709c655fdef507442ae67cb2fbfa2feb8d21fec6078c194a241a + name: groff-base + evr: 1.23.0-8.fc42 + sourcerpm: groff-1.23.0-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gsettings-desktop-schemas-48.0-1.fc42.x86_64.rpm + repoid: fedora + size: 802774 + checksum: sha256:bb3567862bc74b2aea5817e9aee527069d66ef93f84d9f0a810a7ec12f0f8f21 + name: gsettings-desktop-schemas + evr: 48.0-1.fc42 + sourcerpm: gsettings-desktop-schemas-48.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gsm-1.0.22-8.fc42.x86_64.rpm + repoid: fedora + size: 36647 + checksum: sha256:b9d8e97a7709a2b86b5bea208b4549deaf4038c06ef66d8495e8f68dd23bfc99 + name: gsm + evr: 1.0.22-8.fc42 + sourcerpm: gsm-1.0.22-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gssproxy-0.9.2-8.fc42.x86_64.rpm + repoid: fedora + size: 118085 + checksum: sha256:49c7fee682ddb5b9e3c09e5d68984cfe4ff0e025922f05523a6c14369f9241af + name: gssproxy + evr: 0.9.2-8.fc42 + sourcerpm: gssproxy-0.9.2-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gtk-update-icon-cache-3.24.49-2.fc42.x86_64.rpm + repoid: fedora + size: 34571 + checksum: sha256:02a77d72456ad4496996d76de1b57f61fee967c3f419f159b162e3feca690687 + name: gtk-update-icon-cache + evr: 3.24.49-2.fc42 + sourcerpm: gtk3-3.24.49-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/g/gtk3-3.24.49-2.fc42.x86_64.rpm + repoid: fedora + size: 6068186 + checksum: sha256:2b18a4766217f8066efb6d30165d849ee667874227613ca35c6710175a5fa37d + name: gtk3 + evr: 3.24.49-2.fc42 + sourcerpm: gtk3-3.24.49-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/h/harfbuzz-10.4.0-1.fc42.x86_64.rpm + repoid: fedora + size: 1107458 + checksum: sha256:6262d57d97262591150a8364e782e7937b5f28cb823c59ce878830c9792312ef + name: harfbuzz + evr: 10.4.0-1.fc42 + sourcerpm: harfbuzz-10.4.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/h/hexedit-1.6-8.fc42.x86_64.rpm + repoid: fedora + size: 43541 + checksum: sha256:7e900355e00ac98d7a5c1556d391c2a5272e3192f0db88fd9efc3112bb6b2c15 + name: hexedit + evr: 1.6-8.fc42 + sourcerpm: hexedit-1.6-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/h/hicolor-icon-theme-0.17-20.fc42.noarch.rpm + repoid: fedora + size: 67258 + checksum: sha256:25fa632d12207d607b9243ff61c641299fc1eb3ee0d5c6bc956fd293c5a80439 + name: hicolor-icon-theme + evr: 0.17-20.fc42 + sourcerpm: hicolor-icon-theme-0.17-20.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/h/highway-1.2.0-5.fc42.x86_64.rpm + repoid: fedora + size: 640571 + checksum: sha256:996dba8953d7bba494957337f64b9eb61da9a28a53abb2f42344c66bf51ede98 + name: highway + evr: 1.2.0-5.fc42 + sourcerpm: highway-1.2.0-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/h/hiredis-1.2.0-6.fc42.x86_64.rpm + repoid: fedora + size: 51947 + checksum: sha256:84cc75bbe7acac1296477334c9791325757855d54a920da6aa9e07f2597b0e04 + name: hiredis + evr: 1.2.0-6.fc42 + sourcerpm: hiredis-1.2.0-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/h/hivex-libs-1.3.24-3.fc42.x86_64.rpm + repoid: fedora + size: 43877 + checksum: sha256:0809bcb682910bb0509002deb703f076fbfb5a91a47688965bc8770e0862f42c + name: hivex-libs + evr: 1.3.24-3.fc42 + sourcerpm: hivex-1.3.24-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/i/ilbc-3.0.4-13.fc42.x86_64.rpm + repoid: fedora + size: 58298 + checksum: sha256:bee595eab9f6ee33f81589e94ea79b1c2e1129faf049057d5087c74cd79a57db + name: ilbc + evr: 3.0.4-13.fc42 + sourcerpm: ilbc-3.0.4-13.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/i/ima-evm-utils-libs-1.6.2-4.fc42.x86_64.rpm + repoid: fedora + size: 30330 + checksum: sha256:d3e8a4dbc9f9757d26232f14475ebddf40da75a15df084bbc0c40f5f83b31d06 + name: ima-evm-utils-libs + evr: 1.6.2-4.fc42 + sourcerpm: ima-evm-utils-1.6.2-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/i/inih-58-3.fc42.x86_64.rpm + repoid: fedora + size: 18427 + checksum: sha256:90143c4089a419b9999b0a2a4ec2daf2530cbb775b200dbd1ddbb86a17f33076 + name: inih + evr: 58-3.fc42 + sourcerpm: inih-58-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/i/inih-cpp-58-3.fc42.x86_64.rpm + repoid: fedora + size: 19159 + checksum: sha256:08f4bcf1ccf4c131c68fb5ff67b65ddbb50f52a0a62791ccd0a85dccdadc4d40 + name: inih-cpp + evr: 58-3.fc42 + sourcerpm: inih-58-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/i/intel-mediasdk-23.2.2-7.fc42.x86_64.rpm + repoid: fedora + size: 2800350 + checksum: sha256:ebcdb9395e10719eb9bd407da243cd7b938921386ab7e1db38f345c89d780f63 + name: intel-mediasdk + evr: 23.2.2-7.fc42 + sourcerpm: intel-mediasdk-23.2.2-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/i/intel-qpl-1.7.0-1.fc42.x86_64.rpm + repoid: fedora + size: 342797 + checksum: sha256:f803b57ce2cd4c312dc03037452ade98ddb31d6d8129631ae1d8fd987fc5523f + name: intel-qpl + evr: 1.7.0-1.fc42 + sourcerpm: intel-qpl-1.7.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/i/ipcalc-1.0.3-11.fc42.x86_64.rpm + repoid: fedora + size: 42261 + checksum: sha256:f0d2a80e5aa50cda23301df269994fe43b8af4f8b0878ec729db8feeebb33876 + name: ipcalc + evr: 1.0.3-11.fc42 + sourcerpm: ipcalc-1.0.3-11.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/i/iproute-6.12.0-3.fc42.x86_64.rpm + repoid: fedora + size: 854365 + checksum: sha256:ba9df84486c5d5413f8893fc44b8f462d2b64e111db44846a69d5e4f003d60ec + name: iproute + evr: 6.12.0-3.fc42 + sourcerpm: iproute-6.12.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/i/iproute-tc-6.12.0-3.fc42.x86_64.rpm + repoid: fedora + size: 461168 + checksum: sha256:f9d80b21a6657cdb16e448d3b1264d49dc63c25fd6278cb69777c0dc3f53faa8 + name: iproute-tc + evr: 6.12.0-3.fc42 + sourcerpm: iproute-6.12.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/i/ipxe-roms-qemu-20240119-2.gitde8a0821.fc41.noarch.rpm + repoid: fedora + size: 1764972 + checksum: sha256:20df2a23f57478348eff41155317825681c4aad92223ff8b8255c9369a43d61f + name: ipxe-roms-qemu + evr: 20240119-2.gitde8a0821.fc41 + sourcerpm: ipxe-20240119-2.gitde8a0821.fc41.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/i/iso-codes-4.17.0-2.fc42.noarch.rpm + repoid: fedora + size: 3822221 + checksum: sha256:1ac3100809ba4e952afb89d80fad759d6f78d593888138f9142e4e2264f0d05a + name: iso-codes + evr: 4.17.0-2.fc42 + sourcerpm: iso-codes-4.17.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/j/jansson-2.14-2.fc42.x86_64.rpm + repoid: fedora + size: 46818 + checksum: sha256:f7394c728043f0f995164b6b8e49bd1673e8dacfe9aed5d1beec0e3ae6a42177 + name: jansson + evr: 2.14-2.fc42 + sourcerpm: jansson-2.14-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/j/jbigkit-libs-2.1-31.fc42.x86_64.rpm + repoid: fedora + size: 54596 + checksum: sha256:68d0e406ddc9b6965b0ae0710c1949333a45a356b91b39bb5e3f476384b1fc6f + name: jbigkit-libs + evr: 2.1-31.fc42 + sourcerpm: jbigkit-2.1-31.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/j/jose-14-4.fc42.x86_64.rpm + repoid: fedora + size: 68052 + checksum: sha256:2ee86bea4edd860bedb38009aa19b186b50b9ac2ee3a09d3495822625ec8bba1 + name: jose + evr: 14-4.fc42 + sourcerpm: jose-14-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/j/jq-1.7.1-11.fc42.x86_64.rpm + repoid: fedora + size: 205426 + checksum: sha256:1eadf3ad7ffdb518e25aa48881c593ccce7a56b2f8735388b1cb81e74e1afd73 + name: jq + evr: 1.7.1-11.fc42 + sourcerpm: jq-1.7.1-11.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/j/json-glib-1.10.6-2.fc42.x86_64.rpm + repoid: fedora + size: 175801 + checksum: sha256:596a0f157c6d01b33dd5529681c81a7405c79ae37de9930946829f2d6d610a97 + name: json-glib + evr: 1.10.6-2.fc42 + sourcerpm: json-glib-1.10.6-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/j/jxl-pixbuf-loader-0.11.1-2.fc42.x86_64.rpm + repoid: fedora + size: 20856 + checksum: sha256:de67709ed1f81ea5e1b260e3be874d1fdf4a4759f96d79187586abde1ffa01e5 + name: jxl-pixbuf-loader + evr: 1:0.11.1-2.fc42 + sourcerpm: jpegxl-0.11.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/k/kbd-2.7.1-3.fc42.x86_64.rpm + repoid: fedora + size: 395008 + checksum: sha256:970e2c079b19fcb1704570d4da0f9b1a328f0b8466c1539edf2a8f4f0a6e1b4b + name: kbd + evr: 2.7.1-3.fc42 + sourcerpm: kbd-2.7.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/k/kbd-legacy-2.7.1-3.fc42.noarch.rpm + repoid: fedora + size: 622743 + checksum: sha256:a2d1890ae44f6724624f2b48575d0703b5980e7c8c47eca25af43d55deb879c7 + name: kbd-legacy + evr: 2.7.1-3.fc42 + sourcerpm: kbd-2.7.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/k/kbd-misc-2.7.1-3.fc42.noarch.rpm + repoid: fedora + size: 1758888 + checksum: sha256:9df0120d8de25c1e2c25607001f402d1200d0a995dd25894eb1a00694e77528d + name: kbd-misc + evr: 2.7.1-3.fc42 + sourcerpm: kbd-2.7.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/k/kernel-srpm-macros-1.0-25.fc42.noarch.rpm + repoid: fedora + size: 10108 + checksum: sha256:047a8ba5d7e381d50ba499bbc203a5a434682b6f90ab335f9cea21d852c38e51 + name: kernel-srpm-macros + evr: 1.0-25.fc42 + sourcerpm: kernel-srpm-macros-1.0-25.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/k/keyutils-1.6.3-5.fc42.x86_64.rpm + repoid: fedora + size: 75224 + checksum: sha256:4e12ef3f64dd5776e9109aaa71977df22f6b6dcbbfe8d40608ffdf895b2aefc9 + name: keyutils + evr: 1.6.3-5.fc42 + sourcerpm: keyutils-1.6.3-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/k/kmod-33-3.fc42.x86_64.rpm + repoid: fedora + size: 126642 + checksum: sha256:7ebbbc73df2584e9de25a40ac0aee30e4f13d00c185b8d46eefddfbee819d3d9 + name: kmod + evr: 33-3.fc42 + sourcerpm: kmod-33-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/k/kmod-libs-33-3.fc42.x86_64.rpm + repoid: fedora + size: 71943 + checksum: sha256:3b0b2c78f393a6586754be242e328c2d76be206ce479cfe415a642886693c5d4 + name: kmod-libs + evr: 33-3.fc42 + sourcerpm: kmod-33-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/k/kpartx-0.10.0-5.fc42.x86_64.rpm + repoid: fedora + size: 48930 + checksum: sha256:9ba10de23554c6d78224200ae2d52b92cf3e907252e311dcfba347bc3acd3365 + name: kpartx + evr: 0.10.0-5.fc42 + sourcerpm: device-mapper-multipath-0.10.0-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/lame-libs-3.100-19.fc42.x86_64.rpm + repoid: fedora + size: 347882 + checksum: sha256:8bb69b2685bdf30096869b5e2e0908a28bec8930cddeeec329e3b40059d31715 + name: lame-libs + evr: 3.100-19.fc42 + sourcerpm: lame-3.100-19.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/lcms2-2.16-5.fc42.x86_64.rpm + repoid: fedora + size: 188522 + checksum: sha256:cc5fbb51ee842cc31105be93c30c90bd49e03597fa45512f74488ec87645454d + name: lcms2 + evr: 2.16-5.fc42 + sourcerpm: lcms2-2.16-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/less-668-2.fc42.x86_64.rpm + repoid: fedora + size: 194530 + checksum: sha256:7f929303343065a51df8579d8f6596616b8eaca6811604efa5b681d08e2197f9 + name: less + evr: 668-2.fc42 + sourcerpm: less-668-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libX11-1.8.11-1.fc42.x86_64.rpm + repoid: fedora + size: 671077 + checksum: sha256:11bad0cedd5b95a32f990ff349c4c5a56515d55c88623cb3a6749eaf58a08591 + name: libX11 + evr: 1.8.11-1.fc42 + sourcerpm: libX11-1.8.11-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libX11-common-1.8.11-1.fc42.noarch.rpm + repoid: fedora + size: 180328 + checksum: sha256:9b229a641b4fbb88f3240703bafc78ff0850b06f586e440f5e08546d3ce24855 + name: libX11-common + evr: 1.8.11-1.fc42 + sourcerpm: libX11-1.8.11-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libX11-xcb-1.8.11-1.fc42.x86_64.rpm + repoid: fedora + size: 11961 + checksum: sha256:f61009cf25531de762e6248620befe404f3db6ddbe93b210f344c9d8fa6c66f2 + name: libX11-xcb + evr: 1.8.11-1.fc42 + sourcerpm: libX11-1.8.11-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libXau-1.0.12-2.fc42.x86_64.rpm + repoid: fedora + size: 34396 + checksum: sha256:9bea424b9fc60643ccbf49626bef550a26ad8fff377f63ecd795d74ddb5e205d + name: libXau + evr: 1.0.12-2.fc42 + sourcerpm: libXau-1.0.12-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libXcomposite-0.4.6-5.fc42.x86_64.rpm + repoid: fedora + size: 24888 + checksum: sha256:9f4bb5aa6ccf8ace1e19eec65b5926405f93c691d8b75c0398f0344f9bd0ab4d + name: libXcomposite + evr: 0.4.6-5.fc42 + sourcerpm: libXcomposite-0.4.6-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libXcursor-1.2.3-2.fc42.x86_64.rpm + repoid: fedora + size: 32109 + checksum: sha256:aeb74e891bbb37377223e8f9ad87062d59f742503624a941605b3b3b4f236e5b + name: libXcursor + evr: 1.2.3-2.fc42 + sourcerpm: libXcursor-1.2.3-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libXdamage-1.1.6-5.fc42.x86_64.rpm + repoid: fedora + size: 23967 + checksum: sha256:07bb921afaae2b3ce4ebb75e4dc87f21b9db197bdc0a59cefe3b2580bbfb4cc5 + name: libXdamage + evr: 1.1.6-5.fc42 + sourcerpm: libXdamage-1.1.6-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libXext-1.3.6-3.fc42.x86_64.rpm + repoid: fedora + size: 40218 + checksum: sha256:1e8482bba9469f85958fc3187332c6ab7024584dcdd666d31589a59d0015d06d + name: libXext + evr: 1.3.6-3.fc42 + sourcerpm: libXext-1.3.6-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libXfixes-6.0.1-5.fc42.x86_64.rpm + repoid: fedora + size: 19587 + checksum: sha256:2931ea2fbeb25e1be7a0a7ec7c8d57f3d4fbcd523503a7ebfec2c16a76846a84 + name: libXfixes + evr: 6.0.1-5.fc42 + sourcerpm: libXfixes-6.0.1-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libXft-2.3.8-8.fc42.x86_64.rpm + repoid: fedora + size: 74625 + checksum: sha256:b55c87c1a8e926406e92ab54b7c6a5f3d62f9d3ee117961888ef7d0d7c14ba9e + name: libXft + evr: 2.3.8-8.fc42 + sourcerpm: libXft-2.3.8-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libXi-1.8.2-2.fc42.x86_64.rpm + repoid: fedora + size: 41521 + checksum: sha256:16cfb9c1090367ef521e4531819d7988e78a12848926611b550fa7ea3a11cbf5 + name: libXi + evr: 1.8.2-2.fc42 + sourcerpm: libXi-1.8.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libXinerama-1.1.5-8.fc42.x86_64.rpm + repoid: fedora + size: 14597 + checksum: sha256:e5e918cbe3fc70bf7948db2adff41cb5861771aaf120ebb9c85a6e31fe207370 + name: libXinerama + evr: 1.1.5-8.fc42 + sourcerpm: libXinerama-1.1.5-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libXrandr-1.5.4-5.fc42.x86_64.rpm + repoid: fedora + size: 28440 + checksum: sha256:3d8230b2ca3375108be0970ab17b551020d7492d7e32931db42273423d271b75 + name: libXrandr + evr: 1.5.4-5.fc42 + sourcerpm: libXrandr-1.5.4-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libXrender-0.9.12-2.fc42.x86_64.rpm + repoid: fedora + size: 27569 + checksum: sha256:d58fa086a7351364966d7cafe68be29803f80d4767b0d1707e1107074abf71e0 + name: libXrender + evr: 0.9.12-2.fc42 + sourcerpm: libXrender-0.9.12-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libXtst-1.2.5-2.fc42.x86_64.rpm + repoid: fedora + size: 21147 + checksum: sha256:30f05f202fd20865c1b1ce1c32cffe326b3f94a5656624f10f4b9fb636241695 + name: libXtst + evr: 1.2.5-2.fc42 + sourcerpm: libXtst-1.2.5-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libXv-1.0.13-2.fc42.x86_64.rpm + repoid: fedora + size: 19068 + checksum: sha256:a4ff104f6c30f0ec23785e187e09457910748a1be2aad385d07dcdf842bb25f0 + name: libXv + evr: 1.0.13-2.fc42 + sourcerpm: libXv-1.0.13-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libXxf86vm-1.1.6-2.fc42.x86_64.rpm + repoid: fedora + size: 18284 + checksum: sha256:26bf980ff075210b2d8fb19ea82290d8c4208e4530b6f0a9388e8d9517100f87 + name: libXxf86vm + evr: 1.1.6-2.fc42 + sourcerpm: libXxf86vm-1.1.6-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libaio-0.3.111-21.fc42.x86_64.rpm + repoid: fedora + size: 24180 + checksum: sha256:07c4bd5bbe03223abfe3640b9f81f297e41645221bb36fc7fad4fd6063c448d4 + name: libaio + evr: 0.3.111-21.fc42 + sourcerpm: libaio-0.3.111-21.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libaom-3.12.0-1.fc42.x86_64.rpm + repoid: fedora + size: 1927408 + checksum: sha256:02b026462d20b1d74382ddc3184e023ee5f7f45cf2997aa8028ff55a998377cf + name: libaom + evr: 3.12.0-1.fc42 + sourcerpm: aom-3.12.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libaribcaption-1.1.1-2.fc42.x86_64.rpm + repoid: fedora + size: 114287 + checksum: sha256:15172f909c6760da9bffca8e19e72fbbe2ba0a4edee3d712fd7cdc82d18126bd + name: libaribcaption + evr: 1.1.1-2.fc42 + sourcerpm: libaribcaption-1.1.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libassuan-2.5.7-3.fc42.x86_64.rpm + repoid: fedora + size: 69206 + checksum: sha256:a7a51adbe6934713cbbbb7c59e37991e7f160e1a2367271583e6e050cf77f5de + name: libassuan + evr: 2.5.7-3.fc42 + sourcerpm: libassuan-2.5.7-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libasyncns-0.8-30.fc42.x86_64.rpm + repoid: fedora + size: 30926 + checksum: sha256:f4bd3ae74ad3575c7c9bfcc55bb4d1c625624ad6ad7d4a4e932bbb96822c8a00 + name: libasyncns + evr: 0.8-30.fc42 + sourcerpm: libasyncns-0.8-30.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libavcodec-free-7.1.1-3.fc42.x86_64.rpm + repoid: fedora + size: 4301090 + checksum: sha256:7af79b5b2e5e4efac7eb7ab2df798c3aa6b5881445aafcdbcf97302778cf8e3e + name: libavcodec-free + evr: 7.1.1-3.fc42 + sourcerpm: ffmpeg-7.1.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libavformat-free-7.1.1-3.fc42.x86_64.rpm + repoid: fedora + size: 1176311 + checksum: sha256:17c85dfcdabd565e374ada8c6c5aa91ed20d93219329ce98421f4183a72fb51d + name: libavformat-free + evr: 7.1.1-3.fc42 + sourcerpm: ffmpeg-7.1.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libavif-1.1.1-1.fc42.x86_64.rpm + repoid: fedora + size: 102528 + checksum: sha256:4a3477318f699757d235790f2f07ce6b8779dda0cb7bef30224d89272c805f73 + name: libavif + evr: 1.1.1-1.fc42 + sourcerpm: libavif-1.1.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libavutil-free-7.1.1-3.fc42.x86_64.rpm + repoid: fedora + size: 364794 + checksum: sha256:9a761b8e921308a2ecd812762c56136cd0ca8ca8d303fc7dbed202a4d5a493dc + name: libavutil-free + evr: 7.1.1-3.fc42 + sourcerpm: ffmpeg-7.1.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libb2-0.98.1-13.fc42.x86_64.rpm + repoid: fedora + size: 25991 + checksum: sha256:3f977d31f5ab2765ab06fcc44917806d85767ba37d0b2a05cd128b408aff5c95 + name: libb2 + evr: 0.98.1-13.fc42 + sourcerpm: libb2-0.98.1-13.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libbasicobjects-0.1.1-58.fc42.x86_64.rpm + repoid: fedora + size: 26290 + checksum: sha256:8b9b21e3aacf9d8a17e9eb1c2747bd405c462b9f9d69df51d4b4a9b9504edda3 + name: libbasicobjects + evr: 0.1.1-58.fc42 + sourcerpm: ding-libs-0.6.2-58.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libblkio-1.5.0-2.fc41.x86_64.rpm + repoid: fedora + size: 301799 + checksum: sha256:4b8fee9231d02a0eef3f438cbe5bba4f89c8987e30bf955b40a034788db0f8cd + name: libblkio + evr: 1.5.0-2.fc41 + sourcerpm: libblkio-1.5.0-2.fc41.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libbluray-1.3.4-9.fc42.x86_64.rpm + repoid: fedora + size: 178345 + checksum: sha256:70806d8f01f6d3a9269720d8407f25deb3a12193ae1f2d84d5794f84ca6c7fc7 + name: libbluray + evr: 1.3.4-9.fc42 + sourcerpm: libbluray-1.3.4-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libbpf-1.5.0-2.fc42.x86_64.rpm + repoid: fedora + size: 191634 + checksum: sha256:5c213e03789f17db1dc0a664cb9a1ccd5fa34ad0e72fffa94d2a6fa0f01ef6c7 + name: libbpf + evr: 2:1.5.0-2.fc42 + sourcerpm: libbpf-1.5.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libbsd-0.12.2-5.fc42.x86_64.rpm + repoid: fedora + size: 125676 + checksum: sha256:0359fd5ede47a4ec52ecfbe81e0486d72fb7e86a59e52f6871676a158aeb29f5 + name: libbsd + evr: 0.12.2-5.fc42 + sourcerpm: libbsd-0.12.2-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libcacard-2.8.1-11.fc42.x86_64.rpm + repoid: fedora + size: 56671 + checksum: sha256:ffd01994cab480a2a36bdd905aeebeda7d1a61e1a01accb3f338c5c5708bb34f + name: libcacard + evr: 3:2.8.1-11.fc42 + sourcerpm: libcacard-2.8.1-11.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libcamera-0.4.0-4.fc42.x86_64.rpm + repoid: fedora + size: 619538 + checksum: sha256:0cc1b31c979812b4987956b89ff5076573f4d1e8cf693fbd97bf72565bb57f90 + name: libcamera + evr: 0.4.0-4.fc42 + sourcerpm: libcamera-0.4.0-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libcamera-ipa-0.4.0-4.fc42.x86_64.rpm + repoid: fedora + size: 150479 + checksum: sha256:6db9b1fa35d339f36ea177d1f87d4e77d16171ead94a0d2319991853e53229af + name: libcamera-ipa + evr: 0.4.0-4.fc42 + sourcerpm: libcamera-0.4.0-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libcanberra-0.30-37.fc42.x86_64.rpm + repoid: fedora + size: 86154 + checksum: sha256:23da4365b9fc2f8f6a5a44348dd39ce13a84a4b72a1cbf52e5ff842803d02eff + name: libcanberra + evr: 0.30-37.fc42 + sourcerpm: libcanberra-0.30-37.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libcanberra-gtk3-0.30-37.fc42.x86_64.rpm + repoid: fedora + size: 31302 + checksum: sha256:1a8283affd4b9fa0a2b782efd4f885dfd15c35d9a26c9fd2eb2837206dbdfcb9 + name: libcanberra-gtk3 + evr: 0.30-37.fc42 + sourcerpm: libcanberra-0.30-37.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libcbor-0.11.0-3.fc42.x86_64.rpm + repoid: fedora + size: 34077 + checksum: sha256:962e8a299ed4d057e95ac5e0330a46224fc3672b3319f3459d84613904532842 + name: libcbor + evr: 0.11.0-3.fc42 + sourcerpm: libcbor-0.11.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libchromaprint-1.5.1-24.fc42.x86_64.rpm + repoid: fedora + size: 42824 + checksum: sha256:3cb4795f19bc8b36ead214398eb4f65853fe07480c8c2d0a7cadf056024f3d8c + name: libchromaprint + evr: 1.5.1-24.fc42 + sourcerpm: chromaprint-1.5.1-24.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libcloudproviders-0.3.6-1.fc42.x86_64.rpm + repoid: fedora + size: 47915 + checksum: sha256:bb5110419eee1186203ed4448ceb98ef3a794d1664f495becc3ad18783fe882d + name: libcloudproviders + evr: 0.3.6-1.fc42 + sourcerpm: libcloudproviders-0.3.6-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libcollection-0.7.0-58.fc42.x86_64.rpm + repoid: fedora + size: 45014 + checksum: sha256:7946eff222c69b17b5d1b4273c5e6611dab50ba8cf387312e28dc66e3445668d + name: libcollection + evr: 0.7.0-58.fc42 + sourcerpm: ding-libs-0.6.2-58.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libcomps-0.1.21-5.fc42.x86_64.rpm + repoid: fedora + size: 79072 + checksum: sha256:29077bb84734631009e2bfaf337fabecf7912b38fb811faddf37726c06829d12 + name: libcomps + evr: 0.1.21-5.fc42 + sourcerpm: libcomps-0.1.21-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libconfig-1.7.3-11.fc42.x86_64.rpm + repoid: fedora + size: 73447 + checksum: sha256:8b930b1c7b5b51df345fa2b9bc85b3b4e4d02719d3200978432b45fdb5f9a22d + name: libconfig + evr: 1.7.3-11.fc42 + sourcerpm: libconfig-1.7.3-11.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libcue-2.3.0-11.fc42.x86_64.rpm + repoid: fedora + size: 35962 + checksum: sha256:2b796f3e60a642d7376d3b3053cfd83e8139221398d325455f340d6a3ada2807 + name: libcue + evr: 2.3.0-11.fc42 + sourcerpm: libcue-2.3.0-11.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libdatrie-0.2.13-11.fc42.x86_64.rpm + repoid: fedora + size: 33137 + checksum: sha256:a20b6a757816d02b78eea7983fcbea93870758d535261ac9ad15c93bba62192a + name: libdatrie + evr: 0.2.13-11.fc42 + sourcerpm: libdatrie-0.2.13-11.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libdav1d-1.5.1-1.fc42.x86_64.rpm + repoid: fedora + size: 656235 + checksum: sha256:c7cc8bc1200b555366654a5eb91c3d72eb7a9e92ce89ce7e32a699b667d7d471 + name: libdav1d + evr: 1.5.1-1.fc42 + sourcerpm: dav1d-1.5.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libdnf-0.74.0-1.fc42.x86_64.rpm + repoid: fedora + size: 731247 + checksum: sha256:c20b021fd51615224ebbc91f6816e2ea0bd8e0865a7393019714d507c743c046 + name: libdnf + evr: 0.74.0-1.fc42 + sourcerpm: libdnf-0.74.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libdvdnav-6.1.1-10.fc42.x86_64.rpm + repoid: fedora + size: 57200 + checksum: sha256:1ef2a2bc3ece6940ecf02e0144b24fba8f5d4346d3fee167656d62d84402815c + name: libdvdnav + evr: 6.1.1-10.fc42 + sourcerpm: libdvdnav-6.1.1-10.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libdvdread-6.1.3-9.fc42.x86_64.rpm + repoid: fedora + size: 74355 + checksum: sha256:ba849d0a002e166beb8fb02fe6d89d8fcfa21e45c2818d547b3eff5c9abe7a6b + name: libdvdread + evr: 6.1.3-9.fc42 + sourcerpm: libdvdread-6.1.3-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libebur128-1.2.6-12.fc42.x86_64.rpm + repoid: fedora + size: 25402 + checksum: sha256:84ebb489dcd0f98665e2f4291f8fa14b7bad80ac0e98aee8a40c7f737cd3f0ab + name: libebur128 + evr: 1.2.6-12.fc42 + sourcerpm: libebur128-1.2.6-12.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libedit-3.1-55.20250104cvs.fc42.x86_64.rpm + repoid: fedora + size: 107827 + checksum: sha256:f8bf05a34abc1eb7f4db8d1b9a5e590b56d941bb1db54d9487ba28219debbef1 + name: libedit + evr: 3.1-55.20250104cvs.fc42 + sourcerpm: libedit-3.1-55.20250104cvs.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libepoxy-1.5.10-9.fc42.x86_64.rpm + repoid: fedora + size: 235438 + checksum: sha256:c1131be4e6cf6af4afd88eb180dc58ad3db010c00bbf7e07331d4514cd54ab85 + name: libepoxy + evr: 1.5.10-9.fc42 + sourcerpm: libepoxy-1.5.10-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libev-4.33-13.fc42.x86_64.rpm + repoid: fedora + size: 54631 + checksum: sha256:87dc80b209b757deae51bf2f9b28d8a818df48e5daf1449c81acd2262633145c + name: libev + evr: 4.33-13.fc42 + sourcerpm: libev-4.33-13.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libexif-0.6.25-1.fc42.x86_64.rpm + repoid: fedora + size: 492597 + checksum: sha256:7f70b6b7c1b72c44c8a12177e12ca83aa02feb609d6d70ba1be5e2ca80d6d46d + name: libexif + evr: 0.6.25-1.fc42 + sourcerpm: libexif-0.6.25-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libfdisk-2.40.4-7.fc42.x86_64.rpm + repoid: fedora + size: 162296 + checksum: sha256:3463edb9be141bdff54ccedabb5e5822f754e3b260c7b59692bc6c1c06b11189 + name: libfdisk + evr: 2.40.4-7.fc42 + sourcerpm: util-linux-2.40.4-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libfdt-1.7.2-3.fc42.x86_64.rpm + repoid: fedora + size: 35809 + checksum: sha256:f47b3d21cd2b849043d10a4a29f352ac4f6e7fb201ca831b2e22616dfd703d2f + name: libfdt + evr: 1.7.2-3.fc42 + sourcerpm: dtc-1.7.2-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libfido2-1.15.0-3.fc42.x86_64.rpm + repoid: fedora + size: 100736 + checksum: sha256:e695eac1c2adfbc96572359aeecb2cd06996799036b8540c1b0f61c07af64f85 + name: libfido2 + evr: 1.15.0-3.fc42 + sourcerpm: libfido2-1.15.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libfsverity-1.6-2.fc42.x86_64.rpm + repoid: fedora + size: 19234 + checksum: sha256:c699b7c86a158bb785b441580c0138432c482267b0d54fceb05ab979bdd6129c + name: libfsverity + evr: 1.6-2.fc42 + sourcerpm: fsverity-utils-1.6-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libgcrypt-1.11.0-5.fc42.x86_64.rpm + repoid: fedora + size: 607503 + checksum: sha256:9781422ee391ec3b22ec48bb2d738093b7738c1af2a47792e42582b18a871daa + name: libgcrypt + evr: 1.11.0-5.fc42 + sourcerpm: libgcrypt-1.11.0-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libgfapi0-11.1-8.fc42.x86_64.rpm + repoid: fedora + size: 97976 + checksum: sha256:897345c1948302bcaba27751243d25cde94c4cdcf7e352d3db4370546b8d0778 + name: libgfapi0 + evr: 11.1-8.fc42 + sourcerpm: glusterfs-11.1-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libgfrpc0-11.1-8.fc42.x86_64.rpm + repoid: fedora + size: 51865 + checksum: sha256:646252e8fbe16de7437c042467a3bb95a814827c12f08d9f9becdb3b112cfabe + name: libgfrpc0 + evr: 11.1-8.fc42 + sourcerpm: glusterfs-11.1-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libgfxdr0-11.1-8.fc42.x86_64.rpm + repoid: fedora + size: 25301 + checksum: sha256:469224a9376ea04d8b9dab3e604e975da232eebea9a402ed7730009184a52a17 + name: libgfxdr0 + evr: 11.1-8.fc42 + sourcerpm: glusterfs-11.1-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libglusterfs0-11.1-8.fc42.x86_64.rpm + repoid: fedora + size: 293564 + checksum: sha256:f6170a55be7a974151efb7f16da8e1fb250191a153cef4e204d383dd899eee97 + name: libglusterfs0 + evr: 11.1-8.fc42 + sourcerpm: glusterfs-11.1-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libglvnd-1.7.0-7.fc42.x86_64.rpm + repoid: fedora + size: 117148 + checksum: sha256:78c255afdcfc0a10dd2c0818c2411acf4d48670e65aab7211be7e9e58f75f763 + name: libglvnd + evr: 1:1.7.0-7.fc42 + sourcerpm: libglvnd-1.7.0-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libglvnd-egl-1.7.0-7.fc42.x86_64.rpm + repoid: fedora + size: 37166 + checksum: sha256:23653d86ad20ebeb8c52bf50a580a97536e2f22195b28f2e5dd0f7f6138b7644 + name: libglvnd-egl + evr: 1:1.7.0-7.fc42 + sourcerpm: libglvnd-1.7.0-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libglvnd-glx-1.7.0-7.fc42.x86_64.rpm + repoid: fedora + size: 136263 + checksum: sha256:b08818686876579da8c30f95a08fd4045bdf2117da8df205f753d6ab11b20f80 + name: libglvnd-glx + evr: 1:1.7.0-7.fc42 + sourcerpm: libglvnd-1.7.0-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libgpg-error-1.51-2.fc42.x86_64.rpm + repoid: fedora + size: 242926 + checksum: sha256:2d3d98fc6bc63f69c2c99139cee0d843b8f8af4c0592126b69605f0baa7fba48 + name: libgpg-error + evr: 1.51-2.fc42 + sourcerpm: libgpg-error-1.51-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libgsf-1.14.53-3.fc42.x86_64.rpm + repoid: fedora + size: 269087 + checksum: sha256:13b9fa9c3b4f235ea480719346c67514dc0021acdf872d0964650d592827c6c1 + name: libgsf + evr: 1.14.53-3.fc42 + sourcerpm: libgsf-1.14.53-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libgudev-238-7.fc42.x86_64.rpm + repoid: fedora + size: 35756 + checksum: sha256:ab41978d058f05f5cb632fa24175499c4e817183487b4197aa4e84d59dbb7e7a + name: libgudev + evr: 238-7.fc42 + sourcerpm: libgudev-238-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libgusb-0.4.9-3.fc42.x86_64.rpm + repoid: fedora + size: 66911 + checksum: sha256:ff79bcc6097de9619b1936dca3f91fbc72a55a9d13a21c60fc711ce26ba1effe + name: libgusb + evr: 0.4.9-3.fc42 + sourcerpm: libgusb-0.4.9-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libgxps-0.3.2-10.fc42.x86_64.rpm + repoid: fedora + size: 78820 + checksum: sha256:20883e4b1a1ad49f22ca3e244b83b797fefa85bc218dfebfc573075767a107d0 + name: libgxps + evr: 0.3.2-10.fc42 + sourcerpm: libgxps-0.3.2-10.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libibverbs-55.0-1.fc42.x86_64.rpm + repoid: fedora + size: 455300 + checksum: sha256:5cb0cfffbeca1a7e4fdf9c5c5fd2474aca012896ca3bcfb3a978eda530497b4f + name: libibverbs + evr: 55.0-1.fc42 + sourcerpm: rdma-core-55.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libicu-76.1-4.fc42.x86_64.rpm + repoid: fedora + size: 11223427 + checksum: sha256:3e6e9b01a6d0ede261dde3a1ddb39f66c053dc9d13703b750e67e2ea9aea4e05 + name: libicu + evr: 76.1-4.fc42 + sourcerpm: icu-76.1-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libimobiledevice-1.3.0^20240916gited9703d-5.fc42.x86_64.rpm + repoid: fedora + size: 143860 + checksum: sha256:2976a6cadd08fb2db050f4310a048e64b46f628e96483c2a98a72b136371c6ed + name: libimobiledevice + evr: 1.3.0^20240916gited9703d-5.fc42 + sourcerpm: libimobiledevice-1.3.0^20240916gited9703d-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libimobiledevice-glue-1.3.1-2.fc42.x86_64.rpm + repoid: fedora + size: 55061 + checksum: sha256:e36b7ad08989f37a809e0b02b8c698920d678567e307d7caa78e7636eccd501c + name: libimobiledevice-glue + evr: 1.3.1-2.fc42 + sourcerpm: libimobiledevice-glue-1.3.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libini_config-1.3.1-58.fc42.x86_64.rpm + repoid: fedora + size: 68591 + checksum: sha256:afa4505d42540f3a7edfa00d74aa1bd7f5dcca172f323a9dd6af74396f0501e5 + name: libini_config + evr: 1.3.1-58.fc42 + sourcerpm: ding-libs-0.6.2-58.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libiptcdata-1.0.5-21.fc42.x86_64.rpm + repoid: fedora + size: 61903 + checksum: sha256:f9cd40331b2b13c3b55041c63616b803b4920e046f0efd174c3b1bfb96c6f26d + name: libiptcdata + evr: 1.0.5-21.fc42 + sourcerpm: libiptcdata-1.0.5-21.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libiscsi-1.20.0-4.fc42.x86_64.rpm + repoid: fedora + size: 92750 + checksum: sha256:fd0ad2f851b0b39816d1dfd479cbe024fe4b0ef7208d4111a721a22a406882d0 + name: libiscsi + evr: 1.20.0-4.fc42 + sourcerpm: libiscsi-1.20.0-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libjose-14-4.fc42.x86_64.rpm + repoid: fedora + size: 66716 + checksum: sha256:b375365888c4d8899a40aeddaf793648a385b12383a147a708bc55d3881b0dc2 + name: libjose + evr: 14-4.fc42 + sourcerpm: jose-14-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libjpeg-turbo-3.1.0-2.fc42.x86_64.rpm + repoid: fedora + size: 241915 + checksum: sha256:ac39fb762ffdd54a44ce22ff24a3f39fb4715fac0ca54b984ca6ab1388dd861d + name: libjpeg-turbo + evr: 3.1.0-2.fc42 + sourcerpm: libjpeg-turbo-3.1.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libjxl-0.11.1-2.fc42.x86_64.rpm + repoid: fedora + size: 1142152 + checksum: sha256:35e1bfb3262ff53fe3b0621e608031df1741e4e2fac18814b27b3b2831122158 + name: libjxl + evr: 1:0.11.1-2.fc42 + sourcerpm: jpegxl-0.11.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libkcapi-1.5.0-5.fc42.x86_64.rpm + repoid: fedora + size: 47684 + checksum: sha256:ee9e88e87e2ef2109b20f0dcabbcc65bc4f4128cb634e511b4b7124fe703e646 + name: libkcapi + evr: 1.5.0-5.fc42 + sourcerpm: libkcapi-1.5.0-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libkcapi-hasher-1.5.0-5.fc42.x86_64.rpm + repoid: fedora + size: 26658 + checksum: sha256:a9258b9aacc821a0c58b2620bb7dad1eb13139040e8bf46b86664eb94c876e75 + name: libkcapi-hasher + evr: 1.5.0-5.fc42 + sourcerpm: libkcapi-1.5.0-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libkcapi-hmaccalc-1.5.0-5.fc42.x86_64.rpm + repoid: fedora + size: 9277 + checksum: sha256:08a7db8d82e36cbff3800214b858f1d65a5156ca81b2901e4def608b548e4f64 + name: libkcapi-hmaccalc + evr: 1.5.0-5.fc42 + sourcerpm: libkcapi-1.5.0-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libksba-1.6.7-3.fc42.x86_64.rpm + repoid: fedora + size: 165924 + checksum: sha256:df693a796b0f05f946f13b9f25edfded4cb8a274e6cca98cd861fd3e66b6a83e + name: libksba + evr: 1.6.7-3.fc42 + sourcerpm: libksba-1.6.7-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/liblc3-1.1.3-1.fc42.x86_64.rpm + repoid: fedora + size: 107681 + checksum: sha256:6876af87e7efc47dc7091a0670a888da15c4a6e911055d2d9dc5b9ca72ac7c63 + name: liblc3 + evr: 1.1.3-1.fc42 + sourcerpm: liblc3-1.1.3-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libldac-2.0.2.3-17.fc42.x86_64.rpm + repoid: fedora + size: 43896 + checksum: sha256:9856a88bf6882ef7b7c4bca0ab677ef0f2dde05e35b0466c5ff7d6e2e831b499 + name: libldac + evr: 2.0.2.3-17.fc42 + sourcerpm: libldac-2.0.2.3-17.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libldm-0.2.4-16.fc41.x86_64.rpm + repoid: fedora + size: 57356 + checksum: sha256:ff28eef4c68736188ca320d708999a6ed24b8f6226a593353f12468976a92920 + name: libldm + evr: 0.2.4-16.fc41 + sourcerpm: libldm-0.2.4-16.fc41.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/liblerc-4.0.0-8.fc42.x86_64.rpm + repoid: fedora + size: 221858 + checksum: sha256:7ff4382cf8b8c0f0676e4182cb8eaf02963b91ef4cf07f08ff98d63faf8c9fc1 + name: liblerc + evr: 4.0.0-8.fc42 + sourcerpm: liblerc-4.0.0-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libluksmeta-9-24.fc42.x86_64.rpm + repoid: fedora + size: 25373 + checksum: sha256:bb71a050ea7385b7e84599a291da33286314b59533d124a51887f943330357cf + name: libluksmeta + evr: 9-24.fc42 + sourcerpm: luksmeta-9-24.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libmaxminddb-1.12.2-3.fc42.x86_64.rpm + repoid: fedora + size: 44174 + checksum: sha256:fe4b820e3e9c27d25be3200c661f9ef1a01147fbbb0910e64ac7cdb363cec4a5 + name: libmaxminddb + evr: 1.12.2-3.fc42 + sourcerpm: libmaxminddb-1.12.2-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libmd-1.1.0-7.fc42.x86_64.rpm + repoid: fedora + size: 48433 + checksum: sha256:6754b207b48306645f473afa7c5f671e4ccce84f51b7e86e108f02be7601dff7 + name: libmd + evr: 1.1.0-7.fc42 + sourcerpm: libmd-1.1.0-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libmnl-1.0.5-7.fc42.x86_64.rpm + repoid: fedora + size: 28687 + checksum: sha256:a6c71fab45b7630cab4288ba3491c8d079f591bf81be07ef85ff0f0830d6a74e + name: libmnl + evr: 1.0.5-7.fc42 + sourcerpm: libmnl-1.0.5-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libmodplug-0.8.9.0-27.fc42.x86_64.rpm + repoid: fedora + size: 182714 + checksum: sha256:b840da7e929451c3ae2ec7ed7365786b237334ce031f12092f90ddd5d0a27dd6 + name: libmodplug + evr: 1:0.8.9.0-27.fc42 + sourcerpm: libmodplug-0.8.9.0-27.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libmpc-1.3.1-7.fc42.x86_64.rpm + repoid: fedora + size: 72605 + checksum: sha256:13f4ae2bebbbe144714f4dc74bcd01dde9e667bff8cd133915f2170a04ad553d + name: libmpc + evr: 1.3.1-7.fc42 + sourcerpm: libmpc-1.3.1-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libnet-1.3-5.fc42.x86_64.rpm + repoid: fedora + size: 61427 + checksum: sha256:3cf7cb69c3ad8d74316dffd302681ac6a6e29abf5e5916c467ebccbd2ea6b931 + name: libnet + evr: 1.3-5.fc42 + sourcerpm: libnet-1.3-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libnetfilter_conntrack-1.0.9-8.fc42.x86_64.rpm + repoid: fedora + size: 61367 + checksum: sha256:b46081f43adae0f421c03f8ca51a73b45b3bbe4559799c127d66fa13b5e319b6 + name: libnetfilter_conntrack + evr: 1.0.9-8.fc42 + sourcerpm: libnetfilter_conntrack-1.0.9-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libnfnetlink-1.0.1-30.fc42.x86_64.rpm + repoid: fedora + size: 30154 + checksum: sha256:57cda8d046d646ae7515aa0b5c2355e51507d8d21b5a222f480c92d0dc71e028 + name: libnfnetlink + evr: 1.0.1-30.fc42 + sourcerpm: libnfnetlink-1.0.1-30.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libnftnl-1.2.8-4.fc42.x86_64.rpm + repoid: fedora + size: 87213 + checksum: sha256:bae9a6ab4ff352266d626584523d02c96bf46fd544f4ee02399a2a5ea77d7049 + name: libnftnl + evr: 1.2.8-4.fc42 + sourcerpm: libnftnl-1.2.8-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libnl3-3.11.0-3.fc42.x86_64.rpm + repoid: fedora + size: 365800 + checksum: sha256:ce46d0bd3eb5b167c92cc633755e92510ae42f458f1b846503b17e1e82f4449f + name: libnl3 + evr: 3.11.0-3.fc42 + sourcerpm: libnl3-3.11.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libogg-1.3.5-11.fc42.x86_64.rpm + repoid: fedora + size: 33941 + checksum: sha256:101da3aa31e76d81e25b5d5a89c866e8171025f9af48269216eb95b830b81e58 + name: libogg + evr: 2:1.3.5-11.fc42 + sourcerpm: libogg-1.3.5-11.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libopenmpt-0.7.13-3.fc42.x86_64.rpm + repoid: fedora + size: 735656 + checksum: sha256:1d65b1a378cf8f7b80ad370ddf4f91e61f7b6d806eaef77e1864ab33304ebcd0 + name: libopenmpt + evr: 0.7.13-3.fc42 + sourcerpm: libopenmpt-0.7.13-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libosinfo-1.12.0-2.fc42.x86_64.rpm + repoid: fedora + size: 324765 + checksum: sha256:4c1bf44dd6f261aa210a511ca6e37b4054cc9b14a397feea52f7cb7624b3b3b6 + name: libosinfo + evr: 1.12.0-2.fc42 + sourcerpm: libosinfo-1.12.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libpaper-2.1.1-8.fc42.x86_64.rpm + repoid: fedora + size: 27503 + checksum: sha256:b86fc52e7915ae529532056ff1f83646a057c3118337dc332e941be2ed5fc006 + name: libpaper + evr: 1:2.1.1-8.fc42 + sourcerpm: libpaper-2.1.1-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libpath_utils-0.2.1-58.fc42.x86_64.rpm + repoid: fedora + size: 29379 + checksum: sha256:c66f13b93bea3c25988f9591b4f710d9e9e42494843d7ca4856050878cc440d7 + name: libpath_utils + evr: 0.2.1-58.fc42 + sourcerpm: ding-libs-0.6.2-58.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libpciaccess-0.16-15.fc42.x86_64.rpm + repoid: fedora + size: 26915 + checksum: sha256:b665807427e022400aa5d9d608068392230f0ed13a3b577cad6a54b1ba5d0541 + name: libpciaccess + evr: 0.16-15.fc42 + sourcerpm: libpciaccess-0.16-15.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libpipeline-1.5.8-2.fc42.x86_64.rpm + repoid: fedora + size: 61464 + checksum: sha256:138485e5b5b4d80b42c4fe3d818b1319ba016301cd92966372a97d47afb94001 + name: libpipeline + evr: 1.5.8-2.fc42 + sourcerpm: libpipeline-1.5.8-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libpkgconf-2.3.0-2.fc42.x86_64.rpm + repoid: fedora + size: 39289 + checksum: sha256:6d61109d807a6f2f12f85b3d7e2732e11676316bc769abe6e3d4aa96a166353e + name: libpkgconf + evr: 2.3.0-2.fc42 + sourcerpm: pkgconf-2.3.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libplist-2.6.0-2.fc42.x86_64.rpm + repoid: fedora + size: 99756 + checksum: sha256:762985e6167fd71fafce3279d2125fe564de23d8ca338f324eb04498685ed1d9 + name: libplist + evr: 2.6.0-2.fc42 + sourcerpm: libplist-2.6.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libpmem-2.1.0-3.fc42.x86_64.rpm + repoid: fedora + size: 108686 + checksum: sha256:f2d18cdbbf881a047b34ea6f97bc4c7fe47fb2cfd5c0b041392bef38edbe9d19 + name: libpmem + evr: 2.1.0-3.fc42 + sourcerpm: nvml-2.1.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libpng-1.6.44-2.fc42.x86_64.rpm + repoid: fedora + size: 126863 + checksum: sha256:14838086e8c1b3f1fdc3d3419432e11db97414e1743b6890b1e56cfdce2bc629 + name: libpng + evr: 2:1.6.44-2.fc42 + sourcerpm: libpng-1.6.44-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libpq-16.4-2.fc42.x86_64.rpm + repoid: fedora + size: 257017 + checksum: sha256:221afcf35237386a6616ae00d74a60eeacef1c9112cc1d6e60a2d917dfec971e + name: libpq + evr: 16.4-2.fc42 + sourcerpm: libpq-16.4-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libproxy-0.5.8-2.fc42.x86_64.rpm + repoid: fedora + size: 46554 + checksum: sha256:20c6f72018309b4e4d62df2486feb75c65ca0c59a7b1d6a7086d79ceeb9ec24b + name: libproxy + evr: 0.5.8-2.fc42 + sourcerpm: libproxy-0.5.8-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/librabbitmq-0.15.0-2.fc42.x86_64.rpm + repoid: fedora + size: 44980 + checksum: sha256:d4c560801394747991a79b068ec06fd1c676ace7c68bb198ef6f921c388c9f55 + name: librabbitmq + evr: 0.15.0-2.fc42 + sourcerpm: librabbitmq-0.15.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/librdmacm-55.0-1.fc42.x86_64.rpm + repoid: fedora + size: 73405 + checksum: sha256:17aa7b23271b4d3f21c121cbfa426009b3820965eafae3634186ee989014d541 + name: librdmacm + evr: 55.0-1.fc42 + sourcerpm: rdma-core-55.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libref_array-0.1.5-58.fc42.x86_64.rpm + repoid: fedora + size: 27994 + checksum: sha256:5e8aad2cd5be287ec41572b5fa5d286e55b2e195f37cbf0a3d983143a4b98b11 + name: libref_array + evr: 0.1.5-58.fc42 + sourcerpm: ding-libs-0.6.2-58.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libreport-filesystem-2.17.15-5.fc42.noarch.rpm + repoid: fedora + size: 11765 + checksum: sha256:b626466b7a896a6f909a07e8eb226c8205bd20db0d1bb25897efb7b771a1005d + name: libreport-filesystem + evr: 2.17.15-5.fc42 + sourcerpm: libreport-2.17.15-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/librist-0.2.7-9.fc42.x86_64.rpm + repoid: fedora + size: 78515 + checksum: sha256:8ab0def002a25339f68d1b81bfdf6850ab0586104109beadedf83ef65dad6947 + name: librist + evr: 0.2.7-9.fc42 + sourcerpm: librist-0.2.7-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/librsvg2-2.60.0-1.fc42.x86_64.rpm + repoid: fedora + size: 1964105 + checksum: sha256:209603384932b68ee426bdee3dfcef8eb6a085d929d1d634c4dd1d80d3051c0f + name: librsvg2 + evr: 2.60.0-1.fc42 + sourcerpm: librsvg2-2.60.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libsbc-2.0-6.fc42.x86_64.rpm + repoid: fedora + size: 50443 + checksum: sha256:81fd37e91af978e7ced6f0b683c0ea9f25a3ca80c8a20c4e45f704f52fa828cc + name: libsbc + evr: 2.0-6.fc42 + sourcerpm: sbc-2.0-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libseccomp-2.5.5-2.fc41.x86_64.rpm + repoid: fedora + size: 71862 + checksum: sha256:4b402b1a86bb55c946296c47ee4fe88551faeec146115dfb0fc9a58f3c818056 + name: libseccomp + evr: 2.5.5-2.fc41 + sourcerpm: libseccomp-2.5.5-2.fc41.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libsecret-0.21.7-1.fc42.x86_64.rpm + repoid: fedora + size: 199228 + checksum: sha256:ea427bac89f3533a36af1edaa5a9f9c7400953c472d0653bc5a26a766d9a05f0 + name: libsecret + evr: 0.21.7-1.fc42 + sourcerpm: libsecret-0.21.7-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libserf-1.3.10-9.fc42.x86_64.rpm + repoid: fedora + size: 61996 + checksum: sha256:5f52012a5aab63c795d920836c362647c58fa3ff72070793a5a4b7e066a4fc45 + name: libserf + evr: 1.3.10-9.fc42 + sourcerpm: libserf-1.3.10-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libslirp-4.8.0-3.fc42.x86_64.rpm + repoid: fedora + size: 79755 + checksum: sha256:90f6cabc6b27bbcd6193c32d1df9bd8d78a7a25fd57e724c98787b7fd9f1c3c7 + name: libslirp + evr: 4.8.0-3.fc42 + sourcerpm: libslirp-4.8.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libsndfile-1.2.2-8.fc42.x86_64.rpm + repoid: fedora + size: 226769 + checksum: sha256:f113dfb22116ba2776cf2a5c216bdad0551665b06c7a5f19e11300fde525fce9 + name: libsndfile + evr: 1.2.2-8.fc42 + sourcerpm: libsndfile-1.2.2-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libsodium-1.0.20-4.fc42.x86_64.rpm + repoid: fedora + size: 179816 + checksum: sha256:e9448c42dc9b5855e9875596755be9b69d11eadbf5d49e08b286694783dc6fe8 + name: libsodium + evr: 1.0.20-4.fc42 + sourcerpm: libsodium-1.0.20-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libsoup3-3.6.5-1.fc42.x86_64.rpm + repoid: fedora + size: 399015 + checksum: sha256:99e8fc8788527fb6ff31b5fba83fe19f1ad20f22440a94398ff4e39a7a1060f6 + name: libsoup3 + evr: 3.6.5-1.fc42 + sourcerpm: libsoup3-3.6.5-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libss-1.47.2-3.fc42.x86_64.rpm + repoid: fedora + size: 32979 + checksum: sha256:2d7a659161e0b4c3b41763bd58ee024e3ee0fc7125fb1c9ff7248c9b74f3bf88 + name: libss + evr: 1.47.2-3.fc42 + sourcerpm: e2fsprogs-1.47.2-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libssh2-1.11.1-3.fc42.x86_64.rpm + repoid: fedora + size: 150746 + checksum: sha256:aedddc0e04cce31a3b80d65aefda9c320123b3a21511ab9c5dd77fcf8e6aef64 + name: libssh2 + evr: 1.11.1-3.fc42 + sourcerpm: libssh2-1.11.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libswresample-free-7.1.1-3.fc42.x86_64.rpm + repoid: fedora + size: 69514 + checksum: sha256:52ff21ce16ec4f9f8daf255487d7652ff115207212e561806419a408679a74dd + name: libswresample-free + evr: 7.1.1-3.fc42 + sourcerpm: ffmpeg-7.1.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libtalloc-2.4.3-2.fc42.x86_64.rpm + repoid: fedora + size: 35742 + checksum: sha256:c2d33d1808a5b0331bc135c32b99314e6b7ec1cd8b56f1719ea1cb2a8a6d6fd1 + name: libtalloc + evr: 2.4.3-2.fc42 + sourcerpm: libtalloc-2.4.3-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libtdb-1.4.13-2.fc42.x86_64.rpm + repoid: fedora + size: 56153 + checksum: sha256:faf275bbf83e9c69cd224fa1c37345ec7964b5f6d453a9e604db8e57cac47fb5 + name: libtdb + evr: 1.4.13-2.fc42 + sourcerpm: libtdb-1.4.13-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libtevent-0.16.2-2.fc42.x86_64.rpm + repoid: fedora + size: 52598 + checksum: sha256:2c9421e53e385e2256a4942227be1a135e6d3e7fc0ba113654876a87d4194280 + name: libtevent + evr: 0.16.2-2.fc42 + sourcerpm: libtevent-0.16.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libtextstyle-0.23.1-2.fc42.x86_64.rpm + repoid: fedora + size: 94358 + checksum: sha256:9dbaf648a8a238a7079afaa44caaf4f4d2526ed1e5122c9604f54ea546bd2827 + name: libtextstyle + evr: 0.23.1-2.fc42 + sourcerpm: gettext-0.23.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libthai-0.1.29-10.fc42.x86_64.rpm + repoid: fedora + size: 216620 + checksum: sha256:fa642db45a560c9ec8607f4634eb32d5cbaf9f6347ff03ed291422c4dbae7691 + name: libthai + evr: 0.1.29-10.fc42 + sourcerpm: libthai-0.1.29-10.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libtheora-1.1.1-39.fc42.x86_64.rpm + repoid: fedora + size: 174537 + checksum: sha256:f7f2a07b54d660cd7851d9dcbf1f11834e3323f4d9169c96e0dd2829417bf0f4 + name: libtheora + evr: 1:1.1.1-39.fc42 + sourcerpm: libtheora-1.1.1-39.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libtiff-4.7.0-3.fc42.x86_64.rpm + repoid: fedora + size: 225732 + checksum: sha256:6cb2f34536f8a93d6a69cbb888ef8af5afe7fd6d9ffcea1730d1e45886fc043e + name: libtiff + evr: 4.7.0-3.fc42 + sourcerpm: libtiff-4.7.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libudfread-1.1.2-11.fc42.x86_64.rpm + repoid: fedora + size: 36342 + checksum: sha256:214fb0bfd43695ab9a296d5a932ee1ec27cb123d117e96506f825fa1848434f8 + name: libudfread + evr: 1.1.2-11.fc42 + sourcerpm: libudfread-1.1.2-11.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libunwind-1.8.1-2.fc42.x86_64.rpm + repoid: fedora + size: 79026 + checksum: sha256:2a84ccd9a37fd49b935ecba9e3d61a6de14d3620cc856d938ace6af335b2148f + name: libunwind + evr: 1.8.1-2.fc42 + sourcerpm: libunwind-1.8.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/liburing-2.9-1.fc42.x86_64.rpm + repoid: fedora + size: 44024 + checksum: sha256:7763f2e9c3b9eb7d6ce97dc67d0d3c7c325ff078a11a5cc4b8bffac9428f9d5f + name: liburing + evr: 2.9-1.fc42 + sourcerpm: liburing-2.9-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libusal-1.1.11-59.fc42.x86_64.rpm + repoid: fedora + size: 138002 + checksum: sha256:6eaecaab19660c8b01e7a301fdda0631034b4dbd12423df26f9852b09d89289b + name: libusal + evr: 1.1.11-59.fc42 + sourcerpm: cdrkit-1.1.11-59.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libusb1-1.0.28-2.fc42.x86_64.rpm + repoid: fedora + size: 80943 + checksum: sha256:e01205fc3ae182f5e48caa81a5d6bebb41659bb9d48181cb4b1da78557865606 + name: libusb1 + evr: 1.0.28-2.fc42 + sourcerpm: libusb1-1.0.28-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libusbmuxd-2.1.0-3.fc42.x86_64.rpm + repoid: fedora + size: 38406 + checksum: sha256:f23e654075cb2cfebfda7350833172ac57991b499f359a31b1bfb799e7dbd913 + name: libusbmuxd + evr: 2.1.0-3.fc42 + sourcerpm: libusbmuxd-2.1.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libutempter-1.2.1-17.fc42.x86_64.rpm + repoid: fedora + size: 27042 + checksum: sha256:5bb24da0788b658086369ae981e1e07263d73f647598c57d65e9e2e6e13e799e + name: libutempter + evr: 1.2.1-17.fc42 + sourcerpm: libutempter-1.2.1-17.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libva-2.22.0-4.fc42.x86_64.rpm + repoid: fedora + size: 119702 + checksum: sha256:bef9c6b1e0a290bef071f7dbb58a2a8ad55c2e0120c6af7caef3db76644a1ee2 + name: libva + evr: 2.22.0-4.fc42 + sourcerpm: libva-2.22.0-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libvdpau-1.5-9.fc42.x86_64.rpm + repoid: fedora + size: 17027 + checksum: sha256:214afe347f7aa54f9a24eac14f436c7aa6d2ee12843e52e2b20af6c6c8b44f20 + name: libvdpau + evr: 1.5-9.fc42 + sourcerpm: libvdpau-1.5-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libverto-libev-0.3.2-10.fc42.x86_64.rpm + repoid: fedora + size: 13172 + checksum: sha256:992c6a51190650c024ad31639fc107169933a10715ca9e37c1e59e6eecfd7c50 + name: libverto-libev + evr: 0.3.2-10.fc42 + sourcerpm: libverto-0.3.2-10.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libvisual-0.4.1-5.fc41.x86_64.rpm + repoid: fedora + size: 154883 + checksum: sha256:e8348629802c4568d032300c632025c4cf6a9cd53e60f768133fbd80f20e7381 + name: libvisual + evr: 1:0.4.1-5.fc41 + sourcerpm: libvisual-0.4.1-5.fc41.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libvmaf-3.0.0-3.fc42.x86_64.rpm + repoid: fedora + size: 202435 + checksum: sha256:ca5b6d85a61f20b225d9111241e940ee73314a8ee7ed10d1e3238267f6c1d441 + name: libvmaf + evr: 3.0.0-3.fc42 + sourcerpm: vmaf-3.0.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libvorbis-1.3.7-12.fc42.x86_64.rpm + repoid: fedora + size: 193774 + checksum: sha256:b38748e2cf2f3116a0e2a2745d85196a3a4b01743f5ecb0c427c2c2273893648 + name: libvorbis + evr: 1:1.3.7-12.fc42 + sourcerpm: libvorbis-1.3.7-12.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libwebp-1.5.0-2.fc42.x86_64.rpm + repoid: fedora + size: 328315 + checksum: sha256:39cbb6fe209eace8fe93a7431295eb058f96cf23b07faa84e7dfc7c23624ed95 + name: libwebp + evr: 1.5.0-2.fc42 + sourcerpm: libwebp-1.5.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libwsman1-2.7.2-12.fc42.x86_64.rpm + repoid: fedora + size: 132334 + checksum: sha256:d919a58eaba11f8af058effc9efc7c0aa8c88496bcfce5b06d008a6b9661c242 + name: libwsman1 + evr: 2.7.2-12.fc42 + sourcerpm: openwsman-2.7.2-12.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libxcb-1.17.0-5.fc42.x86_64.rpm + repoid: fedora + size: 244725 + checksum: sha256:fd206cf86192e3559ba8cb27e5095a2f8974a4739b485901290b6564bf2caf1f + name: libxcb + evr: 1.17.0-5.fc42 + sourcerpm: libxcb-1.17.0-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libxkbcommon-1.8.1-1.fc42.x86_64.rpm + repoid: fedora + size: 158114 + checksum: sha256:a7fe439477634aca51b9e9cbdb154911b18d4fbeff93786f1031f644ca0a7b28 + name: libxkbcommon + evr: 1.8.1-1.fc42 + sourcerpm: libxkbcommon-1.8.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libxshmfence-1.3.2-6.fc42.x86_64.rpm + repoid: fedora + size: 13599 + checksum: sha256:01341362738ce34ee97be73a7332e08e452b97bf0e7ef086a76c6ea51f112ee6 + name: libxshmfence + evr: 1.3.2-6.fc42 + sourcerpm: libxshmfence-1.3.2-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libxslt-1.1.43-1.fc42.x86_64.rpm + repoid: fedora + size: 185890 + checksum: sha256:4424ec9662c34d28cb8226223eaecbdf076ff7598abe46a6f8ae6cc4c0dd56e6 + name: libxslt + evr: 1.1.43-1.fc42 + sourcerpm: libxslt-1.1.43-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/libyuv-0-0.56.20240704git96bbdb5.fc42.x86_64.rpm + repoid: fedora + size: 206740 + checksum: sha256:914aeb6727555545042f78cda64a51eacf17c1eae73ac6f7a4dbbf005084dc7f + name: libyuv + evr: 0-0.56.20240704git96bbdb5.fc42 + sourcerpm: libyuv-0-0.56.20240704git96bbdb5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/llhttp-9.2.1-5.fc42.x86_64.rpm + repoid: fedora + size: 33513 + checksum: sha256:b2139c3c00186ffa97b95b17fd42cd821a5a5d174273ccaedb58a7faf15d0387 + name: llhttp + evr: 9.2.1-5.fc42 + sourcerpm: llhttp-9.2.1-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/lm_sensors-libs-3.6.0-22.fc42.x86_64.rpm + repoid: fedora + size: 41416 + checksum: sha256:87ff1fc3f566bb53f3ae41ddd3f4d2668faeb6312e7440ddf0ab021b7511f116 + name: lm_sensors-libs + evr: 3.6.0-22.fc42 + sourcerpm: lm_sensors-3.6.0-22.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/lmdb-libs-0.9.33-3.fc42.x86_64.rpm + repoid: fedora + size: 63929 + checksum: sha256:1764ba79bf0db44de5649cd53d86d14233e4eac50db48c09486db86234dd379a + name: lmdb-libs + evr: 0.9.33-3.fc42 + sourcerpm: lmdb-0.9.33-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/localsearch-3.9.0-1.fc42.x86_64.rpm + repoid: fedora + size: 954827 + checksum: sha256:7580bd4026db724881c4f90dd558fe6ba611815fa5ef74751ab4a7d952909954 + name: localsearch + evr: 3.9.0-1.fc42 + sourcerpm: localsearch-3.9.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/logrotate-3.22.0-3.fc42.x86_64.rpm + repoid: fedora + size: 77911 + checksum: sha256:ccc20c354ed258b435265a22d1bc8d2583586429ccc3a1588a91c27dc4596d54 + name: logrotate + evr: 3.22.0-3.fc42 + sourcerpm: logrotate-3.22.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/low-memory-monitor-2.1-12.fc42.x86_64.rpm + repoid: fedora + size: 35168 + checksum: sha256:2b86f2082d959f9eaa9f216856d4c8ac0ee2611b74b12d5851c7f556a7c3f0b4 + name: low-memory-monitor + evr: 2.1-12.fc42 + sourcerpm: low-memory-monitor-2.1-12.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/lpcnetfreedv-0.5-8.fc42.x86_64.rpm + repoid: fedora + size: 7690858 + checksum: sha256:3f35d911adac0af757ec6d20fce6f1fccf828751fc671a3c1ce4abadb8c888a5 + name: lpcnetfreedv + evr: 0.5-8.fc42 + sourcerpm: lpcnetfreedv-0.5-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/lsscsi-0.32-13.fc42.x86_64.rpm + repoid: fedora + size: 67167 + checksum: sha256:b2449757b57e30788d443c74c887cb32b8d6572af61f1f87934e6165fb5fe463 + name: lsscsi + evr: 0.32-13.fc42 + sourcerpm: lsscsi-0.32-13.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/lttng-ust-2.13.8-4.fc42.x86_64.rpm + repoid: fedora + size: 339384 + checksum: sha256:2e5ab80b1244ce037c4e3ab256032d5889e1cf72f2b01d467689aeacf7c66b7a + name: lttng-ust + evr: 2.13.8-4.fc42 + sourcerpm: lttng-ust-2.13.8-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/lua-srpm-macros-1-15.fc42.noarch.rpm + repoid: fedora + size: 9131 + checksum: sha256:2f127b166bfa4bc9935a7bf50073b5fe67c3eceeca4ffac7c479973576518e88 + name: lua-srpm-macros + evr: 1-15.fc42 + sourcerpm: lua-rpm-macros-1-15.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/luksmeta-9-24.fc42.x86_64.rpm + repoid: fedora + size: 21085 + checksum: sha256:0149e1858031d565dd8c0c4b7b37f07b0ee225999c3a74214ba35925564a346c + name: luksmeta + evr: 9-24.fc42 + sourcerpm: luksmeta-9-24.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/lvm2-2.03.30-3.fc42.x86_64.rpm + repoid: fedora + size: 1597704 + checksum: sha256:862e6be72fd4e3e95cd8bf1f7e3f8a91712a53a5aa1992b5947faf36ea50233b + name: lvm2 + evr: 2.03.30-3.fc42 + sourcerpm: lvm2-2.03.30-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/lvm2-libs-2.03.30-3.fc42.x86_64.rpm + repoid: fedora + size: 1040646 + checksum: sha256:f85fd95a681f8e2d49d0150a95ddbe27f62c63a8d3650b608cdb17dec051e76d + name: lvm2-libs + evr: 2.03.30-3.fc42 + sourcerpm: lvm2-2.03.30-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/lzo-2.10-14.fc42.x86_64.rpm + repoid: fedora + size: 70673 + checksum: sha256:38cbdd995a176492b96f230dc4b8634bf2319bf56f91fa6b3824d284cc5bd284 + name: lzo + evr: 2.10-14.fc42 + sourcerpm: lzo-2.10-14.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/l/lzop-1.04-16.fc42.x86_64.rpm + repoid: fedora + size: 56929 + checksum: sha256:c2c1150fb656c555ca7245336ee1ce0165f747a8eb1a2a376b76616f88e4a567 + name: lzop + evr: 1.04-16.fc42 + sourcerpm: lzop-1.04-16.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/m/ModemManager-glib-1.22.0-5.fc42.x86_64.rpm + repoid: fedora + size: 311946 + checksum: sha256:b232c7777a67862e314ce103364599235cfd8372d9d6fbbef258a8ee809528a1 + name: ModemManager-glib + evr: 1.22.0-5.fc42 + sourcerpm: ModemManager-1.22.0-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/m/make-4.4.1-10.fc42.x86_64.rpm + repoid: fedora + size: 601074 + checksum: sha256:3c21a67124a9b07fedad49013ce7934c0ff6ffe44c7ee8513973533e8ee91da1 + name: make + evr: 1:4.4.1-10.fc42 + sourcerpm: make-4.4.1-10.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/m/man-db-2.13.0-2.fc42.x86_64.rpm + repoid: fedora + size: 1376539 + checksum: sha256:ea3dab2581af1096bc893c63045cd3cf42fd178425ec84762a3368697857e6e0 + name: man-db + evr: 2.13.0-2.fc42 + sourcerpm: man-db-2.13.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/m/mbedtls-3.6.3-1.fc42.x86_64.rpm + repoid: fedora + size: 514699 + checksum: sha256:8719e1335823047a44dc89673c2ef03d78bcccdf85d5de7f80f3abca0aaf837f + name: mbedtls + evr: 3.6.3-1.fc42 + sourcerpm: mbedtls-3.6.3-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/m/mdadm-4.3-7.fc42.x86_64.rpm + repoid: fedora + size: 459764 + checksum: sha256:dcb3de88511c8e00d498ec00b98d56ee1b3a6d03de8ea017d9ed26d10b1b6fe0 + name: mdadm + evr: 4.3-7.fc42 + sourcerpm: mdadm-4.3-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/m/memstrack-0.2.5-6.fc42.x86_64.rpm + repoid: fedora + size: 50428 + checksum: sha256:27e63433532c28efe8806abf398947fbfae638ae0204fc5990552a55ca31c814 + name: memstrack + evr: 0.2.5-6.fc42 + sourcerpm: memstrack-0.2.5-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/m/mokutil-0.7.1-5.fc42.x86_64.rpm + repoid: fedora + size: 49066 + checksum: sha256:ead97acf89b28b7f0973ac4df52ebe38790822075c0944778db30cd07cda0da2 + name: mokutil + evr: 2:0.7.1-5.fc42 + sourcerpm: mokutil-0.7.1-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/n/ncurses-6.5-5.20250125.fc42.x86_64.rpm + repoid: fedora + size: 434648 + checksum: sha256:9eb4316d2c98d2a191b099c04607db5626bd2a7985a9940db7c54384597c262d + name: ncurses + evr: 6.5-5.20250125.fc42 + sourcerpm: ncurses-6.5-5.20250125.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/n/nftables-1.1.1-3.fc42.x86_64.rpm + repoid: fedora + size: 440685 + checksum: sha256:f22c7b1bac7bf9d6d3bff0790c725990a987ee1a47d0896d09ddc59890f55a09 + name: nftables + evr: 1:1.1.1-3.fc42 + sourcerpm: nftables-1.1.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/n/noopenh264-2.5.0-2.fc42.x86_64.rpm + repoid: fedora + size: 22437 + checksum: sha256:423165cf5cd321b03588f81ccfaf4e071008305c35da491ff465a3704fa8b521 + name: noopenh264 + evr: 2.5.0-2.fc42 + sourcerpm: noopenh264-2.5.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/n/npth-1.8-2.fc42.x86_64.rpm + repoid: fedora + size: 26465 + checksum: sha256:903bcf6aad8ae9bbf1e1f0e1b18b5877f45e3a467fdb184b6263403d4f5dc1bd + name: npth + evr: 1.8-2.fc42 + sourcerpm: npth-1.8-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/n/ntfs-3g-system-compression-1.0-18.fc42.x86_64.rpm + repoid: fedora + size: 30088 + checksum: sha256:1b69e1bc7ef104d734671614eb126ef45179943b6b751a4c57d3d7135d78bef2 + name: ntfs-3g-system-compression + evr: 1.0-18.fc42 + sourcerpm: ntfs-3g-system-compression-1.0-18.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/n/numactl-libs-2.0.19-2.fc42.x86_64.rpm + repoid: fedora + size: 32026 + checksum: sha256:c84d4f95b3cc122eb754a8c9e679f1a5eea8e60a540b7319eac0d6aea3c3d748 + name: numactl-libs + evr: 2.0.19-2.fc42 + sourcerpm: numactl-2.0.19-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/n/numad-0.5-46.20150602git.fc42.x86_64.rpm + repoid: fedora + size: 38572 + checksum: sha256:d27cb6b3e513e405a458354dd6b27280559e4f1f9c4dd10cc19df183c43cf415 + name: numad + evr: 0.5-46.20150602git.fc42 + sourcerpm: numad-0.5-46.20150602git.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/OpenCL-ICD-Loader-3.0.6-2.20241023git5907ac1.fc42.x86_64.rpm + repoid: fedora + size: 28886 + checksum: sha256:d35fbfbc87637056263bfd220efa1dadca0bd694ad0c1cf7acf00a2755a89749 + name: OpenCL-ICD-Loader + evr: 3.0.6-2.20241023git5907ac1.fc42 + sourcerpm: OpenCL-ICD-Loader-3.0.6-2.20241023git5907ac1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/ocaml-srpm-macros-10-4.fc42.noarch.rpm + repoid: fedora + size: 9426 + checksum: sha256:7686bf0e2057477c355d1749a81556c832b32b4f486b8b8dab4ee705d9126820 + name: ocaml-srpm-macros + evr: 10-4.fc42 + sourcerpm: ocaml-srpm-macros-10-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/oniguruma-6.9.10-2.fc42.x86_64.rpm + repoid: fedora + size: 222600 + checksum: sha256:683262748654957b73965e495c4518b813d925efb02effba6cc1bdbbaffb07b7 + name: oniguruma + evr: 6.9.10-2.fc42 + sourcerpm: oniguruma-6.9.10-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/openbios-20230126-5.gitaf97fd7.fc42.noarch.rpm + repoid: fedora + size: 310662 + checksum: sha256:dd4d29bb3d5b7e42299790fe9d78fabb439645a16631be768e3081cbeaaecf78 + name: openbios + evr: 1:20230126-5.gitaf97fd7.fc42 + sourcerpm: openbios-20230126-5.gitaf97fd7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/openblas-srpm-macros-2-19.fc42.noarch.rpm + repoid: fedora + size: 7952 + checksum: sha256:b49cd11c6efc508cdc1ae75d0500cdff7eaffadd96028918a4ca6375d2f04516 + name: openblas-srpm-macros + evr: 2-19.fc42 + sourcerpm: openblas-srpm-macros-2-19.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/opencore-amr-0.1.6-8.fc42.x86_64.rpm + repoid: fedora + size: 186230 + checksum: sha256:3c2728286b7e3c2b03eb723782ec33536317608a809d903d4513a55b8dfec4f7 + name: opencore-amr + evr: 0.1.6-8.fc42 + sourcerpm: opencore-amr-0.1.6-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/openjpeg-2.5.3-6.fc42.x86_64.rpm + repoid: fedora + size: 197451 + checksum: sha256:fd1ce6fe995f3c46a40dc17112f50ae100d34f5531ae02016d887ea6365edc6d + name: openjpeg + evr: 2.5.3-6.fc42 + sourcerpm: openjpeg-2.5.3-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/openpgm-5.3.128-4.fc42.x86_64.rpm + repoid: fedora + size: 187480 + checksum: sha256:c609c1ff819642574052c13544bef3d80d9e40e2a173ec42e343b78a555bce4f + name: openpgm + evr: 5.3.128-4.fc42 + sourcerpm: openpgm-5.3.128-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/openssl-3.2.4-3.fc42.x86_64.rpm + repoid: fedora + size: 1177466 + checksum: sha256:edc99abfbfa4d292426d6dea02fb04934cae7d15a295a2429cfb8925463bc9ed + name: openssl + evr: 1:3.2.4-3.fc42 + sourcerpm: openssl-3.2.4-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/opus-1.5.2-2.fc42.x86_64.rpm + repoid: fedora + size: 242627 + checksum: sha256:a31aaa456ebd3dd8bdf55d2e6e39935c9f7f793e093f3201d7aa2ad65074a415 + name: opus + evr: 1.5.2-2.fc42 + sourcerpm: opus-1.5.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/orc-0.4.41-1.fc42.x86_64.rpm + repoid: fedora + size: 225765 + checksum: sha256:0cf5d53184deb662f7db7af851538a1fdbfeb70bc5422fd64bd3d66782c2337f + name: orc + evr: 0.4.41-1.fc42 + sourcerpm: orc-0.4.41-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/os-prober-1.81-9.fc42.x86_64.rpm + repoid: fedora + size: 51551 + checksum: sha256:05ab5fe55eee0205dda858ecf6d3c478c7fbde964e3a92df436def3ff64dfb4e + name: os-prober + evr: 1.81-9.fc42 + sourcerpm: os-prober-1.81-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/osinfo-db-20250124-1.fc42.noarch.rpm + repoid: fedora + size: 487523 + checksum: sha256:b4c0a3ff77b87fd0c16d98e52b58a2b4dc7c4e7c2f4b871ebe584418461e65be + name: osinfo-db + evr: 20250124-1.fc42 + sourcerpm: osinfo-db-20250124-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/osinfo-db-tools-1.12.0-2.fc42.x86_64.rpm + repoid: fedora + size: 74931 + checksum: sha256:6cc728d9314b17ab25f6e05e637a43bceca6a4825b0562ed726582da13abc986 + name: osinfo-db-tools + evr: 1.12.0-2.fc42 + sourcerpm: osinfo-db-tools-1.12.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/ostree-2025.2-2.fc42.x86_64.rpm + repoid: fedora + size: 288156 + checksum: sha256:b008083288cf42eb10f070c600bd35f47f2f2fdd0fa5f1ed720059e6a4eea88b + name: ostree + evr: 2025.2-2.fc42 + sourcerpm: ostree-2025.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/o/ostree-libs-2025.2-2.fc42.x86_64.rpm + repoid: fedora + size: 487005 + checksum: sha256:703cef5aa184f1f94542334235e566bc070635e4ebb10254cc5366cdb9d03c26 + name: ostree-libs + evr: 2025.2-2.fc42 + sourcerpm: ostree-2025.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/package-notes-srpm-macros-0.5-13.fc42.noarch.rpm + repoid: fedora + size: 9482 + checksum: sha256:53f91fae5ba618b9fec18ec1887426307a00612dc345b36911c2fba2d9146248 + name: package-notes-srpm-macros + evr: 0.5-13.fc42 + sourcerpm: package-notes-0.5-13.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/pango-1.56.3-1.fc42.x86_64.rpm + repoid: fedora + size: 356645 + checksum: sha256:26de3019456241cfc04405a219c93745af3905f74191d98886b4934a46887627 + name: pango + evr: 1.56.3-1.fc42 + sourcerpm: pango-1.56.3-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/paper-2.1.1-8.fc42.x86_64.rpm + repoid: fedora + size: 30850 + checksum: sha256:cc249c9e32ed4abdf6903893a9d00fd8e2173fb8f584f95020ad3fc44911bd29 + name: paper + evr: 1:2.1.1-8.fc42 + sourcerpm: libpaper-2.1.1-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/parted-3.6-11.fc42.x86_64.rpm + repoid: fedora + size: 608234 + checksum: sha256:8f704e23327459ef110f036c9232aed8bc1f0e4a91a43cccca706993b8fd5e62 + name: parted + evr: 3.6-11.fc42 + sourcerpm: parted-3.6-11.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/pciutils-3.13.0-7.fc42.x86_64.rpm + repoid: fedora + size: 104893 + checksum: sha256:3444c1761bbb4018c978dee4f832432b9791c5fe515219f56b12444c4e8533d6 + name: pciutils + evr: 3.13.0-7.fc42 + sourcerpm: pciutils-3.13.0-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/pciutils-libs-3.13.0-7.fc42.x86_64.rpm + repoid: fedora + size: 53750 + checksum: sha256:8e250f9e531a86b789d00267474afdc06932ff2fa330c3cd00ebe8e3a0719464 + name: pciutils-libs + evr: 3.13.0-7.fc42 + sourcerpm: pciutils-3.13.0-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/pcsc-lite-2.3.1-2.fc42.x86_64.rpm + repoid: fedora + size: 99420 + checksum: sha256:1217d23188c9021557f5c9817820f7da72c7862e3b7f31d544829a42c4135e76 + name: pcsc-lite + evr: 2.3.1-2.fc42 + sourcerpm: pcsc-lite-2.3.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/pcsc-lite-ccid-1.6.1-3.fc42.x86_64.rpm + repoid: fedora + size: 129148 + checksum: sha256:72a321e06ff1f932037c23c827211f4058fdc05735af72403a643f121d1120f9 + name: pcsc-lite-ccid + evr: 1.6.1-3.fc42 + sourcerpm: pcsc-lite-ccid-1.6.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/pcsc-lite-libs-2.3.1-2.fc42.x86_64.rpm + repoid: fedora + size: 33167 + checksum: sha256:950309501d1c840f05873a0978fcc92fa1252decc75581dfe7561ff3643e2f1e + name: pcsc-lite-libs + evr: 2.3.1-2.fc42 + sourcerpm: pcsc-lite-2.3.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Carp-1.54-512.fc42.noarch.rpm + repoid: fedora + size: 29554 + checksum: sha256:e4245ce3c5125fb7fb549472256d5da5c5a801f71b2364d3175423b68ea9f90d + name: perl-Carp + evr: 1.54-512.fc42 + sourcerpm: perl-Carp-1.54-512.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Class-Inspector-1.36-18.fc42.noarch.rpm + repoid: fedora + size: 31032 + checksum: sha256:626a49b1850a9f8d1b3ebe547c312e883ec2211c0bbfdf2d769a3010aff33442 + name: perl-Class-Inspector + evr: 1.36-18.fc42 + sourcerpm: perl-Class-Inspector-1.36-18.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Data-Dumper-2.189-513.fc42.x86_64.rpm + repoid: fedora + size: 58010 + checksum: sha256:bf4b342511c4a58f30bc606701811904c2e533b1b136159c64ab14e3c5d3ffb4 + name: perl-Data-Dumper + evr: 2.189-513.fc42 + sourcerpm: perl-Data-Dumper-2.189-513.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Digest-1.20-512.fc42.noarch.rpm + repoid: fedora + size: 25532 + checksum: sha256:63737699fb7c8b876ecb0bc3efbfda6e215e06afedf4e662b8791e6f5604deed + name: perl-Digest + evr: 1.20-512.fc42 + sourcerpm: perl-Digest-1.20-512.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Digest-MD5-2.59-6.fc42.x86_64.rpm + repoid: fedora + size: 36848 + checksum: sha256:6e17c34e6c213983e0c7a3b6d8a1f45b2522bebd57dce6fc1784c1ed03742961 + name: perl-Digest-MD5 + evr: 2.59-6.fc42 + sourcerpm: perl-Digest-MD5-2.59-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Encode-3.21-512.fc42.x86_64.rpm + repoid: fedora + size: 1103507 + checksum: sha256:29547be97ab5224ca2696a36d223e0bce5e8f6cf6d17a799b131683b4340c904 + name: perl-Encode + evr: 4:3.21-512.fc42 + sourcerpm: perl-Encode-3.21-512.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Error-0.17030-1.fc42.noarch.rpm + repoid: fedora + size: 41342 + checksum: sha256:19987ef680e8f465f234d85e4f209d9edad751d2c3c9bbd4cc10d4c446051602 + name: perl-Error + evr: 1:0.17030-1.fc42 + sourcerpm: perl-Error-0.17030-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Exporter-5.78-512.fc42.noarch.rpm + repoid: fedora + size: 31733 + checksum: sha256:2ff0a2faf96014b960f30a94cf07b3609e1ec7909a110d5490f92c20fa1c7409 + name: perl-Exporter + evr: 5.78-512.fc42 + sourcerpm: perl-Exporter-5.78-512.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Exporter-Tiny-1.006002-6.fc42.noarch.rpm + repoid: fedora + size: 52537 + checksum: sha256:76112b6be1b07e1649753cd11723400d6abb1c3bae22c381922810e147da6acb + name: perl-Exporter-Tiny + evr: 1.006002-6.fc42 + sourcerpm: perl-Exporter-Tiny-1.006002-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-File-Path-2.18-512.fc42.noarch.rpm + repoid: fedora + size: 36019 + checksum: sha256:d88cdde7516c62a9b064813c35ce28ec401b32e3f3fabfe5863ae8fc5823c6c0 + name: perl-File-Path + evr: 2.18-512.fc42 + sourcerpm: perl-File-Path-2.18-512.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-File-ShareDir-1.118-13.fc42.noarch.rpm + repoid: fedora + size: 30395 + checksum: sha256:b4e1ce64b6ec084c16b61321cef19a535db3bc51b2f9838f49efbe3f34e2e2cc + name: perl-File-ShareDir + evr: 1.118-13.fc42 + sourcerpm: perl-File-ShareDir-1.118-13.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-File-Temp-0.231.100-512.fc42.noarch.rpm + repoid: fedora + size: 60585 + checksum: sha256:02207a62e765af556807baa60ad510d1b8e6335b49ea679027d34ea50f315959 + name: perl-File-Temp + evr: 1:0.231.100-512.fc42 + sourcerpm: perl-File-Temp-0.231.100-512.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Getopt-Long-2.58-3.fc42.noarch.rpm + repoid: fedora + size: 65239 + checksum: sha256:ebea62d5f22d105f034a0d09a1d82cc7032387f47c63e178ce72ae1bbc3abd0d + name: perl-Getopt-Long + evr: 1:2.58-3.fc42 + sourcerpm: perl-Getopt-Long-2.58-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Git-2.49.0-1.fc42.noarch.rpm + repoid: fedora + size: 38915 + checksum: sha256:5c1c651e0ea1128060919842c64c614c9cc2e4053767481a9b25da881edc530a + name: perl-Git + evr: 2.49.0-1.fc42 + sourcerpm: git-2.49.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-HTTP-Tiny-0.090-2.fc42.noarch.rpm + repoid: fedora + size: 57886 + checksum: sha256:31aa7c3198afe4e38dbd03c14cb468580fda1691f9b32d7e5331981b5ee08670 + name: perl-HTTP-Tiny + evr: 0.090-2.fc42 + sourcerpm: perl-HTTP-Tiny-0.090-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-IO-Socket-IP-0.43-2.fc42.noarch.rpm + repoid: fedora + size: 43380 + checksum: sha256:cd63ccca8a8d47b8db7104ebbacc7cf68cc5cafe84e5eedc36aff9fd2c22e88a + name: perl-IO-Socket-IP + evr: 0.43-2.fc42 + sourcerpm: perl-IO-Socket-IP-0.43-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-IO-Socket-SSL-2.089-2.fc42.noarch.rpm + repoid: fedora + size: 235745 + checksum: sha256:99c841f6671d4afc8cca414d3b792a1f3466c59b9ac73eaf423e6ac016b07d4c + name: perl-IO-Socket-SSL + evr: 2.089-2.fc42 + sourcerpm: perl-IO-Socket-SSL-2.089-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-IPC-Run3-0.049-3.fc42.noarch.rpm + repoid: fedora + size: 39066 + checksum: sha256:7eaff77bfd2324548e7800a6c7e88edc1aa3061bbad2f135e0c7203d6b85889d + name: perl-IPC-Run3 + evr: 0.049-3.fc42 + sourcerpm: perl-IPC-Run3-0.049-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Lexical-SealRequireHints-0.012-9.fc42.x86_64.rpm + repoid: fedora + size: 26773 + checksum: sha256:3c6673e873eb5f0cea009d05c4b7354eb1ed12f5af7fd8880426a3c66791044c + name: perl-Lexical-SealRequireHints + evr: 0.012-9.fc42 + sourcerpm: perl-Lexical-SealRequireHints-0.012-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Lexical-Var-0.010-8.fc42.x86_64.rpm + repoid: fedora + size: 33738 + checksum: sha256:31b688a39c1d0b86b8a6ae776d4cd5b035e385f780a8e82d8a0c19f5e7e69470 + name: perl-Lexical-Var + evr: 0.010-8.fc42 + sourcerpm: perl-Lexical-Var-0.010-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-List-MoreUtils-0.430-13.fc42.noarch.rpm + repoid: fedora + size: 63295 + checksum: sha256:e539e3e2c40822f83cc6d482f7b52c816af341585e99bc7aea4aa856346ff45f + name: perl-List-MoreUtils + evr: 0.430-13.fc42 + sourcerpm: perl-List-MoreUtils-0.430-13.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-List-MoreUtils-XS-0.430-16.fc42.x86_64.rpm + repoid: fedora + size: 63371 + checksum: sha256:a2970e2246fc6338a212beb86de4948085810052edeec092e04989bc3c516107 + name: perl-List-MoreUtils-XS + evr: 0.430-16.fc42 + sourcerpm: perl-List-MoreUtils-XS-0.430-16.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-MIME-Base32-1.303-23.fc42.noarch.rpm + repoid: fedora + size: 21008 + checksum: sha256:5d53453d8ccd3eeeaf28e6d2f52c252ec1aa9b481f03c767f4beb69413f87f98 + name: perl-MIME-Base32 + evr: 1.303-23.fc42 + sourcerpm: perl-MIME-Base32-1.303-23.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-MIME-Base64-3.16-512.fc42.x86_64.rpm + repoid: fedora + size: 30569 + checksum: sha256:a52eb55ebbf15d142bf72e244cd5a092c1322e4083804b8176e1935d5c2b936b + name: perl-MIME-Base64 + evr: 3.16-512.fc42 + sourcerpm: perl-MIME-Base64-3.16-512.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Net-SSLeay-1.94-8.fc42.x86_64.rpm + repoid: fedora + size: 385050 + checksum: sha256:728429a9e011591001e4352acf031e3e3371877573242e94b87faf18947354f8 + name: perl-Net-SSLeay + evr: 1.94-8.fc42 + sourcerpm: perl-Net-SSLeay-1.94-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Params-Util-1.102-17.fc42.x86_64.rpm + repoid: fedora + size: 33482 + checksum: sha256:a3c21d459ce0c8688a1d1a2057e03c8408e9a2f46f00c257c17c85c335cff169 + name: perl-Params-Util + evr: 1.102-17.fc42 + sourcerpm: perl-Params-Util-1.102-17.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-PathTools-3.91-513.fc42.x86_64.rpm + repoid: fedora + size: 89404 + checksum: sha256:a981c84091f0db286d7da5475897a5e89dd2bc25e819746e2cd3a7890ebf6fa0 + name: perl-PathTools + evr: 3.91-513.fc42 + sourcerpm: perl-PathTools-3.91-513.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Pod-Escapes-1.07-512.fc42.noarch.rpm + repoid: fedora + size: 20293 + checksum: sha256:48cf57f4194285a94fc582d4fe2aab46790461a1e9031407da5ee7d31949013d + name: perl-Pod-Escapes + evr: 1:1.07-512.fc42 + sourcerpm: perl-Pod-Escapes-1.07-512.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Pod-Perldoc-3.28.01-513.fc42.noarch.rpm + repoid: fedora + size: 87869 + checksum: sha256:2a5085e9c8cf54a3087176c84afa5d5665f29e3d096231e94dd3b38d4a10cf2e + name: perl-Pod-Perldoc + evr: 3.28.01-513.fc42 + sourcerpm: perl-Pod-Perldoc-3.28.01-513.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Pod-Simple-3.45-512.fc42.noarch.rpm + repoid: fedora + size: 224239 + checksum: sha256:440960acc0941bbaa3b1cf190c0933a7879539e284556e11307ca59664ec8b9a + name: perl-Pod-Simple + evr: 1:3.45-512.fc42 + sourcerpm: perl-Pod-Simple-3.45-512.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Pod-Usage-2.05-1.fc42.noarch.rpm + repoid: fedora + size: 41481 + checksum: sha256:65dd2bd3839db01069deaa3f03ce4e310b217034611011af086c0f0e182a6066 + name: perl-Pod-Usage + evr: 4:2.05-1.fc42 + sourcerpm: perl-Pod-Usage-2.05-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Socket-2.038-512.fc42.x86_64.rpm + repoid: fedora + size: 56073 + checksum: sha256:e01a41c411760ba28004afd585e78700457f72b439a935a90631c3256dac5821 + name: perl-Socket + evr: 4:2.038-512.fc42 + sourcerpm: perl-Socket-2.038-512.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Storable-3.32-512.fc42.x86_64.rpm + repoid: fedora + size: 101990 + checksum: sha256:c4a6078261fd537657c47b9217c93c88f79d8e22dd504206d182b2374b124861 + name: perl-Storable + evr: 1:3.32-512.fc42 + sourcerpm: perl-Storable-3.32-512.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Term-ANSIColor-5.01-513.fc42.noarch.rpm + repoid: fedora + size: 48837 + checksum: sha256:fb5b58fd68acde4e8eaea4399f70d0bf6ab7a5c9b65ef0574014a88adf2a64d8 + name: perl-Term-ANSIColor + evr: 5.01-513.fc42 + sourcerpm: perl-Term-ANSIColor-5.01-513.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Term-Cap-1.18-512.fc42.noarch.rpm + repoid: fedora + size: 22686 + checksum: sha256:357e094c57ca6e9ee2d693666b966b4df0465cccc5210781b7989061e248bfdc + name: perl-Term-Cap + evr: 1.18-512.fc42 + sourcerpm: perl-Term-Cap-1.18-512.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-TermReadKey-2.38-24.fc42.x86_64.rpm + repoid: fedora + size: 36265 + checksum: sha256:493b1b659d6d6aba072e8ad4daecab4899d1f1150d5f5574f4f0cadef4240994 + name: perl-TermReadKey + evr: 2.38-24.fc42 + sourcerpm: perl-TermReadKey-2.38-24.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Text-ParseWords-3.31-512.fc42.noarch.rpm + repoid: fedora + size: 16874 + checksum: sha256:a9e64a90a548c6b4b9c7479f134da06f2bfa5460ff14fb0a78b23a8008d42e42 + name: perl-Text-ParseWords + evr: 3.31-512.fc42 + sourcerpm: perl-Text-ParseWords-3.31-512.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Text-Tabs+Wrap-2024.001-512.fc42.noarch.rpm + repoid: fedora + size: 22322 + checksum: sha256:3bcc36cafbe6cebd4f19ed4f677d58a55e1cfbc022823754881557e12fb8b240 + name: perl-Text-Tabs+Wrap + evr: 2024.001-512.fc42 + sourcerpm: perl-Text-Tabs+Wrap-2024.001-512.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-Time-Local-1.350-512.fc42.noarch.rpm + repoid: fedora + size: 35289 + checksum: sha256:59e59a69c15baca093babbbbe0aaaafaaa1f9b023d987a1c77929f6e0fdb444e + name: perl-Time-Local + evr: 2:1.350-512.fc42 + sourcerpm: perl-Time-Local-1.350-512.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-URI-5.31-2.fc42.noarch.rpm + repoid: fedora + size: 144093 + checksum: sha256:d470ed9d64202616b5c7ee9e76036bf1506a48958363f53f10931f08ecf07109 + name: perl-URI + evr: 5.31-2.fc42 + sourcerpm: perl-URI-5.31-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-constant-1.33-513.fc42.noarch.rpm + repoid: fedora + size: 23535 + checksum: sha256:8db3cde663f5acb32501b8970ef845626c2a3941153819d4b4301132878b8399 + name: perl-constant + evr: 1.33-513.fc42 + sourcerpm: perl-constant-1.33-513.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-hivex-1.3.24-3.fc42.x86_64.rpm + repoid: fedora + size: 46870 + checksum: sha256:59467e13d833b5998abb8e723f4c282b5415e2d801d8adb48b43017836521d40 + name: perl-hivex + evr: 1.3.24-3.fc42 + sourcerpm: hivex-1.3.24-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-libintl-perl-1.35-1.fc42.x86_64.rpm + repoid: fedora + size: 830936 + checksum: sha256:6dc441e0408c44720c58a8e31a9ee63811663c7fc6d748850739765025f0a2c9 + name: perl-libintl-perl + evr: 1.35-1.fc42 + sourcerpm: perl-libintl-perl-1.35-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-libnet-3.15-513.fc42.noarch.rpm + repoid: fedora + size: 131454 + checksum: sha256:8ccab0464a383d6ac926e51cd4165fbe1c358c5dd8d944a4f24461491bf65fc5 + name: perl-libnet + evr: 3.15-513.fc42 + sourcerpm: perl-libnet-3.15-513.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-parent-0.244-2.fc42.noarch.rpm + repoid: fedora + size: 15590 + checksum: sha256:fc6778e4eb4f550d628678cb02e1698008b2a81ef870a045e4785151c222ae80 + name: perl-parent + evr: 1:0.244-2.fc42 + sourcerpm: perl-parent-0.244-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-podlators-6.0.2-3.fc42.noarch.rpm + repoid: fedora + size: 131693 + checksum: sha256:0fb6b62155becae7a49e5886bc825303fb0a5bea03366fcaa71439cc95479529 + name: perl-podlators + evr: 1:6.0.2-3.fc42 + sourcerpm: perl-podlators-6.0.2-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/perl-srpm-macros-1-57.fc42.noarch.rpm + repoid: fedora + size: 8710 + checksum: sha256:e932972830e3a95857a1f8a218886a8e3125ee69194f93ad68bae44c926a33f5 + name: perl-srpm-macros + evr: 1-57.fc42 + sourcerpm: perl-srpm-macros-1-57.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/pigz-2.8-6.fc42.x86_64.rpm + repoid: fedora + size: 97966 + checksum: sha256:f765633acc9a917b8890e98ce694e5646e298e0561573f9a8f21f0a02b18507c + name: pigz + evr: 2.8-6.fc42 + sourcerpm: pigz-2.8-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/pinentry-1.3.1-3.fc42.x86_64.rpm + repoid: fedora + size: 114291 + checksum: sha256:9b75e0bfc17d1129c6bf31257eaf9f36399bd30d97df923dbfd60bd5c1f5225a + name: pinentry + evr: 1.3.1-3.fc42 + sourcerpm: pinentry-1.3.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/pixman-0.44.2-2.fc42.x86_64.rpm + repoid: fedora + size: 284064 + checksum: sha256:146a386d3e26b8e780690a608fe450effb6518a2acbbd261ca28c2829e561bce + name: pixman + evr: 0.44.2-2.fc42 + sourcerpm: pixman-0.44.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/pkgconf-2.3.0-2.fc42.x86_64.rpm + repoid: fedora + size: 45964 + checksum: sha256:65169e8bfad20649ebd103c24255ad39e3e329e907cabf16ca1602411ffcb2a8 + name: pkgconf + evr: 2.3.0-2.fc42 + sourcerpm: pkgconf-2.3.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/pkgconf-m4-2.3.0-2.fc42.noarch.rpm + repoid: fedora + size: 14577 + checksum: sha256:90496b0e2a7291473e34bd6e3044eb7b664944ffdccd1041896445196f3d32c4 + name: pkgconf-m4 + evr: 2.3.0-2.fc42 + sourcerpm: pkgconf-2.3.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/pkgconf-pkg-config-2.3.0-2.fc42.x86_64.rpm + repoid: fedora + size: 10163 + checksum: sha256:9476e0b0fff3b34c4fca8579c116bcb2542443edb838cb2b434bde9c4b0d0fb3 + name: pkgconf-pkg-config + evr: 2.3.0-2.fc42 + sourcerpm: pkgconf-2.3.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/policycoreutils-3.8-1.fc42.x86_64.rpm + repoid: fedora + size: 219998 + checksum: sha256:024698d65742b1e1a0a61ee7f1bbbab67d3dcc22d28c0039e9b8e21f80b11467 + name: policycoreutils + evr: 3.8-1.fc42 + sourcerpm: policycoreutils-3.8-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/policycoreutils-python-utils-3.8-1.fc42.noarch.rpm + repoid: fedora + size: 51428 + checksum: sha256:691c32de0c56a3a15de54821e363e1c691244e5070385f1a6a9dd5c7dc6c2156 + name: policycoreutils-python-utils + evr: 3.8-1.fc42 + sourcerpm: policycoreutils-3.8-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/polkit-pkla-compat-0.1-30.fc42.x86_64.rpm + repoid: fedora + size: 45144 + checksum: sha256:5f9387010cdf8c161c2b5864828029958a38a98673288f8e8e1fd3d9fb101a47 + name: polkit-pkla-compat + evr: 0.1-30.fc42 + sourcerpm: polkit-pkla-compat-0.1-30.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/poppler-25.02.0-1.fc42.x86_64.rpm + repoid: fedora + size: 1337302 + checksum: sha256:013bbd720e320c517ebfa2eb2401143db1ae5b499fab43edcf022004d2f8017c + name: poppler + evr: 25.02.0-1.fc42 + sourcerpm: poppler-25.02.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/poppler-data-0.4.11-9.fc42.noarch.rpm + repoid: fedora + size: 2068036 + checksum: sha256:7ec21ff111ec22b85f7d5b4199fdb38ecdd1b12bc5b5547f30b570e77c15c9f4 + name: poppler-data + evr: 0.4.11-9.fc42 + sourcerpm: poppler-data-0.4.11-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/poppler-glib-25.02.0-1.fc42.x86_64.rpm + repoid: fedora + size: 205786 + checksum: sha256:8a5f4d63d3947bef38702e84dff5182011f5ab8c1118f7534056c4f11c97754e + name: poppler-glib + evr: 25.02.0-1.fc42 + sourcerpm: poppler-25.02.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/procps-ng-4.0.4-6.fc42.x86_64.rpm + repoid: fedora + size: 374107 + checksum: sha256:f3ac8efa11cee6a972915b9ad519202b2b2d748014a3517aa5c6f930f7dd9a3b + name: procps-ng + evr: 4.0.4-6.fc42 + sourcerpm: procps-ng-4.0.4-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/psmisc-23.7-5.fc42.x86_64.rpm + repoid: fedora + size: 328456 + checksum: sha256:8f6ae9b28f5e87f36eae4a8b51e0baf02a6010c3e955aced46b00266f3c917ae + name: psmisc + evr: 23.7-5.fc42 + sourcerpm: psmisc-23.7-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/psutils-2.10-8.fc42.noarch.rpm + repoid: fedora + size: 55190 + checksum: sha256:52e51d12b83074e018ef9ccb76d95c7b6a58acf5137ff941999b44ed7bcaf213 + name: psutils + evr: 2.10-8.fc42 + sourcerpm: psutils-2.10-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/pulseaudio-libs-17.0-5.fc42.x86_64.rpm + repoid: fedora + size: 717878 + checksum: sha256:8249c41a37f753489d1736a297e4f2d3797976eb687816c89a32dd678c9ee544 + name: pulseaudio-libs + evr: 17.0-5.fc42 + sourcerpm: pulseaudio-17.0-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/pyproject-srpm-macros-1.18.1-1.fc42.noarch.rpm + repoid: fedora + size: 14188 + checksum: sha256:08207d5794a52bc34fd05920cf1676106fd4cf7088a4135b5cdf13b2b27a5361 + name: pyproject-srpm-macros + evr: 1.18.1-1.fc42 + sourcerpm: pyproject-rpm-macros-1.18.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python-pip-wheel-24.3.1-2.fc42.noarch.rpm + repoid: fedora + size: 1262714 + checksum: sha256:6270a48e0b5b0fd8e5d434cba01fad2a454053d2d229b86acbff85a8a4abf093 + name: python-pip-wheel + evr: 24.3.1-2.fc42 + sourcerpm: python-pip-24.3.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python-srpm-macros-3.13-4.fc42.noarch.rpm + repoid: fedora + size: 23528 + checksum: sha256:9292fc1a17c491c2a1af39ffe8f524d1efc26b2c5b294407d67dcc229f5b988e + name: python-srpm-macros + evr: 3.13-4.fc42 + sourcerpm: python-rpm-macros-3.13-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-Automat-24.8.1-1.fc42.noarch.rpm + repoid: fedora + size: 119096 + checksum: sha256:22d01ce9ea8a0db1eab140eb8a8379c2d10b0083b5e8d10c4885212389a1e6ac + name: python3-Automat + evr: 24.8.1-1.fc42 + sourcerpm: python-Automat-24.8.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-anytree-2.8.0-19.fc42.noarch.rpm + repoid: fedora + size: 94724 + checksum: sha256:2a3311960fdc1ff77641370031457286b2ace7b4b5b5e959d9837d6821f91d12 + name: python3-anytree + evr: 2.8.0-19.fc42 + sourcerpm: python-anytree-2.8.0-19.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-astroid-3.3.8-2.fc42.noarch.rpm + repoid: fedora + size: 596006 + checksum: sha256:4542780ae21cdd509d0d879c5aac032afe7f2f0e516fefb37e60983250d7e44d + name: python3-astroid + evr: 3.3.8-2.fc42 + sourcerpm: python-astroid-3.3.8-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-atpublic-4.1.0-4.fc42.x86_64.rpm + repoid: fedora + size: 30397 + checksum: sha256:8f8e4a2823d2618441ab6621b87a4c76dfeacb0efc98b917d1d6c443d6f7a302 + name: python3-atpublic + evr: 4.1.0-4.fc42 + sourcerpm: python-atpublic-4.1.0-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-attrs-25.1.0-1.fc42.noarch.rpm + repoid: fedora + size: 133868 + checksum: sha256:6de48a1146f5abca3636c5ae5677f35d6b41ca27323065e7aa8f9924a36491fc + name: python3-attrs + evr: 25.1.0-1.fc42 + sourcerpm: python-attrs-25.1.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-awscrt-0.24.2-1.fc42.x86_64.rpm + repoid: fedora + size: 983506 + checksum: sha256:d03b256237236389c06218c32272f4afb9db92df96e973e6a36582bf1cefdf6f + name: python3-awscrt + evr: 0.24.2-1.fc42 + sourcerpm: python-awscrt-0.24.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-blinker-1.9.0-2.fc42.noarch.rpm + repoid: fedora + size: 28224 + checksum: sha256:062edf9de5c6d7b133e5dfc52a3c61af40ae3a55b4aec867c91368ef1e83469b + name: python3-blinker + evr: 1.9.0-2.fc42 + sourcerpm: python-blinker-1.9.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-cached_property-2.0.1-2.fc42.noarch.rpm + repoid: fedora + size: 20511 + checksum: sha256:15c95bfffd74ce6700788fa75ba08b0e99085d3a826febde907bf7b8f719ad98 + name: python3-cached_property + evr: 2.0.1-2.fc42 + sourcerpm: python-cached_property-2.0.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-cffi-1.17.1-2.fc42.x86_64.rpm + repoid: fedora + size: 316350 + checksum: sha256:43eadb6909531461a85823d4581f3210ab095aba365c16763c5e291a9cbdc1ee + name: python3-cffi + evr: 1.17.1-2.fc42 + sourcerpm: python-cffi-1.17.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-charset-normalizer-3.4.1-3.fc42.noarch.rpm + repoid: fedora + size: 110973 + checksum: sha256:cade6fb70a13b47236145b85c6486ad05f72972f00b346dd884e87250c4c4061 + name: python3-charset-normalizer + evr: 3.4.1-3.fc42 + sourcerpm: python-charset-normalizer-3.4.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-click-8.1.7-7.fc42.noarch.rpm + repoid: fedora + size: 248011 + checksum: sha256:137a98ddea0b2a579abe776ea1b48a31288be8324a3bdb6b4dec2af4830711ca + name: python3-click + evr: 8.1.7-7.fc42 + sourcerpm: python-click-8.1.7-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-colorama-0.4.6-10.fc42.noarch.rpm + repoid: fedora + size: 72665 + checksum: sha256:3c86a39147dfce6066bcff7a7006a5bf821e637c389ec2c5b392069fe9f6c650 + name: python3-colorama + evr: 0.4.6-10.fc42 + sourcerpm: python-colorama-0.4.6-10.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-configshell-1.1.30-9.fc42.noarch.rpm + repoid: fedora + size: 92287 + checksum: sha256:8fc10a776341a2fe352121f89daa36e61ac71a1ceb383916c91f142f6de45317 + name: python3-configshell + evr: 1:1.1.30-9.fc42 + sourcerpm: python-configshell-1.1.30-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-constantly-23.10.4-1.fc42.noarch.rpm + repoid: fedora + size: 36984 + checksum: sha256:503cb1e5f74ec03790932ede20640d677d221dad4c4744069a80ad062da03f13 + name: python3-constantly + evr: 23.10.4-1.fc42 + sourcerpm: python-constantly-23.10.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-copr-2.1-1.fc42.noarch.rpm + repoid: fedora + size: 102278 + checksum: sha256:bebd7e9ea749212ef0f120b6250c9244d144b30bee31d4857dbf221a9e01d7e1 + name: python3-copr + evr: 2.1-1.fc42 + sourcerpm: python-copr-2.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-coverage+toml-7.3.2-6.fc42.x86_64.rpm + repoid: fedora + size: 9353 + checksum: sha256:10fd061e17c5bb380f00d508338ade38e5c20e92e979e306b4391bdddb1b1742 + name: python3-coverage+toml + evr: 7.3.2-6.fc42 + sourcerpm: python-coverage-7.3.2-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-coverage-7.3.2-6.fc42.x86_64.rpm + repoid: fedora + size: 398290 + checksum: sha256:102cce77b022e04b47730d554082a3c9308f2013bbdf398b021facc504e5deb4 + name: python3-coverage + evr: 7.3.2-6.fc42 + sourcerpm: python-coverage-7.3.2-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-createrepo_c-1.2.0-3.fc42.x86_64.rpm + repoid: fedora + size: 71182 + checksum: sha256:bd5efcc614ff943207bb97bc0d4ae0d155453d37c96e6093da1b091a639259c5 + name: python3-createrepo_c + evr: 1.2.0-3.fc42 + sourcerpm: createrepo_c-1.2.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-crochet-2.1.1-6.fc42.noarch.rpm + repoid: fedora + size: 84780 + checksum: sha256:d54a2f19531d2b30dea8a9990684b725eaefb4dee72c16a6134b8b7932d71ee3 + name: python3-crochet + evr: 2.1.1-6.fc42 + sourcerpm: python-crochet-2.1.1-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-cryptography-44.0.0-3.fc42.x86_64.rpm + repoid: fedora + size: 1499506 + checksum: sha256:f1466f4c66f19c78f39af6af101c9dcd1c4028f57d04b669106d2f2cb766a80a + name: python3-cryptography + evr: 44.0.0-3.fc42 + sourcerpm: python-cryptography-44.0.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-dateutil-2.8.2-17.fc42.noarch.rpm + repoid: fedora + size: 368544 + checksum: sha256:e8b5e0769910aeae245cc3a6671512072d23483ae12227ee0334784891000038 + name: python3-dateutil + evr: 1:2.8.2-17.fc42 + sourcerpm: python-dateutil-2.8.2-17.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-dbus-1.3.2-9.fc42.x86_64.rpm + repoid: fedora + size: 162675 + checksum: sha256:2059003e1df3153bae8c8e888f6003f3eb65ba372092be45cf53b39bffd7738e + name: python3-dbus + evr: 1.3.2-9.fc42 + sourcerpm: dbus-python-1.3.2-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-decorator-5.1.1-14.fc42.noarch.rpm + repoid: fedora + size: 31853 + checksum: sha256:986825708d004a52c497b02196405eb8198f38f4fe9b060889d125dca1699984 + name: python3-decorator + evr: 5.1.1-14.fc42 + sourcerpm: python-decorator-5.1.1-14.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-defusedxml-0.7.1-18.fc42.noarch.rpm + repoid: fedora + size: 59943 + checksum: sha256:3d64c5c5909bc10ad07cc5c2be6adb77abce430e47648b1bf252d61d2765fc4c + name: python3-defusedxml + evr: 0.7.1-18.fc42 + sourcerpm: python-defusedxml-0.7.1-18.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-distro-1.9.0-6.fc42.noarch.rpm + repoid: fedora + size: 47686 + checksum: sha256:67efaf5a43c3f8c4be650f320f9873d92d62947b0a7b805d591699bd530552dd + name: python3-distro + evr: 1.9.0-6.fc42 + sourcerpm: python-distro-1.9.0-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-dnf-4.23.0-1.fc42.noarch.rpm + repoid: fedora + size: 650089 + checksum: sha256:82a1f41c4595b4b140552593b79e972e03ef74f4a07c20c43850d4eb025e45df + name: python3-dnf + evr: 4.23.0-1.fc42 + sourcerpm: dnf-4.23.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-dnf-plugins-core-4.10.1-1.fc42.noarch.rpm + repoid: fedora + size: 322562 + checksum: sha256:2dc61d8bc37b4180d530e2626a04ec056bc9d6b9c98a768efe3aef000de94e4c + name: python3-dnf-plugins-core + evr: 4.10.1-1.fc42 + sourcerpm: dnf-plugins-core-4.10.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-docutils-0.21.2-2.fc42.noarch.rpm + repoid: fedora + size: 1142359 + checksum: sha256:2fb15e99fb6c87dfedf99a60e520a0ed6c6dd50aaf2a0c0b46e52cba6a07b4a2 + name: python3-docutils + evr: 0.21.2-2.fc42 + sourcerpm: python-docutils-0.21.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-filelock-3.15.4-5.fc42.noarch.rpm + repoid: fedora + size: 44562 + checksum: sha256:c2802ab052cd59f184e6252149e649ede58302042698d6cb574aef2f1c584470 + name: python3-filelock + evr: 3.15.4-5.fc42 + sourcerpm: python-filelock-3.15.4-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-flake8-6.1.0-5.fc42.noarch.rpm + repoid: fedora + size: 152783 + checksum: sha256:a12fc73b4df3fdcc7a3a9a95270f147490bbc3ed691ad3d28d13761824d66de8 + name: python3-flake8 + evr: 6.1.0-5.fc42 + sourcerpm: python-flake8-6.1.0-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-flufl-lock-8.0.2-4.fc42.noarch.rpm + repoid: fedora + size: 49504 + checksum: sha256:5345830ce91087f8d6e2f89edc3d00e430615b3aca076bf17c4e505ae9796faa + name: python3-flufl-lock + evr: 8.0.2-4.fc42 + sourcerpm: python-flufl-lock-8.0.2-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-gobject-base-3.50.0-3.fc42.x86_64.rpm + repoid: fedora + size: 409670 + checksum: sha256:a5ddd2ddfb7fa2c12f6089a979520454d338748fd76800c386e1b913b95e782f + name: python3-gobject-base + evr: 3.50.0-3.fc42 + sourcerpm: pygobject3-3.50.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-gssapi-1.7.3-11.fc42.x86_64.rpm + repoid: fedora + size: 667886 + checksum: sha256:c22372ead9c1a29bfd8345f1c85e8c1d536357fd9f821f210d815d2b7d0ab83e + name: python3-gssapi + evr: 1.7.3-11.fc42 + sourcerpm: python-gssapi-1.7.3-11.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-hawkey-0.74.0-1.fc42.x86_64.rpm + repoid: fedora + size: 104856 + checksum: sha256:933fa942723512f1487ea1c5c80096fc31ae3813711038aa546881e46360cfdc + name: python3-hawkey + evr: 0.74.0-1.fc42 + sourcerpm: libdnf-0.74.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-humanize-4.12.0-1.fc42.noarch.rpm + repoid: fedora + size: 87062 + checksum: sha256:3d3780b7d16fed1ed86b2c4c7f8455e56bbd6f2a891cd66425f26862a771a334 + name: python3-humanize + evr: 4.12.0-1.fc42 + sourcerpm: python-humanize-4.12.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-hyperlink-21.0.0-19.fc42.noarch.rpm + repoid: fedora + size: 150724 + checksum: sha256:e8da3ea759d3defcb1caa8c8efcb05396ed1fdd9ccf3c6b2c1f1ab239c0febee + name: python3-hyperlink + evr: 21.0.0-19.fc42 + sourcerpm: python-hyperlink-21.0.0-19.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-idna-3.10-2.fc42.noarch.rpm + repoid: fedora + size: 120087 + checksum: sha256:636188616bc6671301a0304862f15c2c16a764813713f2ea322773f07c127f80 + name: python3-idna + evr: 3.10-2.fc42 + sourcerpm: python-idna-3.10-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-incremental-24.7.2-2.fc42.noarch.rpm + repoid: fedora + size: 55960 + checksum: sha256:a62b52b99bcf4f2ffe8eb60cee6aff819b9094b3b1f4be9f331df6d440ab8509 + name: python3-incremental + evr: 24.7.2-2.fc42 + sourcerpm: python-incremental-24.7.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-iniconfig-1.1.1-25.fc42.noarch.rpm + repoid: fedora + size: 18516 + checksum: sha256:344591a86477e246687df5e1aa4d74f7ba2119c9f1eb26458917ab0693002dba + name: python3-iniconfig + evr: 1.1.1-25.fc42 + sourcerpm: python-iniconfig-1.1.1-25.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-isort-6.0.1-1.fc42.noarch.rpm + repoid: fedora + size: 249357 + checksum: sha256:3ef5988e2baf6ea71e16b22935c2e729c6e0f0a39687911aac7f06389ee3b50f + name: python3-isort + evr: 6.0.1-1.fc42 + sourcerpm: python-isort-6.0.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-jinja2-3.1.6-1.fc42.noarch.rpm + repoid: fedora + size: 508596 + checksum: sha256:d603d076afedbef601b5b206069f00dc861983173d1cc0d59a8f4f81e3125afc + name: python3-jinja2 + evr: 3.1.6-1.fc42 + sourcerpm: python-jinja2-3.1.6-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-jmespath-1.0.1-9.fc42.noarch.rpm + repoid: fedora + size: 60024 + checksum: sha256:78960519a5752222d58362ecb4b76d9bb9ebac16d978aea1ae104f68223ecaec + name: python3-jmespath + evr: 1.0.1-9.fc42 + sourcerpm: python-jmespath-1.0.1-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-jsonschema-4.23.0-2.fc42.noarch.rpm + repoid: fedora + size: 221205 + checksum: sha256:1c927246cd1f01b851821e9d2d516669961cd4f0c2713cad07520f476e1c1f3a + name: python3-jsonschema + evr: 4.23.0-2.fc42 + sourcerpm: python-jsonschema-4.23.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-jsonschema-specifications-2024.10.1-2.fc42.noarch.rpm + repoid: fedora + size: 27965 + checksum: sha256:d7f64a551709756df95f48e17180aa0b216bdc223e1c868c3ecb25dd188eb20b + name: python3-jsonschema-specifications + evr: 2024.10.1-2.fc42 + sourcerpm: python-jsonschema-specifications-2024.10.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-junit-xml-1.9^20200222gitba89b41-20.fc42.noarch.rpm + repoid: fedora + size: 23948 + checksum: sha256:5a6a4d0a1d0e2aaeb93dfd36f4720c20416e1846110c5b2d398ed260b6efe173 + name: python3-junit-xml + evr: 1.9^20200222gitba89b41-20.fc42 + sourcerpm: python-junit_xml-1.9^20200222gitba89b41-20.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-kmod-0.9.2-7.fc42.x86_64.rpm + repoid: fedora + size: 107841 + checksum: sha256:ba914fe6c871c19c24e95bc31d7ad33ee18e523f469537ac2e15410639b5b67c + name: python3-kmod + evr: 0.9.2-7.fc42 + sourcerpm: python-kmod-0.9.2-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-libcomps-0.1.21-5.fc42.x86_64.rpm + repoid: fedora + size: 49653 + checksum: sha256:971bbda46bc7dd2c5399d2f311619728fb9ef20911871955bf5ffe735f8d795b + name: python3-libcomps + evr: 0.1.21-5.fc42 + sourcerpm: libcomps-0.1.21-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-libdnf-0.74.0-1.fc42.x86_64.rpm + repoid: fedora + size: 856299 + checksum: sha256:9b3917e479ca2c6fec01e7488f029bb6fd59439a6d7e4bae74dc564f8a0e1312 + name: python3-libdnf + evr: 0.74.0-1.fc42 + sourcerpm: libdnf-0.74.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-librepo-1.19.0-3.fc42.x86_64.rpm + repoid: fedora + size: 53648 + checksum: sha256:b12bd06c010838498cdea65cba270f287667120af1cdacc72b27caae1b55c292 + name: python3-librepo + evr: 1.19.0-3.fc42 + sourcerpm: librepo-1.19.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-libvirt-11.0.0-1.fc42.x86_64.rpm + repoid: fedora + size: 372235 + checksum: sha256:1e7cf58c436a6e6d87f71809884e5f17e9b78dc156ecc27409d659a5d6974c9e + name: python3-libvirt + evr: 11.0.0-1.fc42 + sourcerpm: libvirt-python-11.0.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-markdown-it-py-3.0.0-8.fc42.noarch.rpm + repoid: fedora + size: 204163 + checksum: sha256:b010fcdd24e5ccf30177616cd29785e938879cc1d28f5df8730df1044b01c443 + name: python3-markdown-it-py + evr: 3.0.0-8.fc42 + sourcerpm: python-markdown-it-py-3.0.0-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-markupsafe-3.0.2-2.fc42.x86_64.rpm + repoid: fedora + size: 30787 + checksum: sha256:50dfc701a94362a8286f1d3262173b272e05c21ecd26b21028b2600b4caeaf55 + name: python3-markupsafe + evr: 3.0.2-2.fc42 + sourcerpm: python-markupsafe-3.0.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-mccabe-0.7.0-11.fc42.noarch.rpm + repoid: fedora + size: 23100 + checksum: sha256:18f087c2c0cc3a6d03c7350696173410b596c616e1853c1d108e39741c6cb49c + name: python3-mccabe + evr: 0.7.0-11.fc42 + sourcerpm: python-mccabe-0.7.0-11.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-mdurl-0.1.2-9.fc42.noarch.rpm + repoid: fedora + size: 31286 + checksum: sha256:f67dd0c36be1e81a2a78195a0babb0b5dacf1c734d949626b57a57545810cf12 + name: python3-mdurl + evr: 0.1.2-9.fc42 + sourcerpm: python-mdurl-0.1.2-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-munch-4.0.0-2.fc42.noarch.rpm + repoid: fedora + size: 26687 + checksum: sha256:732ae71f690b3ef9e6499f2d90868cf1f33e679a775bc866e410c1951d83c365 + name: python3-munch + evr: 4.0.0-2.fc42 + sourcerpm: python-munch-4.0.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-packaging-24.2-3.fc42.noarch.rpm + repoid: fedora + size: 157723 + checksum: sha256:54211907a9e6c93297dc01f32101d646efbea4ccaeaac17a75b18a521cb8846c + name: python3-packaging + evr: 24.2-3.fc42 + sourcerpm: python-packaging-24.2-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pika-1.3.2-2.fc42.noarch.rpm + repoid: fedora + size: 337018 + checksum: sha256:e7d1318ab1c7fb3308d0155085882c62dcf042ac3330edcc24c11bda03fde275 + name: python3-pika + evr: 1.3.2-2.fc42 + sourcerpm: python-pika-1.3.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-platformdirs-4.2.2-4.fc42.noarch.rpm + repoid: fedora + size: 47614 + checksum: sha256:ee5baab2c8bc489701f8189639a7f7bb2551d7d13256fd6f383491892170c17d + name: python3-platformdirs + evr: 4.2.2-4.fc42 + sourcerpm: python-platformdirs-4.2.2-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pluggy-1.5.0-2.fc42.noarch.rpm + repoid: fedora + size: 60278 + checksum: sha256:6bfa467882c7c1d9eea08513ce33af196095c4b055e57eb161410cbcfee706b3 + name: python3-pluggy + evr: 1.5.0-2.fc42 + sourcerpm: python-pluggy-1.5.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-ply-3.11-26.fc42.noarch.rpm + repoid: fedora + size: 139551 + checksum: sha256:af7400b9ff2735e5a30b1299a774f0c1ee145ca298e45db8d65a77a14cb4e9f9 + name: python3-ply + evr: 3.11-26.fc42 + sourcerpm: python-ply-3.11-26.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-policycoreutils-3.8-1.fc42.noarch.rpm + repoid: fedora + size: 2312756 + checksum: sha256:571cce351efd3a6af96c82e4406d89980ace6bc96edfc38ef64261c088a1e2e0 + name: python3-policycoreutils + evr: 3.8-1.fc42 + sourcerpm: policycoreutils-3.8-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-progress-1.6-15.fc42.noarch.rpm + repoid: fedora + size: 25121 + checksum: sha256:31f501b255ccae4a09a092343e27e9a0c08d1e8dfbc4dc8ae4612d7fb54b88dc + name: python3-progress + evr: 1.6-15.fc42 + sourcerpm: python-progress-1.6-15.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-prompt-toolkit-3.0.41-6.fc42.noarch.rpm + repoid: fedora + size: 871895 + checksum: sha256:5ee92ee5b4427d2e759f47ee7005fd997e9b59bcd862078070110578a10f724e + name: python3-prompt-toolkit + evr: 3.0.41-6.fc42 + sourcerpm: python-prompt-toolkit-3.0.41-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-psutil-6.1.1-2.fc42.x86_64.rpm + repoid: fedora + size: 281918 + checksum: sha256:99b72ec1f82225e53e7d894c53b459d069f34a1029520c96116ffd45593b5288 + name: python3-psutil + evr: 6.1.1-2.fc42 + sourcerpm: python-psutil-6.1.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-psycopg2-2.9.9-8.fc42.x86_64.rpm + repoid: fedora + size: 212268 + checksum: sha256:8058abe754f94c6b780089693c9f834cf090f44c2767b66d8ea0cb4e923e0f76 + name: python3-psycopg2 + evr: 2.9.9-8.fc42 + sourcerpm: python-psycopg2-2.9.9-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pyOpenSSL-25.0.0-1.fc42.noarch.rpm + repoid: fedora + size: 125145 + checksum: sha256:ae47c53dd043f731341ebd447d930a4329e2e0b3924efc790b3bd041fea7a0b9 + name: python3-pyOpenSSL + evr: 25.0.0-1.fc42 + sourcerpm: pyOpenSSL-25.0.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pyasn1-0.6.1-3.fc42.noarch.rpm + repoid: fedora + size: 202113 + checksum: sha256:cfd016db61e79edd531e555477e2b84e9643e020886e535ef8addd3afe4933f4 + name: python3-pyasn1 + evr: 0.6.1-3.fc42 + sourcerpm: python-pyasn1-0.6.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pyasn1-modules-0.6.1-3.fc42.noarch.rpm + repoid: fedora + size: 388853 + checksum: sha256:8a581e9616b9cd42d6b3f36f10cb774ea9e7c72941ed3f5ee779e7ad34fd7367 + name: python3-pyasn1-modules + evr: 0.6.1-3.fc42 + sourcerpm: python-pyasn1-0.6.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pycodestyle-2.12.1-3.fc42.noarch.rpm + repoid: fedora + size: 108185 + checksum: sha256:c63fd14559e0e48deba33e338d952e6a32ce93f4fdc9f9885cc99d806977a19b + name: python3-pycodestyle + evr: 2.12.1-3.fc42 + sourcerpm: python-pycodestyle-2.12.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pycparser-2.20-19.fc42.noarch.rpm + repoid: fedora + size: 163571 + checksum: sha256:511b22002471690d1b4a9bb0b59ddcc25aca019ac35a820d9b3c315fa25bbae0 + name: python3-pycparser + evr: 2.20-19.fc42 + sourcerpm: python-pycparser-2.20-19.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pyflakes-3.1.0-4.fc42.noarch.rpm + repoid: fedora + size: 94065 + checksum: sha256:644b3c557f7dfdcd0db5e148f75efc36ef2c7337f48a0597ad4476dec8370b17 + name: python3-pyflakes + evr: 3.1.0-4.fc42 + sourcerpm: pyflakes-3.1.0-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pygments-2.18.0-4.fc42.noarch.rpm + repoid: fedora + size: 2653421 + checksum: sha256:ef62baf343b0f1dbeb051fa08bd12dd814cac9b1d8ba7799a45baf5c39237c96 + name: python3-pygments + evr: 2.18.0-4.fc42 + sourcerpm: python-pygments-2.18.0-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pyparsing-3.1.2-8.fc42.noarch.rpm + repoid: fedora + size: 284683 + checksum: sha256:778c01f47038d9e997ccad7999724dbd52a8d795dbd8b8b20416ed8652fe9bbe + name: python3-pyparsing + evr: 3.1.2-8.fc42 + sourcerpm: pyparsing-3.1.2-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pyrsistent-0.20.0-9.fc42.x86_64.rpm + repoid: fedora + size: 141677 + checksum: sha256:cad250062da30f156ca8c500156e6d3bae84debf3bbd92599a696befc2d12d71 + name: python3-pyrsistent + evr: 0.20.0-9.fc42 + sourcerpm: python-pyrsistent-0.20.0-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pysocks-1.7.1-26.fc42.noarch.rpm + repoid: fedora + size: 40372 + checksum: sha256:1b7088916a7f9423e2850c8b7baee871817491a7d97fa82910e8c0de951c7f7e + name: python3-pysocks + evr: 1.7.1-26.fc42 + sourcerpm: python-pysocks-1.7.1-26.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pytest-8.3.4-2.fc42.noarch.rpm + repoid: fedora + size: 2254819 + checksum: sha256:c96ad319146db79b5d5ff177e5b6677e91c2970a303996ac9fe8b9767cd50314 + name: python3-pytest + evr: 8.3.4-2.fc42 + sourcerpm: pytest-8.3.4-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pytest-cov-5.0.0-2.fc42.noarch.rpm + repoid: fedora + size: 55139 + checksum: sha256:6ed2f2671aa0d00b425a7d7a758f39e0c53ddf054c6b7cd84c0efcea9a670000 + name: python3-pytest-cov + evr: 5.0.0-2.fc42 + sourcerpm: python-pytest-cov-5.0.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pyudev-0.24.3-4.fc42.noarch.rpm + repoid: fedora + size: 99088 + checksum: sha256:3e74f7806e041863365cf592d5bd265ae8674be145ad4ba8bc0f3fb93b898e8e + name: python3-pyudev + evr: 0.24.3-4.fc42 + sourcerpm: python-pyudev-0.24.3-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-pyyaml-6.0.2-2.fc42.x86_64.rpm + repoid: fedora + size: 235953 + checksum: sha256:46ba5ec88d4f95833b4cd6b3bb2b6cbfd666a3f1de06b2bf076a745c936e2267 + name: python3-pyyaml + evr: 6.0.2-2.fc42 + sourcerpm: PyYAML-6.0.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-referencing-0.36.2-1.fc42.noarch.rpm + repoid: fedora + size: 87431 + checksum: sha256:63e8a23f338076b195ff4db2d9541ad25e972617016f064f27019699774502d8 + name: python3-referencing + evr: 0.36.2-1.fc42 + sourcerpm: python-referencing-0.36.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-requests-2.32.3-4.fc42.noarch.rpm + repoid: fedora + size: 163384 + checksum: sha256:807b12375091a925b0c0533d5b494e157ea87582d7cc317d8129bf5f848cf2a0 + name: python3-requests + evr: 2.32.3-4.fc42 + sourcerpm: python-requests-2.32.3-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-requests-gssapi-1.2.3-14.fc42.noarch.rpm + repoid: fedora + size: 28824 + checksum: sha256:19c1978d3827b33116c0c5e82c554f72d270dba4963d8b777c1e8913caba224b + name: python3-requests-gssapi + evr: 1.2.3-14.fc42 + sourcerpm: python-requests-gssapi-1.2.3-14.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-requests-toolbelt-1.0.0-9.fc42.noarch.rpm + repoid: fedora + size: 120377 + checksum: sha256:2bfadc34aa4b7d8054d19fcf3b0ce6a41354670a179192eb705b8c49ae54ae03 + name: python3-requests-toolbelt + evr: 1.0.0-9.fc42 + sourcerpm: python-requests-toolbelt-1.0.0-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-resultsdb_api-2.1.5-15.fc42.noarch.rpm + repoid: fedora + size: 25111 + checksum: sha256:e5b311ece067fdf74aea7a456b8c0768b5a016ec5c13218af13e6cf571edd02a + name: python3-resultsdb_api + evr: 2.1.5-15.fc42 + sourcerpm: python-resultsdb_api-2.1.5-15.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-resultsdb_conventions-3.0.2-7.fc42.noarch.rpm + repoid: fedora + size: 34330 + checksum: sha256:296ff0835c5ee93d70e2723d604d19a83dd41ac623b3aa925e70a42d0f0b4eba + name: python3-resultsdb_conventions + evr: 3.0.2-7.fc42 + sourcerpm: resultsdb_conventions-3.0.2-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-resultsdb_conventions-fedora-3.0.2-7.fc42.noarch.rpm + repoid: fedora + size: 15908 + checksum: sha256:97b096ad66e28c4b82f0b7415bff3039fb3a4721f8c7569d7269008f3c3cedb8 + name: python3-resultsdb_conventions-fedora + evr: 3.0.2-7.fc42 + sourcerpm: resultsdb_conventions-3.0.2-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-rich-13.9.4-2.fc42.noarch.rpm + repoid: fedora + size: 607564 + checksum: sha256:720437fe7ef5f0e3b2932e38d4cb97668e33947a432659b705516b7e36b8ee54 + name: python3-rich + evr: 13.9.4-2.fc42 + sourcerpm: python-rich-13.9.4-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-rpm-4.20.1-1.fc42.x86_64.rpm + repoid: fedora + size: 70990 + checksum: sha256:9e79f03d3454f03886d5c0584d73c38924d3f6b318178d51ae0cc1e75da0d2bc + name: python3-rpm + evr: 4.20.1-1.fc42 + sourcerpm: rpm-4.20.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-rtslib-2.1.76-10.fc42.noarch.rpm + repoid: fedora + size: 127962 + checksum: sha256:efbc84572fb9ef60fb2313677f3a4aad9c603b82fec426f9df9c94456440762e + name: python3-rtslib + evr: 2.1.76-10.fc42 + sourcerpm: python-rtslib-2.1.76-10.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-ruamel-yaml-clib-0.2.12-4.fc42.x86_64.rpm + repoid: fedora + size: 106801 + checksum: sha256:4b4eb75832803464731d4c8dfbaf58865ba2b861ba158acea50113f1fdf3cc0e + name: python3-ruamel-yaml-clib + evr: 0.2.12-4.fc42 + sourcerpm: python-ruamel-yaml-clib-0.2.12-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-service-identity-24.2.0-2.fc42.noarch.rpm + repoid: fedora + size: 31028 + checksum: sha256:3062ea9e5b6fd61041f5159c02a4776f330eb3c1993d84552e7209896daf6328 + name: python3-service-identity + evr: 24.2.0-2.fc42 + sourcerpm: python-service-identity-24.2.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-shellingham-1.5.4-9.fc42.noarch.rpm + repoid: fedora + size: 34720 + checksum: sha256:d2763575e7e864c1ed9e87b80c534cbd832fc587dded511723e35e4e27d97fe3 + name: python3-shellingham + evr: 1.5.4-9.fc42 + sourcerpm: python-shellingham-1.5.4-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-simplejson-3.19.3-2.fc42.x86_64.rpm + repoid: fedora + size: 167591 + checksum: sha256:4b806b0129faf8a98f3bb5d1ccae322fb650ae61389184a1e09cd89c83ad1fd7 + name: python3-simplejson + evr: 3.19.3-2.fc42 + sourcerpm: python-simplejson-3.19.3-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-six-1.17.0-2.fc42.noarch.rpm + repoid: fedora + size: 42288 + checksum: sha256:5ba70c41940c06f1d5533eb7a348ac855a58f0885f05d7126f61595b5b111d2d + name: python3-six + evr: 1.17.0-2.fc42 + sourcerpm: python-six-1.17.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-systemd-235-13.fc42.x86_64.rpm + repoid: fedora + size: 108988 + checksum: sha256:c319d4b1af2ce3a69c2056f090ec878e3b433764ad13fcf99e0e6b499a9e28dc + name: python3-systemd + evr: 235-13.fc42 + sourcerpm: python-systemd-235-13.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-tenacity-8.2.3-6.fc42.noarch.rpm + repoid: fedora + size: 64003 + checksum: sha256:5c79bc66a9a78e36c17dea7a8c52ca138a5a9fd59356150e25380172f3d1234d + name: python3-tenacity + evr: 8.2.3-6.fc42 + sourcerpm: python-tenacity-8.2.3-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-tomli-2.2.1-2.fc42.noarch.rpm + repoid: fedora + size: 39153 + checksum: sha256:71a4447fd64a7411353662577c794ce10c42e89494eedd3fafaec671b39341c6 + name: python3-tomli + evr: 2.2.1-2.fc42 + sourcerpm: python-tomli-2.2.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-tomlkit-0.13.2-2.fc42.noarch.rpm + repoid: fedora + size: 123395 + checksum: sha256:5d6e5ee88cbc8d8a33c26583664a19392be713c4961be19adc95fd5b8e5dd7c6 + name: python3-tomlkit + evr: 0.13.2-2.fc42 + sourcerpm: python-tomlkit-0.13.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-typing-extensions-4.12.2-4.fc42.noarch.rpm + repoid: fedora + size: 95606 + checksum: sha256:d6729c628b55ff231089c1503c97a8ce218f83ac836db5d3c7772feb18353d3e + name: python3-typing-extensions + evr: 4.12.2-4.fc42 + sourcerpm: python-typing-extensions-4.12.2-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-urllib3+socks-2.3.0-2.fc42.noarch.rpm + repoid: fedora + size: 11653 + checksum: sha256:113585d47f6c50c49345db6ca02ed6da1b2cd3296021b1b65addc126ccacf698 + name: python3-urllib3+socks + evr: 2.3.0-2.fc42 + sourcerpm: python-urllib3-2.3.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-urllib3-2.3.0-2.fc42.noarch.rpm + repoid: fedora + size: 290115 + checksum: sha256:53695b100e3874272a95809af4e8b354156a8285dce63486ee9ea32b5e43d80e + name: python3-urllib3 + evr: 2.3.0-2.fc42 + sourcerpm: python-urllib3-2.3.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-urwid-2.6.16-2.fc42.noarch.rpm + repoid: fedora + size: 1093555 + checksum: sha256:f2da49cf18fe6c21846095102533b8ed657cd3f91c19d7fae229185c87169e63 + name: python3-urwid + evr: 2.6.16-2.fc42 + sourcerpm: python-urwid-2.6.16-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-wcwidth-0.2.13-6.fc42.noarch.rpm + repoid: fedora + size: 53688 + checksum: sha256:da3f62c4c60f7ecf93afac5db7d979d50bfbac47fd4340a0c837d0b5413c3ec3 + name: python3-wcwidth + evr: 0.2.13-6.fc42 + sourcerpm: python-wcwidth-0.2.13-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-wrapt-1.17.1-2.fc42.x86_64.rpm + repoid: fedora + size: 76433 + checksum: sha256:b4d0844ac7f8465faf323bc8adac77873f54c5f04b0ce2941bfefd865c6a8497 + name: python3-wrapt + evr: 1.17.1-2.fc42 + sourcerpm: python-wrapt-1.17.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-zombie-imp-0.0.2-8.fc42.noarch.rpm + repoid: fedora + size: 30292 + checksum: sha256:58de48b911547ea70471058f72b350b0ab00b10b11fa3b2a2c68ab3f6c3feb65 + name: python3-zombie-imp + evr: 0.0.2-8.fc42 + sourcerpm: python-zombie-imp-0.0.2-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/p/python3-zope-interface-7.2-2.fc42.x86_64.rpm + repoid: fedora + size: 214652 + checksum: sha256:386758e4e2ab5adc6550e55da4f1cf65eea5784b06aa35a2c4c83c56db2f5b3f + name: python3-zope-interface + evr: 7.2-2.fc42 + sourcerpm: python-zope-interface-7.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/q/qatlib-24.09.0-6.fc42.x86_64.rpm + repoid: fedora + size: 232050 + checksum: sha256:e94fd7172632f545cc5d8910c024de7a5ece951c210598228e3a06a9bc7de820 + name: qatlib + evr: 24.09.0-6.fc42 + sourcerpm: qatlib-24.09.0-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/q/qatlib-service-24.09.0-6.fc42.x86_64.rpm + repoid: fedora + size: 38678 + checksum: sha256:5cf90f6fb7dc86ec6345856205c2b92699414dbae07617db8301e84fcc93471a + name: qatlib-service + evr: 24.09.0-6.fc42 + sourcerpm: qatlib-24.09.0-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/q/qrencode-libs-4.1.1-10.fc42.x86_64.rpm + repoid: fedora + size: 63962 + checksum: sha256:fe2bf6f6efb35874a17b7c234dc075b0075db674dab3618592d8770f439dd8c7 + name: qrencode-libs + evr: 4.1.1-10.fc42 + sourcerpm: qrencode-4.1.1-10.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/q/quota-4.09-8.fc42.x86_64.rpm + repoid: fedora + size: 191816 + checksum: sha256:b7e3c35876e23806cd24e75c5a68b9640f7544ac60709edd589c7914ce3201d2 + name: quota + evr: 1:4.09-8.fc42 + sourcerpm: quota-4.09-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/q/quota-nls-4.09-8.fc42.noarch.rpm + repoid: fedora + size: 78376 + checksum: sha256:1ef30fa6518d35a9fe1059e718dfb7718986d65abe9ac2eb17ce4947ef438cc8 + name: quota-nls + evr: 1:4.09-8.fc42 + sourcerpm: quota-4.09-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/r/rav1e-libs-0.7.1-5.fc42.x86_64.rpm + repoid: fedora + size: 1076279 + checksum: sha256:2f69b25902977423eba71c1eb08ba2b62f58c8c7f0f1b1e358efd14e9a54abfe + name: rav1e-libs + evr: 0.7.1-5.fc42 + sourcerpm: rust-rav1e-0.7.1-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/r/rpm-build-4.20.1-1.fc42.x86_64.rpm + repoid: fedora + size: 83776 + checksum: sha256:d40e048d89448b540666abae36cbe45a3c85def211f0b0283e528d0953b75efc + name: rpm-build + evr: 4.20.1-1.fc42 + sourcerpm: rpm-4.20.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/r/rpm-plugin-selinux-4.20.1-1.fc42.x86_64.rpm + repoid: fedora + size: 20849 + checksum: sha256:e6c1d2e63f3d3cc4994fca2a9d1fec2504c7f6c1b842ac047138f5a6f35e49d3 + name: rpm-plugin-selinux + evr: 4.20.1-1.fc42 + sourcerpm: rpm-4.20.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/r/rpm-plugin-systemd-inhibit-4.20.1-1.fc42.x86_64.rpm + repoid: fedora + size: 20808 + checksum: sha256:589b0461153833f3b954df2b3c7f0579757bd4b677a6e4e6a2a4fa523b0745ef + name: rpm-plugin-systemd-inhibit + evr: 4.20.1-1.fc42 + sourcerpm: rpm-4.20.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/r/rpm-sign-libs-4.20.1-1.fc42.x86_64.rpm + repoid: fedora + size: 27594 + checksum: sha256:d8778cf4eb6cf504138143da40e92cb5d9e67ba03288b38d3e6fa5bd9f5bbffd + name: rpm-sign-libs + evr: 4.20.1-1.fc42 + sourcerpm: rpm-4.20.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/r/rsvg-pixbuf-loader-2.60.0-1.fc42.x86_64.rpm + repoid: fedora + size: 171791 + checksum: sha256:c34883d029d6fddeb26c7c92d08a18c5f833e39fe9727f16a594117d27896c4d + name: rsvg-pixbuf-loader + evr: 2.60.0-1.fc42 + sourcerpm: librsvg2-2.60.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/r/rsync-3.4.1-3.fc42.x86_64.rpm + repoid: fedora + size: 436037 + checksum: sha256:dbec3d7f9872595bc81f5f2741031a1ccca417df9fdde7fa1b08439a1ddae57c + name: rsync + evr: 3.4.1-3.fc42 + sourcerpm: rsync-3.4.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/r/rtkit-0.11-66.fc42.x86_64.rpm + repoid: fedora + size: 56468 + checksum: sha256:6fade77239abd0a91de050ea3e9bd041522170a44c640b1d0b9dabd12076b312 + name: rtkit + evr: 0.11-66.fc42 + sourcerpm: rtkit-0.11-66.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/r/rust-srpm-macros-26.3-4.fc42.noarch.rpm + repoid: fedora + size: 11986 + checksum: sha256:e0d13178bf0c82376179abf03c7195068d79522c052fc2e51f85c0be2cb01fdf + name: rust-srpm-macros + evr: 26.3-4.fc42 + sourcerpm: rust-packaging-26.3-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/r/rutabaga-gfx-ffi-0.1.3-3.fc42.x86_64.rpm + repoid: fedora + size: 273526 + checksum: sha256:025980cc318bb8245468521b814d56cfdbc45b4cd40db50a02b4b0f797ea28ee + name: rutabaga-gfx-ffi + evr: 0.1.3-3.fc42 + sourcerpm: rutabaga-gfx-ffi-0.1.3-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/SDL2_image-2.8.8-1.fc42.x86_64.rpm + repoid: fedora + size: 111313 + checksum: sha256:6c01f88a9db454c2a2100a370038854c4e43a6c58b9ce557224de12e14e58c07 + name: SDL2_image + evr: 2.8.8-1.fc42 + sourcerpm: SDL2_image-2.8.8-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/SLOF-20220719-6.git6b6c16b4.fc42.noarch.rpm + repoid: fedora + size: 225701 + checksum: sha256:88cf5d1474d10eeb4e44924b94406917b0e9cc0eea882576273469bf4196411c + name: SLOF + evr: 20220719-6.git6b6c16b4.fc42 + sourcerpm: SLOF-20220719-6.git6b6c16b4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/ShellCheck-0.10.0-4.fc42.x86_64.rpm + repoid: fedora + size: 3206747 + checksum: sha256:d3b5e12255e6310ce078cfc055b4f4abaa27cac803b5586d08c9685631fb9631 + name: ShellCheck + evr: 0.10.0-4.fc42 + sourcerpm: ShellCheck-0.10.0-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/scrub-2.6.1-10.fc42.x86_64.rpm + repoid: fedora + size: 44615 + checksum: sha256:a8c6d32be88bd17b2f5a1d43fdaf4df479abd52cf7be113f1e66a7c256ff25ed + name: scrub + evr: 2.6.1-10.fc42 + sourcerpm: scrub-2.6.1-10.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/shadow-utils-subid-4.17.4-1.fc42.x86_64.rpm + repoid: fedora + size: 29890 + checksum: sha256:c6c83b2e69fd7f978071b3557e31b53719168e16d241daa202b0ebc0fec3d498 + name: shadow-utils-subid + evr: 2:4.17.4-1.fc42 + sourcerpm: shadow-utils-4.17.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/shared-mime-info-2.3-7.fc42.x86_64.rpm + repoid: fedora + size: 403180 + checksum: sha256:793eba17fceb53852446942459e9d1275f099b1f84e0e9e119262209075c73d4 + name: shared-mime-info + evr: 2.3-7.fc42 + sourcerpm: shared-mime-info-2.3-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/shim-x64-15.8-3.x86_64.rpm + repoid: fedora + size: 478432 + checksum: sha256:9a77838d29dd75781143ab7d08e3f94852516a40fd7a19f9ff60d85b9b0bc561 + name: shim-x64 + evr: 15.8-3 + sourcerpm: shim-15.8-3.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/snappy-1.2.1-4.fc42.x86_64.rpm + repoid: fedora + size: 40831 + checksum: sha256:f3cd5b40756bf770eb27c5b55d773037a1d5fb5b266ffefb43ea9ed3d6d87717 + name: snappy + evr: 1.2.1-4.fc42 + sourcerpm: snappy-1.2.1-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/sound-theme-freedesktop-0.8-23.fc42.noarch.rpm + repoid: fedora + size: 391580 + checksum: sha256:83f730ce8106b2402409895a7dd9532c9165fb8a1c096d83d30b6b27a69c98f1 + name: sound-theme-freedesktop + evr: 0.8-23.fc42 + sourcerpm: sound-theme-freedesktop-0.8-23.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/soxr-0.1.3-18.fc42.x86_64.rpm + repoid: fedora + size: 88859 + checksum: sha256:5fd34d5891bb7134df967db184608fb67b9ef24a6212a691152774300213bd85 + name: soxr + evr: 0.1.3-18.fc42 + sourcerpm: soxr-0.1.3-18.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/speex-1.2.0-19.fc42.x86_64.rpm + repoid: fedora + size: 72449 + checksum: sha256:4bb0b2990229e5fb5551508bf78b158f4e685b4eb92f786986985662238b367a + name: speex + evr: 1.2.0-19.fc42 + sourcerpm: speex-1.2.0-19.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/spice-server-0.15.1-8.fc42.x86_64.rpm + repoid: fedora + size: 399321 + checksum: sha256:8cb881c0048dcf0d1b234d60210ff4e0a1562897a7d3b3bedc15821b43b74f97 + name: spice-server + evr: 0.15.1-8.fc42 + sourcerpm: spice-0.15.1-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/squashfs-tools-4.6.1-6.fc42.x86_64.rpm + repoid: fedora + size: 250131 + checksum: sha256:2597ed31cecea593305d0e2f9bb5788b05d2179cc20d9e8bdcbaef3faf991231 + name: squashfs-tools + evr: 4.6.1-6.fc42 + sourcerpm: squashfs-tools-4.6.1-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/srt-libs-1.5.4-2.fc42.x86_64.rpm + repoid: fedora + size: 398908 + checksum: sha256:ef2daf7e43f8528877ed37ead9bcb4395f8f0ca64f84c93334db962d20a05d7d + name: srt-libs + evr: 1.5.4-2.fc42 + sourcerpm: srt-1.5.4-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/strace-6.14-1.fc42.x86_64.rpm + repoid: fedora + size: 1511739 + checksum: sha256:9f4443f0bedba4fbbd15cd76421298068dbe863ea4abf1ef7c1aa334f515018e + name: strace + evr: 6.14-1.fc42 + sourcerpm: strace-6.14-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/subversion-1.14.5-14.fc42.x86_64.rpm + repoid: fedora + size: 1048059 + checksum: sha256:010f32ce450fb770285aee70f7c23f4e8931655e97c2ed1731b75ba25a36db30 + name: subversion + evr: 1.14.5-14.fc42 + sourcerpm: subversion-1.14.5-14.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/subversion-libs-1.14.5-14.fc42.x86_64.rpm + repoid: fedora + size: 1571566 + checksum: sha256:a6dcbb77104cad6a45928fa90cbbbc4001b1e6f65289c515d72417868b70f7bb + name: subversion-libs + evr: 1.14.5-14.fc42 + sourcerpm: subversion-1.14.5-14.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/supermin-5.3.5-4.fc42.x86_64.rpm + repoid: fedora + size: 719177 + checksum: sha256:a45c88e75b1e2ab11f2cd72db5545804973926ab2270c6730f8cb315e6321ad1 + name: supermin + evr: 5.3.5-4.fc42 + sourcerpm: supermin-5.3.5-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/s/svt-av1-libs-2.3.0-1.fc42.x86_64.rpm + repoid: fedora + size: 2117462 + checksum: sha256:f116489be6bb01e56b47fc49c072d7d7e2444c12ee08e0bd2d7b56b348f7223a + name: svt-av1-libs + evr: 2.3.0-1.fc42 + sourcerpm: svt-av1-2.3.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/t/tang-15-7.fc42.x86_64.rpm + repoid: fedora + size: 47731 + checksum: sha256:6747fb6bb229fe73a31cb50a7592e92bb24cd130e19bc15c2801baaa6123f255 + name: tang + evr: 15-7.fc42 + sourcerpm: tang-15-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/t/target-restore-2.1.76-10.fc42.noarch.rpm + repoid: fedora + size: 14836 + checksum: sha256:1eb4e467079d3f1512d79ee720a52082edf842ff14c9c4f628f0c7edf1ad13c2 + name: target-restore + evr: 2.1.76-10.fc42 + sourcerpm: python-rtslib-2.1.76-10.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/t/targetcli-2.1.58-4.fc42.noarch.rpm + repoid: fedora + size: 94239 + checksum: sha256:bb818d6961e8a9d9081dd2632621e1385ec0b96449a8b50f7243cb7cc7bb768a + name: targetcli + evr: 2.1.58-4.fc42 + sourcerpm: targetcli-2.1.58-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/t/thrift-0.20.0-3.fc41.x86_64.rpm + repoid: fedora + size: 1737438 + checksum: sha256:4a462f4c743b6b005d0bea7e43ce40fcbb87d3440c7401d7bd6ec6579beb4534 + name: thrift + evr: 0.20.0-3.fc41 + sourcerpm: thrift-0.20.0-3.fc41.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/t/time-1.9-26.fc42.x86_64.rpm + repoid: fedora + size: 47899 + checksum: sha256:b2b2158e171c82818d85ff3ea456732cd1c5f468e2ee1c5d7e40edaa1d22f140 + name: time + evr: 1.9-26.fc42 + sourcerpm: time-1.9-26.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/t/tmux-3.5a-4.fc42.x86_64.rpm + repoid: fedora + size: 546741 + checksum: sha256:20b1ec2f01011c222d4e8697ffa0595bb2dd59567e8fb4bf8ae33e20d625a4ef + name: tmux + evr: 3.5a-4.fc42 + sourcerpm: tmux-3.5a-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/t/totem-pl-parser-3.26.6-12.fc42.x86_64.rpm + repoid: fedora + size: 147015 + checksum: sha256:aef496e0662c35fb35087559218b2cb9085591d732f259e6e2e21436d174b439 + name: totem-pl-parser + evr: 3.26.6-12.fc42 + sourcerpm: totem-pl-parser-3.26.6-12.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/t/tpm2-tools-5.7-3.fc42.x86_64.rpm + repoid: fedora + size: 832300 + checksum: sha256:d7d323df8ed99f4f28435e4df2f1c8ef9ff1a15e45ed0bced1cea5fa35e3c745 + name: tpm2-tools + evr: 5.7-3.fc42 + sourcerpm: tpm2-tools-5.7-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/t/tpm2-tss-4.1.3-6.fc42.x86_64.rpm + repoid: fedora + size: 435613 + checksum: sha256:b3bd5a19bb63228a9e2305270d3d56fed10b8ae30d85e1d0ed1f0a31c5c4922e + name: tpm2-tss + evr: 4.1.3-6.fc42 + sourcerpm: tpm2-tss-4.1.3-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/t/tpm2-tss-fapi-4.1.3-6.fc42.x86_64.rpm + repoid: fedora + size: 346826 + checksum: sha256:c64a9397d65428fa436f322acde2eb2a2b1da2182c5498f7269026a43401825c + name: tpm2-tss-fapi + evr: 4.1.3-6.fc42 + sourcerpm: tpm2-tss-4.1.3-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/t/tree-sitter-srpm-macros-0.1.0-8.fc42.noarch.rpm + repoid: fedora + size: 11501 + checksum: sha256:62129ae7920c8019de0648e0a680daf0b98b0af321d2e85380666b8e41260ce8 + name: tree-sitter-srpm-macros + evr: 0.1.0-8.fc42 + sourcerpm: tree-sitter-srpm-macros-0.1.0-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/t/twolame-libs-0.4.0-6.fc42.x86_64.rpm + repoid: fedora + size: 70373 + checksum: sha256:e12ee4e3edaaffec4d39c41cf49df3bff5590b3ec4467157a0869c84e3bc19c4 + name: twolame-libs + evr: 0.4.0-6.fc42 + sourcerpm: twolame-0.4.0-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/u/uchardet-0.0.8-7.fc42.x86_64.rpm + repoid: fedora + size: 108866 + checksum: sha256:c076362a0af023356c22112fc2c28b37bd5584d68a63d2e647b400d03d9100ed + name: uchardet + evr: 0.0.8-7.fc42 + sourcerpm: uchardet-0.0.8-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/u/unzip-6.0-66.fc42.x86_64.rpm + repoid: fedora + size: 189050 + checksum: sha256:d17252605b75b281ab05ec84f247a943d4994159e8626c102da2e020ff079bb1 + name: unzip + evr: 6.0-66.fc42 + sourcerpm: unzip-6.0-66.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/u/usbmuxd-1.1.1^20240915git0b1b233-4.fc42.x86_64.rpm + repoid: fedora + size: 68814 + checksum: sha256:ea32cd2b24359f47c278f3a9ca8e752f8da72596a3fda5fe9712858f0f1a2cf1 + name: usbmuxd + evr: 1.1.1^20240915git0b1b233-4.fc42 + sourcerpm: usbmuxd-1.1.1^20240915git0b1b233-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/u/usbredir-0.15.0-1.fc42.x86_64.rpm + repoid: fedora + size: 51489 + checksum: sha256:5685a5857cba8945172ba893abc8d1bc3dc6c4d61bb0937ef9b6d4337cee5fee + name: usbredir + evr: 0.15.0-1.fc42 + sourcerpm: usbredir-0.15.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/u/userspace-rcu-0.15.0-1.fc42.x86_64.rpm + repoid: fedora + size: 97855 + checksum: sha256:2429c4b36ad640d13c02202fc6199837225fe14a2cbc9c3e0add672579b37079 + name: userspace-rcu + evr: 0.15.0-1.fc42 + sourcerpm: userspace-rcu-0.15.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/u/utf8proc-2.10.0-1.fc42.x86_64.rpm + repoid: fedora + size: 83724 + checksum: sha256:29f0bd6496ff0528e1878861cc6637a688f10b282dcf8f439002aa13f1c55a1c + name: utf8proc + evr: 2.10.0-1.fc42 + sourcerpm: utf8proc-2.10.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/u/util-linux-2.40.4-7.fc42.x86_64.rpm + repoid: fedora + size: 1210657 + checksum: sha256:f10a4e00e6c142fd3d4159f286f7f5e0919fa3c09d459300420e2534c5da9fcf + name: util-linux + evr: 2.40.4-7.fc42 + sourcerpm: util-linux-2.40.4-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/v/virglrenderer-1.1.0-2.fc42.x86_64.rpm + repoid: fedora + size: 403096 + checksum: sha256:da1f5ed817d2443727855bb8ec36328159282f9a36509d83dfef42443ecf2492 + name: virglrenderer + evr: 1.1.0-2.fc42 + sourcerpm: virglrenderer-1.1.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/v/vo-amrwbenc-0.1.3-22.fc42.x86_64.rpm + repoid: fedora + size: 84796 + checksum: sha256:c0972a4767dba322ab5d852a338b17cbfee8bf64a0561fad5a4a359e49761764 + name: vo-amrwbenc + evr: 0.1.3-22.fc42 + sourcerpm: vo-amrwbenc-0.1.3-22.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/w/webp-pixbuf-loader-0.2.7-3.fc42.x86_64.rpm + repoid: fedora + size: 20270 + checksum: sha256:8fb606a4880111929e1657545f7e153cdc4417be91ab03e6efcff21b374d82a0 + name: webp-pixbuf-loader + evr: 0.2.7-3.fc42 + sourcerpm: webp-pixbuf-loader-0.2.7-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/w/webrtc-audio-processing-1.3-5.fc42.x86_64.rpm + repoid: fedora + size: 550314 + checksum: sha256:30889ba0603d755cf2f60b7e6103e50113611cd6aba1e066c4ee459ce0e135a3 + name: webrtc-audio-processing + evr: 1.3-5.fc42 + sourcerpm: webrtc-audio-processing-1.3-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/w/wireplumber-0.5.8-1.fc42.x86_64.rpm + repoid: fedora + size: 113958 + checksum: sha256:afe6c1fe05933f6624a7ee33e7ba2d1811e008963750949eb22b7cecd87060c2 + name: wireplumber + evr: 0.5.8-1.fc42 + sourcerpm: wireplumber-0.5.8-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/w/wireplumber-libs-0.5.8-1.fc42.x86_64.rpm + repoid: fedora + size: 399972 + checksum: sha256:60304ec13cf44efd72a813ec397c56a04c46dac6ff16b04c0f0ce284bfb7b50f + name: wireplumber-libs + evr: 0.5.8-1.fc42 + sourcerpm: wireplumber-0.5.8-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/x/xdg-desktop-portal-gtk-1.15.3-1.fc42.x86_64.rpm + repoid: fedora + size: 147252 + checksum: sha256:d9263bc6772b15aeb994ab7dd25f344ad7d17e4fd5eb9d347fd5c06178487f25 + name: xdg-desktop-portal-gtk + evr: 1.15.3-1.fc42 + sourcerpm: xdg-desktop-portal-gtk-1.15.3-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/x/xfsprogs-6.12.0-3.fc42.x86_64.rpm + repoid: fedora + size: 1232758 + checksum: sha256:a2e9bdc36b3b2c0483aadfbe7352c4cf4a63fdaefd55f6781426127b20b214ad + name: xfsprogs + evr: 6.12.0-3.fc42 + sourcerpm: xfsprogs-6.12.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/x/xkeyboard-config-2.44-1.fc42.noarch.rpm + repoid: fedora + size: 1001955 + checksum: sha256:cefc65793ce0009ae7c99d9eeda8624b805e88b03c133d74fafffebeeb5e9cf5 + name: xkeyboard-config + evr: 2.44-1.fc42 + sourcerpm: xkeyboard-config-2.44-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/x/xml-common-0.6.3-66.fc42.noarch.rpm + repoid: fedora + size: 31949 + checksum: sha256:5ebd96284c4ad4c7d86983d26b3aee619914f941d649abe21c82b3b9c15cd979 + name: xml-common + evr: 0.6.3-66.fc42 + sourcerpm: sgml-common-0.6.3-66.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/x/xprop-1.2.8-3.fc42.x86_64.rpm + repoid: fedora + size: 35835 + checksum: sha256:f2b5e3bde76e2e99d58d7875f8557f4e63f529dfbaeaf63a3a370dda950f7979 + name: xprop + evr: 1.2.8-3.fc42 + sourcerpm: xprop-1.2.8-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/x/xvidcore-1.3.7-13.fc42.x86_64.rpm + repoid: fedora + size: 273835 + checksum: sha256:9ad700d44ebe09de8c40d4a542f6275bc1171cbf67522c77fd7715bc6cd7ac18 + name: xvidcore + evr: 1.3.7-13.fc42 + sourcerpm: xvidcore-1.3.7-13.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/x/xxhash-libs-0.8.3-2.fc42.x86_64.rpm + repoid: fedora + size: 40004 + checksum: sha256:f19b537506c318a3f96728936c9f9a5fa6f6b00d2c8dc646e85b0a0d0fb220d8 + name: xxhash-libs + evr: 0.8.3-2.fc42 + sourcerpm: xxhash-0.8.3-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/y/yajl-2.1.0-25.fc42.x86_64.rpm + repoid: fedora + size: 39368 + checksum: sha256:089d6ad69c755dab3e4b39917444fc882e2a44ebdb95b660bbcfaf9a825cf87b + name: yajl + evr: 2.1.0-25.fc42 + sourcerpm: yajl-2.1.0-25.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/z/zerofree-1.1.1-15.fc42.x86_64.rpm + repoid: fedora + size: 28380 + checksum: sha256:d25c10af2d07b07578ed5cd214dcdf82c8ba01b37353446311e09c0ca932e86a + name: zerofree + evr: 1.1.1-15.fc42 + sourcerpm: zerofree-1.1.1-15.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/z/zeromq-4.3.5-21.fc42.x86_64.rpm + repoid: fedora + size: 480146 + checksum: sha256:82ff355c960cb6aeb6014e320aa74004d0283e8c8a7429b58988b7cfa7748e7c + name: zeromq + evr: 4.3.5-21.fc42 + sourcerpm: zeromq-4.3.5-21.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/z/zig-srpm-macros-1-4.fc42.noarch.rpm + repoid: fedora + size: 8442 + checksum: sha256:71cc13471bbab71396c83f07ded027f45e701f6a3cacf5997ccb40588a0a479f + name: zig-srpm-macros + evr: 1-4.fc42 + sourcerpm: zig-srpm-macros-1-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/z/zip-3.0-43.fc42.x86_64.rpm + repoid: fedora + size: 269814 + checksum: sha256:63c749f543f62cf3159d5c75a3d128a991adec55c68a93e2e359f07abb288268 + name: zip + evr: 3.0-43.fc42 + sourcerpm: zip-3.0-43.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/z/zlib-ng-2.2.4-3.fc42.x86_64.rpm + repoid: fedora + size: 87708 + checksum: sha256:495eb39f7f229ad5b81e745e15c1206946ae4f0395b3568f027b48f755690713 + name: zlib-ng + evr: 2.2.4-3.fc42 + sourcerpm: zlib-ng-2.2.4-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os/Packages/z/zvbi-0.2.43-2.fc42.x86_64.rpm + repoid: fedora + size: 443675 + checksum: sha256:88fc145259b3c83c51cb4cbf19285af5442b1eaa7a29bb9acb89fddc81140b37 + name: zvbi + evr: 0.2.43-2.fc42 + sourcerpm: zvbi-0.2.43-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/a/aardvark-dns-1.15.0-1.fc42.x86_64.rpm + repoid: updates + size: 898723 + checksum: sha256:bcac10f597a13fc7c46a7a51146925870f49a75dca0cf74fc553da8c885c32da + name: aardvark-dns + evr: 2:1.15.0-1.fc42 + sourcerpm: aardvark-dns-1.15.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/a/alsa-lib-1.2.14-2.fc42.x86_64.rpm + repoid: updates + size: 545226 + checksum: sha256:7c82fee453b062efa076d6e5f19560bd2aa618058a3414d12534b37c0853ae93 + name: alsa-lib + evr: 1.2.14-2.fc42 + sourcerpm: alsa-lib-1.2.14-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/a/amd-gpu-firmware-20250613-1.fc42.noarch.rpm + repoid: updates + size: 26077937 + checksum: sha256:75075196f02745fd2c71f058802002980698b5b3d97a763518a84cc9f70a27a2 + name: amd-gpu-firmware + evr: 20250613-1.fc42 + sourcerpm: linux-firmware-20250613-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/a/amd-ucode-firmware-20250613-1.fc42.noarch.rpm + repoid: updates + size: 369390 + checksum: sha256:494c028c453f17ba12bc16525eec7db57bb24d3157baa9d597fe1051638ed776 + name: amd-ucode-firmware + evr: 20250613-1.fc42 + sourcerpm: linux-firmware-20250613-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/a/annobin-docs-12.94-1.fc42.noarch.rpm + repoid: updates + size: 92597 + checksum: sha256:d5783bbc8054c08e030e0dad58d5f0d2369be7a4672da7e805d9b70891226ce8 + name: annobin-docs + evr: 12.94-1.fc42 + sourcerpm: annobin-12.94-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/a/annobin-plugin-gcc-12.94-1.fc42.x86_64.rpm + repoid: updates + size: 1005497 + checksum: sha256:043bc4d5f43c374f0e7a9c4c976fe92df6957c67367ce0fe3783bfcc05d7b8cd + name: annobin-plugin-gcc + evr: 12.94-1.fc42 + sourcerpm: annobin-12.94-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/a/at-spi2-atk-2.56.2-1.fc42.x86_64.rpm + repoid: updates + size: 88558 + checksum: sha256:8762abce2549dec16067200129aa9ee946a89b7d2a48ff89369fd4395432983b + name: at-spi2-atk + evr: 2.56.2-1.fc42 + sourcerpm: at-spi2-core-2.56.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/a/at-spi2-core-2.56.2-1.fc42.x86_64.rpm + repoid: updates + size: 391377 + checksum: sha256:cb9a8ee35617e00c02a8880604c89adb864fcb2b3cfd326e0a73f933b2a109b7 + name: at-spi2-core + evr: 2.56.2-1.fc42 + sourcerpm: at-spi2-core-2.56.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/a/atheros-firmware-20250613-1.fc42.noarch.rpm + repoid: updates + size: 38515048 + checksum: sha256:24ecd3275e797524a7bebeff55f3e8842d9afb6c707d1ce5d1ec1f0732b7adff + name: atheros-firmware + evr: 20250613-1.fc42 + sourcerpm: linux-firmware-20250613-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/a/atk-2.56.2-1.fc42.x86_64.rpm + repoid: updates + size: 82091 + checksum: sha256:a02c5105129f2709c0d259a9e2527d4b30d1976454db2227b834ca142b2baaf0 + name: atk + evr: 2.56.2-1.fc42 + sourcerpm: at-spi2-core-2.56.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/b/bluez-libs-5.83-1.fc42.x86_64.rpm + repoid: updates + size: 85627 + checksum: sha256:ef7ba54b4fbe39b966b92f06b4209d08321720052522ea61705990f33db5ca42 + name: bluez-libs + evr: 5.83-1.fc42 + sourcerpm: bluez-5.83-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/b/bootc-1.3.0-1.fc42.x86_64.rpm + repoid: updates + size: 2891846 + checksum: sha256:0bfa7c7f21ba17066c34260c8460e5c81791ff25c0e5b8e2ccee99f2c5220679 + name: bootc + evr: 1.3.0-1.fc42 + sourcerpm: bootc-1.3.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/b/bootupd-0.2.27-2.fc42.x86_64.rpm + repoid: updates + size: 1287784 + checksum: sha256:320bcd5f4566a10819e4274c8203ee996b6235b0adfd711776e8cb6045cd59f1 + name: bootupd + evr: 0.2.27-2.fc42 + sourcerpm: rust-bootupd-0.2.27-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/b/brcmfmac-firmware-20250613-1.fc42.noarch.rpm + repoid: updates + size: 10050137 + checksum: sha256:202817a3df60545ea1b2e9d9f1835446df5cb858a6618b282da8ff4ed2677346 + name: brcmfmac-firmware + evr: 20250613-1.fc42 + sourcerpm: linux-firmware-20250613-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/b/buildah-1.40.1-1.fc42.x86_64.rpm + repoid: updates + size: 11273004 + checksum: sha256:82e3a826d67dcbe11b0e6a75abbf5f8ca5dd8b4973ab2e36fef42683809473e8 + name: buildah + evr: 2:1.40.1-1.fc42 + sourcerpm: buildah-1.40.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/b/butane-0.24.0-1.fc42.x86_64.rpm + repoid: updates + size: 2763088 + checksum: sha256:e75169c8c9a591457b249fa50ba2a9b0d632899072b5cb4df946d29839ce38c9 + name: butane + evr: 0.24.0-1.fc42 + sourcerpm: butane-0.24.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/c/cirrus-audio-firmware-20250613-1.fc42.noarch.rpm + repoid: updates + size: 1862809 + checksum: sha256:31d91244bc4855e91595e0472faf9a700abcea7218be7bf5fa8b615b1e13c97e + name: cirrus-audio-firmware + evr: 20250613-1.fc42 + sourcerpm: linux-firmware-20250613-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/c/container-selinux-2.238.0-1.fc42.noarch.rpm + repoid: updates + size: 59418 + checksum: sha256:d6b5cce9f92d1f15628dff70724cbb6b06b70aeab61292983f23a68839cbc663 + name: container-selinux + evr: 4:2.238.0-1.fc42 + sourcerpm: container-selinux-2.238.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/c/containers-common-0.63.1-1.fc42.noarch.rpm + repoid: updates + size: 100111 + checksum: sha256:1a2c13bf53f381b97e0aa8fa7e7d31357a6ff5dda061aafcaf03218f7805937f + name: containers-common + evr: 5:0.63.1-1.fc42 + sourcerpm: containers-common-0.63.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/c/containers-common-extra-0.63.1-1.fc42.noarch.rpm + repoid: updates + size: 10025 + checksum: sha256:a78df5aa4d8744c365037d2ad2e408f7a0a1c6892a4adb993dd72ced742c7aa9 + name: containers-common-extra + evr: 5:0.63.1-1.fc42 + sourcerpm: containers-common-0.63.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/c/coreos-installer-0.24.0-2.fc42.x86_64.rpm + repoid: updates + size: 3451073 + checksum: sha256:7abe22bdcd6b07c37201661e6ab311ead0d1d852217e30204d6c2a21700509a5 + name: coreos-installer + evr: 0.24.0-2.fc42 + sourcerpm: rust-coreos-installer-0.24.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/c/cpp-15.1.1-2.fc42.x86_64.rpm + repoid: updates + size: 13525524 + checksum: sha256:4a503c8965071f6b92cce5c95e4d1f3b6b3781254e0e4456a180c149fde9c599 + name: cpp + evr: 15.1.1-2.fc42 + sourcerpm: gcc-15.1.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/c/cpuinfo-24.09.26-2.git1e83a2f.fc42.1.x86_64.rpm + repoid: updates + size: 44895 + checksum: sha256:fcab41bf76173a46d0a412e9de83066d571c9b14f96b57f209d4816ce870c7f9 + name: cpuinfo + evr: 24.09.26-2.git1e83a2f.fc42.1 + sourcerpm: cpuinfo-24.09.26-2.git1e83a2f.fc42.1.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/c/criu-4.1-2.fc42.x86_64.rpm + repoid: updates + size: 597599 + checksum: sha256:19834307925d001e87227f29479480bb3702e4e15231d07302d92aed710b42d5 + name: criu + evr: 4.1-2.fc42 + sourcerpm: criu-4.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/c/criu-libs-4.1-2.fc42.x86_64.rpm + repoid: updates + size: 32822 + checksum: sha256:366cc6c32e49d7a72eb38fcd21ae0f01e522fe3cc5357fbddb7409323ada6b68 + name: criu-libs + evr: 4.1-2.fc42 + sourcerpm: criu-4.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/c/crun-1.21-1.fc42.x86_64.rpm + repoid: updates + size: 247233 + checksum: sha256:e3081480c55eb04ddcea33b4c608cfc0155efe1d2f0dba9bea28a89c0720422a + name: crun + evr: 1.21-1.fc42 + sourcerpm: crun-1.21-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/c/cups-filesystem-2.4.12-3.fc42.noarch.rpm + repoid: updates + size: 13925 + checksum: sha256:94fddaf7620c0b97c263d99656e66586c886fb5a0d946a5b3238e943aa104fbc + name: cups-filesystem + evr: 1:2.4.12-3.fc42 + sourcerpm: cups-2.4.12-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/c/cups-libs-2.4.12-3.fc42.x86_64.rpm + repoid: updates + size: 268233 + checksum: sha256:0a2e138505104719333e069fe493a52d90b2e7a34e7d5decbe38c80989843026 + name: cups-libs + evr: 1:2.4.12-3.fc42 + sourcerpm: cups-2.4.12-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/d/daxctl-libs-82-1.fc42.x86_64.rpm + repoid: updates + size: 42368 + checksum: sha256:809f2dc550d46ea0a05dd387d7abc7f0debe2547b8aaec9c6147a3f2e99429ee + name: daxctl-libs + evr: 82-1.fc42 + sourcerpm: ndctl-82-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/d/debugedit-5.1-6.fc42.x86_64.rpm + repoid: updates + size: 80644 + checksum: sha256:e4e009bafc0f6ff73fc88ecc41e3792f3c02b54571dfeab04f2200b094e8ad17 + name: debugedit + evr: 5.1-6.fc42 + sourcerpm: debugedit-5.1-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/d/diffutils-3.12-1.fc42.x86_64.rpm + repoid: updates + size: 401994 + checksum: sha256:ebba0f71b6a5ae209e855042bba934d86b3bc6566f2e0e855ad3e536a3c27c7e + name: diffutils + evr: 3.12-1.fc42 + sourcerpm: diffutils-3.12-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/d/distribution-gpg-keys-1.113-1.fc42.noarch.rpm + repoid: updates + size: 740206 + checksum: sha256:d6bb9a621bd08a2553a8b513d3cb0a908518bea0b247b2e16a27b2a0fbe393e3 + name: distribution-gpg-keys + evr: 1.113-1.fc42 + sourcerpm: distribution-gpg-keys-1.113-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/d/dnsmasq-2.90-6.fc42.x86_64.rpm + repoid: updates + size: 369692 + checksum: sha256:17958d48422cece6c8d50a82a7a1c7f113d420691a8b49a7760e897cfa9d984c + name: dnsmasq + evr: 2.90-6.fc42 + sourcerpm: dnsmasq-2.90-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/d/dracut-105-3.fc42.x86_64.rpm + repoid: updates + size: 693255 + checksum: sha256:34230b6564f5e5f2242ad44515f3db4448f337938f3e178151c16b3a2fda1816 + name: dracut + evr: 105-3.fc42 + sourcerpm: dracut-105-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/e/edk2-aarch64-20250523-6.fc42.noarch.rpm + repoid: updates + size: 10836881 + checksum: sha256:17b5201cefc3949d106e719a16f12881b14bd0cc6ada9411df19f49d994e6c11 + name: edk2-aarch64 + evr: 20250523-6.fc42 + sourcerpm: edk2-20250523-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/e/edk2-ovmf-20250523-6.fc42.noarch.rpm + repoid: updates + size: 13158689 + checksum: sha256:4ab16aa5ef98c8b6ecdffa67a392afd952124fe921e3efdd36440e5829ab8bcd + name: edk2-ovmf + evr: 20250523-6.fc42 + sourcerpm: edk2-20250523-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/e/efi-filesystem-6-3.fc42.noarch.rpm + repoid: updates + size: 8272 + checksum: sha256:643279804c069e1bfe95120eb5fa91dd5343b5c184fdfb06816d337a6078aade + name: efi-filesystem + evr: 6-3.fc42 + sourcerpm: efi-rpm-macros-6-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/e/efi-srpm-macros-6-3.fc42.noarch.rpm + repoid: updates + size: 23034 + checksum: sha256:6f00fba21c8346ef62d5b55ee32702abc57f8ef76ed8a4e6065ddd0a5f493a00 + name: efi-srpm-macros + evr: 6-3.fc42 + sourcerpm: efi-rpm-macros-6-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/e/elfutils-0.193-2.fc42.x86_64.rpm + repoid: updates + size: 585135 + checksum: sha256:fe248be743545868a838656694570951a975c171555196f20df094c01449102c + name: elfutils + evr: 0.193-2.fc42 + sourcerpm: elfutils-0.193-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/e/elfutils-debuginfod-client-0.193-2.fc42.x86_64.rpm + repoid: updates + size: 48063 + checksum: sha256:af8f25edf88e55b5b328c04031b65927801b62f383f0bd35c95a182dfd182874 + name: elfutils-debuginfod-client + evr: 0.193-2.fc42 + sourcerpm: elfutils-0.193-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/e/erofs-utils-1.8.6-1.fc42.x86_64.rpm + repoid: updates + size: 171741 + checksum: sha256:44815d45eb492f7df9d6dac4b1d3399afbeeee83788af76825e28fca9b55df44 + name: erofs-utils + evr: 1.8.6-1.fc42 + sourcerpm: erofs-utils-1.8.6-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/f/fedora-messaging-3.7.1-1.fc42.noarch.rpm + repoid: updates + size: 30705 + checksum: sha256:902805cfb1a05c5c3c82f769f7328c67b0d18a75975c66448f4bd18d0b2336f6 + name: fedora-messaging + evr: 3.7.1-1.fc42 + sourcerpm: fedora-messaging-3.7.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/f/file-5.46-3.fc42.x86_64.rpm + repoid: updates + size: 49816 + checksum: sha256:d181a66cb7bff6804c19a4105091444dc9806134567f574f2d43410af12bb6fe + name: file + evr: 5.46-3.fc42 + sourcerpm: file-5.46-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/f/filesystem-srpm-macros-3.18-42.fc42.noarch.rpm + repoid: updates + size: 26404 + checksum: sha256:a134bab9c91db365550693aa688454a69c2842e93aa488a89505a3f84a10682e + name: filesystem-srpm-macros + evr: 3.18-42.fc42 + sourcerpm: filesystem-3.18-42.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/f/fonts-filesystem-2.0.5-22.fc42.noarch.rpm + repoid: updates + size: 8935 + checksum: sha256:b92f95cceefbb76766eaf9aeeac8f7ab98d251632523635a7ed8c9fe8b610f5e + name: fonts-filesystem + evr: 1:2.0.5-22.fc42 + sourcerpm: fonts-rpm-macros-2.0.5-22.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/f/fonts-srpm-macros-2.0.5-22.fc42.noarch.rpm + repoid: updates + size: 27863 + checksum: sha256:ec8138bd018852ea7a79b21e35cd7b0b8f07c60bdaad05b4208916473b603761 + name: fonts-srpm-macros + evr: 1:2.0.5-22.fc42 + sourcerpm: fonts-rpm-macros-2.0.5-22.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/gcc-15.1.1-2.fc42.x86_64.rpm + repoid: updates + size: 41306834 + checksum: sha256:597e0fc19cf8da8c3ccf54d75b3d14e775214d995c80baa9b46bac19ca67f975 + name: gcc + evr: 15.1.1-2.fc42 + sourcerpm: gcc-15.1.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/gcc-plugin-annobin-15.1.1-2.fc42.x86_64.rpm + repoid: updates + size: 52968 + checksum: sha256:c373407997508a11c9ec243a68c2b1345eb68e7485fa1000e55f75b065099712 + name: gcc-plugin-annobin + evr: 15.1.1-2.fc42 + sourcerpm: gcc-15.1.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/gdb-minimal-16.3-1.fc42.x86_64.rpm + repoid: updates + size: 4621379 + checksum: sha256:da9c8d1ff0f00dc8919e881bc74afb0e1e8a036f8c3df4bcffb5ca39ff7d3fc8 + name: gdb-minimal + evr: 16.3-1.fc42 + sourcerpm: gdb-16.3-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/giflib-5.2.2-6.fc42.x86_64.rpm + repoid: updates + size: 53465 + checksum: sha256:5ac04b1ac26efe15f487d4361a21bd3abdf576d2ae59dfdf9d3101d14c4838c8 + name: giflib + evr: 5.2.2-6.fc42 + sourcerpm: giflib-5.2.2-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/glibc-devel-2.41-7.fc42.x86_64.rpm + repoid: updates + size: 646703 + checksum: sha256:0534217a843b7f207ed4d51985f49a2d11bbca9809c518fd3a4a9871775482b2 + name: glibc-devel + evr: 2.41-7.fc42 + sourcerpm: glibc-2.41-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/glibc-gconv-extra-2.41-7.fc42.x86_64.rpm + repoid: updates + size: 1731153 + checksum: sha256:cc9e86934aa43ce1d1133a313fa32be903556b9d0e25ba15b3fba0965fbf5c27 + name: glibc-gconv-extra + evr: 2.41-7.fc42 + sourcerpm: glibc-2.41-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/golang-1.24.4-1.fc42.x86_64.rpm + repoid: updates + size: 687413 + checksum: sha256:4af912e5845be08e602e0d14aa35b25cb7f73c0947a4e081ec45f86f13d6faec + name: golang + evr: 1.24.4-1.fc42 + sourcerpm: golang-1.24.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/golang-bin-1.24.4-1.fc42.x86_64.rpm + repoid: updates + size: 30733184 + checksum: sha256:a5498337d1a8f8386f9ad9345856b1c883362da2cc27f3b5cdb9a6be90e38343 + name: golang-bin + evr: 1.24.4-1.fc42 + sourcerpm: golang-1.24.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/golang-src-1.24.4-1.fc42.noarch.rpm + repoid: updates + size: 13756884 + checksum: sha256:a9f3e76c5a0ef61a7f6619fb456c1dcbffae3482235940cb7b34bce736ebb2fe + name: golang-src + evr: 1.24.4-1.fc42 + sourcerpm: golang-1.24.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/grub2-common-2.12-32.fc42.noarch.rpm + repoid: updates + size: 1044881 + checksum: sha256:7329fcfcdc3071e85bf8a1bbe685786b61a5882418677d6d1d5bd964eb0b5241 + name: grub2-common + evr: 1:2.12-32.fc42 + sourcerpm: grub2-2.12-32.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/grub2-efi-x64-2.12-32.fc42.x86_64.rpm + repoid: updates + size: 2203790 + checksum: sha256:cd4fbd4ae9c12af472abe20793e6c12634c16b0628288f221f1487440c09b4a5 + name: grub2-efi-x64 + evr: 1:2.12-32.fc42 + sourcerpm: grub2-2.12-32.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/grub2-pc-2.12-32.fc42.x86_64.rpm + repoid: updates + size: 16117 + checksum: sha256:39c656aec32d23f465c4137b0cc099cafbe0bc6a6217b22a62c5a0ffdc1c284c + name: grub2-pc + evr: 1:2.12-32.fc42 + sourcerpm: grub2-2.12-32.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/grub2-pc-modules-2.12-32.fc42.noarch.rpm + repoid: updates + size: 1143951 + checksum: sha256:d2f35f0292b2ad58564f6aa8c253337cc60004bffa4775fcbd86fcd9b327fbd8 + name: grub2-pc-modules + evr: 1:2.12-32.fc42 + sourcerpm: grub2-2.12-32.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/grub2-tools-2.12-32.fc42.x86_64.rpm + repoid: updates + size: 1909155 + checksum: sha256:073e4b8ec49d614eee3f40d9d8e5f6e139dd516d3fe6515b9e19c6c4dd66fdbd + name: grub2-tools + evr: 1:2.12-32.fc42 + sourcerpm: grub2-2.12-32.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/grub2-tools-extra-2.12-32.fc42.x86_64.rpm + repoid: updates + size: 855792 + checksum: sha256:e1751397ec514a669606018ab45c39d379e35366d9f014b7b3949f7fdfeb32a1 + name: grub2-tools-extra + evr: 1:2.12-32.fc42 + sourcerpm: grub2-2.12-32.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/grub2-tools-minimal-2.12-32.fc42.x86_64.rpm + repoid: updates + size: 629497 + checksum: sha256:0c1ad423716ff686b9b81136d03583d6e59250936c34e372832f498e43c69951 + name: grub2-tools-minimal + evr: 1:2.12-32.fc42 + sourcerpm: grub2-2.12-32.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/gstreamer1-1.26.2-1.fc42.x86_64.rpm + repoid: updates + size: 1720151 + checksum: sha256:cc040447b67a2de01f987e41992a933a1f8c5bf03cebd209cbfa0b6e0fb27362 + name: gstreamer1 + evr: 1.26.2-1.fc42 + sourcerpm: gstreamer1-1.26.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/gstreamer1-plugins-base-1.26.2-1.fc42.x86_64.rpm + repoid: updates + size: 2382750 + checksum: sha256:a6a620ab79768fbf8060da2b6ebc79233f002b01f4cea7b76d98630a433f6289 + name: gstreamer1-plugins-base + evr: 1.26.2-1.fc42 + sourcerpm: gstreamer1-plugins-base-1.26.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/g/guestfs-tools-1.54.0-1.fc42.x86_64.rpm + repoid: updates + size: 4763633 + checksum: sha256:3dbc0f47c4a19312ac2f8359341172dadf218909d7cde805f73ab5acb70b8f17 + name: guestfs-tools + evr: 1.54.0-1.fc42 + sourcerpm: guestfs-tools-1.54.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/h/hwdata-0.396-1.fc42.noarch.rpm + repoid: updates + size: 1728666 + checksum: sha256:fc24114c972acb07475b1d910c24ad9c877415f2e29412e81a0c049b49d16f2c + name: hwdata + evr: 0.396-1.fc42 + sourcerpm: hwdata-0.396-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/i/ignition-validate-2.21.0-2.fc42.x86_64.rpm + repoid: updates + size: 1787841 + checksum: sha256:a74f87d9028f0016ed6dbf372255c93fe5530463219c4a675a32dd5d736e7e45 + name: ignition-validate + evr: 2.21.0-2.fc42 + sourcerpm: ignition-2.21.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/i/intel-audio-firmware-20250613-1.fc42.noarch.rpm + repoid: updates + size: 3408000 + checksum: sha256:114c498e82c0452f57f3ab602a8c52fdc2a72b02339eec70c9d21534d5ca4a28 + name: intel-audio-firmware + evr: 20250613-1.fc42 + sourcerpm: linux-firmware-20250613-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/i/intel-gpu-firmware-20250613-1.fc42.noarch.rpm + repoid: updates + size: 9245431 + checksum: sha256:e167df6e6245381cbf38424cce16cc45f9a9b7d49581d9748cf6b16f4563e512 + name: intel-gpu-firmware + evr: 20250613-1.fc42 + sourcerpm: linux-firmware-20250613-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/i/intel-vpl-gpu-rt-25.2.5-1.fc42.x86_64.rpm + repoid: updates + size: 2526161 + checksum: sha256:faffe351673b8649c93ba7730c52bfc4c6b20a874ad671a4871ad062d6827da2 + name: intel-vpl-gpu-rt + evr: 25.2.5-1.fc42 + sourcerpm: intel-vpl-gpu-rt-25.2.5-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/i/iptables-legacy-1.8.11-8.fc42.x86_64.rpm + repoid: updates + size: 56299 + checksum: sha256:0f04f01ae3543f785b4ea8381708db24f5e62bca94c00627b15d63aca575eb9e + name: iptables-legacy + evr: 1.8.11-8.fc42 + sourcerpm: iptables-1.8.11-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/i/iptables-legacy-libs-1.8.11-8.fc42.x86_64.rpm + repoid: updates + size: 38867 + checksum: sha256:a57cb1c4fa9bcdd9198e864a5e834175ece43f1aac2d5a3ff6280e5426d9c431 + name: iptables-legacy-libs + evr: 1.8.11-8.fc42 + sourcerpm: iptables-1.8.11-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/i/iptables-libs-1.8.11-8.fc42.x86_64.rpm + repoid: updates + size: 412926 + checksum: sha256:bd83a9bbe027183bb54b748e9fa1ec09051d6482c3fd0256bcdc9cea5408e97a + name: iptables-libs + evr: 1.8.11-8.fc42 + sourcerpm: iptables-1.8.11-8.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/i/iputils-20240905-4.fc42.x86_64.rpm + repoid: updates + size: 198107 + checksum: sha256:b88f74760e6e14ed2d34aa682022f70a2832047412d6dcb14fef9facba9463a0 + name: iputils + evr: 20240905-4.fc42 + sourcerpm: iputils-20240905-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/k/kernel-core-6.15.3-200.fc42.x86_64.rpm + repoid: updates + size: 20138105 + checksum: sha256:237602bb28a081a84f1b41077bd1739afbdda704ef8fcf650e000507f458386e + name: kernel-core + evr: 6.15.3-200.fc42 + sourcerpm: kernel-6.15.3-200.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/k/kernel-headers-6.15.3-200.fc42.x86_64.rpm + repoid: updates + size: 1745556 + checksum: sha256:cbea8a51de936d4c6b7af1ae191c94f5d5bc231eaad08d17627acbfaa0b89117 + name: kernel-headers + evr: 6.15.3-200.fc42 + sourcerpm: kernel-headers-6.15.3-200.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/k/kernel-modules-6.15.3-200.fc42.x86_64.rpm + repoid: updates + size: 100226201 + checksum: sha256:82a7f48f94842c9ba56115d61d86bfa38d13fbe0f2a6914ead9b81b3e4570ad4 + name: kernel-modules + evr: 6.15.3-200.fc42 + sourcerpm: kernel-6.15.3-200.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/k/kernel-modules-core-6.15.3-200.fc42.x86_64.rpm + repoid: updates + size: 71912905 + checksum: sha256:ed02f1c08edab5b248ddb6ebb4da41b6dd5092d8947774a7baee8ee0fd81196f + name: kernel-modules-core + evr: 6.15.3-200.fc42 + sourcerpm: kernel-6.15.3-200.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/k/koji-1.35.3-1.fc42.noarch.rpm + repoid: updates + size: 272456 + checksum: sha256:1595a4d8991cade045fd772a6671bd76893415e32b2003816317c3254b1c70ae + name: koji + evr: 1.35.3-1.fc42 + sourcerpm: koji-1.35.3-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/k/koji-utils-1.35.3-1.fc42.noarch.rpm + repoid: updates + size: 43616 + checksum: sha256:61f88b21bd92ad1c2cf0329bab822b1785cf10e32de70186b2625f8a79f171e3 + name: koji-utils + evr: 1.35.3-1.fc42 + sourcerpm: koji-1.35.3-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/k/krb5-pkinit-1.21.3-6.fc42.x86_64.rpm + repoid: updates + size: 62238 + checksum: sha256:78494d97554856ab1dc934b83608e8b8cf49f96b466a227744c9aabf24938aa2 + name: krb5-pkinit + evr: 1.21.3-6.fc42 + sourcerpm: krb5-1.21.3-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/k/krb5-workstation-1.21.3-6.fc42.x86_64.rpm + repoid: updates + size: 430601 + checksum: sha256:bec022495403e0121a19eacad709719adfb2852dd65c0a532d6c2da9a2f674a9 + name: krb5-workstation + evr: 1.21.3-6.fc42 + sourcerpm: krb5-1.21.3-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libdecor-0.2.3-5.fc42.x86_64.rpm + repoid: updates + size: 59342 + checksum: sha256:c031f8b6712738144bb6939da5a610bcafce85e5963d6ff44f18e51a92d592bc + name: libdecor + evr: 0.2.3-5.fc42 + sourcerpm: libdecor-0.2.3-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libdeflate-1.24-1.fc42.x86_64.rpm + repoid: updates + size: 71518 + checksum: sha256:018f1ea09bf2b1f4677d15d21b17be1c4082e2b62dbc05505f709b63e5acf5f8 + name: libdeflate + evr: 1.24-1.fc42 + sourcerpm: libdeflate-1.24-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libdrm-2.4.125-1.fc42.x86_64.rpm + repoid: updates + size: 165140 + checksum: sha256:febdb0198aa26896923454a9a46303d904040c401f2e8843251618f3eb394486 + name: libdrm + evr: 2.4.125-1.fc42 + sourcerpm: libdrm-2.4.125-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libgexiv2-0.14.5-1.fc42.x86_64.rpm + repoid: updates + size: 103290 + checksum: sha256:89945157c497e18b9ff13a616dc1b76f3c5e54fb6883e717a03f791006377b98 + name: libgexiv2 + evr: 0.14.5-1.fc42 + sourcerpm: libgexiv2-0.14.5-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libguestfs-1.56.1-1.fc42.x86_64.rpm + repoid: updates + size: 1199578 + checksum: sha256:2717869a95071a82e9f6aba74e1847fe286786325c6ea555b0c6cee6624c0076 + name: libguestfs + evr: 1:1.56.1-1.fc42 + sourcerpm: libguestfs-1.56.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libguestfs-appliance-1.56.1-1.fc42.x86_64.rpm + repoid: updates + size: 2591064 + checksum: sha256:2dc354863833dbb6e1318277a07b7659e04113902df4f2da15c8829ee6f5ffe5 + name: libguestfs-appliance + evr: 1:1.56.1-1.fc42 + sourcerpm: libguestfs-1.56.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libguestfs-xfs-1.56.1-1.fc42.x86_64.rpm + repoid: updates + size: 15830 + checksum: sha256:1e2e8854e5669ce770e536a771db6fb20fac62d7418cf31c1b0870e335b31f71 + name: libguestfs-xfs + evr: 1:1.56.1-1.fc42 + sourcerpm: libguestfs-1.56.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libkadm5-1.21.3-6.fc42.x86_64.rpm + repoid: updates + size: 78204 + checksum: sha256:ddea7cacf40589f9f2b088eb3fae1a44c735b2432a8423d2ceac30d77c72f86d + name: libkadm5 + evr: 1.21.3-6.fc42 + sourcerpm: krb5-1.21.3-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libldb-4.22.2-1.fc42.x86_64.rpm + repoid: updates + size: 194021 + checksum: sha256:44a3a187d97f073c992d1b4a9ef7b7df2b30e3e697d2033678c71de4f74df55e + name: libldb + evr: 2:4.22.2-1.fc42 + sourcerpm: samba-4.22.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libnbd-1.22.2-1.fc42.x86_64.rpm + repoid: updates + size: 177938 + checksum: sha256:6db390a84e295b1ee62d81b35a8ce2691fc9873d44d10fc7361d095caee35ce7 + name: libnbd + evr: 1.22.2-1.fc42 + sourcerpm: libnbd-1.22.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libnfs-6.0.2-4.fc42.x86_64.rpm + repoid: updates + size: 175940 + checksum: sha256:08b677eec840ac4fbee0f2b55f70eb837911d0c13ff219919cd22fbe8d228859 + name: libnfs + evr: 6.0.2-4.fc42 + sourcerpm: libnfs-6.0.2-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libnfsidmap-2.8.3-2.rc2.fc42.x86_64.rpm + repoid: updates + size: 64291 + checksum: sha256:686c96dde8c0066e54fe1d04ffe020e273c6a5b49c007698bf1fa337eaef275d + name: libnfsidmap + evr: 1:2.8.3-2.rc2.fc42 + sourcerpm: nfs-utils-2.8.3-2.rc2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libnotify-0.8.6-1.fc42.x86_64.rpm + repoid: updates + size: 53274 + checksum: sha256:a448f7ce617b125e0146649e1efea429986e6c6e1ea2e37a7cf047ef94656da9 + name: libnotify + evr: 0.8.6-1.fc42 + sourcerpm: libnotify-0.8.6-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/librados2-19.2.2-2.fc42.x86_64.rpm + repoid: updates + size: 4509681 + checksum: sha256:5f33a70e6e286e77e7affe0e8aefde7d3405183a80205b9dee8595ac6b81816f + name: librados2 + evr: 2:19.2.2-2.fc42 + sourcerpm: ceph-19.2.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/librbd1-19.2.2-2.fc42.x86_64.rpm + repoid: updates + size: 4001741 + checksum: sha256:c5466a863b3b2ec8751c59a6bf53d55cf7f2793303c45ca0d70047c91e90553a + name: librbd1 + evr: 2:19.2.2-2.fc42 + sourcerpm: ceph-19.2.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libselinux-utils-3.8-2.fc42.x86_64.rpm + repoid: updates + size: 123102 + checksum: sha256:c1037e3615dc58369e7fe51dbcb83f1bc27b8e5da90732df3520039a443c326a + name: libselinux-utils + evr: 3.8-2.fc42 + sourcerpm: libselinux-3.8-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libsmbclient-4.22.2-1.fc42.x86_64.rpm + repoid: updates + size: 81019 + checksum: sha256:dcc89c766ec2f10dae901d769bebf08a6f62695a884563dbdca56a94223a231b + name: libsmbclient + evr: 2:4.22.2-1.fc42 + sourcerpm: samba-4.22.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libtinysparql-3.9.2-1.fc42.x86_64.rpm + repoid: updates + size: 382529 + checksum: sha256:c596f276a27e1acb589982c18e728398908823c459259e0676b06aab3048a3c8 + name: libtinysparql + evr: 3.9.2-1.fc42 + sourcerpm: tinysparql-3.9.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libtpms-0.10.0-4.fc42.x86_64.rpm + repoid: updates + size: 429021 + checksum: sha256:b994f3b36e5a511dc19ede3596237dbfa38e499b2b927999a8f53e2d0663178d + name: libtpms + evr: 0.10.0-4.fc42 + sourcerpm: libtpms-0.10.0-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libtsan-15.1.1-2.fc42.x86_64.rpm + repoid: updates + size: 468602 + checksum: sha256:a6218beaf17b490498ed2a26c77f1b52e7a13ce00069dd23b0a4cefefd478d10 + name: libtsan + evr: 15.1.1-2.fc42 + sourcerpm: gcc-15.1.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libvirt-client-11.0.0-3.fc42.x86_64.rpm + repoid: updates + size: 429191 + checksum: sha256:3ad795ce94d0abd643632d62603aca8b3d5c5c70687d9887d254817b2f66924e + name: libvirt-client + evr: 11.0.0-3.fc42 + sourcerpm: libvirt-11.0.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libvirt-daemon-common-11.0.0-3.fc42.x86_64.rpm + repoid: updates + size: 124992 + checksum: sha256:e3dc92e30725325f4e901009afde01f74ca8c801067694dadcb93e6b16f1d9d3 + name: libvirt-daemon-common + evr: 11.0.0-3.fc42 + sourcerpm: libvirt-11.0.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libvirt-daemon-config-network-11.0.0-3.fc42.x86_64.rpm + repoid: updates + size: 13435 + checksum: sha256:2d28219d2b439f29d5f23b53cd842f164b6e28dc6e21de14e0e098a0a39c9dc7 + name: libvirt-daemon-config-network + evr: 11.0.0-3.fc42 + sourcerpm: libvirt-11.0.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libvirt-daemon-driver-network-11.0.0-3.fc42.x86_64.rpm + repoid: updates + size: 253006 + checksum: sha256:0b5488a4a2e08ff8b017e75bf9e70b6df75dc73759e8520c4fe4199d2d38be80 + name: libvirt-daemon-driver-network + evr: 11.0.0-3.fc42 + sourcerpm: libvirt-11.0.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libvirt-daemon-driver-qemu-11.0.0-3.fc42.x86_64.rpm + repoid: updates + size: 982432 + checksum: sha256:8a8dd90d26f53b0f000c2b699fd6e9ad70e1ba815056a4d96aa99d6ad20d8d5f + name: libvirt-daemon-driver-qemu + evr: 11.0.0-3.fc42 + sourcerpm: libvirt-11.0.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libvirt-daemon-driver-secret-11.0.0-3.fc42.x86_64.rpm + repoid: updates + size: 199629 + checksum: sha256:1bffe41e70f05d8f08f7c38b93e2bb8e29569d5b4608021f3f477d58b8954bd9 + name: libvirt-daemon-driver-secret + evr: 11.0.0-3.fc42 + sourcerpm: libvirt-11.0.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libvirt-daemon-driver-storage-core-11.0.0-3.fc42.x86_64.rpm + repoid: updates + size: 258133 + checksum: sha256:d131ff7c7215b09cc5f67c42c19b26210ff4b4f2c8e2cd2a709d17059bb8a6e7 + name: libvirt-daemon-driver-storage-core + evr: 11.0.0-3.fc42 + sourcerpm: libvirt-11.0.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libvirt-daemon-log-11.0.0-3.fc42.x86_64.rpm + repoid: updates + size: 52489 + checksum: sha256:b4267a0c0cc67675e21a68e8b34f18208db763cdde9a88f4ae3411b1a331d4f8 + name: libvirt-daemon-log + evr: 11.0.0-3.fc42 + sourcerpm: libvirt-11.0.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libvirt-libs-11.0.0-3.fc42.x86_64.rpm + repoid: updates + size: 5339635 + checksum: sha256:9aeaf5fcdecc5a30b3c6c31765c2ec3438bf7ff336aed2541c862acc01009b4b + name: libvirt-libs + evr: 11.0.0-3.fc42 + sourcerpm: libvirt-11.0.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libvpl-2.15.0-1.fc42.x86_64.rpm + repoid: updates + size: 164900 + checksum: sha256:863af1514ad25cdd6ecb93c07bd7cd7e6fbdc55efa6ac20fd7f8cf507e41a953 + name: libvpl + evr: 1:2.15.0-1.fc42 + sourcerpm: libvpl-2.15.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libvpx-1.15.0-3.fc42.x86_64.rpm + repoid: updates + size: 1226524 + checksum: sha256:d72e923c59ce01a22ad568221b5768bc50ccff9827d07a2ecedbffdbf0a58d44 + name: libvpx + evr: 1.15.0-3.fc42 + sourcerpm: libvpx-1.15.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libwayland-client-1.23.1-1.fc42.x86_64.rpm + repoid: updates + size: 33820 + checksum: sha256:e899b873f230ecc31bdd6d9e72f3d5f8456b9cb716e2e88585c5d66c2fdf176b + name: libwayland-client + evr: 1.23.1-1.fc42 + sourcerpm: wayland-1.23.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libwayland-cursor-1.23.1-1.fc42.x86_64.rpm + repoid: updates + size: 19301 + checksum: sha256:1050c13212a7b653e964d60a3ca7a3fd816e97a05ca2a4fe90389085d17d8264 + name: libwayland-cursor + evr: 1.23.1-1.fc42 + sourcerpm: wayland-1.23.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libwayland-egl-1.23.1-1.fc42.x86_64.rpm + repoid: updates + size: 12604 + checksum: sha256:cddf146d2f90018213ee1f1a0f1e8985323d1b0f29790e906cfa92e257e87db9 + name: libwayland-egl + evr: 1.23.1-1.fc42 + sourcerpm: wayland-1.23.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libwayland-server-1.23.1-1.fc42.x86_64.rpm + repoid: updates + size: 42468 + checksum: sha256:d990ffaf64e7c9e259526eb5d5e5711f4acacd565379434a6be22538f105149f + name: libwayland-server + evr: 1.23.1-1.fc42 + sourcerpm: wayland-1.23.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libwbclient-4.22.2-1.fc42.x86_64.rpm + repoid: updates + size: 48915 + checksum: sha256:d476585c153d5bb77f6ddb969944c2fbabdf317c608e2da0e4f2b85050cfcae1 + name: libwbclient + evr: 2:4.22.2-1.fc42 + sourcerpm: samba-4.22.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libxcrypt-devel-4.4.38-7.fc42.x86_64.rpm + repoid: updates + size: 30079 + checksum: sha256:d1b2bbab6b209cce05584e55748f179dc380a947fa4ea1da4dc69c8f8dde0924 + name: libxcrypt-devel + evr: 4.4.38-7.fc42 + sourcerpm: libxcrypt-4.4.38-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/libxdp-1.5.5-1.fc42.x86_64.rpm + repoid: updates + size: 67187 + checksum: sha256:eee9474d0033f8a2d86dcfe7040c69141059bcc7921eda99ec79e4ec936f370e + name: libxdp + evr: 1.5.5-1.fc42 + sourcerpm: xdp-tools-1.5.5-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/linux-firmware-20250613-1.fc42.noarch.rpm + repoid: updates + size: 45014091 + checksum: sha256:17c7945ba64a33b7c7e944eb8dbbae4450e63508658a94e285bd33c6c6d076e6 + name: linux-firmware + evr: 20250613-1.fc42 + sourcerpm: linux-firmware-20250613-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/linux-firmware-whence-20250613-1.fc42.noarch.rpm + repoid: updates + size: 64982 + checksum: sha256:75876defe06e58d134e4a56da797546771468cd2c7a1e9943c12c69ff224099b + name: linux-firmware-whence + evr: 20250613-1.fc42 + sourcerpm: linux-firmware-20250613-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/llvm-filesystem-20.1.7-1.fc42.x86_64.rpm + repoid: updates + size: 15296 + checksum: sha256:c97c0b3d0c6f3736ec9af2016471fe7425ef0d43fe79317a983d72ea783819a1 + name: llvm-filesystem + evr: 20.1.7-1.fc42 + sourcerpm: llvm-20.1.7-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/l/llvm-libs-20.1.7-1.fc42.x86_64.rpm + repoid: updates + size: 35145404 + checksum: sha256:bb23bdc01a52562cbbe4fdcc3f74fc4678381011e7e6bb7f181c4767aa0f1dcc + name: llvm-libs + evr: 20.1.7-1.fc42 + sourcerpm: llvm-20.1.7-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/m/mercurial-6.9.5-1.fc42.x86_64.rpm + repoid: updates + size: 7015225 + checksum: sha256:688334eb23b39a21fbe1919e66b9b086aaa4b6585ba0f08795422ea35ba286ff + name: mercurial + evr: 6.9.5-1.fc42 + sourcerpm: mercurial-6.9.5-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/m/mesa-dri-drivers-25.0.7-2.fc42.x86_64.rpm + repoid: updates + size: 35710959 + checksum: sha256:d1d35cf4dcc7e67054ef3e2c843e2573dda9054c85f39cb8f150eb78288c5c35 + name: mesa-dri-drivers + evr: 25.0.7-2.fc42 + sourcerpm: mesa-25.0.7-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/m/mesa-filesystem-25.0.7-2.fc42.x86_64.rpm + repoid: updates + size: 21379 + checksum: sha256:5dde65a7987a5dfa4ec3319176d90837d127a6043840b8366b268c23a4ac1eac + name: mesa-filesystem + evr: 25.0.7-2.fc42 + sourcerpm: mesa-25.0.7-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/m/mesa-libEGL-25.0.7-2.fc42.x86_64.rpm + repoid: updates + size: 142323 + checksum: sha256:38c189fd6d21ce90cb77f716009d4533c03c5d5ee97ab904096ed1810a4c95e5 + name: mesa-libEGL + evr: 25.0.7-2.fc42 + sourcerpm: mesa-25.0.7-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/m/mesa-libGL-25.0.7-2.fc42.x86_64.rpm + repoid: updates + size: 165545 + checksum: sha256:3e5251415ca46cd1920baf66885f93ecd192bc6b6724cf46babd067434b88312 + name: mesa-libGL + evr: 25.0.7-2.fc42 + sourcerpm: mesa-25.0.7-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/m/mesa-libgbm-25.0.7-2.fc42.x86_64.rpm + repoid: updates + size: 27598 + checksum: sha256:b519992957e66191faa2765ab94186a5d074c0c3765da688a3574e9addc5e085 + name: mesa-libgbm + evr: 25.0.7-2.fc42 + sourcerpm: mesa-25.0.7-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/m/mesa-va-drivers-25.0.7-2.fc42.x86_64.rpm + repoid: updates + size: 20036 + checksum: sha256:57b102342acaa71109eafe2925c1a3aeb85cd7572d32439cc5f257769ce8de75 + name: mesa-va-drivers + evr: 25.0.7-2.fc42 + sourcerpm: mesa-25.0.7-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/m/mesa-vulkan-drivers-25.0.7-2.fc42.x86_64.rpm + repoid: updates + size: 21904833 + checksum: sha256:e9797f46cb6b6eb667391417b8fb07b361b58701635ddc4123470e2885da6664 + name: mesa-vulkan-drivers + evr: 25.0.7-2.fc42 + sourcerpm: mesa-25.0.7-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/m/mpdecimal-4.0.1-1.fc42.x86_64.rpm + repoid: updates + size: 99388 + checksum: sha256:815190835c7c3fc63a749a4b032cf48c9b3e2ce3f93062d57d7e6ff3cb7467fd + name: mpdecimal + evr: 4.0.1-1.fc42 + sourcerpm: mpdecimal-4.0.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/m/mpg123-libs-1.32.10-1.fc42.x86_64.rpm + repoid: updates + size: 364045 + checksum: sha256:03b634ff191ae8f54181b39e989da09c4191ecc7b3d85238232a68cd9b3d373e + name: mpg123-libs + evr: 1.32.10-1.fc42 + sourcerpm: mpg123-1.32.10-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/m/mt7xxx-firmware-20250613-1.fc42.noarch.rpm + repoid: updates + size: 20367970 + checksum: sha256:707813bf6849cef9e940d59f037e5c8aa2f1655709ed3f19be001b70528f09da + name: mt7xxx-firmware + evr: 20250613-1.fc42 + sourcerpm: linux-firmware-20250613-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/m/mtools-4.0.49-1.fc42.x86_64.rpm + repoid: updates + size: 228051 + checksum: sha256:58089e94a96fab3b8861668923954f7e326667dcfe3bf8107ee0ba804880b577 + name: mtools + evr: 4.0.49-1.fc42 + sourcerpm: mtools-4.0.49-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nbdkit-1.42.4-1.fc42.x86_64.rpm + repoid: updates + size: 16137 + checksum: sha256:13d62f92d97251d747a12f1c8a59e8d5910eee2c3a7f2928e871ba89bfd9606c + name: nbdkit + evr: 1.42.4-1.fc42 + sourcerpm: nbdkit-1.42.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nbdkit-basic-filters-1.42.4-1.fc42.x86_64.rpm + repoid: updates + size: 367604 + checksum: sha256:1769ee3915b37fb2ec0e640675fa2b63669ff3da5c536a1192019fbe2355207f + name: nbdkit-basic-filters + evr: 1.42.4-1.fc42 + sourcerpm: nbdkit-1.42.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nbdkit-basic-plugins-1.42.4-1.fc42.x86_64.rpm + repoid: updates + size: 210119 + checksum: sha256:cef20a2ddce68d96a3d3cb37f95f2ddf1d47093b892109587365e31d09c75fb3 + name: nbdkit-basic-plugins + evr: 1.42.4-1.fc42 + sourcerpm: nbdkit-1.42.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nbdkit-curl-plugin-1.42.4-1.fc42.x86_64.rpm + repoid: updates + size: 47172 + checksum: sha256:cd855126cc4a9977fea5aaafac8052b81f99d659dc45b3cb0d82b3f6b9475216 + name: nbdkit-curl-plugin + evr: 1.42.4-1.fc42 + sourcerpm: nbdkit-1.42.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nbdkit-selinux-1.42.4-1.fc42.noarch.rpm + repoid: updates + size: 31136 + checksum: sha256:1e5b815deb1107c10456532d806e31eaaa7514fcb6f68d7615b9317b8b0eb1f5 + name: nbdkit-selinux + evr: 1.42.4-1.fc42 + sourcerpm: nbdkit-1.42.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nbdkit-server-1.42.4-1.fc42.x86_64.rpm + repoid: updates + size: 139899 + checksum: sha256:5a29c54721ad3e1e974c5a204c74d012d1e539374278dfe040ad9b9610e9ff83 + name: nbdkit-server + evr: 1.42.4-1.fc42 + sourcerpm: nbdkit-1.42.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nbdkit-ssh-plugin-1.42.4-1.fc42.x86_64.rpm + repoid: updates + size: 36394 + checksum: sha256:e0a54abc691882058ef3b7d6585f8e6916419a7a443646044d21230a63677972 + name: nbdkit-ssh-plugin + evr: 1.42.4-1.fc42 + sourcerpm: nbdkit-1.42.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/ndctl-libs-82-1.fc42.x86_64.rpm + repoid: updates + size: 89901 + checksum: sha256:c41e57e830d3181d939166c9bd2d11034695aed10ccbc8d5dbf78b014cf39e93 + name: ndctl-libs + evr: 82-1.fc42 + sourcerpm: ndctl-82-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/netavark-1.15.2-1.fc42.x86_64.rpm + repoid: updates + size: 3755657 + checksum: sha256:846405dad558cb7dd3e2cf46560d03b7d2545f898da3584b4e5daf79e3c24e5b + name: netavark + evr: 2:1.15.2-1.fc42 + sourcerpm: netavark-1.15.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nfs-utils-2.8.3-2.rc2.fc42.x86_64.rpm + repoid: updates + size: 487618 + checksum: sha256:9aa1ec0320956cec842567ec7fac184ff592d4a08686578210964ffdefa48574 + name: nfs-utils + evr: 1:2.8.3-2.rc2.fc42 + sourcerpm: nfs-utils-2.8.3-2.rc2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nspr-4.36.0-9.fc42.x86_64.rpm + repoid: updates + size: 141013 + checksum: sha256:722a66d8b4744bbbb683389de20177adc89efbec1dc9e88f5d4f198e13772530 + name: nspr + evr: 4.36.0-9.fc42 + sourcerpm: nss-3.112.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nss-3.112.0-1.fc42.x86_64.rpm + repoid: updates + size: 729080 + checksum: sha256:6c6217909e061fc1257dff714c3994dd5c102fd24c97aa47c371680d66168b7d + name: nss + evr: 3.112.0-1.fc42 + sourcerpm: nss-3.112.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nss-softokn-3.112.0-1.fc42.x86_64.rpm + repoid: updates + size: 425220 + checksum: sha256:b4d5e0a942a06410cf79182dd04de73082c500d2ea7fde49852aa629fce31aa3 + name: nss-softokn + evr: 3.112.0-1.fc42 + sourcerpm: nss-3.112.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nss-softokn-freebl-3.112.0-1.fc42.x86_64.rpm + repoid: updates + size: 337022 + checksum: sha256:eefecae6c7f1cf43d7333559627d20a23ae9a2d2cc9c81d69918d7e61bc9ff74 + name: nss-softokn-freebl + evr: 3.112.0-1.fc42 + sourcerpm: nss-3.112.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nss-sysinit-3.112.0-1.fc42.x86_64.rpm + repoid: updates + size: 19727 + checksum: sha256:bd0f80b5645415a37cb0013cd6a31f0116631e9f0585ad1c3efa40f81dec2d55 + name: nss-sysinit + evr: 3.112.0-1.fc42 + sourcerpm: nss-3.112.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nss-util-3.112.0-1.fc42.x86_64.rpm + repoid: updates + size: 87966 + checksum: sha256:8f0582470a8f6e63241400ff0be9959f0310fbfff1492b5aeb0be198e8b2fae3 + name: nss-util + evr: 3.112.0-1.fc42 + sourcerpm: nss-3.112.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/ntfs-3g-2022.10.3-9.fc42.x86_64.rpm + repoid: updates + size: 130837 + checksum: sha256:9b0931d5bff6fcd4b6063944bb100fa5ec909bb98c1da84e06bdce9f8357d107 + name: ntfs-3g + evr: 2:2022.10.3-9.fc42 + sourcerpm: ntfs-3g-2022.10.3-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/ntfs-3g-libs-2022.10.3-9.fc42.x86_64.rpm + repoid: updates + size: 179347 + checksum: sha256:fac4cd931c28cb51b17bdbe0c959f049e58a74a4c6e2b9fe73d0624b5c2ce29a + name: ntfs-3g-libs + evr: 2:2022.10.3-9.fc42 + sourcerpm: ntfs-3g-2022.10.3-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/ntfsprogs-2022.10.3-9.fc42.x86_64.rpm + repoid: updates + size: 389494 + checksum: sha256:9d79c6c054aab7853c6ecad5f9a2a70630ab6929afb86c3ff03d78029f9c490c + name: ntfsprogs + evr: 2:2022.10.3-9.fc42 + sourcerpm: ntfs-3g-2022.10.3-9.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nvidia-gpu-firmware-20250613-1.fc42.noarch.rpm + repoid: updates + size: 104073302 + checksum: sha256:47a0571a4ea9b6b19dcf53413af744513fe91fc8b4677618e3cafcf63371de67 + name: nvidia-gpu-firmware + evr: 20250613-1.fc42 + sourcerpm: linux-firmware-20250613-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/n/nxpwireless-firmware-20250613-1.fc42.noarch.rpm + repoid: updates + size: 953315 + checksum: sha256:05a7715ba50031cb3ab47762d8c9af131e7e45a2dde26ac1b8a9b2b4628c4452 + name: nxpwireless-firmware + evr: 20250613-1.fc42 + sourcerpm: linux-firmware-20250613-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/o/openssh-9.9p1-11.fc42.x86_64.rpm + repoid: updates + size: 362093 + checksum: sha256:ffec47d867535c0a66f3ddc65b84e02161574cf393c90aabfbac6d4c256bc0bb + name: openssh + evr: 9.9p1-11.fc42 + sourcerpm: openssh-9.9p1-11.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/o/openssh-clients-9.9p1-11.fc42.x86_64.rpm + repoid: updates + size: 785448 + checksum: sha256:aa05e7294847e355b250803a93ecfc1487a629e90e374de8df4181bb98d3b8ff + name: openssh-clients + evr: 9.9p1-11.fc42 + sourcerpm: openssh-9.9p1-11.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/o/osbuild-153-1.fc42.noarch.rpm + repoid: updates + size: 326092 + checksum: sha256:98a9d0612996073770661a685bd6715b0b855d0a219c99b7ad6d11a8508cc67b + name: osbuild + evr: 153-1.fc42 + sourcerpm: osbuild-153-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/o/osbuild-ostree-153-1.fc42.noarch.rpm + repoid: updates + size: 105146 + checksum: sha256:d804616044e2695460f72da439a9f6896de83861ff5f1821493ab889abe2ed7f + name: osbuild-ostree + evr: 153-1.fc42 + sourcerpm: osbuild-153-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/o/osbuild-selinux-153-1.fc42.noarch.rpm + repoid: updates + size: 91567 + checksum: sha256:e3be1754ddd7154aef9f3b5e4c70ae7b0d3a9e3c8ff52da117b2533eff1a6570 + name: osbuild-selinux + evr: 153-1.fc42 + sourcerpm: osbuild-153-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/o/osbuild-tools-153-1.fc42.noarch.rpm + repoid: updates + size: 110967 + checksum: sha256:47e0c47dfe95ae3dfebd00cb7b7e1546b7818667bbd04e69f6b4edd1eb9a6e9c + name: osbuild-tools + evr: 153-1.fc42 + sourcerpm: osbuild-153-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/passt-0^20250611.g0293c6f-1.fc42.x86_64.rpm + repoid: updates + size: 273527 + checksum: sha256:ecab935792c723631ebe20518a0a1fd80898fe273e34305d085ca145665f2bc5 + name: passt + evr: 0^20250611.g0293c6f-1.fc42 + sourcerpm: passt-0^20250611.g0293c6f-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/passt-selinux-0^20250611.g0293c6f-1.fc42.noarch.rpm + repoid: updates + size: 33790 + checksum: sha256:a06bfcb1aa6a2163deac14ef4974f7bbc8cfe0dfef64e9426aa644b9219ed1f3 + name: passt-selinux + evr: 0^20250611.g0293c6f-1.fc42 + sourcerpm: passt-0^20250611.g0293c6f-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/patch-2.8-1.fc42.x86_64.rpm + repoid: updates + size: 116216 + checksum: sha256:559aad1257d0f35c52e00492e7440cf84f65edd819953a881f6bbdef95713deb + name: patch + evr: 2.8-1.fc42 + sourcerpm: patch-2.8-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-AutoLoader-5.74-517.fc42.noarch.rpm + repoid: updates + size: 21989 + checksum: sha256:52b67dbdf8bf0cd700be6cd16897102fd5356094ff0524215d28c2aa99c674c4 + name: perl-AutoLoader + evr: 5.74-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-B-1.89-517.fc42.x86_64.rpm + repoid: updates + size: 181207 + checksum: sha256:d29bfcebbbd3c692def04253b9be0b9446f2eb9de2e896531acab4397a265e66 + name: perl-B + evr: 1.89-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-Class-Struct-0.68-517.fc42.noarch.rpm + repoid: updates + size: 22838 + checksum: sha256:b3e4b28068c85a8daca5fda10016f793c48a2ceb58c219ee0aaabfa76d23aa05 + name: perl-Class-Struct + evr: 0.68-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-DynaLoader-1.56-517.fc42.x86_64.rpm + repoid: updates + size: 26919 + checksum: sha256:a9a2011c6c507571fe212458a1ea1fd8947c8c6e81cff69e4765ac701d9ff117 + name: perl-DynaLoader + evr: 1.56-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-Errno-1.38-517.fc42.x86_64.rpm + repoid: updates + size: 15546 + checksum: sha256:11735c549d10db1e37b0ede02d7082d7a1089982d959af33d4e121532ed8e7b2 + name: perl-Errno + evr: 1.38-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-Fcntl-1.18-517.fc42.x86_64.rpm + repoid: updates + size: 30791 + checksum: sha256:41f644061cd6bf31d2f36cbdae232ae7dad0368ddfdf7f2c03efab1407dcf126 + name: perl-Fcntl + evr: 1.18-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-File-Basename-2.86-517.fc42.noarch.rpm + repoid: updates + size: 17825 + checksum: sha256:a107db218a88f6d8ce248f8d191f93ef534d813c029ba17b4b108909671364d6 + name: perl-File-Basename + evr: 2.86-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-File-Copy-2.41-517.fc42.noarch.rpm + repoid: updates + size: 20838 + checksum: sha256:616ba9dc8c5967d4b4110289841d06231a5163c6533f1aca6504692d6d0479f0 + name: perl-File-Copy + evr: 2.41-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-File-Find-1.44-517.fc42.noarch.rpm + repoid: updates + size: 26167 + checksum: sha256:8c3b33c5b08a0686dbbff8b9f373b665edc3b4e28acb1f63aab625c3c61069ad + name: perl-File-Find + evr: 1.44-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-File-stat-1.14-517.fc42.noarch.rpm + repoid: updates + size: 17708 + checksum: sha256:fb3fa29ff20a80872ebba52e9aec104e441676cea413daa2f49b2e0a8c83c7b7 + name: perl-File-stat + evr: 1.14-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-FileHandle-2.05-517.fc42.noarch.rpm + repoid: updates + size: 16107 + checksum: sha256:3990e33d7817dee5cf750399db22e976dd2b39c385a4c603c2b5c15e2b7c0988 + name: perl-FileHandle + evr: 2.05-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-Getopt-Std-1.14-517.fc42.noarch.rpm + repoid: updates + size: 16303 + checksum: sha256:70b639ef67f2c0509b3ea4d090b7d9f8763336892abd1f8b440a4cba61318a1b + name: perl-Getopt-Std + evr: 1.14-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-I18N-Langinfo-0.24-517.fc42.x86_64.rpm + repoid: updates + size: 26492 + checksum: sha256:611ef70215de366c1bd351f27cf5de32012206a07cc09e0808a7b4c5658e8db2 + name: perl-I18N-Langinfo + evr: 0.24-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-IO-1.55-517.fc42.x86_64.rpm + repoid: updates + size: 84026 + checksum: sha256:5a718727da146fbf3d4c52038ee3b9f9030c04bfabd69e8eac4fb48ac9e48405 + name: perl-IO + evr: 1.55-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-IPC-Open3-1.22-517.fc42.noarch.rpm + repoid: updates + size: 22618 + checksum: sha256:8c77d394e3b29e0e93e8e2e7c852d607f1dd287248bde42bebd10e6f8a3384d4 + name: perl-IPC-Open3 + evr: 1.22-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-NDBM_File-1.17-517.fc42.x86_64.rpm + repoid: updates + size: 23407 + checksum: sha256:a06d0cc20d66ffca6511ba66c64d95bb0eac2b62126daa8cf303ec7d24818e6e + name: perl-NDBM_File + evr: 1.17-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-POSIX-2.20-517.fc42.x86_64.rpm + repoid: updates + size: 100253 + checksum: sha256:ad3472ac9c302067e983102b6c55f2c8adbcf9441df7dfd6538fa330ba44b816 + name: perl-POSIX + evr: 2.20-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-Scalar-List-Utils-1.69-1.fc42.x86_64.rpm + repoid: updates + size: 76605 + checksum: sha256:dee28af95c89cb85daf6f76e4ca690d0373ae90984cf502c1647e8044dd1d634 + name: perl-Scalar-List-Utils + evr: 5:1.69-1.fc42 + sourcerpm: perl-Scalar-List-Utils-1.69-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-SelectSaver-1.02-517.fc42.noarch.rpm + repoid: updates + size: 12247 + checksum: sha256:e3288e30b5e575ed7037bc17e42f9baf5895cad19426a229e6378623c1ba8cb2 + name: perl-SelectSaver + evr: 1.02-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-Symbol-1.09-517.fc42.noarch.rpm + repoid: updates + size: 14786 + checksum: sha256:555e7643eee520698083d78721387c9c5fabd2fdbd3e02e7c8ae7ed546d2506d + name: perl-Symbol + evr: 1.09-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-Sys-Guestfs-1.56.1-1.fc42.x86_64.rpm + repoid: updates + size: 291800 + checksum: sha256:5865d94b98ab3b632308b512b5dbffff787730488bfbf6884ba3f1219754048b + name: perl-Sys-Guestfs + evr: 1:1.56.1-1.fc42 + sourcerpm: libguestfs-1.56.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-base-2.27-517.fc42.noarch.rpm + repoid: updates + size: 16842 + checksum: sha256:d6f0661df87e5505fe6ae857b3b49c1d573ac72e906a30abe1c0a950906212d6 + name: perl-base + evr: 2.27-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-if-0.61.000-517.fc42.noarch.rpm + repoid: updates + size: 14575 + checksum: sha256:0fd14363166c2935666b5e7c3ec5da946ff156d4337df7d8407fe9dc055ba8f3 + name: perl-if + evr: 0.61.000-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-interpreter-5.40.2-517.fc42.x86_64.rpm + repoid: updates + size: 74139 + checksum: sha256:390b2bb97f90cd17013f21220f5ff9ff4cd2c51f11b098ad0c1b6cf0439f09ee + name: perl-interpreter + evr: 4:5.40.2-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-lib-0.65-517.fc42.x86_64.rpm + repoid: updates + size: 15549 + checksum: sha256:79703c355beb9e8a21eb66d7709f39b6f77d51542dd377b6ce4777a5d713f4cb + name: perl-lib + evr: 0.65-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-libs-5.40.2-517.fc42.x86_64.rpm + repoid: updates + size: 2443419 + checksum: sha256:60538af626036997c1b06f5806e70009fb868b28c0d7373f11e14eff1eb74cd6 + name: perl-libs + evr: 4:5.40.2-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-locale-1.12-517.fc42.noarch.rpm + repoid: updates + size: 14186 + checksum: sha256:06ae806acc73b97fb80d90cddd07684139119bce9fe41e322d8a8f84c8636325 + name: perl-locale + evr: 1.12-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-mro-1.29-517.fc42.x86_64.rpm + repoid: updates + size: 30851 + checksum: sha256:2736fabd4987e71c7c6f455c5c25b2af6fc3e618909f2f02d6b2e9db5d3805ec + name: perl-mro + evr: 1.29-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-overload-1.37-517.fc42.noarch.rpm + repoid: updates + size: 46881 + checksum: sha256:a3eb0fea1b2b1110d1d487ba0a4e4843a221753c46205e2f4a335926bf8d7e18 + name: perl-overload + evr: 1.37-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-overloading-0.02-517.fc42.noarch.rpm + repoid: updates + size: 13451 + checksum: sha256:ba6ab4fdfa4252e28609719f577c904b3a3bef63165fca659536281986be7f47 + name: perl-overloading + evr: 0.02-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/perl-vars-1.05-517.fc42.noarch.rpm + repoid: updates + size: 13558 + checksum: sha256:3467451fc37e08b120c1b19fc2b3658d1753809aa55534c92337ebeac24b8638 + name: perl-vars + evr: 1.05-517.fc42 + sourcerpm: perl-5.40.2-517.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/pipewire-1.4.5-1.fc42.x86_64.rpm + repoid: updates + size: 138405 + checksum: sha256:d0f35f31f839b8788f3b4625266720ee5a828dcc46136972c4672808a7b615e0 + name: pipewire + evr: 1.4.5-1.fc42 + sourcerpm: pipewire-1.4.5-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/pipewire-alsa-1.4.5-1.fc42.x86_64.rpm + repoid: updates + size: 63112 + checksum: sha256:122b40ef1cf6452bb773ddb1314d2891aa602203df3feaeb51e0c2a84da01c8c + name: pipewire-alsa + evr: 1.4.5-1.fc42 + sourcerpm: pipewire-1.4.5-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/pipewire-jack-audio-connection-kit-1.4.5-1.fc42.x86_64.rpm + repoid: updates + size: 13859 + checksum: sha256:48b5d0b57f76724ad58164ea70c8b89bfe0b0292112c8cd8ccf2085ff9f12af4 + name: pipewire-jack-audio-connection-kit + evr: 1.4.5-1.fc42 + sourcerpm: pipewire-1.4.5-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/pipewire-jack-audio-connection-kit-libs-1.4.5-1.fc42.x86_64.rpm + repoid: updates + size: 148931 + checksum: sha256:d88addd71288c33c7fe5bfc754316879866b6484d0b3d9f662743a1092800610 + name: pipewire-jack-audio-connection-kit-libs + evr: 1.4.5-1.fc42 + sourcerpm: pipewire-1.4.5-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/pipewire-libs-1.4.5-1.fc42.x86_64.rpm + repoid: updates + size: 2534642 + checksum: sha256:41f3376ce418ac09628f47fb4998c1d3f41c7b01d9c69e264041b0a5e8421462 + name: pipewire-libs + evr: 1.4.5-1.fc42 + sourcerpm: pipewire-1.4.5-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/pipewire-plugin-libcamera-1.4.5-1.fc42.x86_64.rpm + repoid: updates + size: 77993 + checksum: sha256:0605d60ee4d860b14ee3b1d4950040d707eb4737cf583f99e11c5bd9e088b7c7 + name: pipewire-plugin-libcamera + evr: 1.4.5-1.fc42 + sourcerpm: pipewire-1.4.5-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/pipewire-pulseaudio-1.4.5-1.fc42.x86_64.rpm + repoid: updates + size: 216354 + checksum: sha256:18c0b087e40c58d33a314fd001066d257fff147de6045aeee6c72aad0000122d + name: pipewire-pulseaudio + evr: 1.4.5-1.fc42 + sourcerpm: pipewire-1.4.5-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/podman-5.5.1-1.fc42.x86_64.rpm + repoid: updates + size: 16705223 + checksum: sha256:e8da8470a4fb33e522c4837856e74f1ce89f6720742df8a7a4a45718675d3987 + name: podman + evr: 5:5.5.1-1.fc42 + sourcerpm: podman-5.5.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/polkit-126-3.fc42.1.x86_64.rpm + repoid: updates + size: 164541 + checksum: sha256:6611b80281eb1efb65b5f144807767ae0e81c83a0cf22599d69ca2d22bed2694 + name: polkit + evr: 126-3.fc42.1 + sourcerpm: polkit-126-3.fc42.1.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/polkit-libs-126-3.fc42.1.x86_64.rpm + repoid: updates + size: 68995 + checksum: sha256:a5ea130ecd5f07fb00bdeceab78c3f4f3dd6621c89733e285ec76e2309b210d8 + name: polkit-libs + evr: 126-3.fc42.1 + sourcerpm: polkit-126-3.fc42.1.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/protobuf-c-1.5.1-1.fc42.x86_64.rpm + repoid: updates + size: 33386 + checksum: sha256:da70fd139c4673b31be35cf4a765564e0387f1e562958e3f938dd4bd3edb6142 + name: protobuf-c + evr: 1.5.1-1.fc42 + sourcerpm: protobuf-c-1.5.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/pylint-3.3.7-1.fc42.noarch.rpm + repoid: updates + size: 30921 + checksum: sha256:d7b85174e8be2e01d8d9c9742fa08e3ddf0f0df5336997f31014c228a44b1c2e + name: pylint + evr: 3.3.7-1.fc42 + sourcerpm: pylint-3.3.7-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python-unversioned-command-3.13.3-2.fc42.noarch.rpm + repoid: updates + size: 12156 + checksum: sha256:547aad674b3c0ef9ca2e713f2fad613df97df0456dac0e3057c2086812d35dd4 + name: python-unversioned-command + evr: 3.13.3-2.fc42 + sourcerpm: python3.13-3.13.3-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-3.13.3-2.fc42.x86_64.rpm + repoid: updates + size: 30402 + checksum: sha256:1d3c13458102b23a71fc0983a36d7b5b12a576b5ebc58401617aa248df85f823 + name: python3 + evr: 3.13.3-2.fc42 + sourcerpm: python3.13-3.13.3-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-audit-4.0.5-1.fc42.x86_64.rpm + repoid: updates + size: 70945 + checksum: sha256:a79f496273a207694001602245096da63941cb95d4cf4f476908128229b05acc + name: python3-audit + evr: 4.0.5-1.fc42 + sourcerpm: audit-4.0.5-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-boto3-1.38.36-1.fc42.noarch.rpm + repoid: updates + size: 443716 + checksum: sha256:ea03c5f12cebba895c5ecb1ba49a05b467737e616ac69bdccfab4e0975d7fe2f + name: python3-boto3 + evr: 1.38.36-1.fc42 + sourcerpm: python-boto3-1.38.36-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-botocore-1.38.36-1.fc42.noarch.rpm + repoid: updates + size: 8271562 + checksum: sha256:3641912800f715833da1a619bbf8b9813653235e9ea10fea7aacb731b7240ee1 + name: python3-botocore + evr: 1.38.36-1.fc42 + sourcerpm: python-botocore-1.38.36-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-dill-0.4.0-1.fc42.noarch.rpm + repoid: updates + size: 281781 + checksum: sha256:2110e175dc18a7a6cebe2d12a059e1529249941e8dd805ba4aadf513a542de99 + name: python3-dill + evr: 0.4.0-1.fc42 + sourcerpm: python-dill-0.4.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-fedfind-6.1.0-1.fc42.noarch.rpm + repoid: updates + size: 128127 + checksum: sha256:7a2b15d7c6b4f0fd51a1974759516b0f0d43bc97f3daba540bc16f995fcdd8aa + name: python3-fedfind + evr: 6.1.0-1.fc42 + sourcerpm: fedfind-6.1.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-fedora-messaging-3.7.1-1.fc42.noarch.rpm + repoid: updates + size: 115453 + checksum: sha256:a8bb224a246dbc2005c8cd2796c2ec243c186bbdf972c4955edffe0cd328d8ca + name: python3-fedora-messaging + evr: 3.7.1-1.fc42 + sourcerpm: fedora-messaging-3.7.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-koji-1.35.3-1.fc42.noarch.rpm + repoid: updates + size: 439967 + checksum: sha256:add2ddebbe4a4f1841370e9d53bfeb5ff51f56968e02c5a2f37a4609f6449a3a + name: python3-koji + evr: 1.35.3-1.fc42 + sourcerpm: koji-1.35.3-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-koji-cli-plugins-1.35.3-1.fc42.noarch.rpm + repoid: updates + size: 25850 + checksum: sha256:3815d53821f0a472b8ca5c439840219888f6e38a1ffbbef156014fdf9f9e7c7f + name: python3-koji-cli-plugins + evr: 1.35.3-1.fc42 + sourcerpm: koji-1.35.3-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-libs-3.13.3-2.fc42.x86_64.rpm + repoid: updates + size: 9611559 + checksum: sha256:1a559ff8d904ccc76b0669abb26ac26dd1b0455ff4d17855abc8702de0ee7a2b + name: python3-libs + evr: 3.13.3-2.fc42 + sourcerpm: python3.13-3.13.3-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-libselinux-3.8-2.fc42.x86_64.rpm + repoid: updates + size: 205321 + checksum: sha256:25be36d8d1ef372795ea866f288aa607fec9375b564de495bfb6cf227187a0fb + name: python3-libselinux + evr: 3.8-2.fc42 + sourcerpm: libselinux-3.8-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-libsemanage-3.8.1-2.fc42.x86_64.rpm + repoid: updates + size: 82317 + checksum: sha256:e94887e3d306e0cf794c4f73596ecf95344875a107b17fa63da4cf8ad71bd653 + name: python3-libsemanage + evr: 3.8.1-2.fc42 + sourcerpm: libsemanage-3.8.1-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-osbuild-153-1.fc42.noarch.rpm + repoid: updates + size: 423437 + checksum: sha256:794b6c97cc565eec4a3757d8fddebabcc4ddc4ebf3576e1000244dcf4908e4d2 + name: python3-osbuild + evr: 153-1.fc42 + sourcerpm: osbuild-153-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-productmd-1.45-1.fc42.noarch.rpm + repoid: updates + size: 101455 + checksum: sha256:af5ce67d4691cb56cf157c3ac9d32250522a0019d7cfeeebfb27ffbfec1b7e2d + name: python3-productmd + evr: 1.45-1.fc42 + sourcerpm: python-productmd-1.45-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-pylint-3.3.7-1.fc42.noarch.rpm + repoid: updates + size: 1082380 + checksum: sha256:2ec54e7f58e7cfd0b7a4b259d19d0f864d152ad0a6041c207151d1313f941b68 + name: python3-pylint + evr: 3.3.7-1.fc42 + sourcerpm: pylint-3.3.7-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-rpds-py-0.25.0-1.fc42.x86_64.rpm + repoid: updates + size: 318498 + checksum: sha256:941f89391383fde258f03c9f370784182a56fb82c3ae1637a4ce1852028928a8 + name: python3-rpds-py + evr: 0.25.0-1.fc42 + sourcerpm: python-rpds-py-0.25.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-ruamel-yaml-0.18.14-1.fc42.noarch.rpm + repoid: updates + size: 309185 + checksum: sha256:a6182fe9daf308522050782bf8a0fe24e5fe9b002cc05e645a329803cbba2c74 + name: python3-ruamel-yaml + evr: 0.18.14-1.fc42 + sourcerpm: python-ruamel-yaml-0.18.14-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-s3transfer-0.13.0-2.fc42.noarch.rpm + repoid: updates + size: 165218 + checksum: sha256:06ca6c15b201d93b9cd412817cf3b75461f21f3bac0b9ea87070ca50d5434519 + name: python3-s3transfer + evr: 0.13.0-2.fc42 + sourcerpm: python-s3transfer-0.13.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-setools-4.5.1-6.fc42.x86_64.rpm + repoid: updates + size: 744592 + checksum: sha256:9f85eb54af25bbd707369521285f159028927a39abc6dab148ed6c3d0e413118 + name: python3-setools + evr: 4.5.1-6.fc42 + sourcerpm: setools-4.5.1-6.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-setuptools-74.1.3-7.fc42.noarch.rpm + repoid: updates + size: 2056655 + checksum: sha256:8037aff48511f035644de1329391b2dd03cb9e214767c2911489ebe1a6c39282 + name: python3-setuptools + evr: 74.1.3-7.fc42 + sourcerpm: python-setuptools-74.1.3-7.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-tornado-6.4.1-3.fc42.x86_64.rpm + repoid: updates + size: 947204 + checksum: sha256:17296ce926f9d6cac59d975560dd52937a5bed5dff7028a7427f6122d6fe061e + name: python3-tornado + evr: 6.4.1-3.fc42 + sourcerpm: python-tornado-6.4.1-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-twisted+tls-24.11.0-1.fc42.noarch.rpm + repoid: updates + size: 9901 + checksum: sha256:2408dc5d0d2a58dfadd294bda305b24a530afc31751d86bb0ca0c3fb59e7945a + name: python3-twisted+tls + evr: 24.11.0-1.fc42 + sourcerpm: python-twisted-24.11.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-twisted-24.11.0-1.fc42.noarch.rpm + repoid: updates + size: 7144897 + checksum: sha256:45b5111e45254b15f93304b42b7a2ff62338223166c83ba034ef13ec77d34772 + name: python3-twisted + evr: 24.11.0-1.fc42 + sourcerpm: python-twisted-24.11.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-typer-slim+standard-0.15.4-1.fc42.noarch.rpm + repoid: updates + size: 12337 + checksum: sha256:781cc89da6fddb606d1b58f225c637a176f8f77909c563860606baab89a599a5 + name: python3-typer-slim+standard + evr: 0.15.4-1.fc42 + sourcerpm: python-typer-0.15.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-typer-slim-0.15.4-1.fc42.noarch.rpm + repoid: updates + size: 142236 + checksum: sha256:90d3802bdc4a492f00caa10db5f31303f2a253be1ac609ca585fc038a8ebf963 + name: python3-typer-slim + evr: 0.15.4-1.fc42 + sourcerpm: python-typer-0.15.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/p/python3-unbound-1.23.0-3.fc42.x86_64.rpm + repoid: updates + size: 120851 + checksum: sha256:c7bac174c56cfb6a606440360133ab01efb560421bebce031e07c2d8fdb77a3f + name: python3-unbound + evr: 1.23.0-3.fc42 + sourcerpm: unbound-1.23.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qatzip-libs-1.3.1-1.fc42.x86_64.rpm + repoid: updates + size: 67584 + checksum: sha256:62fad4c8c1d4a7fd8e55f4f8530405bb722b20a4e457f49e10d11a949673ede9 + name: qatzip-libs + evr: 1.3.1-1.fc42 + sourcerpm: qatzip-1.3.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-audio-alsa-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 23490 + checksum: sha256:c04687fd7b12989a20e794851872d47049659c506ea5cb558f7f3190ca20714e + name: qemu-audio-alsa + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-audio-dbus-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 72967 + checksum: sha256:8fd8c682f3529cf2006f6ccfab69e4740914074b58fbe021f6e4da2a69145c9a + name: qemu-audio-dbus + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-audio-jack-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 22117 + checksum: sha256:46009355c01ca0e4691209edda750966858ce0113be41ed902292444f96a25c9 + name: qemu-audio-jack + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-audio-oss-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 22232 + checksum: sha256:6caeaf102d402fc003ceb2acf3e12398833e6a213a68600bb376fd7560b67557 + name: qemu-audio-oss + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-audio-pa-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 23736 + checksum: sha256:dae04b848b7ead899a6627bfe0042a70e4ab21ed1490024097504333e44e869b + name: qemu-audio-pa + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-audio-pipewire-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 30492 + checksum: sha256:a1ccc7bacca9e4505e86123f79d2cd60172e97f570689cd7fc4d9e3b8d830834 + name: qemu-audio-pipewire + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-audio-sdl-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 20685 + checksum: sha256:661d044702e7391192a0d6de5a28bb5149e0b1fcb30ee8f1e4ce6d83d0ae3142 + name: qemu-audio-sdl + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-audio-spice-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 19730 + checksum: sha256:b3126f86c40d71bf235669de95841747b703bed4ce6187d995877ad51f41078e + name: qemu-audio-spice + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-block-blkio-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 26103 + checksum: sha256:72653247c581245d6abf006dcb897012fe53903a25cbc31d9d83b1fbb0976f3d + name: qemu-block-blkio + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-block-curl-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 25124 + checksum: sha256:28f732acc466e23da4abc8a0ee0bbfeaa25a1d4216e9fceffadf122fcda00ea0 + name: qemu-block-curl + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-block-dmg-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 17509 + checksum: sha256:025546715a35061d248c97b39f40bcbcef5a60ca35cfe5de5995cee4eda2ce27 + name: qemu-block-dmg + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-block-gluster-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 26903 + checksum: sha256:122c49eda8448b44ae0dfaf3fc3644d542f689015bea09534f0d6cd5474feedb + name: qemu-block-gluster + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-block-iscsi-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 34002 + checksum: sha256:8d32c2abe60c8c40d0f29050ddade2079004d32fcd875b6a17d7216bdd2b2152 + name: qemu-block-iscsi + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-block-nfs-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 25488 + checksum: sha256:f246a4d4ba9537ae83fe7946141fb2cbddd99f66139299bece83af079d8032a1 + name: qemu-block-nfs + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-block-rbd-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 29937 + checksum: sha256:cf7c56f9792ed112df56ea529a9a2af3463a2c471b9711a2213591eae65ddfce + name: qemu-block-rbd + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-block-ssh-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 28304 + checksum: sha256:93dde35e306a949f7d467551a335657932dfff020b80e8bd002dc4a05c13a0ef + name: qemu-block-ssh + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-char-baum-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 22400 + checksum: sha256:e81e60043f6f0b9655789d9ddeb0f929a89a683623b483986c85b58bc79e5d4b + name: qemu-char-baum + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-char-spice-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 21050 + checksum: sha256:e528dceb9dd501c7515a7eff220c16e44e28e1efa71dc9dfa4d62c67f441a5ce + name: qemu-char-spice + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-common-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 571866 + checksum: sha256:7bd824d0de17c130c1d07b06748fea6a3532cf5e1771a4da43100aa3c4461d34 + name: qemu-common + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-device-display-qxl-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 43603 + checksum: sha256:b4cb11046ac3058e8800f97381271b2b55e40dd009cc45b0232a21e447caffe1 + name: qemu-device-display-qxl + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-device-display-vhost-user-gpu-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 262127 + checksum: sha256:eed34d49a701e226962f75d09179d7259c0bfe121923c2b06ea50c406c83e6fe + name: qemu-device-display-vhost-user-gpu + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-device-display-virtio-gpu-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 39401 + checksum: sha256:dac75794966d8fd0c8770f12c61dc9dd48434c7b5d3ebf4ec35d2b81cbe67bfd + name: qemu-device-display-virtio-gpu + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-device-display-virtio-gpu-ccw-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 17800 + checksum: sha256:1047c9195d8742b6fc446b8c9139d45038cfcfa25f45a8a7ccaedbd6ca4d69d2 + name: qemu-device-display-virtio-gpu-ccw + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-device-display-virtio-gpu-gl-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 29011 + checksum: sha256:c1074615bf201c4a023519f00d7a8244c021302e9738b87847a4f98300781a4a + name: qemu-device-display-virtio-gpu-gl + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-device-display-virtio-gpu-pci-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 18490 + checksum: sha256:0cc80d7305e8f26ac6484f89b7d4a3fca80b80e71315f9dc3d772f7476d211ae + name: qemu-device-display-virtio-gpu-pci + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-device-display-virtio-gpu-pci-gl-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 17420 + checksum: sha256:858bef74bfa2c982eb106ad937c9645d1597c1fe54762fe57e2c79f742e70bbe + name: qemu-device-display-virtio-gpu-pci-gl + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-device-display-virtio-gpu-pci-rutabaga-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 17458 + checksum: sha256:abb2712e33880f729379d28298b9b002a851eaa43e328b638ae7fff1bb57e04f + name: qemu-device-display-virtio-gpu-pci-rutabaga + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-device-display-virtio-gpu-rutabaga-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 27253 + checksum: sha256:77c72e841029158df62961b9dc8d6d74a3593d7b3ecaaaf6e2eabbbd6df9442e + name: qemu-device-display-virtio-gpu-rutabaga + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-device-display-virtio-vga-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 19952 + checksum: sha256:cc1e93327aa4bfb98ce9ae99b26a169d955a0d744d14909ddeeee3d3e558d095 + name: qemu-device-display-virtio-vga + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-device-display-virtio-vga-gl-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 17620 + checksum: sha256:b30d33a1ded104dbaef7a8b785489161c5578f161b1c632ff55ace0e4adb5345 + name: qemu-device-display-virtio-vga-gl + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-device-display-virtio-vga-rutabaga-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 17762 + checksum: sha256:14c6ad9d2700e41a648624fa4a33f138a1a27e33a13fd04d2de07b5bdf13b61f + name: qemu-device-display-virtio-vga-rutabaga + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-device-usb-host-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 31455 + checksum: sha256:cc03722d672f7009c842c38ec709cba3788befee838309aa82df4057f9890c98 + name: qemu-device-usb-host + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-device-usb-redirect-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 38382 + checksum: sha256:7c63e00d7c1c5c343892f89de81433b62ee6d3bf87f500db796a4c88b64c3a02 + name: qemu-device-usb-redirect + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-device-usb-smartcard-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 25983 + checksum: sha256:935afb8d9f494be9d5312ccd748aade8150b75d1d26258208da6167567cfd243 + name: qemu-device-usb-smartcard + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-img-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 2654982 + checksum: sha256:0f822576f02cd1164e5112b8f2c1bf17cf6f234b99bc69b1169ef09f81efa8e7 + name: qemu-img + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-kvm-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 13281 + checksum: sha256:0b21c8ae0b1cb5033a30bd22653c307a135b380304ebaf19bac30384b2c20e30 + name: qemu-kvm + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-kvm-core-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 13317 + checksum: sha256:ca88e227f5ece9ba5972b36dc385132df0f3c3976710673b189d6ee7c619bed8 + name: qemu-kvm-core + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-pr-helper-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 350196 + checksum: sha256:ae2016d6b2b13111866aa5f61b781a36845ebd37da89c4a9ec2b9561288aff33 + name: qemu-pr-helper + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-system-aarch64-core-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 5279327 + checksum: sha256:faf3b1a17afe6650c3106779c79241d89dbd07343e1d438cd8beccef9c894ea8 + name: qemu-system-aarch64-core + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-system-ppc-core-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 9124205 + checksum: sha256:7b4a56a56bc423cbfb76554e9db89e9c59de3f51682e87278656ccecc74f23ef + name: qemu-system-ppc-core + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-system-s390x-core-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 3295591 + checksum: sha256:2060d3d541ccc2760a3d705f3f8cadc9d434621b5ec375ba3826fe2d2fa4a901 + name: qemu-system-s390x-core + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-system-x86-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 14989 + checksum: sha256:6ac519f2d65df3c68ae34f23b9fbd86f86e944cc9e1e2f967517324dcbd18ab4 + name: qemu-system-x86 + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-system-x86-core-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 8784925 + checksum: sha256:e58670b726c9596c53371b2a0d547311d1a43213a8c9a42662538ec348e7b872 + name: qemu-system-x86-core + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-ui-curses-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 25609 + checksum: sha256:cd583d2c0bad1a37282e6c3b96395d4236bc58b9a53d83993908415e0baae93c + name: qemu-ui-curses + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-ui-egl-headless-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 19421 + checksum: sha256:f73186aa4ed2df4806cfb96bea78d7d49453769e0bb5320206ac89d244e16376 + name: qemu-ui-egl-headless + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-ui-gtk-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 42151 + checksum: sha256:d1522f7e1e54a92aa529ec8def20c8c53ea26fb3fefb34d9e7c31720c3021d69 + name: qemu-ui-gtk + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-ui-opengl-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 26612 + checksum: sha256:22ab33dbf9a42c2653a626b6762da7c8acdcdea5b8799bf2856219a748bd3f89 + name: qemu-ui-opengl + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-ui-sdl-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 30043 + checksum: sha256:05f4c618e687bbffcca9d25b9e6005e61b361707f76351d78c7d9c8625b20670 + name: qemu-ui-sdl + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-ui-spice-app-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 19740 + checksum: sha256:5369e7529fb60bcd6ebfadc9f50b1122f77c532288553a25e90b66e963440fc5 + name: qemu-ui-spice-app + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-ui-spice-core-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 36689 + checksum: sha256:6b958a7c87903e8eeb69a7c44406a097875d95f2b5e8bc135250866a5d2f2487 + name: qemu-ui-spice-core + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 26285 + checksum: sha256:22cf00e3026e1bdf1766d996c77da037d153907a7991601d804e61514aa81f06 + name: qemu-user-static + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-aarch64-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 2649676 + checksum: sha256:e02d3d3f3b854163cdf1bb43091607dc4007cccf994edec201d1c620bb0a3be5 + name: qemu-user-static-aarch64 + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-alpha-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 1404527 + checksum: sha256:68c464d7e5aef43cc0d7b1b520877a133d41bd9db7142a05ebdd53a8402ee94f + name: qemu-user-static-alpha + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-arm-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 2238880 + checksum: sha256:ec3ba4d3d4759efead910cbb2320352aa2fd7f85438fafd2d1dfc784c486501f + name: qemu-user-static-arm + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-hexagon-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 1795406 + checksum: sha256:a538c71060a3a3cdfbbdde035dc3daee970ad3a8594e3658f6ec8a927b2af61c + name: qemu-user-static-hexagon + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-hppa-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 1435179 + checksum: sha256:cc38b317b38896a252211a2f8d4e246b39b10ea532fbcbc4f5ad68656ec8a94c + name: qemu-user-static-hppa + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-loongarch64-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 1540649 + checksum: sha256:5ba5f0d130b9a66e94e40e929d760ad8b5baee032b62e797e507a3ad9b90fd43 + name: qemu-user-static-loongarch64 + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-m68k-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 1477045 + checksum: sha256:a1bd89cc63b7e08b1d075000bc89e2bbf2ddef9ab0fda72fd2659a9497da6956 + name: qemu-user-static-m68k + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-microblaze-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 1749025 + checksum: sha256:12e413c8dbe475260d4615d9da79f156fd49d6bcb641412995255df7c4724661 + name: qemu-user-static-microblaze + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-mips-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 4042559 + checksum: sha256:966af0d06c9223bb533080424e1a35ed095fe3e5571bb0915a47074b8787f106 + name: qemu-user-static-mips + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-or1k-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 1393537 + checksum: sha256:150264aa6827cc514b56aedcf0856256e3b573e2e651cf490028747d8f15ec71 + name: qemu-user-static-or1k + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-ppc-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 2650858 + checksum: sha256:471a784951248c8b88b3a90fa738017e65bb696f6e7e1db23a33039316dd3f21 + name: qemu-user-static-ppc + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-riscv-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 2180064 + checksum: sha256:cd1f70c89874a2df7e191aa444c3899e867a0fb57239ca516f2e0effdd432633 + name: qemu-user-static-riscv + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-s390x-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 1520778 + checksum: sha256:4e9a33f36a47485008bb5f2e6b63db6e7423bf1410bef83ce07971bc93c9ada5 + name: qemu-user-static-s390x + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-sh4-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 1760934 + checksum: sha256:baacd9a5a9128a6533ea8f46d4e7caf3ec70119692409ff97d1bf7629c10c671 + name: qemu-user-static-sh4 + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-sparc-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 2232434 + checksum: sha256:6269f999edf138e18ccced0d566fd339e1c71e24a2d746bf23dabf29ab94d9f5 + name: qemu-user-static-sparc + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-x86-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 2101042 + checksum: sha256:5231faf7dd989293c9a35eebd138500cea2057a8cddd1717ec43e0f3f9c4722d + name: qemu-user-static-x86 + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qemu-user-static-xtensa-9.2.4-1.fc42.x86_64.rpm + repoid: updates + size: 2355862 + checksum: sha256:de07f108cccb9af5932bc3dce1ab9e462f7fbb9cb979df39db5a4ce817e59711 + name: qemu-user-static-xtensa + evr: 2:9.2.4-1.fc42 + sourcerpm: qemu-9.2.4-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qt5-srpm-macros-5.15.17-1.fc42.noarch.rpm + repoid: updates + size: 8924 + checksum: sha256:da951e3cb1311a36f306bf10deb6860f3c80adbbdc2b142eb9353a646fd7ac7f + name: qt5-srpm-macros + evr: 5.15.17-1.fc42 + sourcerpm: qt5-5.15.17-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/q/qt6-srpm-macros-6.9.1-1.fc42.noarch.rpm + repoid: updates + size: 9607 + checksum: sha256:57000d8fcef8e64f57b547a6ba85215af6a75f3ede73db010ba09b0e69143e0f + name: qt6-srpm-macros + evr: 6.9.1-1.fc42 + sourcerpm: qt6-6.9.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/r/realtek-firmware-20250613-1.fc42.noarch.rpm + repoid: updates + size: 5157899 + checksum: sha256:5cfe6d40155cbf41f10ae5253b16f7aa15837b948b5e87586a6efa21c659a1cf + name: realtek-firmware + evr: 20250613-1.fc42 + sourcerpm: linux-firmware-20250613-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/r/redhat-rpm-config-342-4.fc42.noarch.rpm + repoid: updates + size: 83033 + checksum: sha256:0c70a5b5b682f623b3a623df9b96c2eefc383c3e3014370d43d2a3e6faad2416 + name: redhat-rpm-config + evr: 342-4.fc42 + sourcerpm: redhat-rpm-config-342-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/r/rpcbind-1.2.7-2.rc1.fc42.x86_64.rpm + repoid: updates + size: 60206 + checksum: sha256:96ef56f80638cdb32506cddb43f0358a69389f528c2e1058d2a06407dadde3b5 + name: rpcbind + evr: 1.2.7-2.rc1.fc42 + sourcerpm: rpcbind-1.2.7-2.rc1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/r/rpm-ostree-2025.8-2.fc42.x86_64.rpm + repoid: updates + size: 4713180 + checksum: sha256:fd99caa1eb05ea30a1e4ca44b4ce015be71f09e4cd52ff5294a011c741f52e78 + name: rpm-ostree + evr: 2025.8-2.fc42 + sourcerpm: rpm-ostree-2025.8-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/r/rpm-ostree-libs-2025.8-2.fc42.x86_64.rpm + repoid: updates + size: 48604 + checksum: sha256:3eaab84587d170a94fce74ba7b647da328f7047d1e6f39ea4ab8c8d968684a14 + name: rpm-ostree-libs + evr: 2025.8-2.fc42 + sourcerpm: rpm-ostree-2025.8-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/SDL3-3.2.12-1.fc42.x86_64.rpm + repoid: updates + size: 1048560 + checksum: sha256:fe92be551f4cc3c75659b082f01ee25b26e2d3318c43f0a58dd7b682e02d5e69 + name: SDL3 + evr: 3.2.12-1.fc42 + sourcerpm: SDL3-3.2.12-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/samba-client-libs-4.22.2-1.fc42.x86_64.rpm + repoid: updates + size: 5848572 + checksum: sha256:58a998fb67aa6932dc307ce61b8243df44dad85b9f51ff59347a482c537f5502 + name: samba-client-libs + evr: 2:4.22.2-1.fc42 + sourcerpm: samba-4.22.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/samba-common-4.22.2-1.fc42.noarch.rpm + repoid: updates + size: 181744 + checksum: sha256:0325ac42767702e4540a045c122e58bb4b0d26705f26994e26376bade2ec1f78 + name: samba-common + evr: 2:4.22.2-1.fc42 + sourcerpm: samba-4.22.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/samba-common-libs-4.22.2-1.fc42.x86_64.rpm + repoid: updates + size: 111142 + checksum: sha256:9e16cfc9625e7ede9a7447a9573884d67fefe268d313f4717d910a88c579e360 + name: samba-common-libs + evr: 2:4.22.2-1.fc42 + sourcerpm: samba-4.22.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/sdl2-compat-2.32.56-1.fc42.x86_64.rpm + repoid: updates + size: 138188 + checksum: sha256:1b56832520a1fb11cdf8bc40c7a4430504a95f77b2fb334dbe28550d3c181361 + name: sdl2-compat + evr: 2.32.56-1.fc42 + sourcerpm: sdl2-compat-2.32.56-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/seabios-bin-1.17.0-4.fc42.noarch.rpm + repoid: updates + size: 194999 + checksum: sha256:3d27c06f013c08ecf3bdf8b6905ce333f14aa5e248da0bf0e98b23dcb78457fa + name: seabios-bin + evr: 1.17.0-4.fc42 + sourcerpm: seabios-1.17.0-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/seavgabios-bin-1.17.0-4.fc42.noarch.rpm + repoid: updates + size: 52454 + checksum: sha256:aa55f400238b0c517d5682d736648fedacdc374a159bbaede3eadd29c788aa6f + name: seavgabios-bin + evr: 1.17.0-4.fc42 + sourcerpm: seabios-1.17.0-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/selinux-policy-41.44-1.fc42.noarch.rpm + repoid: updates + size: 54493 + checksum: sha256:133b4628e654bed9b43a533b07c30cf271457b43f2abc6e45d02dd9cde7642b1 + name: selinux-policy + evr: 41.44-1.fc42 + sourcerpm: selinux-policy-41.44-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/selinux-policy-targeted-41.44-1.fc42.noarch.rpm + repoid: updates + size: 7113819 + checksum: sha256:18bab6cf0d8ef4f4979c377f6dfc3f80352ed18febc60e5067fa59f35c2902ce + name: selinux-policy-targeted + evr: 41.44-1.fc42 + sourcerpm: selinux-policy-41.44-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/skopeo-1.19.0-2.fc42.x86_64.rpm + repoid: updates + size: 9342698 + checksum: sha256:6a468a13596310074be6fb7546f185482fa6e93472c92f8a52875f0c98b3ada0 + name: skopeo + evr: 1:1.19.0-2.fc42 + sourcerpm: skopeo-1.19.0-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/spirv-tools-libs-2025.2-2.fc42.x86_64.rpm + repoid: updates + size: 1609753 + checksum: sha256:3fd60f0f8280352a7a15662edf58c4b3b3f1f7b6e2eaa14f2a9e11c93e2c6e99 + name: spirv-tools-libs + evr: 2025.2-2.fc42 + sourcerpm: spirv-tools-2025.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/swtpm-0.10.1-1.fc42.x86_64.rpm + repoid: updates + size: 36460 + checksum: sha256:ce766c1bb278833a748e381fe23c1db8d9d0d34d1ebe104d5fb1803ac6d09b8d + name: swtpm + evr: 0.10.1-1.fc42 + sourcerpm: swtpm-0.10.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/swtpm-libs-0.10.1-1.fc42.x86_64.rpm + repoid: updates + size: 65109 + checksum: sha256:4092ddad8ead008e3358cb3ac51029698e2a03279e810df39079e608406174e8 + name: swtpm-libs + evr: 0.10.1-1.fc42 + sourcerpm: swtpm-0.10.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/swtpm-selinux-0.10.1-1.fc42.noarch.rpm + repoid: updates + size: 24418 + checksum: sha256:be372e11868d5d5790bf32c102effaa386b2e68efea3410c13268e7554154176 + name: swtpm-selinux + evr: 0.10.1-1.fc42 + sourcerpm: swtpm-0.10.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/swtpm-tools-0.10.1-1.fc42.x86_64.rpm + repoid: updates + size: 124370 + checksum: sha256:814512670c29687ec01833a5bf51032606cc8cfd9d12b8efda387b208208aad9 + name: swtpm-tools + evr: 0.10.1-1.fc42 + sourcerpm: swtpm-0.10.1-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/syslinux-6.04-0.31.fc42.x86_64.rpm + repoid: updates + size: 581788 + checksum: sha256:6b0cbe81385f6a4e0be4ee3a00b33489be748971fb6bad8b8904c76e05c47e98 + name: syslinux + evr: 6.04-0.31.fc42 + sourcerpm: syslinux-6.04-0.31.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/syslinux-extlinux-6.04-0.31.fc42.x86_64.rpm + repoid: updates + size: 134816 + checksum: sha256:28ad3f11ac0142f9f0694f83ed632da7483fdc36f653b1b634478e31c8925327 + name: syslinux-extlinux + evr: 6.04-0.31.fc42 + sourcerpm: syslinux-6.04-0.31.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/syslinux-extlinux-nonlinux-6.04-0.31.fc42.noarch.rpm + repoid: updates + size: 403005 + checksum: sha256:636e331c0e2bd93b24749a1615cadaced616839c3777e49da414350f5b17667a + name: syslinux-extlinux-nonlinux + evr: 6.04-0.31.fc42 + sourcerpm: syslinux-6.04-0.31.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/syslinux-nonlinux-6.04-0.31.fc42.noarch.rpm + repoid: updates + size: 611197 + checksum: sha256:11af8e00325609969575e6069e2b42e261aa62a05e0662c5723eae7cb7e94c22 + name: syslinux-nonlinux + evr: 6.04-0.31.fc42 + sourcerpm: syslinux-6.04-0.31.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/systemd-257.6-1.fc42.x86_64.rpm + repoid: updates + size: 4220545 + checksum: sha256:4ce8982911fe8853edddbd16f0e91c21c4eb8dcf21bf2ef75ede3f97f627882b + name: systemd + evr: 257.6-1.fc42 + sourcerpm: systemd-257.6-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/systemd-container-257.6-1.fc42.x86_64.rpm + repoid: updates + size: 900584 + checksum: sha256:c873aae925d6683fbc832790194f570229e4883a990dd8a73bb3db785a30d861 + name: systemd-container + evr: 257.6-1.fc42 + sourcerpm: systemd-257.6-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/systemd-networkd-257.6-1.fc42.x86_64.rpm + repoid: updates + size: 791422 + checksum: sha256:ecf7b998e458ff357cc1758bb372251a2f817e378a5363a9a8c139710bc4610e + name: systemd-networkd + evr: 257.6-1.fc42 + sourcerpm: systemd-257.6-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/systemd-pam-257.6-1.fc42.x86_64.rpm + repoid: updates + size: 423539 + checksum: sha256:b83877f73d2ea1f01e8fb4c2b0f9e123ada04954616acccd7745a0ed044cb275 + name: systemd-pam + evr: 257.6-1.fc42 + sourcerpm: systemd-257.6-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/systemd-resolved-257.6-1.fc42.x86_64.rpm + repoid: updates + size: 321782 + checksum: sha256:1795f296bf46240b597803272435e802941234a14734a4548704a94aef346087 + name: systemd-resolved + evr: 257.6-1.fc42 + sourcerpm: systemd-257.6-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/systemd-rpm-macros-257.6-1.fc42.noarch.rpm + repoid: updates + size: 37227 + checksum: sha256:638d29d705a510d9320b0482ae3aec80a4168cf392583c4ca6a3ecb5dcb34913 + name: systemd-rpm-macros + evr: 257.6-1.fc42 + sourcerpm: systemd-257.6-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/systemd-shared-257.6-1.fc42.x86_64.rpm + repoid: updates + size: 1853757 + checksum: sha256:39913562bc66ab69a1e64b9dec06d0726e7a82c75659cda3d21ed3c46d24319f + name: systemd-shared + evr: 257.6-1.fc42 + sourcerpm: systemd-257.6-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/s/systemd-udev-257.6-1.fc42.x86_64.rpm + repoid: updates + size: 2517009 + checksum: sha256:5a472893da898bb40615ef595f5738281be53f3fde8d0181a19f8eea8523d7db + name: systemd-udev + evr: 257.6-1.fc42 + sourcerpm: systemd-257.6-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/t/tinysparql-3.9.2-1.fc42.x86_64.rpm + repoid: updates + size: 1035124 + checksum: sha256:0004b2f1bb83c7a5d15f012845d753a8b6afee743745a3079c27c81a418aaa34 + name: tinysparql + evr: 3.9.2-1.fc42 + sourcerpm: tinysparql-3.9.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/t/tiwilink-firmware-20250613-1.fc42.noarch.rpm + repoid: updates + size: 4844501 + checksum: sha256:fc436a583d25213d52e07ada876a8875bbdc56fc238c88aae31ebe79e48f9058 + name: tiwilink-firmware + evr: 20250613-1.fc42 + sourcerpm: linux-firmware-20250613-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/u/unbound-anchor-1.23.0-3.fc42.x86_64.rpm + repoid: updates + size: 38489 + checksum: sha256:a582e964bb26c562156fce496beffdf783a7a520f4c59d79c9c081d085a7c219 + name: unbound-anchor + evr: 1.23.0-3.fc42 + sourcerpm: unbound-1.23.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/u/unbound-libs-1.23.0-3.fc42.x86_64.rpm + repoid: updates + size: 573759 + checksum: sha256:3f60b902ea4b90ecad7fe67227bc88640ae04519b672f6e5a9c1484485ba8402 + name: unbound-libs + evr: 1.23.0-3.fc42 + sourcerpm: unbound-1.23.0-3.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/u/upower-1.90.9-4.fc42.x86_64.rpm + repoid: updates + size: 119751 + checksum: sha256:c636178fc943d205ac2de2f4700e26e6127b499752fdbbf9751fb1d0bae3089e + name: upower + evr: 1.90.9-4.fc42 + sourcerpm: upower-1.90.9-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/u/upower-libs-1.90.9-4.fc42.x86_64.rpm + repoid: updates + size: 59694 + checksum: sha256:f6747db985d6b4a4015fd17771be96d62c811e96c45bac30f6f3658b0df3f791 + name: upower-libs + evr: 1.90.9-4.fc42 + sourcerpm: upower-1.90.9-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/v/virt-win-reg-1.54.0-1.fc42.noarch.rpm + repoid: updates + size: 32573 + checksum: sha256:555052240bee21d21855a32ed264c8ae30f4e7a6647b11deac5b1fad7bbf73fa + name: virt-win-reg + evr: 1.54.0-1.fc42 + sourcerpm: guestfs-tools-1.54.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/v/virtiofsd-1.13.2-1.fc42.x86_64.rpm + repoid: updates + size: 1020351 + checksum: sha256:2135ce2e662b587dc8ed33cd150f7d1aa1fabafad6e6a5de0e0e050035dece16 + name: virtiofsd + evr: 1.13.2-1.fc42 + sourcerpm: virtiofsd-1.13.2-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/v/vte-profile-0.80.2-2.fc42.x86_64.rpm + repoid: updates + size: 27824 + checksum: sha256:77f214e7905631bb1ec12f7eff1e83723bda7d1d39f07aa0929fee15b1e39bde + name: vte-profile + evr: 0.80.2-2.fc42 + sourcerpm: vte291-0.80.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/v/vte291-0.80.2-2.fc42.x86_64.rpm + repoid: updates + size: 426811 + checksum: sha256:ab607cf2ed29f757de3827efebd99d0e037eeccf9f1abab0d27fc1aec95463f0 + name: vte291 + evr: 0.80.2-2.fc42 + sourcerpm: vte291-0.80.2-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/v/vulkan-loader-1.4.313.0-1.fc42.x86_64.rpm + repoid: updates + size: 155132 + checksum: sha256:64117851cd7bdeca77984c5c25de20cd4a57da75ff6e292d74641bd40dfbf508 + name: vulkan-loader + evr: 1.4.313.0-1.fc42 + sourcerpm: vulkan-loader-1.4.313.0-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/w/wget2-2.2.0-5.fc42.x86_64.rpm + repoid: updates + size: 286676 + checksum: sha256:e734ac83dee949176cacce73e4e40cc7a60a8198345ac9eaea18ecb17eac4cc3 + name: wget2 + evr: 2.2.0-5.fc42 + sourcerpm: wget2-2.2.0-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/w/wget2-libs-2.2.0-5.fc42.x86_64.rpm + repoid: updates + size: 151319 + checksum: sha256:e815d3690bd4aa1d14a940a279e4f1e7e7a2b959b78f8d3940f1fc59eb16d57f + name: wget2-libs + evr: 2.2.0-5.fc42 + sourcerpm: wget2-2.2.0-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/w/wget2-wget-2.2.0-5.fc42.x86_64.rpm + repoid: updates + size: 9967 + checksum: sha256:803bce888790ac58006ebb23f2e0bc58cd34252d6cc9211d3ad39db242af37c4 + name: wget2-wget + evr: 2.2.0-5.fc42 + sourcerpm: wget2-2.2.0-5.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/w/which-2.23-2.fc42.x86_64.rpm + repoid: updates + size: 42742 + checksum: sha256:8e61dfbaad26da628868199828b6fb1e386f45bc4237f336d8a3b93a6e43b2de + name: which + evr: 2.23-2.fc42 + sourcerpm: which-2.23-2.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/x/xdg-desktop-portal-1.20.3-1.fc42.x86_64.rpm + repoid: updates + size: 517395 + checksum: sha256:351ab2136901ec18bb5a2e7713296787d50280f8efc5f430235faf223577cfe3 + name: xdg-desktop-portal + evr: 1.20.3-1.fc42 + sourcerpm: xdg-desktop-portal-1.20.3-1.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/x/xen-libs-4.19.2-4.fc42.x86_64.rpm + repoid: updates + size: 666564 + checksum: sha256:8a4e4bc3e49f7bfc52fbb4217b17ef4f388e1e2a76d5a87f053d9bd31b464d64 + name: xen-libs + evr: 4.19.2-4.fc42 + sourcerpm: xen-4.19.2-4.fc42.src.rpm + - url: https://download-ib01.fedoraproject.org/pub/fedora/linux/updates/42/Everything/x86_64/Packages/x/xen-licenses-4.19.2-4.fc42.x86_64.rpm + repoid: updates + size: 52476 + checksum: sha256:08dd5e275b8d74fe9c7122890a62ad78129efda62c12b61004c4107ba3d3a7af + name: xen-licenses + evr: 4.19.2-4.fc42 + sourcerpm: xen-4.19.2-4.fc42.src.rpm + source: [] + module_metadata: [] diff --git a/ci/hermetic/update_artifacts_lockfile b/ci/hermetic/update_artifacts_lockfile new file mode 100755 index 0000000000..ff9c280cc3 --- /dev/null +++ b/ci/hermetic/update_artifacts_lockfile @@ -0,0 +1,153 @@ +#!/usr/bin/env python3 + +""" +This script reads a YAML file containing a list of artifacts. +For each artifact, it downloads the file from the specified 'download_url', +calculates its checksum using the algorithm defined in the 'checksum' field +(e.g., 'sha256', 'md5'), and then updates the 'checksum' value in the YAML +file if it has changed. + +The YAML file is expected to have a top-level key 'artifacts' which is a list +of dictionaries. Each dictionary should have at least 'download_url', +'checksum', and 'filename' keys. The 'checksum' value must be in the format +':'. + +Dependencies: +- ruamel.yaml: For reading and writing YAML files while preserving style. +- requests: For downloading files from URLs. +""" + +from ruamel.yaml import YAML +import requests +import hashlib +import os +from typing import List, Dict, Any, Optional + + +def calculate_checksum(file_content: bytes, + algorithm_name: str) -> Optional[str]: + """ + Calculates the checksum of given file content using the specified + algorithm. + + Args: + file_content (bytes): The content of the file as bytes. + algorithm_name (str): The name of the hash algorithm (e.g., 'md5', + 'sha256'). + + Returns: + Optional[str]: The calculated hash value in hexadecimal format, or None + if the algorithm is unsupported. + """ + try: + hasher = hashlib.new(algorithm_name) + hasher.update(file_content) + return hasher.hexdigest() + except ValueError: + print(f"Error: Unsupported hash algorithm '{algorithm_name}'. " + f"Supported algorithms include: {hashlib.algorithms_available}") + return None + + +def update_artifact_checksums(yaml_file_path: str) -> None: + """ + Reads a YAML file, downloads artifacts, calculates/updates their checksums, + and writes the updated data back to the YAML file. + + Args: + yaml_file_path (str): The path to the input YAML file. + """ + yaml_parser = YAML() + yaml_parser.default_flow_style = False + yaml_parser.preserve_quotes = True # Keep existing quotes (single/double) + yaml_parser.indent(mapping=2, sequence=4, offset=2) + data: Dict[str, Any] = {} + try: + with open(yaml_file_path, 'r', encoding='utf-8') as f: + data = yaml_parser.load(f) + except FileNotFoundError: + print(f"Error: YAML file not found at '{yaml_file_path}'") + return + except Exception as e: # ruamel.yaml can raise different exceptions + print(f"Error parsing YAML file: {e}") + return + + if 'artifacts' not in data or not isinstance(data['artifacts'], list): + print("Error: YAML file must contain an 'artifacts' list.") + return + + # Ensure mypy can infer the type of data['artifacts'] as + # List[Dict[str, Any]] + artifacts: List[Dict[str, Any]] = data['artifacts'] + + for i, artifact in enumerate(artifacts): + download_url: Optional[str] = artifact.get('download_url') + current_checksum: Optional[str] = artifact.get('checksum') + filename: Optional[str] = artifact.get('filename') + + if not download_url: + print(f"Warning: Artifact {i+1} is missing 'download_url'. " + f"Skipping.") + continue + + if not current_checksum or ':' not in current_checksum: + print(f"Warning: Artifact {i+1} ('{filename}') has an invalid " + f"or missing 'checksum' format. Skipping update for " + f"this artifact.") + continue + + algorithm_name, _ = current_checksum.split(':', 1) + # Ensure algorithm name is lowercase for hashlib.new() + algorithm_name = algorithm_name.lower() + + print(f"Processing artifact: {filename} from {download_url}") + + try: + response = requests.get(download_url, stream=True, timeout=10) + response.raise_for_status() # Raise an HTTPError for bad responses + + # Read content in chunks to handle large files efficiently + file_content_chunks: List[bytes] = [] + for chunk in response.iter_content(chunk_size=8192): + file_content_chunks.append(chunk) + file_content: bytes = b"".join(file_content_chunks) + + new_hash_value: Optional[str] = calculate_checksum( + file_content, algorithm_name + ) + + if new_hash_value: + new_checksum: str = f"{algorithm_name}:{new_hash_value}" + if new_checksum != current_checksum: + print(f" Checksum updated for '{filename}': " + f"{current_checksum} -> {new_checksum}") + # Modify the artifact in place + artifact['checksum'] = new_checksum + else: + print(f" Checksum for '{filename}' is already " + f"up-to-date: {current_checksum}") + else: + print(f" Failed to calculate checksum for '{filename}'. " + f"Keeping old checksum.") + + except requests.exceptions.RequestException as e: + print(f" Error downloading '{filename}' from {download_url}: {e}") + except Exception as e: + print(f" An unexpected error occurred while processing " + f"'{filename}': {e}") + + try: + with open(yaml_file_path, 'w', encoding='utf-8') as f: + # ruamel.yaml's dump method handles preserving formatting + yaml_parser.dump(data, f) + print(f"\nSuccessfully updated checksums in '{yaml_file_path}'.") + except Exception as e: + print(f"Error writing updated YAML file: {e}") + + +if __name__ == "__main__": + # This script will attempt to load and update 'artifacts.lock.yaml' + # in the current directory. Make sure this file exists and is + # correctly formatted before running. + artifacts_lock_filename: str = "artifacts.lock.yaml" + update_artifact_checksums(artifacts_lock_filename) diff --git a/ci/hermetic/update_package_list b/ci/hermetic/update_package_list new file mode 100755 index 0000000000..71a3e7a5d0 --- /dev/null +++ b/ci/hermetic/update_package_list @@ -0,0 +1,252 @@ +#!/usr/bin/env python3 + +""" +This script processes multiple package list files, potentially differentiating +packages by their intended CPU architecture (e.g., x86_64, aarch64) based on +the input filenames. It consolidates these package lists and generates a +structured YAML file. + +The script performs the following key actions: +1. **Reads Package Files**: It takes one or more input files, each containing + a list of package names. Empty lines and lines starting with '#' (comments) + are ignored. Multiple package names can be on a single line, separated by + whitespace. +2. **Extracts Architecture (Optional)**: If an input filename follows the + convention '-.' (e.g., 'file-x86_64.txt'), + the script attempts to extract a recognized architecture string (e.g., + 'x86_64', 'aarch64', 'ppc64le', 's390x'). +3. **Structures Packages**: + * Packages found in architecture-specific files are stored with their + associated architectures (e.g., {'name': 'package_name', 'arches': + {'only': ['x86_64', 'aarch64']}}). + * Packages found in generic files (without an architecture in their name) + are listed as simple strings, unless they have already been associated + with an architecture from another file. +4. **Updates YAML File**: It writes the consolidated, structured package data + under a 'packages' key in a specified YAML output file. If the YAML file + already exists, it preserves other existing keys while overwriting the + 'packages' key. It uses `ruamel.yaml` for robust YAML parsing and dumping. + +Usage: + ./update_package_list.py --package_file + [--package_file ...] + --yaml_file + +Example: + ./update_package_list.py -p packages_common.txt -p packages-x86_64.txt + -p packages-aarch64.txt -y output_packages.yaml +""" + +import argparse +import os +from collections import defaultdict +# ruamel.yaml was preferred over PyYAML as it supports roundtrip preservation +# of comments, and map key order. +from ruamel.yaml import YAML + + +def read_packages_from_file(file_path: str) -> set: + """ + Reads package names from a given file path, ignoring comments. + Each line in the file can contain multiple package names separated + by whitespace. Empty lines and empty strings after splitting are ignored. + + Args: + file_path (str): The path to the package file. + + Returns: + set: A set of unique package names read from the file. + """ + packages = set() + try: + with open(file_path, 'r', encoding='utf-8') as f: + for line in f: + stripped_line = line.strip() + # Ignore empty lines and lines that start with '#' (comments) + if not stripped_line or stripped_line.startswith('#'): + continue + + # Split the line by whitespace to get individual package names + # and filter out any empty strings that might result from + # multiple spaces + package_names_on_line = [ + pkg.strip() for pkg in stripped_line.split() + if pkg.strip() + ] + packages.update(package_names_on_line) + except FileNotFoundError: + print(f"Error: Package file not found at '{file_path}'") + except Exception as e: + print(f"Error reading package file '{file_path}': {e}") + return packages + + +def update_yaml_file(yaml_file_path: str, structured_package_list: list): + """ + Updates a YAML file with a structured list of packages under the + 'packages' key. Each item in the list can be either an object + containing 'name' and optionally 'arches', or a simple string + package name. If the file does not exist, it will be created. If the + 'packages' key already exists, its value will be overwritten. Other + keys in the YAML file will be preserved. + + Args: + yaml_file_path (str): The path to the YAML file to be updated. + structured_package_list (list): The list of structured package + dictionaries and/or string package + names to write to the YAML file. + """ + yaml_handler = YAML() + yaml_handler.default_flow_style = False + yaml_handler.preserve_quotes = True + yaml_handler.indent(mapping=2, sequence=4, offset=2) + yaml_data = {} + + # Load existing YAML content if the file exists + if os.path.exists(yaml_file_path): + try: + with open(yaml_file_path, 'r', encoding='utf-8') as f: + yaml_data = yaml_handler.load(f) + if yaml_data is None: # Handle empty YAML file + yaml_data = {} + except Exception as e: + print(f"Error parsing or reading YAML file '{yaml_file_path}': " + "{e}") + print("Proceeding by creating a new YAML file instead or " + "overwriting 'packages' key.") + yaml_data = {} # Start with empty data if parsing fails + + # Update the 'packages' key with the structured package list + yaml_data['packages'] = structured_package_list + + # Write the updated content back to the YAML file + try: + with open(yaml_file_path, 'w', encoding='utf-8') as f: + yaml_handler.dump(yaml_data, f) + print(f"Successfully updated '{yaml_file_path}' with the " + "structured package list.") + except Exception as e: + print(f"Error writing to YAML file '{yaml_file_path}': {e}") + + +def extract_architecture_from_filename(filename: str) -> str | None: + """ + Extracts the architecture from a filename following the + '-' convention. The architecture is assumed to be the + last part of the filename (before the extension) separated by a hyphen. + It also validates if the extracted part looks like a typical architecture + string. + + Args: + filename (str): The base name of the file + (e.g., 'my_packages-x86_64.txt'). + + Returns: + str | None: The architecture string (e.g., 'x86_64') or None if not + found or if the extracted part does not resemble an + architecture. + """ + # Remove file extension first + base_name = os.path.splitext(filename)[0] + parts = base_name.split('-') + if len(parts) > 1: + potential_arch = parts[-1] + if potential_arch in ['x86_64', 'ppc64le', 'aarch64', 's390x']: + return potential_arch + return None + + +def main(): + """ + Main function to parse arguments and orchestrate the package updating + process. It handles architecture extraction from filenames and generates + a YAML output where packages are structured as dictionaries with + architecture information if available, or as simple strings otherwise. + """ + parser = argparse.ArgumentParser( + description="""Reads package lists from files and updates a YAML file + with structured package and architecture information. + Packages from files with architecture in their name + will include architecture specifics. Other packages + will be listed as simple strings.""" + ) + parser.add_argument( + '--package_file', + '-p', + nargs='+', + required=True, + help="""Path(s) to file(s) containing lists of packages. Filenames + can optionally follow '-' convention. + Can be specified multiple times.""" + ) + parser.add_argument( + '--yaml_file', + '-y', + required=True, + help="Path to the YAML file to be updated." + ) + + args = parser.parse_args() + + # Stores packages with their associated architectures: + # {package_name: {arch1, arch2}} + # A package will be in this defaultdict if it appeared in at least one + # arch-specific file. + all_packages_with_arches = defaultdict(set) + # Stores packages found in files without architecture in their name AND + # that haven't been found in any architecture-specific file yet. + generic_only_packages = set() + + # Read packages from all specified package files + for p_file_path in args.package_file: + if not os.path.isfile(p_file_path): + print(f"Warning: Package file '{p_file_path}' does not exist " + "and will be skipped.") + continue + + file_basename = os.path.basename(p_file_path) + architecture = extract_architecture_from_filename(file_basename) + + packages_from_current_file = read_packages_from_file(p_file_path) + + if architecture: + # If an architecture is found, associate packages with it + for package_name in packages_from_current_file: + all_packages_with_arches[package_name].add(architecture) + else: + # If no architecture is found in the filename, these are generic + # packages. Add them to generic_only_packages ONLY if they + # haven't been associated with an architecture from another file + # already. + for package_name in packages_from_current_file: + if package_name not in all_packages_with_arches: + generic_only_packages.add(package_name) + + # Prepare the structured list for YAML output + structured_package_list = [] + + # Get all unique package names across both categories to ensure proper + # sorting. Convert to list to sort + all_unique_package_names = sorted( + list(set(all_packages_with_arches.keys()).union(generic_only_packages)) + ) + + for pkg_name in all_unique_package_names: # Already sorted + if pkg_name in all_packages_with_arches: + # If the package has associated architectures, include them in + # the dictionary format + arches_list = sorted(list(all_packages_with_arches[pkg_name])) + structured_package_list.append({ + 'name': pkg_name, + 'arches': {'only': arches_list} + }) + else: + # Otherwise, list it as a simple string + structured_package_list.append(pkg_name) + + # Update the YAML file + update_yaml_file(args.yaml_file, structured_package_list) + + +if __name__ == "__main__": + main() diff --git a/ci/hermetic/update_rpms_lockfile b/ci/hermetic/update_rpms_lockfile new file mode 100755 index 0000000000..b2aa98821d --- /dev/null +++ b/ci/hermetic/update_rpms_lockfile @@ -0,0 +1,53 @@ +#!/bin/bash +set -euo pipefail + +# We update the 'packages' list in the rpms.in.yaml based on the content +# of the *deps*.txt file located in src/. +dep_files=$(find ../../src/ -name "*deps*.txt" | tr '\n' ' ') +# shellcheck disable=SC2086 +./update_package_list --package_file $dep_files --yaml_file rpms.in.yaml + +# Then we update the rpms.lock.yaml file based on rpms.in.yaml with +# rpm-lockfile-prototype. + +# VENV_DIR will be named after the script itself, with a '_venv' suffix. +SCRIPT_NAME=$(basename "$0") +VENV_DIR="/tmp/${SCRIPT_NAME%.*}_venv" # Removes the file extension and adds '_venv' +RPM_LOCKFILE_PROTOTYPE_VERSION="0.16.0" + +echo "Creating virtual environment '$VENV_DIR'..." +if python3 -m venv "$VENV_DIR" --system-site-packages; then + echo "Virtual environment '$VENV_DIR' created successfully." +else + echo "Error: Failed to create virtual environment. Please ensure python3-venv is installed." + exit 1 +fi + +# Activate the virtual environment +echo "Activating virtual environment..." +# shellcheck disable=SC1091 +if source "$VENV_DIR/bin/activate"; then + echo "Virtual environment activated." +else + echo "Error: Failed to activate virtual environment." + exit 1 +fi + +# Install rpm-lockfile-prototype using pip +echo "Installing 'rpm-lockfile-prototype'..." +python3 -m pip install --upgrade pip --quiet +if python3 -m pip install https://github.com/konflux-ci/rpm-lockfile-prototype/archive/refs/tags/v${RPM_LOCKFILE_PROTOTYPE_VERSION}.tar.gz --quiet; then + echo "'rpm-lockfile-prototype' installed successfully." +else + echo "Error: Failed to install 'rpm-lockfile-prototype'." + # Deactivate the virtual environment before exiting on error + deactivate + exit 1 +fi + +rpm-lockfile-prototype rpms.in.yaml --outfile rpms.lock.yaml + +echo "Deactivating virtual environment..." +deactivate + +echo "Script completed." diff --git a/src/kola-container-image-deps.txt b/src/kola-container-image-deps.txt new file mode 100644 index 0000000000..0889fe2eed --- /dev/null +++ b/src/kola-container-image-deps.txt @@ -0,0 +1,8 @@ +# for kola-nfs container image +/usr/bin/ps nfs-utils + +# for kola-tang container image +systemd tang + +# for kola-targetcli container image +targetcli kmod From c024dbc5c0763f65f1f003b29212b4b447ba6b17 Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Wed, 18 Jun 2025 13:06:40 +0200 Subject: [PATCH 2/5] tests/containers: switch to standard base image In 'rpms.in.yaml' file, we configured the rpm lockfile CLI tool to extract installed packages from the main Dockerfile which use the standard base image of Fedora. For consistency, we have to rbase all the container images of the project on the same image. Otherwise, we may end up with missing packages during the build (i.e tzdata is available in standard image, but not in minimal one, making the targetcli fail as tzdata was not add to the lock YAML file). --- tests/containers/nfs/Containerfile | 2 +- tests/containers/tang/Containerfile | 2 +- tests/containers/targetcli/Containerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/containers/nfs/Containerfile b/tests/containers/nfs/Containerfile index 2629e2e01a..7023656390 100644 --- a/tests/containers/nfs/Containerfile +++ b/tests/containers/nfs/Containerfile @@ -1,4 +1,4 @@ -FROM registry.fedoraproject.org/fedora-minimal:42 +FROM registry.fedoraproject.org/fedora:42 RUN dnf -y install /usr/bin/ps nfs-utils && dnf clean all && rm -rf /var/cache/yum diff --git a/tests/containers/tang/Containerfile b/tests/containers/tang/Containerfile index cc4884e44e..f2442183a6 100644 --- a/tests/containers/tang/Containerfile +++ b/tests/containers/tang/Containerfile @@ -1,4 +1,4 @@ -FROM registry.fedoraproject.org/fedora-minimal:42 +FROM registry.fedoraproject.org/fedora:42 RUN dnf -y install systemd tang && dnf clean all && rm -rf /var/cache/yum EXPOSE 80 diff --git a/tests/containers/targetcli/Containerfile b/tests/containers/targetcli/Containerfile index 8526b9a37a..8f745b2795 100644 --- a/tests/containers/targetcli/Containerfile +++ b/tests/containers/targetcli/Containerfile @@ -1,4 +1,4 @@ -FROM quay.io/fedora/fedora-minimal:42 +FROM quay.io/fedora/fedora:42 RUN dnf install -y targetcli kmod && dnf clean all RUN systemctl enable target From 99e06ea954777218b022865d3ee379463ef6758e Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Wed, 18 Jun 2025 09:44:29 +0200 Subject: [PATCH 3/5] .tekton: switch to own pipeline This is temporary while awaiting [1] to be merged and push in quay.io. [1] https://github.com/konflux-ci/build-definitions/pull/2421 --- .tekton/coreos-assembler-pull-request.yaml | 2 +- .tekton/coreos-assembler-push.yaml | 2 +- .tekton/kola-nfs-pull-request.yaml | 2 +- .tekton/kola-nfs-push.yaml | 2 +- .tekton/kola-tang-pull-request.yaml | 2 +- .tekton/kola-tang-push.yaml | 2 +- .tekton/kola-targetcli-pull-request.yaml | 2 +- .tekton/kola-targetcli-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/coreos-assembler-pull-request.yaml b/.tekton/coreos-assembler-pull-request.yaml index 9f67cc1cb8..a75a782717 100644 --- a/.tekton/coreos-assembler-pull-request.yaml +++ b/.tekton/coreos-assembler-pull-request.yaml @@ -47,7 +47,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/konflux-ci/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:5bc58ee8213aaa3da4c1d67e380007097fbbbfb4dca3d0711777bd2b0d115da1 + value: quay.io/jcapitao/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:a3993688715cba973af5e7fba95bc91f92673e8491f2524853736161974334fb - name: name value: docker-build-multi-platform-oci-ta - name: kind diff --git a/.tekton/coreos-assembler-push.yaml b/.tekton/coreos-assembler-push.yaml index 5aaa00e11f..6ebb0bed67 100644 --- a/.tekton/coreos-assembler-push.yaml +++ b/.tekton/coreos-assembler-push.yaml @@ -44,7 +44,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/konflux-ci/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:5bc58ee8213aaa3da4c1d67e380007097fbbbfb4dca3d0711777bd2b0d115da1 + value: quay.io/jcapitao/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:a3993688715cba973af5e7fba95bc91f92673e8491f2524853736161974334fb - name: name value: docker-build-multi-platform-oci-ta - name: kind diff --git a/.tekton/kola-nfs-pull-request.yaml b/.tekton/kola-nfs-pull-request.yaml index 44c34c3fc7..a831a98c6e 100644 --- a/.tekton/kola-nfs-pull-request.yaml +++ b/.tekton/kola-nfs-pull-request.yaml @@ -49,7 +49,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/konflux-ci/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:5bc58ee8213aaa3da4c1d67e380007097fbbbfb4dca3d0711777bd2b0d115da1 + value: quay.io/jcapitao/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:a3993688715cba973af5e7fba95bc91f92673e8491f2524853736161974334fb - name: name value: docker-build-multi-platform-oci-ta - name: kind diff --git a/.tekton/kola-nfs-push.yaml b/.tekton/kola-nfs-push.yaml index aac521f3e2..a6248f014a 100644 --- a/.tekton/kola-nfs-push.yaml +++ b/.tekton/kola-nfs-push.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/konflux-ci/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:5bc58ee8213aaa3da4c1d67e380007097fbbbfb4dca3d0711777bd2b0d115da1 + value: quay.io/jcapitao/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:a3993688715cba973af5e7fba95bc91f92673e8491f2524853736161974334fb - name: name value: docker-build-multi-platform-oci-ta - name: kind diff --git a/.tekton/kola-tang-pull-request.yaml b/.tekton/kola-tang-pull-request.yaml index c1550d031d..a7e2daa115 100644 --- a/.tekton/kola-tang-pull-request.yaml +++ b/.tekton/kola-tang-pull-request.yaml @@ -49,7 +49,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/konflux-ci/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:5bc58ee8213aaa3da4c1d67e380007097fbbbfb4dca3d0711777bd2b0d115da1 + value: quay.io/jcapitao/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:a3993688715cba973af5e7fba95bc91f92673e8491f2524853736161974334fb - name: name value: docker-build-multi-platform-oci-ta - name: kind diff --git a/.tekton/kola-tang-push.yaml b/.tekton/kola-tang-push.yaml index 308a4d2506..0054cfee11 100644 --- a/.tekton/kola-tang-push.yaml +++ b/.tekton/kola-tang-push.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/konflux-ci/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:5bc58ee8213aaa3da4c1d67e380007097fbbbfb4dca3d0711777bd2b0d115da1 + value: quay.io/jcapitao/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:a3993688715cba973af5e7fba95bc91f92673e8491f2524853736161974334fb - name: name value: docker-build-multi-platform-oci-ta - name: kind diff --git a/.tekton/kola-targetcli-pull-request.yaml b/.tekton/kola-targetcli-pull-request.yaml index a5a14963b1..d8eeaf6660 100644 --- a/.tekton/kola-targetcli-pull-request.yaml +++ b/.tekton/kola-targetcli-pull-request.yaml @@ -49,7 +49,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/konflux-ci/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:5bc58ee8213aaa3da4c1d67e380007097fbbbfb4dca3d0711777bd2b0d115da1 + value: quay.io/jcapitao/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:a3993688715cba973af5e7fba95bc91f92673e8491f2524853736161974334fb - name: name value: docker-build-multi-platform-oci-ta - name: kind diff --git a/.tekton/kola-targetcli-push.yaml b/.tekton/kola-targetcli-push.yaml index 8ab43a624c..876bf7bacd 100644 --- a/.tekton/kola-targetcli-push.yaml +++ b/.tekton/kola-targetcli-push.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/konflux-ci/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:5bc58ee8213aaa3da4c1d67e380007097fbbbfb4dca3d0711777bd2b0d115da1 + value: quay.io/jcapitao/tekton-catalog/pipeline-docker-build-multi-platform-oci-ta@sha256:a3993688715cba973af5e7fba95bc91f92673e8491f2524853736161974334fb - name: name value: docker-build-multi-platform-oci-ta - name: kind From 137f8e79bab213cc8830a66ed5b782e22dffb10d Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Tue, 24 Jun 2025 11:38:42 +0200 Subject: [PATCH 4/5] .tekton: disable temporary hermetic builds ... because we need to have the CI/CD jobs ready to update automatically the lock files. Otherwise the Konflux pipelines will start failing because the Fedora RPMs defined in the lockfiles won't be available in remote repos a couple of days after (i.e Fedora update repos remove older RPMs). --- .tekton/coreos-assembler-pull-request.yaml | 2 +- .tekton/coreos-assembler-push.yaml | 2 +- .tekton/kola-nfs-pull-request.yaml | 2 +- .tekton/kola-nfs-push.yaml | 2 +- .tekton/kola-tang-pull-request.yaml | 2 +- .tekton/kola-tang-push.yaml | 2 +- .tekton/kola-targetcli-pull-request.yaml | 2 +- .tekton/kola-targetcli-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/coreos-assembler-pull-request.yaml b/.tekton/coreos-assembler-pull-request.yaml index a75a782717..b722199aa1 100644 --- a/.tekton/coreos-assembler-pull-request.yaml +++ b/.tekton/coreos-assembler-pull-request.yaml @@ -35,7 +35,7 @@ spec: - name: path-context value: . - name: hermetic - value: true + value: false - name: prefetch-input value: '[{"type": "rpm", "path": "ci/hermetic"}, {"path": "ci/hermetic", "type": "generic"}]' # Note: to be removed once rpm fully supported diff --git a/.tekton/coreos-assembler-push.yaml b/.tekton/coreos-assembler-push.yaml index 6ebb0bed67..2fc57370df 100644 --- a/.tekton/coreos-assembler-push.yaml +++ b/.tekton/coreos-assembler-push.yaml @@ -32,7 +32,7 @@ spec: - name: path-context value: . - name: hermetic - value: true + value: false - name: prefetch-input value: '[{"type": "rpm", "path": "ci/hermetic"}, {"path": "ci/hermetic", "type": "generic"}]' # Note: to be removed once rpm fully supported diff --git a/.tekton/kola-nfs-pull-request.yaml b/.tekton/kola-nfs-pull-request.yaml index a831a98c6e..e2f1bec461 100644 --- a/.tekton/kola-nfs-pull-request.yaml +++ b/.tekton/kola-nfs-pull-request.yaml @@ -39,7 +39,7 @@ spec: - name: path-context value: tests/containers/nfs - name: hermetic - value: true + value: false - name: prefetch-input value: '[{"type": "rpm", "path": "ci/hermetic"}]' # Note: to be removed once rpm fully supported diff --git a/.tekton/kola-nfs-push.yaml b/.tekton/kola-nfs-push.yaml index a6248f014a..ec77f6c227 100644 --- a/.tekton/kola-nfs-push.yaml +++ b/.tekton/kola-nfs-push.yaml @@ -35,7 +35,7 @@ spec: - name: path-context value: tests/containers/nfs - name: hermetic - value: true + value: false - name: prefetch-input value: '[{"type": "rpm", "path": "ci/hermetic"}]' # Note: to be removed once rpm fully supported diff --git a/.tekton/kola-tang-pull-request.yaml b/.tekton/kola-tang-pull-request.yaml index a7e2daa115..a5d6bad861 100644 --- a/.tekton/kola-tang-pull-request.yaml +++ b/.tekton/kola-tang-pull-request.yaml @@ -39,7 +39,7 @@ spec: - name: path-context value: . - name: hermetic - value: true + value: false - name: prefetch-input value: '[{"type": "rpm", "path": "ci/hermetic"}]' # Note: to be removed once rpm fully supported diff --git a/.tekton/kola-tang-push.yaml b/.tekton/kola-tang-push.yaml index 0054cfee11..c10cc55525 100644 --- a/.tekton/kola-tang-push.yaml +++ b/.tekton/kola-tang-push.yaml @@ -35,7 +35,7 @@ spec: - name: path-context value: . - name: hermetic - value: true + value: false - name: prefetch-input value: '[{"type": "rpm", "path": "ci/hermetic"}]' # Note: to be removed once rpm fully supported diff --git a/.tekton/kola-targetcli-pull-request.yaml b/.tekton/kola-targetcli-pull-request.yaml index d8eeaf6660..c99c6682ce 100644 --- a/.tekton/kola-targetcli-pull-request.yaml +++ b/.tekton/kola-targetcli-pull-request.yaml @@ -39,7 +39,7 @@ spec: - name: path-context value: . - name: hermetic - value: true + value: false - name: prefetch-input value: '[{"type": "rpm", "path": "ci/hermetic"}]' # Note: to be removed once rpm fully supported diff --git a/.tekton/kola-targetcli-push.yaml b/.tekton/kola-targetcli-push.yaml index 876bf7bacd..0ef4fd4277 100644 --- a/.tekton/kola-targetcli-push.yaml +++ b/.tekton/kola-targetcli-push.yaml @@ -35,7 +35,7 @@ spec: - name: path-context value: . - name: hermetic - value: true + value: false - name: prefetch-input value: '[{"type": "rpm", "path": "ci/hermetic"}]' # Note: to be removed once rpm fully supported From c32179551c41863e6b96575dae8b8ce887662faa Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Mon, 23 Jun 2025 15:22:19 +0200 Subject: [PATCH 5/5] Add GH actions to update lockfiles --- .github/workflows/update-lockfiles.yml | 82 ++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 .github/workflows/update-lockfiles.yml diff --git a/.github/workflows/update-lockfiles.yml b/.github/workflows/update-lockfiles.yml new file mode 100644 index 0000000000..18263c2047 --- /dev/null +++ b/.github/workflows/update-lockfiles.yml @@ -0,0 +1,82 @@ +name: Submit PRs to update lockfiles + +on: + workflow_dispatch: # Allows manual triggering from the GitHub UI + schedule: + - cron: '0 4 * * *' # Daily at 4:00am UTC + +jobs: + update-lockfiles: + if: github.event.repository.fork == true && github.repository == 'coreosbot-releng/coreos-assembler' + runs-on: ubuntu-latest + strategy: + matrix: + branch: [main] + + permissions: + pull-requests: write # Required to create a pull request + contents: write # Required to rebase branches + + steps: + - name: Set up Python 3.12 + uses: actions/setup-python@v5 + + - name: Checkout repository + uses: actions/checkout@v4 + with: + # Required for 'peter-evans/create-pull-request' to push to a new branch + fetch-depth: 0 + + - name: Synchronise the 'lockfiles-update-STREAM' branch with the upstream one + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + BRANCH: ${{ matrix.branch }} + run: | + TARGET_BRANCH=update-lockfiles-${BRANCH} + echo "The target branch is '$TARGET_BRANCH'." + + git remote add upstream https://github.com/coreos/coreos-assembler.git + git fetch upstream + if git ls-remote --heads origin "$TARGET_BRANCH" | grep -q "$TARGET_BRANCH"; then + echo "Branch '$TARGET_BRANCH' exists on origin. Checking it out." + git checkout "$TARGET_BRANCH" + elif git rev-parse --verify --quiet "$TARGET_BRANCH" > /dev/null; then + echo "Branch '$TARGET_BRANCH' exists locally. Checking it out." + git checkout "$TARGET_BRANCH" + else + echo "Branch '$TARGET_BRANCH' does not exist. Creating it from upstream/${BRANCH}." + if git rev-parse --verify --quiet "upstream/${BRANCH}" > /dev/null; then + git checkout -b "$TARGET_BRANCH" upstream/${BRANCH} + echo "Successfully created and checked out branch '$TARGET_BRANCH' from upstream/${BRANCH}." + else + echo "Error: upstream/${BRANCH} does not exist after fetch. Cannot create new branch." + exit 1 + fi + fi + git rebase upstream/${BRANCH} + git push --force origin "$TARGET_BRANCH" + + - name: Update the lockfiles + working-directory: ci/hermetic + run: | + git checkout update-lockfiles-${{ matrix.branch }} + sudo apt-get update && sudo apt-get install -y python3-dnf + pip3 install requests ruamel.yaml + ./update_artifacts_lockfile + bash -x update_rpms_lockfile + + - name: Create Pull Request + uses: peter-evans/create-pull-request@v6 + with: + token: ${{ secrets.UPDATE_LOCKFILES_PAT }} + commit-message: 'feat(automated): Update the lockfiles' + title: 'Automated: lockfiles updated' + body: | + This PR was automatically generated by the 'Submit PRs to update lockfiles' workflow. + It updates the lockfiles. + branch: update-lockfiles/${{ matrix.branch }}-candidate + base: update-lockfiles-${{ matrix.branch }} + labels: | + update-lockfiles + committer: "CoreOS Bot " + author: "CoreOS Bot "