From 4ed303cbfbde3164e1c5d760ad9936cc91cd7d58 Mon Sep 17 00:00:00 2001 From: davdhacs <105243888+davdhacs@users.noreply.github.com> Date: Wed, 18 Feb 2026 15:00:59 -0700 Subject: [PATCH 01/37] empty commit From 68606292e9868ea738b720331182c577ad4008dd Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Tue, 14 Apr 2026 19:21:05 +0200 Subject: [PATCH 02/37] chore: Migrate all Scanner Dockerfiles to ubi9-micro base images Migrates scanner, scanner-db, and vulnerabilities images from ubi9-minimal to ubi9-micro base, following established patterns from stackrox/stackrox and stackrox/collector repositories. Changes: - Scanner images: Multi-stage build with package_installer for runtime deps - Scanner-DB images: Complex migration with PostgreSQL via chroot user/locale setup - Vulnerabilities image: Simple base image change (minimal deps) - Tekton configs: Added RPM prefetch + ACTIVATION_KEY for hermetic builds - rpms.in.yaml: Scanner packages (excludes coreutils - ubi9-micro has coreutils-single) - rpms.lock.yaml: Generated lockfile for all architectures Benefits: - ~30-35% image size reduction (ubi9-micro ~28MB vs ubi9-minimal ~92MB) - Improved security - package managers removed from runtime - Reduced CVE exposure surface - Alignment with organization-wide ubi9-micro standardization Technical details: - Scanner keeps rpm package (required for image scanning functionality) - PostgreSQL user created as UID/GID 70 via chroot - Locale set to en_US.UTF-8 via chroot - Konflux builds use SHA256-pinned base images - All scripts require bash (not sh) Reference PRs: - stackrox/stackrox#17431 (scanner-db migration) - stackrox/stackrox#17430 (scanner migration) - stackrox/collector#3021 (collector migration pattern) - stackrox/stackrox#19653 (main image migration) - stackrox/stackrox#19985 (debugging utilities) Co-Authored-By: Claude Sonnet 4.5 --- .tekton/scanner-build.yaml | 4 +- .tekton/scanner-db-build.yaml | 8 +- .tekton/scanner-db-slim-build.yaml | 8 +- .tekton/scanner-slim-build.yaml | 4 +- image/db/rhel/Dockerfile | 108 +- image/db/rhel/Dockerfile.slim | 108 +- image/scanner/rhel/Dockerfile | 36 +- image/scanner/rhel/Dockerfile.slim | 36 +- image/scanner/rhel/konflux.Dockerfile | 36 +- image/vulnerabilities/Dockerfile | 2 +- rpms.in.yaml | 20 +- rpms.lock.yaml | 2193 +++++++++++++++++++++++++ 12 files changed, 2455 insertions(+), 108 deletions(-) diff --git a/.tekton/scanner-build.yaml b/.tekton/scanner-build.yaml index a9808ba6a..9d4df7d54 100644 --- a/.tekton/scanner-build.yaml +++ b/.tekton/scanner-build.yaml @@ -42,7 +42,7 @@ spec: value: | [ { "type": "gomod", "path": "." }, - { "type": "rpm", "path": "." } + { "type": "rpm" } ] - name: build-source-image value: 'true' @@ -58,6 +58,8 @@ spec: value: # X.Y in the cpe label must be adjusted for every version stream. - "cpe=cpe:/a:redhat:advanced_cluster_security:X.Y::el9" + - name: ACTIVATION_KEY + value: subscription-manager-activation-key-prod workspaces: - name: git-auth diff --git a/.tekton/scanner-db-build.yaml b/.tekton/scanner-db-build.yaml index 084c5fbdc..36b077045 100644 --- a/.tekton/scanner-db-build.yaml +++ b/.tekton/scanner-db-build.yaml @@ -38,9 +38,11 @@ spec: value: 'true' - name: hermetic value: "true" - # No dependencies are required for scanner-db image. - name: prefetch-input - value: '' + value: | + [ + { "type": "rpm" } + ] - name: build-source-image value: 'true' - name: build-target-stage @@ -55,6 +57,8 @@ spec: value: # X.Y in the cpe label must be adjusted for every version stream. - "cpe=cpe:/a:redhat:advanced_cluster_security:X.Y::el9" + - name: ACTIVATION_KEY + value: subscription-manager-activation-key-prod workspaces: - name: git-auth diff --git a/.tekton/scanner-db-slim-build.yaml b/.tekton/scanner-db-slim-build.yaml index a75f8f36a..dc9d6d142 100644 --- a/.tekton/scanner-db-slim-build.yaml +++ b/.tekton/scanner-db-slim-build.yaml @@ -38,9 +38,11 @@ spec: value: 'true' - name: hermetic value: "true" - # No dependencies are required for scanner-db-slim image. - name: prefetch-input - value: '' + value: | + [ + { "type": "rpm" } + ] - name: build-source-image value: 'true' - name: build-target-stage @@ -55,6 +57,8 @@ spec: value: # X.Y in the cpe label must be adjusted for every version stream. - "cpe=cpe:/a:redhat:advanced_cluster_security:X.Y::el9" + - name: ACTIVATION_KEY + value: subscription-manager-activation-key-prod workspaces: - name: git-auth diff --git a/.tekton/scanner-slim-build.yaml b/.tekton/scanner-slim-build.yaml index ecdc4e37f..ee348fac0 100644 --- a/.tekton/scanner-slim-build.yaml +++ b/.tekton/scanner-slim-build.yaml @@ -42,7 +42,7 @@ spec: value: | [ { "type": "gomod", "path": "." }, - { "type": "rpm", "path": "." } + { "type": "rpm" } ] - name: build-source-image value: 'true' @@ -58,6 +58,8 @@ spec: value: # X.Y in the cpe label must be adjusted for every version stream. - "cpe=cpe:/a:redhat:advanced_cluster_security:X.Y::el9" + - name: ACTIVATION_KEY + value: subscription-manager-activation-key-prod workspaces: - name: git-auth diff --git a/image/db/rhel/Dockerfile b/image/db/rhel/Dockerfile index bffbfc43f..9bf9503d9 100644 --- a/image/db/rhel/Dockerfile +++ b/image/db/rhel/Dockerfile @@ -6,6 +6,8 @@ ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi9-minimal ARG BASE_TAG=latest +FROM ${BASE_REGISTRY}/ubi9-micro:${BASE_TAG} AS ubi-micro-base + FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS extracted_bundle COPY bundle.tar.gz / @@ -17,7 +19,73 @@ FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS postgres_rpms COPY scripts/download.sh /download.sh RUN /download.sh -FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS base +FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS dependency_builder + +ENV PG_MAJOR=15 + +COPY --from=ubi-micro-base / /out/ + +RUN dnf install -y \ + --installroot=/out/ \ + --releasever=9 \ + --setopt=install_weak_deps=0 \ + --nodocs \ + bash \ + coreutils \ + findutils \ + util-linux \ + shadow-utils \ + ca-certificates \ + openldap \ + glibc-langpack-en \ + glibc-locale-source \ + libicu \ + libxslt \ + lz4 \ + perl-libs \ + python3 \ + systemd-sysv \ + zstd \ + uuid \ + gzip \ + less \ + tar && \ + dnf clean all --installroot=/out/ && \ + rm -rf /out/var/cache/dnf /out/var/cache/yum + +COPY --from=postgres_rpms /rpms/postgres.rpm /rpms/postgres-libs.rpm /rpms/postgres-server.rpm /rpms/postgres-contrib.rpm /tmp/ +COPY signatures/PGDG-RPM-GPG-KEY-RHEL /tmp/ + +RUN rpm --root=/out/ --import /tmp/PGDG-RPM-GPG-KEY-RHEL && \ + rpm --root=/out/ -ivh --nodeps /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ + rm -rf /tmp/*.rpm /tmp/PGDG-RPM-GPG-KEY-RHEL + +RUN chroot /out /bin/sh -c " \ + if getent group postgres >/dev/null; then \ + current_gid=\$(getent group postgres | cut -d: -f3); \ + if [ \$current_gid -ne 70 ]; then \ + groupmod -g 70 postgres; \ + fi; \ + else \ + groupadd -g 70 postgres; \ + fi && \ + if id -u postgres &>/dev/null; then \ + current_uid=\$(id -u postgres); \ + if [ \$current_uid -ne 70 ]; then \ + usermod -u 70 -g 70 postgres; \ + fi; \ + else \ + useradd postgres -u 70 -g 70 -d /var/lib/postgresql -s /bin/sh; \ + fi \ + " + +RUN chroot /out /bin/sh -c "localedef -f UTF-8 -i en_US en_US.UTF-8" + +RUN mkdir -p /out/docker-entrypoint-initdb.d \ + /out/var/run/postgresql && \ + chroot /out /bin/sh -c "chown postgres:postgres /var/run/postgresql && chmod 03775 /var/run/postgresql" + +FROM ubi-micro-base AS base ARG LABEL_VERSION ARG LABEL_RELEASE @@ -36,44 +104,10 @@ ENV PG_MAJOR=15 ENV PATH="$PATH:/usr/pgsql-$PG_MAJOR/bin/" \ PGDATA="/var/lib/postgresql/data/pgdata" -COPY signatures/PGDG-RPM-GPG-KEY-RHEL / +COPY --from=dependency_builder /out/ / + COPY scripts/docker-entrypoint.sh /usr/local/bin/ COPY --from=extracted_bundle /bundle/etc/postgresql.conf /bundle/etc/pg_hba.conf /etc/ -COPY --from=postgres_rpms /rpms/postgres.rpm /rpms/postgres-libs.rpm /rpms/postgres-server.rpm /rpms/postgres-contrib.rpm /tmp/ - -RUN microdnf upgrade -y --nobest && \ - microdnf install -y shadow-utils && \ - groupadd -g 70 postgres && \ - adduser postgres -u 70 -g 70 -d /var/lib/postgresql -s /bin/sh && \ - rpm --import PGDG-RPM-GPG-KEY-RHEL && \ - microdnf install -y \ - ca-certificates \ - glibc-langpack-en \ - glibc-locale-source \ - libicu \ - libxslt \ - lz4 \ - perl-libs \ - python3 \ - systemd-sysv \ - zstd \ - && \ - if [[ $(awk -F'=' '/VERSION_ID/{ gsub(/"/,""); print substr($2,1,1)}' /etc/os-release) -gt 8 ]]; then \ - microdnf install -y uuid; \ - fi && \ - rpm -i /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ - # The removal of /usr/share/zoneinfo from UBI minimal images is intentional. - # After building the image, the image is reduced in size as much as possible, - # and the /usr/share/zoneinfo directory is purged as it saves space - # in the final distribution of the image. - # https://access.redhat.com/solutions/5616681 - microdnf reinstall -y tzdata && \ - microdnf clean all && \ - # (Optional) Remove line below to keep package management utilities - rpm -e --nodeps $(rpm -qa shadow-utils curl '*rpm*' '*dnf*' '*libsolv*' '*hawkey*' 'yum*') && \ - rm -rf /var/cache/dnf /var/cache/yum /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ - localedef -f UTF-8 -i en_US en_US.UTF-8 && \ - mkdir /docker-entrypoint-initdb.d # This is equivalent to postgres:postgres. USER 70:70 diff --git a/image/db/rhel/Dockerfile.slim b/image/db/rhel/Dockerfile.slim index 8e3bb7d34..95ac2df9c 100644 --- a/image/db/rhel/Dockerfile.slim +++ b/image/db/rhel/Dockerfile.slim @@ -6,6 +6,8 @@ ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi9-minimal ARG BASE_TAG=latest +FROM ${BASE_REGISTRY}/ubi9-micro:${BASE_TAG} AS ubi-micro-base + FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS extracted_bundle COPY bundle.tar.gz / @@ -17,7 +19,73 @@ FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS postgres_rpms COPY scripts/download.sh /download.sh RUN /download.sh -FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS base +FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS dependency_builder + +ENV PG_MAJOR=15 + +COPY --from=ubi-micro-base / /out/ + +RUN dnf install -y \ + --installroot=/out/ \ + --releasever=9 \ + --setopt=install_weak_deps=0 \ + --nodocs \ + bash \ + coreutils \ + findutils \ + util-linux \ + shadow-utils \ + ca-certificates \ + openldap \ + glibc-langpack-en \ + glibc-locale-source \ + libicu \ + libxslt \ + lz4 \ + perl-libs \ + python3 \ + systemd-sysv \ + zstd \ + uuid \ + gzip \ + less \ + tar && \ + dnf clean all --installroot=/out/ && \ + rm -rf /out/var/cache/dnf /out/var/cache/yum + +COPY --from=postgres_rpms /rpms/postgres.rpm /rpms/postgres-libs.rpm /rpms/postgres-server.rpm /rpms/postgres-contrib.rpm /tmp/ +COPY signatures/PGDG-RPM-GPG-KEY-RHEL /tmp/ + +RUN rpm --root=/out/ --import /tmp/PGDG-RPM-GPG-KEY-RHEL && \ + rpm --root=/out/ -ivh --nodeps /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ + rm -rf /tmp/*.rpm /tmp/PGDG-RPM-GPG-KEY-RHEL + +RUN chroot /out /bin/sh -c " \ + if getent group postgres >/dev/null; then \ + current_gid=\$(getent group postgres | cut -d: -f3); \ + if [ \$current_gid -ne 70 ]; then \ + groupmod -g 70 postgres; \ + fi; \ + else \ + groupadd -g 70 postgres; \ + fi && \ + if id -u postgres &>/dev/null; then \ + current_uid=\$(id -u postgres); \ + if [ \$current_uid -ne 70 ]; then \ + usermod -u 70 -g 70 postgres; \ + fi; \ + else \ + useradd postgres -u 70 -g 70 -d /var/lib/postgresql -s /bin/sh; \ + fi \ + " + +RUN chroot /out /bin/sh -c "localedef -f UTF-8 -i en_US en_US.UTF-8" + +RUN mkdir -p /out/docker-entrypoint-initdb.d \ + /out/var/run/postgresql && \ + chroot /out /bin/sh -c "chown postgres:postgres /var/run/postgresql && chmod 03775 /var/run/postgresql" + +FROM ubi-micro-base AS base ARG LABEL_VERSION ARG LABEL_RELEASE @@ -36,44 +104,10 @@ ENV PG_MAJOR=15 ENV PATH="$PATH:/usr/pgsql-$PG_MAJOR/bin/" \ PGDATA="/var/lib/postgresql/data/pgdata" -COPY signatures/PGDG-RPM-GPG-KEY-RHEL / +COPY --from=dependency_builder /out/ / + COPY scripts/docker-entrypoint.sh /usr/local/bin/ COPY --from=extracted_bundle /bundle/etc/postgresql.conf /bundle/etc/pg_hba.conf /etc/ -COPY --from=postgres_rpms /rpms/postgres.rpm /rpms/postgres-libs.rpm /rpms/postgres-server.rpm /rpms/postgres-contrib.rpm /tmp/ - -RUN microdnf upgrade -y --nobest && \ - microdnf install -y shadow-utils && \ - groupadd -g 70 postgres && \ - adduser postgres -u 70 -g 70 -d /var/lib/postgresql -s /bin/sh && \ - rpm --import PGDG-RPM-GPG-KEY-RHEL && \ - microdnf install -y \ - ca-certificates \ - glibc-langpack-en \ - glibc-locale-source \ - libicu \ - libxslt \ - lz4 \ - perl-libs \ - python3 \ - systemd-sysv \ - zstd \ - && \ - if [[ $(awk -F'=' '/VERSION_ID/{ gsub(/"/,""); print substr($2,1,1)}' /etc/os-release) -gt 8 ]]; then \ - microdnf install -y uuid; \ - fi && \ - rpm -i /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ - # The removal of /usr/share/zoneinfo from UBI minimal images is intentional. - # After building the image, the image is reduced in size as much as possible, - # and the /usr/share/zoneinfo directory is purged as it saves space - # in the final distribution of the image. - # https://access.redhat.com/solutions/5616681 - microdnf reinstall -y tzdata && \ - microdnf clean all && \ - # (Optional) Remove line below to keep package management utilities - rpm -e --nodeps $(rpm -qa shadow-utils curl '*rpm*' '*dnf*' '*libsolv*' '*hawkey*' 'yum*') && \ - rm -rf /var/cache/dnf /var/cache/yum /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ - localedef -f UTF-8 -i en_US en_US.UTF-8 && \ - mkdir /docker-entrypoint-initdb.d # This is equivalent to postgres:postgres. USER 70:70 diff --git a/image/scanner/rhel/Dockerfile b/image/scanner/rhel/Dockerfile index 9310a1f6e..53f2eac8b 100644 --- a/image/scanner/rhel/Dockerfile +++ b/image/scanner/rhel/Dockerfile @@ -2,13 +2,36 @@ ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi9-minimal ARG BASE_TAG=latest +FROM ${BASE_REGISTRY}/ubi9-micro:${BASE_TAG} AS ubi-micro-base + FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS extracted_bundle COPY bundle.tar.gz / WORKDIR /bundle RUN microdnf install -y tar gzip && tar -zxf /bundle.tar.gz -FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS base +FROM ${BASE_REGISTRY}/ubi9:${BASE_TAG} AS package_installer + +COPY --from=ubi-micro-base / /out/ + +RUN dnf install -y \ + --installroot=/out/ \ + --releasever=9 \ + --setopt=install_weak_deps=0 \ + --nodocs \ + bash \ + coreutils \ + findutils \ + util-linux \ + ca-certificates \ + xz \ + gzip \ + less \ + tar && \ + dnf clean all --installroot=/out/ && \ + rm -rf /out/var/cache/dnf /out/var/cache/yum + +FROM ubi-micro-base AS base ARG LABEL_VERSION ARG LABEL_RELEASE @@ -25,20 +48,15 @@ LABEL name="scanner" \ SHELL ["/bin/sh", "-o", "pipefail", "-c"] +COPY --from=package_installer /out/ / + COPY scripts / COPY --from=extracted_bundle /bundle/scanner ./ COPY --from=extracted_bundle /bundle/THIRD_PARTY_NOTICES/ /THIRD_PARTY_NOTICES/ -RUN microdnf upgrade -y --nobest && \ - microdnf install -y xz && \ - microdnf clean -y all && \ - # (Optional) Remove line below to keep package management utilities - # We don't uninstall rpm because scanner uses it to get packages installed in scanned images. - rpm -e --nodeps $(rpm -qa curl '*dnf*' '*libsolv*' '*hawkey*' 'yum*') && \ - rm -rf /var/cache/dnf /var/cache/yum && \ - chown -R 65534:65534 /tmp && \ +RUN chown -R 65534:65534 /tmp && \ # The contents of paths mounted as emptyDir volumes in Kubernetes are saved # by the script `save-dir-contents` during the image build. The directory # contents are then restored by the script `restore-all-dir-contents` diff --git a/image/scanner/rhel/Dockerfile.slim b/image/scanner/rhel/Dockerfile.slim index 87f34a677..3e9a2bbab 100644 --- a/image/scanner/rhel/Dockerfile.slim +++ b/image/scanner/rhel/Dockerfile.slim @@ -2,13 +2,36 @@ ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi9-minimal ARG BASE_TAG=latest +FROM ${BASE_REGISTRY}/ubi9-micro:${BASE_TAG} AS ubi-micro-base + FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS extracted_bundle COPY bundle.tar.gz / WORKDIR /bundle RUN microdnf install -y tar gzip && tar -zxf /bundle.tar.gz -FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS base +FROM ${BASE_REGISTRY}/ubi9:${BASE_TAG} AS package_installer + +COPY --from=ubi-micro-base / /out/ + +RUN dnf install -y \ + --installroot=/out/ \ + --releasever=9 \ + --setopt=install_weak_deps=0 \ + --nodocs \ + bash \ + coreutils \ + findutils \ + util-linux \ + ca-certificates \ + xz \ + gzip \ + less \ + tar && \ + dnf clean all --installroot=/out/ && \ + rm -rf /out/var/cache/dnf /out/var/cache/yum + +FROM ubi-micro-base AS base ARG LABEL_VERSION ARG LABEL_RELEASE @@ -25,20 +48,15 @@ LABEL name="scanner-slim" \ SHELL ["/bin/sh", "-o", "pipefail", "-c"] +COPY --from=package_installer /out/ / + COPY scripts / COPY --from=extracted_bundle /bundle/scanner ./ COPY --from=extracted_bundle /bundle/THIRD_PARTY_NOTICES/ /THIRD_PARTY_NOTICES/ -RUN microdnf upgrade -y --nobest && \ - microdnf install -y xz && \ - microdnf clean -y all && \ - # (Optional) Remove line below to keep package management utilities - # We don't uninstall rpm because scanner uses it to get packages installed in scanned images. - rpm -e --nodeps $(rpm -qa curl '*dnf*' '*libsolv*' '*hawkey*' 'yum*') && \ - rm -rf /var/cache/dnf /var/cache/yum && \ - chown -R 65534:65534 /tmp && \ +RUN chown -R 65534:65534 /tmp && \ # The contents of paths mounted as emptyDir volumes in Kubernetes are saved # by the script `save-dir-contents` during the image build. The directory # contents are then restored by the script `restore-all-dir-contents` diff --git a/image/scanner/rhel/konflux.Dockerfile b/image/scanner/rhel/konflux.Dockerfile index ebdaa04f0..a6b627b34 100644 --- a/image/scanner/rhel/konflux.Dockerfile +++ b/image/scanner/rhel/konflux.Dockerfile @@ -27,8 +27,32 @@ RUN echo -n "version: " && make --quiet --no-print-directory tag && \ COPY .konflux/scanner-data/blob-genesis_manifests.json image/scanner/dump/genesis_manifests.json +FROM registry.access.redhat.com/ubi9/ubi-micro:latest@sha256:093a704be0eaef9bb52d9bc0219c67ee9db13c2e797da400ddb5d5ae6849fa10 AS ubi-micro-base + +FROM registry.access.redhat.com/ubi9/ubi:latest@sha256:6ed9f6f637fe731d93ec60c065dbced79273f1e0b5f512951f2c0b0baedb16ad AS package_installer + +COPY --from=ubi-micro-base / /out/ + +RUN dnf install -y \ + --installroot=/out/ \ + --releasever=9 \ + --setopt=install_weak_deps=0 \ + --setopt=reposdir=/etc/yum.repos.d \ + --nodocs \ + bash \ + coreutils \ + findutils \ + util-linux \ + ca-certificates \ + xz \ + gzip \ + less \ + tar && \ + dnf clean all --installroot=/out/ && \ + rm -rf /out/var/cache/dnf /out/var/cache/yum + # Common base for scanner slim and full -FROM registry.access.redhat.com/ubi9-minimal:latest@sha256:c7d44146f826037f6873d99da479299b889473492d3c1ab8af86f08af04ec8a0 AS scanner-common +FROM ubi-micro-base AS scanner-common ARG SCANNER_TAG @@ -52,6 +76,8 @@ SHELL ["/bin/sh", "-o", "pipefail", "-c"] ENV REPO_TO_CPE_DIR="/repo2cpe" +COPY --from=package_installer /out/ / + COPY --from=builder /src/image/scanner/scripts / COPY --from=builder /src/image/scanner/bin/scanner ./ COPY --chown=65534:65534 --from=builder "/src/image/scanner/dump${REPO_TO_CPE_DIR}/" ".${REPO_TO_CPE_DIR}/" @@ -59,13 +85,7 @@ COPY --chown=65534:65534 --from=builder /src/image/scanner/dump/genesis_manifest COPY LICENSE /licenses/LICENSE -RUN microdnf install -y xz && \ - microdnf clean all && \ - # (Optional) Remove line below to keep package management utilities - # We don't uninstall rpm because scanner uses it to get packages installed in scanned images. - rpm -e --nodeps $(rpm -qa curl '*dnf*' '*libsolv*' '*hawkey*' 'yum*') && \ - rm -rf /var/cache/dnf /var/cache/yum && \ - chown -R 65534:65534 /tmp && \ +RUN chown -R 65534:65534 /tmp && \ # The contents of paths mounted as emptyDir volumes in Kubernetes are saved # by the script `save-dir-contents` during the image build. The directory # contents are then restored by the script `restore-all-dir-contents` diff --git a/image/vulnerabilities/Dockerfile b/image/vulnerabilities/Dockerfile index 2fd60c4bd..547b4d31b 100644 --- a/image/vulnerabilities/Dockerfile +++ b/image/vulnerabilities/Dockerfile @@ -2,7 +2,7 @@ ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi9-minimal ARG BASE_TAG=latest -FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} +FROM ${BASE_REGISTRY}/ubi9-micro:${BASE_TAG} ARG LABEL_VERSION ARG LABEL_RELEASE diff --git a/rpms.in.yaml b/rpms.in.yaml index 909d73bf2..8280faa46 100644 --- a/rpms.in.yaml +++ b/rpms.in.yaml @@ -2,13 +2,31 @@ # See our docs here: https://spaces.redhat.com/display/StackRox/How+to+prefetch+RPMs+for+ACS+Konflux+builds packages: +# Scanner packages (for konflux.Dockerfile stage: package_installer) +# These packages are installed on top of ubi9-micro base image +# Note: coreutils is excluded - ubi9-micro has coreutils-single which provides the commands we need +- bash +- findutils +- util-linux +- ca-certificates - xz +- gzip +- less +- tar + +# Note: Scanner-DB images don't need RPM prefetch because: +# - konflux.Dockerfile uses registry.redhat.io/rhel9/postgresql-15 base (already has everything) +# - Dockerfile and Dockerfile.slim use ubi9 (full) in dependency_builder stage (can install packages via dnf normally) + contentOrigin: repofiles: [ "rpms.rhel.repo" ] + context: containerfile: file: image/scanner/rhel/konflux.Dockerfile - stageName: scanner-common + stageName: package_installer + imagePattern: registry.access.redhat.com/ubi9/ubi-micro:latest + arches: - aarch64 - ppc64le diff --git a/rpms.lock.yaml b/rpms.lock.yaml index e343b7586..2fb08b7da 100644 --- a/rpms.lock.yaml +++ b/rpms.lock.yaml @@ -4,6 +4,321 @@ lockfileVendor: redhat arches: - arch: aarch64 packages: + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/a/alternatives-1.24-2.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 42137 + checksum: sha256:6f7c0667ac015bc0d40836c9f55c73ebf65a209069f69aa8f58e6b4655c820a8 + name: alternatives + evr: 1.24-2.el9 + sourcerpm: chkconfig-1.24-2.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 120220 + checksum: sha256:001622be7ab510ecddc8d0d1dbc2769892e867fa149bca5226c2a9b804f6e545 + name: audit-libs + evr: 3.1.5-7.el9 + sourcerpm: audit-3.1.5-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 43945 + checksum: sha256:d5ae9d4fc841dbfa72948e6810cbc1baf0430545a2cb195683b1b5b950ae8cc6 + name: bzip2-libs + evr: 1.0.8-10.el9_5 + sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1072208 + checksum: sha256:0554bf65d573950e7d550a07bf7d0b3def85ca3b45a7fbde4cce7cadd9a476a7 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/cracklib-2.9.6-27.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 100995 + checksum: sha256:6b4e2bae51af42c1ab0f1ec7430ab19542747937a827eba8cac540cb7514a145 + name: cracklib + evr: 2.9.6-27.el9 + sourcerpm: cracklib-2.9.6-27.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/cracklib-dicts-2.9.6-27.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 3821337 + checksum: sha256:c4ef55b06c9b5352b2338a6deccd25030472308b3ffe39735585967382e75419 + name: cracklib-dicts + evr: 2.9.6-27.el9 + sourcerpm: cracklib-2.9.6-27.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 92511 + checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/f/findutils-4.8.0-7.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 564807 + checksum: sha256:158af4d5ecbd8b87f0da762ea1655bd4c86512071a95d8307eda3e0b3991105d + name: findutils + evr: 1:4.8.0-7.el9 + sourcerpm: findutils-4.8.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/grep-3.6-5.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 276244 + checksum: sha256:583a247a199901d44dc8a96d46010e15f6211f98f7c61ba089825155b0562520 + name: grep + evr: 3.6-5.el9 + sourcerpm: grep-3.6-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/gzip-1.12-1.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 169809 + checksum: sha256:45710df49b439ddc4a2848fd3877367761b574234ae28b6be46f1cf54f3fcdca + name: gzip + evr: 1.12-1.el9 + sourcerpm: gzip-1.12-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/less-590-6.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 165028 + checksum: sha256:fa762484ba40e0b7eb1c25531a66a0b578b6141cabb6f73d865c13ccdf75c1c9 + name: less + evr: 590-6.el9 + sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libblkid-2.37.4-21.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 113441 + checksum: sha256:9d940eda5075b64ce8c1106fd5c7aeeb00cf9869ff3d0d23ccb5621bc1bc1e9c + name: libblkid + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 36033 + checksum: sha256:dc4eae31749196c0043225c6749e7306ff71f081c09cbdb2fc98a561087c4474 + name: libcap-ng + evr: 0.8.2-7.el9 + sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 727417 + checksum: sha256:3a912b2a0a6226695a5773138ce5ce090c9fb155151dffe732b8d52e6dd22d63 + name: libdb + evr: 5.3.28-57.el9_6 + sourcerpm: libdb-5.3.28-57.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libeconf-0.4.1-4.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 29577 + checksum: sha256:b6f435b6b79b8a62729f581edead46542dc61fe7276117b2354c324c44ba8309 + name: libeconf + evr: 0.4.1-4.el9 + sourcerpm: libeconf-0.4.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libfdisk-2.37.4-21.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 156277 + checksum: sha256:c3373716e1a6bd9f4efeacb66b11dfe8c96e8b988462a61fbb2426a608e32bb4 + name: libfdisk + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libffi-3.4.2-8.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 38554 + checksum: sha256:d33e180b97a603542cb6f1a78b1c3b0ce4af1bc59ee0bb32620c98a629726bc4 + name: libffi + evr: 3.4.2-8.el9 + sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 468890 + checksum: sha256:3d2245f8566422e27f77d0ef4820bafe8d059b12612e74e5672d9c5959ff7ec3 + name: libgcrypt + evr: 1.10.0-11.el9 + sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 222476 + checksum: sha256:aee968114aed0238eb26cff42ec9b0819ad32e2bac99aa8124d55b480806aca5 + name: libgpg-error + evr: 1.42-5.el9 + sourcerpm: libgpg-error-1.42-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libmount-2.37.4-21.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 139754 + checksum: sha256:dca68e66736a1d618cba55d0ccac0f973e0b8b0294ed321cb3c63f33fc2264e7 + name: libmount + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 125712 + checksum: sha256:1657d94bbd79f93dc7a79d474316813bde681ce3a7f62f73314ec4d630e39349 + name: libpwquality + evr: 1.4.4-8.el9 + sourcerpm: libpwquality-1.4.4-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 120963 + checksum: sha256:233d8270827b9166ad11827599800d2a09284d29e73af09c7a12bae251a9463c + name: libsemanage + evr: 3.6-5.el9_6 + sourcerpm: libsemanage-3.6-5.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 30566 + checksum: sha256:0998ac158161c9d5f3b97c5dc6e35becd84da0ddc5d347a8af581ada529b3b5c + name: libsigsegv + evr: 2.13-4.el9 + sourcerpm: libsigsegv-2.13-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libsmartcols-2.37.4-21.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 67408 + checksum: sha256:b2da571bb9f2b940dedc98bc20608d45a4329d3c4f32b97fd1a4408649cbd2ba + name: libsmartcols + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 77910 + checksum: sha256:64fca0d49523ffb182e8bad1b8d52e2c2b7b722ceb54e4fb03e118d07fb59db1 + name: libtasn1 + evr: 4.16.0-9.el9 + sourcerpm: libtasn1-4.16.0-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 30505 + checksum: sha256:d352371cbb7d5bd0c53fc699df953c8c1f184b056690b3c4571e57a6634015c5 + name: libutempter + evr: 1.2.1-6.el9 + sourcerpm: libutempter-1.2.1-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libuuid-2.37.4-21.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 32214 + checksum: sha256:03b4107d8470f4c47d532c3504896564691d402e1a347dd8e52620384e7bd8ec + name: libuuid + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 127655 + checksum: sha256:f05030123425a5033bcca3f260313cafc199bc7bca57e9fb13c335bd087c35a7 + name: libxcrypt + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 283159 + checksum: sha256:1229ed44dc7a68278682d7697c41d0abd7daedd242d90c6dc58a9aa6e76f9e6f + name: libzstd + evr: 1.5.5-1.el9 + sourcerpm: zstd-1.5.5-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 70696 + checksum: sha256:e1dbd2c38a65b135427c7c8fe988ea70dc95f7e26c4c8177b7dcb23925020015 + name: lz4-libs + evr: 1.9.3-5.el9 + sourcerpm: lz4-1.9.3-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-3.5.1-7.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1541274 + checksum: sha256:fa672afb8e31cda4d155929f0e84efba28a925134fd3edacf822802c04e35b8d + name: openssl + evr: 1:3.5.1-7.el9_7 + sourcerpm: openssl-3.5.1-7.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 9366 + checksum: sha256:0cfe7b281ae2ca3cb0ceaa1a0b84f8c087c4ac16662ebb9c19b5681cf39f99a9 + name: openssl-fips-provider + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-8.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 524824 + checksum: sha256:18c77b9b37e7abf0e8cf1dac4b3de770efe895547bdcab8aea8d8d8592954947 + name: openssl-fips-provider-so + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 2285222 + checksum: sha256:5a659a77448de7221c58e25cf3474c49f2d80e2b96ef18c8807bd80d82fcf167 + name: openssl-libs + evr: 1:3.5.1-7.el9_7 + sourcerpm: openssl-3.5.1-7.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 523171 + checksum: sha256:b35f44babbb425e5626f21a21eb40017d2e671daf5d0848799a39070f630e7ba + name: p11-kit + evr: 0.25.3-3.el9_5 + sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/p11-kit-trust-0.25.3-3.el9_5.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 145428 + checksum: sha256:56a9bf7685f57d1dacf248d25309a8f8bdd6f919908748d7a9b93258a00fc37d + name: p11-kit-trust + evr: 0.25.3-3.el9_5 + sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/pam-1.5.1-26.el9_6.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 636107 + checksum: sha256:fd8dc3ae80d01e90bed08e84e32e3b47b568fe5ddc857dffbae36cc4bde0887b + name: pam + evr: 1.5.1-26.el9_6 + sourcerpm: pam-1.5.1-26.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/pcre-8.44-4.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 187289 + checksum: sha256:099feef7e71b82cf0234e37d824fc81353d51dee55694e05181fa686ab50efae + name: pcre + evr: 8.44-4.el9 + sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/r/readline-8.1-4.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 219015 + checksum: sha256:2ae424b368c6747124b51b205b9e11d74aeaff56b3de90e8cbd36012e0d17707 + name: readline + evr: 8.1-4.el9 + sourcerpm: readline-8.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/sed-4.8-9.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 314254 + checksum: sha256:c67205a62c1ef2ad5689382d9f1d1ddc84ca4eada797209d7561e16fa049fde1 + name: sed + evr: 4.8-9.el9 + sourcerpm: sed-4.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/shadow-utils-4.9-15.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1241888 + checksum: sha256:93e53d8bf8f4bf2a3acf0f4f82967598570e24cb4bc2633cb3022a3c70217a74 + name: shadow-utils + evr: 2:4.9-15.el9 + sourcerpm: shadow-utils-4.9-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/systemd-libs-252-55.el9_7.8.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 645755 + checksum: sha256:4bc26c6f072da71d9473139f43fc927aff22cf30793c388053a8dfcbec7fa67a + name: systemd-libs + evr: 252-55.el9_7.8 + sourcerpm: systemd-252-55.el9_7.8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/t/tar-1.34-9.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 898317 + checksum: sha256:2d0bd44116c3f5c229d25fdc6458f6ce24a7ad4fdb463767eea48dcab78c5062 + name: tar + evr: 2:1.34-9.el9_7 + sourcerpm: tar-1.34-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/u/util-linux-2.37.4-21.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 2388428 + checksum: sha256:00ec97a5869f54e74f5c2187739954ad807d528a6e9f7a9079271d34e5890b53 + name: util-linux + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/u/util-linux-core-2.37.4-21.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 472668 + checksum: sha256:6c64ae44f7b363099c14c54e6baf8fbeec666818bd60d3fea6ff247df1420370 + name: util-linux-core + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 235798 @@ -11,16 +326,568 @@ arches: name: xz evr: 5.2.5-8.el9_0 sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 94569 + checksum: sha256:06931afb372ed4a6893e51558beaa6b0eab7adda0af93456fd99a081a8b80779 + name: xz-libs + evr: 5.2.5-8.el9_0 + sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/z/zlib-1.2.11-40.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 94454 + checksum: sha256:2e7f193e67235130c10f5579c2d2ec92e22e4098b6d12fb2855d93b1540c60f7 + name: zlib + evr: 1.2.11-40.el9 + sourcerpm: zlib-1.2.11-40.el9.src.rpm source: + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1268651 + checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb + name: audit + evr: 3.1.5-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 824335 + checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 + name: bzip2 + evr: 1.0.8-10.el9_5 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 711648 + checksum: sha256:d3193e155ddd297042a944729fe54c1b90c17bdbd1876fc68e4f66d7857f9e81 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/chkconfig-1.24-2.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 214658 + checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc + name: chkconfig + evr: 1.24-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/cracklib-2.9.6-27.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 6414228 + checksum: sha256:56a815a100d75c1d42c07090b632f05e51ea6d17df097d2936ab25d9aca49310 + name: cracklib + evr: 2.9.6-27.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 107074 + checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 2010585 + checksum: sha256:48bd4d4dd081120bcc6ab772b930a150f30b2fc89a4a14a24220383d24a30b3f + name: findutils + evr: 1:4.8.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/grep-3.6-5.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1620891 + checksum: sha256:81b14432ebe1645b74b57592f1dcde8fab15ec13632f483f72ff2407ed16c33e + name: grep + evr: 3.6-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/gzip-1.12-1.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 856147 + checksum: sha256:a05f582ec42e89258ee5e10af96dee4300bcb2a6a69a76bfb5b46f79e6a6a47b + name: gzip + evr: 1.12-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/less-590-6.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 382338 + checksum: sha256:4a5023846942905da4226503f6a9da91a66bf6c179dc21d2e4210b3371399b17 + name: less + evr: 590-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 470599 + checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 + name: libcap-ng + evr: 0.8.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libdb-5.3.28-57.el9_6.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 35290920 + checksum: sha256:6a74a3d96bd4657659524050945e2a47e93779addf2de374a13e1baf32b4ab8d + name: libdb + evr: 5.3.28-57.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libeconf-0.4.1-4.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 201501 + checksum: sha256:4541a0915eca1e6fd1440253cf6bdfc5482c7b6dd3d3c7310a77faf852b7671a + name: libeconf + evr: 0.4.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1367398 + checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 + name: libffi + evr: 3.4.2-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libgcrypt-1.10.0-11.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 3981814 + checksum: sha256:3ac5b6ac1a4be5513e76fa2f33346014b8b3c5c47bbe71524ce326782b163d2e + name: libgcrypt + evr: 1.10.0-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libgpg-error-1.42-5.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 994101 + checksum: sha256:9586046fd9622e5e898f92a08821948bf0754a74ab343cc093ca21caae0352a6 + name: libgpg-error + evr: 1.42-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libpwquality-1.4.4-8.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 447225 + checksum: sha256:14fbf335e2c6f22b441a9750a69b7c41e197c4dd21adac701fd81f17660ee0b4 + name: libpwquality + evr: 1.4.4-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 223978 + checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 + name: libsemanage + evr: 3.6-5.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 473267 + checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 + name: libsigsegv + evr: 2.13-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-9.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1895591 + checksum: sha256:a3d9612fc631100fa0a528d7721bdee96acc33e35befb6a96544526eae169936 + name: libtasn1 + evr: 4.16.0-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libutempter-1.2.1-6.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 30093 + checksum: sha256:e48843d2734fefad084a86165860ea9575bdc53f63bb5845d8807ce9ccb4f914 + name: libutempter + evr: 1.2.1-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 543970 + checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 + name: libxcrypt + evr: 4.4.18-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 333421 + checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 + name: lz4 + evr: 1.9.3-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 53417882 + checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb + name: openssl + evr: 1:3.5.1-7.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 89979766 + checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 + name: openssl-fips-provider + evr: 3.0.7-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1027881 + checksum: sha256:de598a2e1ca170df85cd69d6cc406402407a244988506f53f8736a7546135260 + name: p11-kit + evr: 0.25.3-3.el9_5 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/pam-1.5.1-26.el9_6.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1130406 + checksum: sha256:9a351f0455da788ff63026af9a8ee30e744017941c82283f970d1ed066000bb6 + name: pam + evr: 1.5.1-26.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1624356 + checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 + name: pcre + evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 3009702 + checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 + name: readline + evr: 8.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1424192 + checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 + name: sed + evr: 4.8-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1712227 + checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 + name: shadow-utils + evr: 2:4.9-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/systemd-252-55.el9_7.8.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 44888096 + checksum: sha256:a633587c7170f5928a0bf1ba144f8f58d759cfdcbc4e6437c4dcb74b1742c69b + name: systemd + evr: 252-55.el9_7.8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 2282680 + checksum: sha256:9b84935c6072500fa28674521fe13816a8be44c50bb8eaf5ec73994782161250 + name: tar + evr: 2:1.34-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/u/util-linux-2.37.4-21.el9_7.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 6285412 + checksum: sha256:023c096f5d669249836bc5d5a445a96ce86b7bbc0b52a1321c371d208df69a57 + name: util-linux + evr: 2.37.4-21.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 1168293 checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 name: xz evr: 5.2.5-8.el9_0 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 561153 + checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 + name: zlib + evr: 1.2.11-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 2378112 + checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e + name: zstd + evr: 1.5.5-1.el9 module_metadata: [] - arch: ppc64le packages: + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/a/alternatives-1.24-2.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 44269 + checksum: sha256:ff47094c1f94e74225bffd2b93cd3b4690d1e20d098d35ecf2cccecd468f6f62 + name: alternatives + evr: 1.24-2.el9 + sourcerpm: chkconfig-1.24-2.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 140704 + checksum: sha256:7d4c990831f2f92403ad7f59f5fadcaffef98442b951f34dd648a0b69b2b9a18 + name: audit-libs + evr: 3.1.5-7.el9 + sourcerpm: audit-3.1.5-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 47605 + checksum: sha256:f1b07f02b34fe8d8ba24eed9afd874ced25f4da14eb1b0c804e47de1281fce49 + name: bzip2-libs + evr: 1.0.8-10.el9_5 + sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1072208 + checksum: sha256:0554bf65d573950e7d550a07bf7d0b3def85ca3b45a7fbde4cce7cadd9a476a7 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/cracklib-2.9.6-27.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 102420 + checksum: sha256:be3738f99a18e14c80b771e0bcc4e13d9d067f1a1bcefd9ffcdabdb5e03bf46a + name: cracklib + evr: 2.9.6-27.el9 + sourcerpm: cracklib-2.9.6-27.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/cracklib-dicts-2.9.6-27.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 3821001 + checksum: sha256:a5ae48064c709f448291de88bbf97427c65cc6a03179972496d27d4223bb6e96 + name: cracklib-dicts + evr: 2.9.6-27.el9 + sourcerpm: cracklib-2.9.6-27.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 92511 + checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/f/findutils-4.8.0-7.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 603076 + checksum: sha256:d4662cea7b9ae75c86e6afa1c69b3047773acf7d4a6cf8b99e63355cde0e8de8 + name: findutils + evr: 1:4.8.0-7.el9 + sourcerpm: findutils-4.8.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/grep-3.6-5.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 288035 + checksum: sha256:3598703d7995b01b5b10f55ac65ce851e30f41d037e679bec4afa11a41846511 + name: grep + evr: 3.6-5.el9 + sourcerpm: grep-3.6-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/gzip-1.12-1.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 175705 + checksum: sha256:55b983f08d8b2a0741b07f114cdba89a8ecb207064c001e90e4c76a13836d458 + name: gzip + evr: 1.12-1.el9 + sourcerpm: gzip-1.12-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/less-590-6.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 177816 + checksum: sha256:f909dc6be219e81adf5971c832be097d06296fabdff67688f701e3437b55d4dc + name: less + evr: 590-6.el9 + sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libblkid-2.37.4-21.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 130064 + checksum: sha256:598ac49c65ed4a04bdbc48716be204c4a1501bc936ce1cc24d142b925b0edfb8 + name: libblkid + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 37600 + checksum: sha256:2483f8a4b41d76f84939855b712cfa8a990254ac36fc590daa641b2c19b014eb + name: libcap-ng + evr: 0.8.2-7.el9 + sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 837087 + checksum: sha256:3c73512cfb5cff3477193e37e80fbd416449035f909998b7873bcade57aa242c + name: libdb + evr: 5.3.28-57.el9_6 + sourcerpm: libdb-5.3.28-57.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libeconf-0.4.1-4.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 32878 + checksum: sha256:a3fbb9481c4d4f13cc1f1593a83f31fc27975b759fd01235b875d09973eeb102 + name: libeconf + evr: 0.4.1-4.el9 + sourcerpm: libeconf-0.4.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libfdisk-2.37.4-21.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 176639 + checksum: sha256:4c772f1872f91203182ffec334b60d8c11a1d5dcca283e203af0a564cbab9458 + name: libfdisk + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libffi-3.4.2-8.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 40799 + checksum: sha256:c5042688cccb346b2bb0865410564d305a9b86e7618558354428ebc09ff689d8 + name: libffi + evr: 3.4.2-8.el9 + sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 612983 + checksum: sha256:917a9fc0eca0405813697b4d830578c92b01c1dba766321bfa880a248b0c4d5e + name: libgcrypt + evr: 1.10.0-11.el9 + sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libgpg-error-1.42-5.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 234885 + checksum: sha256:2db222784b8d4183fd2704cffa9df4d7023ebd5dc51806fbdc30e8fa9123c5a5 + name: libgpg-error + evr: 1.42-5.el9 + sourcerpm: libgpg-error-1.42-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libmount-2.37.4-21.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 159458 + checksum: sha256:c92c1ad53728ceb535bee3bbf0d1296abc5e446aaac1d17a14cc701ceb93e281 + name: libmount + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 128350 + checksum: sha256:0b13ff548b9b0be9f8d0271d90fa3673c081fbc22dc869ae4c37c68fa2a32c09 + name: libpwquality + evr: 1.4.4-8.el9 + sourcerpm: libpwquality-1.4.4-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/librtas-2.0.6-1.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 86335 + checksum: sha256:64d105e7f8b9ee542efe65816ae77fb38988c00bef1e0cc5ea3e1a4e89fb7505 + name: librtas + evr: 2.0.6-1.el9 + sourcerpm: librtas-2.0.6-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 136617 + checksum: sha256:fb48b9d444876b4517d441b63955b32ff022b27d99865384900912c55d84f808 + name: libsemanage + evr: 3.6-5.el9_6 + sourcerpm: libsemanage-3.6-5.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libsigsegv-2.13-4.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 31522 + checksum: sha256:9e67d1dd24a8ffa2366479c3c15691b530786ccee77e7c93090c192cce1e63b3 + name: libsigsegv + evr: 2.13-4.el9 + sourcerpm: libsigsegv-2.13-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libsmartcols-2.37.4-21.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 73994 + checksum: sha256:85729feb0f651f49aef6a3ab41218de9ecf3d97e4edfeb905667c9554d6f6716 + name: libsmartcols + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 84469 + checksum: sha256:05d77fc16cb5888d298a1d57d419da59894e60eed3220f674f74d50337db167f + name: libtasn1 + evr: 4.16.0-9.el9 + sourcerpm: libtasn1-4.16.0-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libutempter-1.2.1-6.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 30656 + checksum: sha256:b62a3c29e31482fc21de315eaefa28f3e52f59396b0a33e6d1267822cabc1c67 + name: libutempter + evr: 1.2.1-6.el9 + sourcerpm: libutempter-1.2.1-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libuuid-2.37.4-21.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 34226 + checksum: sha256:164d9da68feaa8bc4cd4edacbe93e6727a78a4a6398b62444ac87c643325fb77 + name: libuuid + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 136063 + checksum: sha256:c0bc93eea8ae33a88c33d7f4ac290a7c4fb844e591fb69a55e50dca8df8fbbff + name: libxcrypt + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libzstd-1.5.5-1.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 329280 + checksum: sha256:c613b79b53a7d9b00bb33fac7971d412d8f9f9656436cdc8e451e4a805f53ee8 + name: libzstd + evr: 1.5.5-1.el9 + sourcerpm: zstd-1.5.5-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 90452 + checksum: sha256:2a7ef3bd2571c62bf75f3bc1a9206f5715ddcb1cb77f561689de458a417e5914 + name: lz4-libs + evr: 1.9.3-5.el9 + sourcerpm: lz4-1.9.3-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-3.5.1-7.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1566615 + checksum: sha256:c5a5284070d6d182a4c93283039a327bf02efd41ab7ab4a748971421773ba605 + name: openssl + evr: 1:3.5.1-7.el9_7 + sourcerpm: openssl-3.5.1-7.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 9390 + checksum: sha256:c4a55a68f123fd873380d919ede200fb64f7443eb4235ce555a307cfee9fb6a5 + name: openssl-fips-provider + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-8.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 576788 + checksum: sha256:325a2017d21f5ca789931de321cd9fb5f359ce12fb0d0acc2f3cd9dc00b00dc3 + name: openssl-fips-provider-so + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 2550625 + checksum: sha256:99dac7eb92b2cf3e4e2f512378397f59d206795e89bef3bb6891062e334fa65c + name: openssl-libs + evr: 1:3.5.1-7.el9_7 + sourcerpm: openssl-3.5.1-7.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 547598 + checksum: sha256:fd4240aac85927fc57c6cc5bc689149b3bf1b92b676064bfb23a6107a343310c + name: p11-kit + evr: 0.25.3-3.el9_5 + sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/p11-kit-trust-0.25.3-3.el9_5.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 161121 + checksum: sha256:b42303b7d5d10b6303e8abaccbaa302df0bca5fdd9949e043aaf1c5b2a53254d + name: p11-kit-trust + evr: 0.25.3-3.el9_5 + sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/pam-1.5.1-26.el9_6.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 677447 + checksum: sha256:93eb19dd21e5bb33d1d004c9e49e49d0049aca990074b8c6f4204e5af4c3c38e + name: pam + evr: 1.5.1-26.el9_6 + sourcerpm: pam-1.5.1-26.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/pcre-8.44-4.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 208333 + checksum: sha256:a9194f82f80f11599236c3acd4cd6faf0a4fd4aec302f44365847e6222499e65 + name: pcre + evr: 8.44-4.el9 + sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/r/readline-8.1-4.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 236301 + checksum: sha256:e346c16a0e4b617897f744fe448701cdc90202aecc61d5a40b9ed0986609cb25 + name: readline + evr: 8.1-4.el9 + sourcerpm: readline-8.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/sed-4.8-9.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 322393 + checksum: sha256:afa65fcc13e68755b67a318737603ed72f9569669c51b858f3c04e99a9272c89 + name: sed + evr: 4.8-9.el9 + sourcerpm: sed-4.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/shadow-utils-4.9-15.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1272062 + checksum: sha256:306514b0e1eff64bbcf43b53cd73f952e48cd4221c3d215dfe7b1908354f07ca + name: shadow-utils + evr: 2:4.9-15.el9 + sourcerpm: shadow-utils-4.9-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/systemd-libs-252-55.el9_7.8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 710620 + checksum: sha256:ce27f22f72b9bc45bb09924bdd51a3a99a63fbdc88bbd3f22c6ecd70affded1c + name: systemd-libs + evr: 252-55.el9_7.8 + sourcerpm: systemd-252-55.el9_7.8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/t/tar-1.34-9.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 938310 + checksum: sha256:6b32b0c5b960f836c91fae329c0d2786d932a44b9e44711639646b5e55146c8b + name: tar + evr: 2:1.34-9.el9_7 + sourcerpm: tar-1.34-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/u/util-linux-2.37.4-21.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 2424397 + checksum: sha256:f8fb64127696c7c7856fddc98e9b6642b2d603487363eda8d72f449e7efe39c9 + name: util-linux + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/u/util-linux-core-2.37.4-21.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 495317 + checksum: sha256:d9a5aee7efe2b85b531648bd8d0aa53a0e02d2dbe2f77881b7072ac9390eeb2c + name: util-linux-core + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/x/xz-5.2.5-8.el9_0.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 243215 @@ -28,16 +895,567 @@ arches: name: xz evr: 5.2.5-8.el9_0 sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 120233 + checksum: sha256:4e67d1701dc3e5f23191fcbc72e01d48e3287dc32046db9514eb19b902dfc089 + name: xz-libs + evr: 5.2.5-8.el9_0 + sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/z/zlib-1.2.11-40.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 106130 + checksum: sha256:330a6c1a9e15d4118a4dbff5b5446f054e42a8286fbd85a416b8d30771d6db6f + name: zlib + evr: 1.2.11-40.el9 + sourcerpm: zlib-1.2.11-40.el9.src.rpm source: + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1268651 + checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb + name: audit + evr: 3.1.5-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 824335 + checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 + name: bzip2 + evr: 1.0.8-10.el9_5 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 711648 + checksum: sha256:d3193e155ddd297042a944729fe54c1b90c17bdbd1876fc68e4f66d7857f9e81 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/chkconfig-1.24-2.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 214658 + checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc + name: chkconfig + evr: 1.24-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/cracklib-2.9.6-27.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 6414228 + checksum: sha256:56a815a100d75c1d42c07090b632f05e51ea6d17df097d2936ab25d9aca49310 + name: cracklib + evr: 2.9.6-27.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 107074 + checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 2010585 + checksum: sha256:48bd4d4dd081120bcc6ab772b930a150f30b2fc89a4a14a24220383d24a30b3f + name: findutils + evr: 1:4.8.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/grep-3.6-5.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1620891 + checksum: sha256:81b14432ebe1645b74b57592f1dcde8fab15ec13632f483f72ff2407ed16c33e + name: grep + evr: 3.6-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/gzip-1.12-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 856147 + checksum: sha256:a05f582ec42e89258ee5e10af96dee4300bcb2a6a69a76bfb5b46f79e6a6a47b + name: gzip + evr: 1.12-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/less-590-6.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 382338 + checksum: sha256:4a5023846942905da4226503f6a9da91a66bf6c179dc21d2e4210b3371399b17 + name: less + evr: 590-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 470599 + checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 + name: libcap-ng + evr: 0.8.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libdb-5.3.28-57.el9_6.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 35290920 + checksum: sha256:6a74a3d96bd4657659524050945e2a47e93779addf2de374a13e1baf32b4ab8d + name: libdb + evr: 5.3.28-57.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libeconf-0.4.1-4.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 201501 + checksum: sha256:4541a0915eca1e6fd1440253cf6bdfc5482c7b6dd3d3c7310a77faf852b7671a + name: libeconf + evr: 0.4.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1367398 + checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 + name: libffi + evr: 3.4.2-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libgcrypt-1.10.0-11.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 3981814 + checksum: sha256:3ac5b6ac1a4be5513e76fa2f33346014b8b3c5c47bbe71524ce326782b163d2e + name: libgcrypt + evr: 1.10.0-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libgpg-error-1.42-5.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 994101 + checksum: sha256:9586046fd9622e5e898f92a08821948bf0754a74ab343cc093ca21caae0352a6 + name: libgpg-error + evr: 1.42-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libpwquality-1.4.4-8.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 447225 + checksum: sha256:14fbf335e2c6f22b441a9750a69b7c41e197c4dd21adac701fd81f17660ee0b4 + name: libpwquality + evr: 1.4.4-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/librtas-2.0.6-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 162965 + checksum: sha256:b87597d7d10c2031ef18cb2bbaf2a318ecd21c274855c49d57a9557df3292113 + name: librtas + evr: 2.0.6-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 223978 + checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 + name: libsemanage + evr: 3.6-5.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 473267 + checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 + name: libsigsegv + evr: 2.13-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-9.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1895591 + checksum: sha256:a3d9612fc631100fa0a528d7721bdee96acc33e35befb6a96544526eae169936 + name: libtasn1 + evr: 4.16.0-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libutempter-1.2.1-6.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 30093 + checksum: sha256:e48843d2734fefad084a86165860ea9575bdc53f63bb5845d8807ce9ccb4f914 + name: libutempter + evr: 1.2.1-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 543970 + checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 + name: libxcrypt + evr: 4.4.18-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 333421 + checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 + name: lz4 + evr: 1.9.3-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 53417882 + checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb + name: openssl + evr: 1:3.5.1-7.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 89979766 + checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 + name: openssl-fips-provider + evr: 3.0.7-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1027881 + checksum: sha256:de598a2e1ca170df85cd69d6cc406402407a244988506f53f8736a7546135260 + name: p11-kit + evr: 0.25.3-3.el9_5 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/pam-1.5.1-26.el9_6.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1130406 + checksum: sha256:9a351f0455da788ff63026af9a8ee30e744017941c82283f970d1ed066000bb6 + name: pam + evr: 1.5.1-26.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1624356 + checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 + name: pcre + evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 3009702 + checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 + name: readline + evr: 8.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1424192 + checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 + name: sed + evr: 4.8-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1712227 + checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 + name: shadow-utils + evr: 2:4.9-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/systemd-252-55.el9_7.8.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 44888096 + checksum: sha256:a633587c7170f5928a0bf1ba144f8f58d759cfdcbc4e6437c4dcb74b1742c69b + name: systemd + evr: 252-55.el9_7.8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 2282680 + checksum: sha256:9b84935c6072500fa28674521fe13816a8be44c50bb8eaf5ec73994782161250 + name: tar + evr: 2:1.34-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/u/util-linux-2.37.4-21.el9_7.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 6285412 + checksum: sha256:023c096f5d669249836bc5d5a445a96ce86b7bbc0b52a1321c371d208df69a57 + name: util-linux + evr: 2.37.4-21.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 1168293 checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 name: xz evr: 5.2.5-8.el9_0 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 561153 + checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 + name: zlib + evr: 1.2.11-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 2378112 + checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e + name: zstd + evr: 1.5.5-1.el9 module_metadata: [] - arch: s390x packages: + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/a/alternatives-1.24-2.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 42270 + checksum: sha256:85509a2be050bd9a6e7895fe9c0ab67750a0389d79f62407bbb4bc3ec6262abf + name: alternatives + evr: 1.24-2.el9 + sourcerpm: chkconfig-1.24-2.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 119512 + checksum: sha256:d511b2237d2487a68d30e13140cd203661fbe271b14f9ffa9b69263c148826c0 + name: audit-libs + evr: 3.1.5-7.el9 + sourcerpm: audit-3.1.5-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 43993 + checksum: sha256:1543fd23b32a7964ef5a570515a1905100122cc6a044d5959dbea65c51c93719 + name: bzip2-libs + evr: 1.0.8-10.el9_5 + sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1072208 + checksum: sha256:0554bf65d573950e7d550a07bf7d0b3def85ca3b45a7fbde4cce7cadd9a476a7 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/cracklib-2.9.6-27.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 100558 + checksum: sha256:7cd93f220df178d0a76f486ab341cbf858e4ea768e9bc779b1e6eb74259fc3bf + name: cracklib + evr: 2.9.6-27.el9 + sourcerpm: cracklib-2.9.6-27.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/cracklib-dicts-2.9.6-27.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 3838529 + checksum: sha256:fb179b85546fb2ba2e044e40d6f97a7856802840150f636447a048ecf680c07d + name: cracklib-dicts + evr: 2.9.6-27.el9 + sourcerpm: cracklib-2.9.6-27.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 92511 + checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/f/findutils-4.8.0-7.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 562344 + checksum: sha256:58a784cd8f94da5182ab13c9696c7e5410b0452b20c524013040d234517e931e + name: findutils + evr: 1:4.8.0-7.el9 + sourcerpm: findutils-4.8.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/grep-3.6-5.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 280207 + checksum: sha256:282ef2512b0c14223fa788ecbc863895bc13e191d69f835fb9bba8aa37ce61a5 + name: grep + evr: 3.6-5.el9 + sourcerpm: grep-3.6-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/gzip-1.12-1.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 173101 + checksum: sha256:50034ee6281864a218a5f3bc47de5afb434400fb8415907fd31d8351adbdc5a6 + name: gzip + evr: 1.12-1.el9 + sourcerpm: gzip-1.12-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/less-590-6.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 166698 + checksum: sha256:63241d59d1ce7164d516ff360b6186ab8c7b49e642a48ed0f09c55451ea26beb + name: less + evr: 590-6.el9 + sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libblkid-2.37.4-21.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 110737 + checksum: sha256:6f9853158a5b0c1a1d0a30b43b18e716771741fb327cbdf33342ee1066586de8 + name: libblkid + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 36348 + checksum: sha256:b41f491e2bf52e3f453219fd79e3ab33378b9c1e608b082e6d453b3ec7dc8d6b + name: libcap-ng + evr: 0.8.2-7.el9 + sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 721041 + checksum: sha256:150208aa151d6351c3926632a7f9850022788d16d647d4151915a79af3c3c74f + name: libdb + evr: 5.3.28-57.el9_6 + sourcerpm: libdb-5.3.28-57.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libeconf-0.4.1-4.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 30401 + checksum: sha256:97f2c01fb34760ab35d8f1b88fc59d743710035ae1677f06ea8919d0390e0ebb + name: libeconf + evr: 0.4.1-4.el9 + sourcerpm: libeconf-0.4.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libfdisk-2.37.4-21.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 155697 + checksum: sha256:0fd99f51b377f1f178ffc8c6e17ecfd0d34c73bf9ab59000a38ed229bf8c9d06 + name: libfdisk + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libffi-3.4.2-8.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 37310 + checksum: sha256:e307e5bbdd2dcc9976ee39433c7d23d5063fbac159b2e49e98e34de9f5497cc6 + name: libffi + evr: 3.4.2-8.el9 + sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 469635 + checksum: sha256:ad73b3b1163668089b5768b0887561960dd3eae21b6d05f3a09fe1dca42920a3 + name: libgcrypt + evr: 1.10.0-11.el9 + sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libgpg-error-1.42-5.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 224395 + checksum: sha256:edee8e59f5786ffa5dd0397b512277cd5caa3ee221a9728e6f972fc531b6709e + name: libgpg-error + evr: 1.42-5.el9 + sourcerpm: libgpg-error-1.42-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libmount-2.37.4-21.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 139163 + checksum: sha256:f954719f75db726a84d88aa90e3d04f8d56824072f3db69be14ebcdf6d807818 + name: libmount + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 125703 + checksum: sha256:d3878b8c342582135698ee7c7fb371ed8326c7998bca3b8426191082bd32a6ae + name: libpwquality + evr: 1.4.4-8.el9 + sourcerpm: libpwquality-1.4.4-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 120733 + checksum: sha256:1b7217f14c6ffbd10a10e00a84563002b9d38d02138cb23f21b168bbeea197e9 + name: libsemanage + evr: 3.6-5.el9_6 + sourcerpm: libsemanage-3.6-5.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libsigsegv-2.13-4.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 30531 + checksum: sha256:b6dffdaa197220f401417c607cdd659fdffaf1a5a07451e96eb6727f067539ee + name: libsigsegv + evr: 2.13-4.el9 + sourcerpm: libsigsegv-2.13-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libsmartcols-2.37.4-21.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 67710 + checksum: sha256:044670a86134922c7e15bb6563061359a3b5681b1c994fe279e55406fb454cdc + name: libsmartcols + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 78514 + checksum: sha256:e074ad620eebba2c626d43762b9105f2cdb6b5cea5da3ae1d2751465be9377e7 + name: libtasn1 + evr: 4.16.0-9.el9 + sourcerpm: libtasn1-4.16.0-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libutempter-1.2.1-6.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 30191 + checksum: sha256:4cd059814008cfc903b75f38ed7da8037f51f6123a953218e8a37a8a96822c53 + name: libutempter + evr: 1.2.1-6.el9 + sourcerpm: libutempter-1.2.1-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libuuid-2.37.4-21.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 32342 + checksum: sha256:fa33d5ba3d699b1c170618139eacbb8ae967675665812a787944762f7b47d25a + name: libuuid + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 125532 + checksum: sha256:c5b89459884f858b3527c879cda2b0576fa27b7e1e5005a98f2cab573291f979 + name: libxcrypt + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libzstd-1.5.5-1.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 283786 + checksum: sha256:168d08a885a564418b39c075756bbe77fd2f06ad501d7a61b7ac72cc33152e93 + name: libzstd + evr: 1.5.5-1.el9 + sourcerpm: zstd-1.5.5-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 71491 + checksum: sha256:c03955837786dadb6b988a7554f30e03e9a536f322921934a1f590db8a142c1d + name: lz4-libs + evr: 1.9.3-5.el9 + sourcerpm: lz4-1.9.3-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-3.5.1-7.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1548995 + checksum: sha256:12d540f2ad34e2c202d47d3edff129acc324012a3946ef57cb1a5db8aad544a2 + name: openssl + evr: 1:3.5.1-7.el9_7 + sourcerpm: openssl-3.5.1-7.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 9381 + checksum: sha256:8a4bc9f39ece3d6841a46681c0cdc7ca8510590057e486939b6d0cc1aace958d + name: openssl-fips-provider + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-8.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 314467 + checksum: sha256:612f812c248e7cf6d86de00a2e670d74233bd1da20d45a68dd09527dc0547f10 + name: openssl-fips-provider-so + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 2038064 + checksum: sha256:51f30f99a5529a3413f13d5a2ddf41be7c06fc4528b842d320e6f68bb82e4b20 + name: openssl-libs + evr: 1:3.5.1-7.el9_7 + sourcerpm: openssl-3.5.1-7.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 554452 + checksum: sha256:dcafe04fdfa4d78bc1805091bb70d74062aaea4c8ce12209a3c8cd72fd1b23de + name: p11-kit + evr: 0.25.3-3.el9_5 + sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/p11-kit-trust-0.25.3-3.el9_5.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 141508 + checksum: sha256:e2a10e7696c23c6ec41416defee0a9598754b7fdfbe2bc56c7e080802d74bda0 + name: p11-kit-trust + evr: 0.25.3-3.el9_5 + sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/pam-1.5.1-26.el9_6.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 628673 + checksum: sha256:0817657a9c8638a20357b6d057abe3448dd9cf8c3fed61a74772e18a9d5a209b + name: pam + evr: 1.5.1-26.el9_6 + sourcerpm: pam-1.5.1-26.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/pcre-8.44-4.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 121477 + checksum: sha256:f2c83dfe2db77d9cb084f7a19140ea772d61c1dcb60d84f6928541deb811ffb6 + name: pcre + evr: 8.44-4.el9 + sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/r/readline-8.1-4.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 219915 + checksum: sha256:82eb7921f4285a5e73e8ffb73d399637784d3059e8cda6c8b92c2522e81f6a0d + name: readline + evr: 8.1-4.el9 + sourcerpm: readline-8.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/sed-4.8-9.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 316228 + checksum: sha256:7b168d834543330cf1c55693aea8c11f4bd87d25ce6369ce8b5ab0673678566a + name: sed + evr: 4.8-9.el9 + sourcerpm: sed-4.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/shadow-utils-4.9-15.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1242982 + checksum: sha256:2eb4f76ccae0aa1a7c3c558a574ee7dae2541fc65004122035e5348dbd50a51a + name: shadow-utils + evr: 2:4.9-15.el9 + sourcerpm: shadow-utils-4.9-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/systemd-libs-252-55.el9_7.8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 640507 + checksum: sha256:3207a84729736a7a06063de7871eb35a28e6d85f20a9598ac0a3d73581923c27 + name: systemd-libs + evr: 252-55.el9_7.8 + sourcerpm: systemd-252-55.el9_7.8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/t/tar-1.34-9.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 900131 + checksum: sha256:ae335ed3e594cdb4123c6732c5dd9d4250050e96117e2593b31f8c4ee4ee2b8f + name: tar + evr: 2:1.34-9.el9_7 + sourcerpm: tar-1.34-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/u/util-linux-2.37.4-21.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 2326731 + checksum: sha256:c235f80ddea8e310263f766987e3b157ea0cc06e36f55ca9e0ec31607c2fc4c5 + name: util-linux + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/u/util-linux-core-2.37.4-21.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 468076 + checksum: sha256:6c361b6341c1d06f7e6f9c1253dc487ab883cb83f88f8007dc4ec60d7703da2b + name: util-linux-core + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/x/xz-5.2.5-8.el9_0.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 234632 @@ -45,16 +1463,561 @@ arches: name: xz evr: 5.2.5-8.el9_0 sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 96039 + checksum: sha256:e2418fcfafbaa9f6dc6db42ebd4da74a6b91bddf59e1e2a1e1c74cf5d04f14be + name: xz-libs + evr: 5.2.5-8.el9_0 + sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/z/zlib-1.2.11-40.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 100230 + checksum: sha256:451ee05b1bb32a5d5da936d9c4da4b26e99ba8787e8e9f22e2c9a9ceca931507 + name: zlib + evr: 1.2.11-40.el9 + sourcerpm: zlib-1.2.11-40.el9.src.rpm source: + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1268651 + checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb + name: audit + evr: 3.1.5-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 824335 + checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 + name: bzip2 + evr: 1.0.8-10.el9_5 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 711648 + checksum: sha256:d3193e155ddd297042a944729fe54c1b90c17bdbd1876fc68e4f66d7857f9e81 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/chkconfig-1.24-2.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 214658 + checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc + name: chkconfig + evr: 1.24-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/cracklib-2.9.6-27.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 6414228 + checksum: sha256:56a815a100d75c1d42c07090b632f05e51ea6d17df097d2936ab25d9aca49310 + name: cracklib + evr: 2.9.6-27.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 107074 + checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 2010585 + checksum: sha256:48bd4d4dd081120bcc6ab772b930a150f30b2fc89a4a14a24220383d24a30b3f + name: findutils + evr: 1:4.8.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/grep-3.6-5.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1620891 + checksum: sha256:81b14432ebe1645b74b57592f1dcde8fab15ec13632f483f72ff2407ed16c33e + name: grep + evr: 3.6-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/gzip-1.12-1.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 856147 + checksum: sha256:a05f582ec42e89258ee5e10af96dee4300bcb2a6a69a76bfb5b46f79e6a6a47b + name: gzip + evr: 1.12-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/less-590-6.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 382338 + checksum: sha256:4a5023846942905da4226503f6a9da91a66bf6c179dc21d2e4210b3371399b17 + name: less + evr: 590-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 470599 + checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 + name: libcap-ng + evr: 0.8.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libdb-5.3.28-57.el9_6.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 35290920 + checksum: sha256:6a74a3d96bd4657659524050945e2a47e93779addf2de374a13e1baf32b4ab8d + name: libdb + evr: 5.3.28-57.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libeconf-0.4.1-4.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 201501 + checksum: sha256:4541a0915eca1e6fd1440253cf6bdfc5482c7b6dd3d3c7310a77faf852b7671a + name: libeconf + evr: 0.4.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1367398 + checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 + name: libffi + evr: 3.4.2-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libgcrypt-1.10.0-11.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 3981814 + checksum: sha256:3ac5b6ac1a4be5513e76fa2f33346014b8b3c5c47bbe71524ce326782b163d2e + name: libgcrypt + evr: 1.10.0-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libgpg-error-1.42-5.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 994101 + checksum: sha256:9586046fd9622e5e898f92a08821948bf0754a74ab343cc093ca21caae0352a6 + name: libgpg-error + evr: 1.42-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libpwquality-1.4.4-8.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 447225 + checksum: sha256:14fbf335e2c6f22b441a9750a69b7c41e197c4dd21adac701fd81f17660ee0b4 + name: libpwquality + evr: 1.4.4-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 223978 + checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 + name: libsemanage + evr: 3.6-5.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 473267 + checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 + name: libsigsegv + evr: 2.13-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-9.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1895591 + checksum: sha256:a3d9612fc631100fa0a528d7721bdee96acc33e35befb6a96544526eae169936 + name: libtasn1 + evr: 4.16.0-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libutempter-1.2.1-6.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 30093 + checksum: sha256:e48843d2734fefad084a86165860ea9575bdc53f63bb5845d8807ce9ccb4f914 + name: libutempter + evr: 1.2.1-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 543970 + checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 + name: libxcrypt + evr: 4.4.18-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 333421 + checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 + name: lz4 + evr: 1.9.3-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 53417882 + checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb + name: openssl + evr: 1:3.5.1-7.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 89979766 + checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 + name: openssl-fips-provider + evr: 3.0.7-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1027881 + checksum: sha256:de598a2e1ca170df85cd69d6cc406402407a244988506f53f8736a7546135260 + name: p11-kit + evr: 0.25.3-3.el9_5 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/pam-1.5.1-26.el9_6.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1130406 + checksum: sha256:9a351f0455da788ff63026af9a8ee30e744017941c82283f970d1ed066000bb6 + name: pam + evr: 1.5.1-26.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1624356 + checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 + name: pcre + evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 3009702 + checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 + name: readline + evr: 8.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1424192 + checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 + name: sed + evr: 4.8-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1712227 + checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 + name: shadow-utils + evr: 2:4.9-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/systemd-252-55.el9_7.8.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 44888096 + checksum: sha256:a633587c7170f5928a0bf1ba144f8f58d759cfdcbc4e6437c4dcb74b1742c69b + name: systemd + evr: 252-55.el9_7.8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 2282680 + checksum: sha256:9b84935c6072500fa28674521fe13816a8be44c50bb8eaf5ec73994782161250 + name: tar + evr: 2:1.34-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/u/util-linux-2.37.4-21.el9_7.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 6285412 + checksum: sha256:023c096f5d669249836bc5d5a445a96ce86b7bbc0b52a1321c371d208df69a57 + name: util-linux + evr: 2.37.4-21.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 1168293 checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 name: xz evr: 5.2.5-8.el9_0 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 561153 + checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 + name: zlib + evr: 1.2.11-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 2378112 + checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e + name: zstd + evr: 1.5.5-1.el9 module_metadata: [] - arch: x86_64 packages: + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/a/alternatives-1.24-2.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 42874 + checksum: sha256:1c520b9bf7b592d936bb347a5107702e51678e160b88ecfbba6a30e35e47d24e + name: alternatives + evr: 1.24-2.el9 + sourcerpm: chkconfig-1.24-2.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 121610 + checksum: sha256:3a2fa9a5bcb190840b9928f1ce18b5b5a11b5628abe412ef7d130f3584af12d2 + name: audit-libs + evr: 3.1.5-7.el9 + sourcerpm: audit-3.1.5-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 42618 + checksum: sha256:5058aca2a4c5ac3356fb42e6e423e4101bc29199e0ae80d79d3fc564ba9d7c84 + name: bzip2-libs + evr: 1.0.8-10.el9_5 + sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 1072208 + checksum: sha256:0554bf65d573950e7d550a07bf7d0b3def85ca3b45a7fbde4cce7cadd9a476a7 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/cracklib-2.9.6-27.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 100903 + checksum: sha256:8551b711718596fbfef6622bbf32f785864959af9d06a76da2545ec9f3a126e7 + name: cracklib + evr: 2.9.6-27.el9 + sourcerpm: cracklib-2.9.6-27.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/cracklib-dicts-2.9.6-27.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 3821230 + checksum: sha256:ab4356c86bdc996dc9e55703a7ae936e3e46aec6ebf6d6f008e126ff06e83df2 + name: cracklib-dicts + evr: 2.9.6-27.el9 + sourcerpm: cracklib-2.9.6-27.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 92511 + checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/f/findutils-4.8.0-7.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 563531 + checksum: sha256:a6328afea0a11647b7fb5c48436f0af6c795407bac0650676d3196dd47070de6 + name: findutils + evr: 1:4.8.0-7.el9 + sourcerpm: findutils-4.8.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/grep-3.6-5.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 279174 + checksum: sha256:5556895ff1817066ca71b50785615e944b0fcc7e1c94c983087c7c691819623d + name: grep + evr: 3.6-5.el9 + sourcerpm: grep-3.6-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/gzip-1.12-1.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 171206 + checksum: sha256:c8b3e0414d55b1eedb0185a564ac6cb2368bee2fd5f995447d045f6a714488ac + name: gzip + evr: 1.12-1.el9 + sourcerpm: gzip-1.12-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/less-590-6.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 166025 + checksum: sha256:5bd040f9dd813167935fc390d546c119d90e0a9c77447a3d9ed1ef69c6f5a32a + name: less + evr: 590-6.el9 + sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libblkid-2.37.4-21.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 113836 + checksum: sha256:1220fd34bbe71b9aef8c76921eb893681e5e1cf8378a4b65f5c762ff44acb54d + name: libblkid + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 36752 + checksum: sha256:ebddfc188d1ddbb0d6a238583cbc02dcb9fc0bd063a850b22d48980899976628 + name: libcap-ng + evr: 0.8.2-7.el9 + sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 755192 + checksum: sha256:3246e76f197e2b60eb470b9b55d3e0dda2301b029f295fed9c38ff70b87c5b6b + name: libdb + evr: 5.3.28-57.el9_6 + sourcerpm: libdb-5.3.28-57.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libeconf-0.4.1-4.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 30371 + checksum: sha256:f7998382ca1be7836f6af05d42dc03f88799abcb10aa7a761e16f74058598012 + name: libeconf + evr: 0.4.1-4.el9 + sourcerpm: libeconf-0.4.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libfdisk-2.37.4-21.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 161481 + checksum: sha256:833ea0e100e0404affc6d103db64b8aa685e73886f2651c4073d0f3cd35a42e0 + name: libfdisk + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libffi-3.4.2-8.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 40619 + checksum: sha256:dde0012a94c6f3825e605b095b15767d89c2b87a5da097348310d7e87721c645 + name: libffi + evr: 3.4.2-8.el9 + sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 522581 + checksum: sha256:9d5a5a4292a5a345143b632c2764ad8e7b095413f78f5693d29c2ea5e7d37119 + name: libgcrypt + evr: 1.10.0-11.el9 + sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 225603 + checksum: sha256:8248e20d7a253aa9c0dc7dc3d56b42e1def4fd5753ce8e8b9e980aa664fc9068 + name: libgpg-error + evr: 1.42-5.el9 + sourcerpm: libgpg-error-1.42-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libmount-2.37.4-21.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 141779 + checksum: sha256:ffb6163cf57329e2216f7c3470ad4508dd93db5f4dbb03099272cfff006b8b8c + name: libmount + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 126104 + checksum: sha256:14b7ff2f7fdaf8ebec90261f4619ea7f7c3564c4de8483666de7ed4b1f49b66f + name: libpwquality + evr: 1.4.4-8.el9 + sourcerpm: libpwquality-1.4.4-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 123449 + checksum: sha256:7ac29f46714cd762f18a52e9807fd1766b0cf9e0388aa3d9befaabf8785a01e3 + name: libsemanage + evr: 3.6-5.el9_6 + sourcerpm: libsemanage-3.6-5.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 30681 + checksum: sha256:24005c62017797b612d047a2af83a218633b32302a787fabd22e52230db6adc1 + name: libsigsegv + evr: 2.13-4.el9 + sourcerpm: libsigsegv-2.13-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libsmartcols-2.37.4-21.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 68171 + checksum: sha256:4bd36af2f8431ef671702f2ee82d4676f5430b2ae9896a946461ef5fbd111213 + name: libsmartcols + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 78596 + checksum: sha256:3c619506cf4283d4d30d9e681a3565f79c1009f5e4a47d71b0de78c5ee24c91d + name: libtasn1 + evr: 4.16.0-9.el9 + sourcerpm: libtasn1-4.16.0-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 30354 + checksum: sha256:0f1df5e0d48c2ac9914bfffa7ed569cd58e42b17ba96bb3f7cf74d1e80de2597 + name: libutempter + evr: 1.2.1-6.el9 + sourcerpm: libutempter-1.2.1-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libuuid-2.37.4-21.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 32512 + checksum: sha256:3e37247269ee0aa0ca2608bde2562d52e7347bd393367c485b9ccfe7cdc931ce + name: libuuid + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 122599 + checksum: sha256:a50bb26a28ee7e6379c86b5b91285299b71569fa87ea968d800a56090b7a179d + name: libxcrypt + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 304135 + checksum: sha256:d8a149f0d8f217126642cc4b40199d631b940f7d227191cc2179f3158fd47f9e + name: libzstd + evr: 1.5.5-1.el9 + sourcerpm: zstd-1.5.5-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 70922 + checksum: sha256:9658da838021711f687cf283368664984bfb1c8b9176897d7d477a724a11a731 + name: lz4-libs + evr: 1.9.3-5.el9 + sourcerpm: lz4-1.9.3-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-3.5.1-7.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 1565197 + checksum: sha256:efc3eb2f303047d5244a0f717a13615820d0de977c62d58bbe6d04ce35df8c6e + name: openssl + evr: 1:3.5.1-7.el9_7 + sourcerpm: openssl-3.5.1-7.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 9402 + checksum: sha256:bbf25303def8e1270675531c47bdad432f6ad8ef4c327556ae65bd6abaf8edb5 + name: openssl-fips-provider + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-8.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 589811 + checksum: sha256:ab48d98504fae6f8636de027a1ee06d21d5e9c27b7beb247017a6fe55567c5e9 + name: openssl-fips-provider-so + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 2422039 + checksum: sha256:150962b6c8dbde0e36d11f5e7601130a2d4a9e40aa5e35cd5baa606e9d3f18b7 + name: openssl-libs + evr: 1:3.5.1-7.el9_7 + sourcerpm: openssl-3.5.1-7.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 548533 + checksum: sha256:e5a99495f837953c90ae46d0226fec22ae972ff57074b31f9a5a1dd9c562065f + name: p11-kit + evr: 0.25.3-3.el9_5 + sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/p11-kit-trust-0.25.3-3.el9_5.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 147809 + checksum: sha256:16a699351e080fceea5b3aec2dc53a290cad960b8c94cf88832107843e452fc2 + name: p11-kit-trust + evr: 0.25.3-3.el9_5 + sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/pam-1.5.1-26.el9_6.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 636788 + checksum: sha256:247027fa7a2236c1fb46756ed372637f85cf85886603a2ad5ba918e4231324bc + name: pam + evr: 1.5.1-26.el9_6 + sourcerpm: pam-1.5.1-26.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/pcre-8.44-4.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 205261 + checksum: sha256:e9ddc7d57d4f6e7400b66bcc78b9bafc1f05630e3e0d2a14000bc907f429ddc4 + name: pcre + evr: 8.44-4.el9 + sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/r/readline-8.1-4.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 220174 + checksum: sha256:01bf315b3bc44c28515c4d33d49173b23d7979d2a09b7b15f749d434b60851e6 + name: readline + evr: 8.1-4.el9 + sourcerpm: readline-8.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/sed-4.8-9.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 316395 + checksum: sha256:bf3baf444e49eba4189e57d562a7522ab714132d2960db87ef9b99f1b46a3cc4 + name: sed + evr: 4.8-9.el9 + sourcerpm: sed-4.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/shadow-utils-4.9-15.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 1250789 + checksum: sha256:297d8d9785fb98fd8e0c13eec05ee2da08db24e4e6099730b18f6a820b851c51 + name: shadow-utils + evr: 2:4.9-15.el9 + sourcerpm: shadow-utils-4.9-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/systemd-libs-252-55.el9_7.8.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 678105 + checksum: sha256:59231ce96ab64d81527771954195722d61e8914786dd35b185cefa6a10df6c3e + name: systemd-libs + evr: 252-55.el9_7.8 + sourcerpm: systemd-252-55.el9_7.8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/t/tar-1.34-9.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 906521 + checksum: sha256:4c0beb933074a5254c297e8968b3f41ec5a02b23056997ddcf526fe7e6166482 + name: tar + evr: 2:1.34-9.el9_7 + sourcerpm: tar-1.34-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/u/util-linux-2.37.4-21.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 2382589 + checksum: sha256:35bdc67c40e276a8b775be673a55b24862755ad9c6a8a8d685c2543431711e9d + name: util-linux + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/u/util-linux-core-2.37.4-21.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 475071 + checksum: sha256:ac86e01cb061c529b3becdb824e7f62d5ca70f6984f7f775f5355ec13dcbc087 + name: util-linux-core + evr: 2.37.4-21.el9_7 + sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 235693 @@ -62,11 +2025,241 @@ arches: name: xz evr: 5.2.5-8.el9_0 sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 96649 + checksum: sha256:de263f880a4394f04b5e84254ba0a88d781b5bd63665c9e028bc10351490c982 + name: xz-libs + evr: 5.2.5-8.el9_0 + sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/z/zlib-1.2.11-40.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 95708 + checksum: sha256:baf95ffbf40ee014135f16fe33e343faf7ff1ca06509fd97cd988e6afeabf670 + name: zlib + evr: 1.2.11-40.el9 + sourcerpm: zlib-1.2.11-40.el9.src.rpm source: + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1268651 + checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb + name: audit + evr: 3.1.5-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 824335 + checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 + name: bzip2 + evr: 1.0.8-10.el9_5 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 711648 + checksum: sha256:d3193e155ddd297042a944729fe54c1b90c17bdbd1876fc68e4f66d7857f9e81 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/chkconfig-1.24-2.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 214658 + checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc + name: chkconfig + evr: 1.24-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/cracklib-2.9.6-27.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 6414228 + checksum: sha256:56a815a100d75c1d42c07090b632f05e51ea6d17df097d2936ab25d9aca49310 + name: cracklib + evr: 2.9.6-27.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 107074 + checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 2010585 + checksum: sha256:48bd4d4dd081120bcc6ab772b930a150f30b2fc89a4a14a24220383d24a30b3f + name: findutils + evr: 1:4.8.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/grep-3.6-5.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1620891 + checksum: sha256:81b14432ebe1645b74b57592f1dcde8fab15ec13632f483f72ff2407ed16c33e + name: grep + evr: 3.6-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/gzip-1.12-1.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 856147 + checksum: sha256:a05f582ec42e89258ee5e10af96dee4300bcb2a6a69a76bfb5b46f79e6a6a47b + name: gzip + evr: 1.12-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/less-590-6.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 382338 + checksum: sha256:4a5023846942905da4226503f6a9da91a66bf6c179dc21d2e4210b3371399b17 + name: less + evr: 590-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 470599 + checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 + name: libcap-ng + evr: 0.8.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libdb-5.3.28-57.el9_6.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 35290920 + checksum: sha256:6a74a3d96bd4657659524050945e2a47e93779addf2de374a13e1baf32b4ab8d + name: libdb + evr: 5.3.28-57.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libeconf-0.4.1-4.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 201501 + checksum: sha256:4541a0915eca1e6fd1440253cf6bdfc5482c7b6dd3d3c7310a77faf852b7671a + name: libeconf + evr: 0.4.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1367398 + checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 + name: libffi + evr: 3.4.2-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libgcrypt-1.10.0-11.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 3981814 + checksum: sha256:3ac5b6ac1a4be5513e76fa2f33346014b8b3c5c47bbe71524ce326782b163d2e + name: libgcrypt + evr: 1.10.0-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libgpg-error-1.42-5.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 994101 + checksum: sha256:9586046fd9622e5e898f92a08821948bf0754a74ab343cc093ca21caae0352a6 + name: libgpg-error + evr: 1.42-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libpwquality-1.4.4-8.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 447225 + checksum: sha256:14fbf335e2c6f22b441a9750a69b7c41e197c4dd21adac701fd81f17660ee0b4 + name: libpwquality + evr: 1.4.4-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 223978 + checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 + name: libsemanage + evr: 3.6-5.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 473267 + checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 + name: libsigsegv + evr: 2.13-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-9.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1895591 + checksum: sha256:a3d9612fc631100fa0a528d7721bdee96acc33e35befb6a96544526eae169936 + name: libtasn1 + evr: 4.16.0-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libutempter-1.2.1-6.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 30093 + checksum: sha256:e48843d2734fefad084a86165860ea9575bdc53f63bb5845d8807ce9ccb4f914 + name: libutempter + evr: 1.2.1-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 543970 + checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 + name: libxcrypt + evr: 4.4.18-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 333421 + checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 + name: lz4 + evr: 1.9.3-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 53417882 + checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb + name: openssl + evr: 1:3.5.1-7.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 89979766 + checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 + name: openssl-fips-provider + evr: 3.0.7-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1027881 + checksum: sha256:de598a2e1ca170df85cd69d6cc406402407a244988506f53f8736a7546135260 + name: p11-kit + evr: 0.25.3-3.el9_5 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/pam-1.5.1-26.el9_6.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1130406 + checksum: sha256:9a351f0455da788ff63026af9a8ee30e744017941c82283f970d1ed066000bb6 + name: pam + evr: 1.5.1-26.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1624356 + checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 + name: pcre + evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 3009702 + checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 + name: readline + evr: 8.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1424192 + checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 + name: sed + evr: 4.8-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1712227 + checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 + name: shadow-utils + evr: 2:4.9-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/systemd-252-55.el9_7.8.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 44888096 + checksum: sha256:a633587c7170f5928a0bf1ba144f8f58d759cfdcbc4e6437c4dcb74b1742c69b + name: systemd + evr: 252-55.el9_7.8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 2282680 + checksum: sha256:9b84935c6072500fa28674521fe13816a8be44c50bb8eaf5ec73994782161250 + name: tar + evr: 2:1.34-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/u/util-linux-2.37.4-21.el9_7.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 6285412 + checksum: sha256:023c096f5d669249836bc5d5a445a96ce86b7bbc0b52a1321c371d208df69a57 + name: util-linux + evr: 2.37.4-21.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 1168293 checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 name: xz evr: 5.2.5-8.el9_0 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 561153 + checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 + name: zlib + evr: 1.2.11-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 2378112 + checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e + name: zstd + evr: 1.5.5-1.el9 module_metadata: [] From fb55c40ff6955031d8919f6bfca07ab15461594d Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Wed, 15 Apr 2026 11:30:18 +0200 Subject: [PATCH 03/37] fix: Remove coreutils package from ubi9-micro Dockerfiles ubi9-micro already includes coreutils-single which conflicts with the coreutils package. Attempting to install coreutils causes dnf dependency resolution failures. ubi9-micro's coreutils-single provides all the core utilities we need (mkdir, cp, rm, cat, echo, id, chmod, chown, etc.), so we don't need to install the full coreutils package. This fixes the build-images CI failures where dnf was failing with: Problem: problem with installed package coreutils-single package coreutils conflicts with coreutils-single Changes: - Removed coreutils from all scanner and scanner-db Dockerfiles - ubi9-micro's coreutils-single is sufficient for our needs Fixes: build-images failures on all platforms Related: PR #3095 Co-Authored-By: Claude Sonnet 4.5 --- image/db/rhel/Dockerfile | 1 - image/db/rhel/Dockerfile.slim | 1 - image/scanner/rhel/Dockerfile | 1 - image/scanner/rhel/Dockerfile.slim | 1 - image/scanner/rhel/konflux.Dockerfile | 1 - 5 files changed, 5 deletions(-) diff --git a/image/db/rhel/Dockerfile b/image/db/rhel/Dockerfile index 9bf9503d9..7931327b7 100644 --- a/image/db/rhel/Dockerfile +++ b/image/db/rhel/Dockerfile @@ -31,7 +31,6 @@ RUN dnf install -y \ --setopt=install_weak_deps=0 \ --nodocs \ bash \ - coreutils \ findutils \ util-linux \ shadow-utils \ diff --git a/image/db/rhel/Dockerfile.slim b/image/db/rhel/Dockerfile.slim index 95ac2df9c..bc81c029f 100644 --- a/image/db/rhel/Dockerfile.slim +++ b/image/db/rhel/Dockerfile.slim @@ -31,7 +31,6 @@ RUN dnf install -y \ --setopt=install_weak_deps=0 \ --nodocs \ bash \ - coreutils \ findutils \ util-linux \ shadow-utils \ diff --git a/image/scanner/rhel/Dockerfile b/image/scanner/rhel/Dockerfile index 53f2eac8b..9527597e4 100644 --- a/image/scanner/rhel/Dockerfile +++ b/image/scanner/rhel/Dockerfile @@ -20,7 +20,6 @@ RUN dnf install -y \ --setopt=install_weak_deps=0 \ --nodocs \ bash \ - coreutils \ findutils \ util-linux \ ca-certificates \ diff --git a/image/scanner/rhel/Dockerfile.slim b/image/scanner/rhel/Dockerfile.slim index 3e9a2bbab..739c3fe35 100644 --- a/image/scanner/rhel/Dockerfile.slim +++ b/image/scanner/rhel/Dockerfile.slim @@ -20,7 +20,6 @@ RUN dnf install -y \ --setopt=install_weak_deps=0 \ --nodocs \ bash \ - coreutils \ findutils \ util-linux \ ca-certificates \ diff --git a/image/scanner/rhel/konflux.Dockerfile b/image/scanner/rhel/konflux.Dockerfile index a6b627b34..35ec7e99e 100644 --- a/image/scanner/rhel/konflux.Dockerfile +++ b/image/scanner/rhel/konflux.Dockerfile @@ -40,7 +40,6 @@ RUN dnf install -y \ --setopt=reposdir=/etc/yum.repos.d \ --nodocs \ bash \ - coreutils \ findutils \ util-linux \ ca-certificates \ From 0b60a3fab729650de7341a3c56708145f4fa1fc7 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Wed, 15 Apr 2026 13:23:32 +0200 Subject: [PATCH 04/37] fix: Add rpms.lock.yaml to allowed-large-files list The rpms.lock.yaml file contains RPM package lockfile data for all architectures (aarch64, ppc64le, s390x, x86_64), which makes it legitimately large. This file is auto-generated by the rpm-lockfile-prototype tool and is required for hermetic Konflux builds with RPM prefetch support. Fixes: style-check CI failure Co-Authored-By: Claude Sonnet 4.5 --- tools/allowed-large-files | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/allowed-large-files b/tools/allowed-large-files index 1cdf3a207..b7fd3956f 100644 --- a/tools/allowed-large-files +++ b/tools/allowed-large-files @@ -8,5 +8,6 @@ pkg/rhelv2/rpm/testdata/Packages pkg/rhelv2/rpm/testdata/rpmdb.sqlite pkg/vulnloader/nvdloader/nvdloader_easyjson.go pkg/ziputil/testdata/test.zip +rpms.lock.yaml testdata/NodeScanning/rhcos4.12-minimal.tar.gz tools/linters/go.sum From eeb62fa35fc2b99c08e539b48deaa4007ddecf4e Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Fri, 17 Apr 2026 11:48:12 +0200 Subject: [PATCH 05/37] fix: Create /var/lib/postgresql directory in scanner-db images PGDATA is set to /var/lib/postgresql/data/pgdata, but the parent directory /var/lib/postgresql did not exist, causing the init container to crash when postgres user (uid 70) tried to create it in the root-owned /var/lib directory. Co-Authored-By: Claude Sonnet 4.5 --- image/db/rhel/Dockerfile | 5 +++-- image/db/rhel/Dockerfile.slim | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/image/db/rhel/Dockerfile b/image/db/rhel/Dockerfile index 7931327b7..d09e262fc 100644 --- a/image/db/rhel/Dockerfile +++ b/image/db/rhel/Dockerfile @@ -81,8 +81,9 @@ RUN chroot /out /bin/sh -c " \ RUN chroot /out /bin/sh -c "localedef -f UTF-8 -i en_US en_US.UTF-8" RUN mkdir -p /out/docker-entrypoint-initdb.d \ - /out/var/run/postgresql && \ - chroot /out /bin/sh -c "chown postgres:postgres /var/run/postgresql && chmod 03775 /var/run/postgresql" + /out/var/run/postgresql \ + /out/var/lib/postgresql && \ + chroot /out /bin/sh -c "chown 70:70 /var/run/postgresql && chmod 03775 /var/run/postgresql && chown 70:70 /var/lib/postgresql && chmod 0700 /var/lib/postgresql" FROM ubi-micro-base AS base diff --git a/image/db/rhel/Dockerfile.slim b/image/db/rhel/Dockerfile.slim index bc81c029f..bccbc9dba 100644 --- a/image/db/rhel/Dockerfile.slim +++ b/image/db/rhel/Dockerfile.slim @@ -81,8 +81,9 @@ RUN chroot /out /bin/sh -c " \ RUN chroot /out /bin/sh -c "localedef -f UTF-8 -i en_US en_US.UTF-8" RUN mkdir -p /out/docker-entrypoint-initdb.d \ - /out/var/run/postgresql && \ - chroot /out /bin/sh -c "chown postgres:postgres /var/run/postgresql && chmod 03775 /var/run/postgresql" + /out/var/run/postgresql \ + /out/var/lib/postgresql && \ + chroot /out /bin/sh -c "chown 70:70 /var/run/postgresql && chmod 03775 /var/run/postgresql && chown 70:70 /var/lib/postgresql && chmod 0700 /var/lib/postgresql" FROM ubi-micro-base AS base From 4a10c156ac4cf09554404854fbf181d3fa68e28d Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Fri, 17 Apr 2026 15:46:49 +0200 Subject: [PATCH 06/37] chore: Remove redundant bash installation from ubi9-micro Dockerfiles Bash is already included in ubi9-micro base image, so installing it via dnf is redundant and wastes build time. Co-Authored-By: Claude Sonnet 4.5 --- image/db/rhel/Dockerfile | 1 - image/db/rhel/Dockerfile.slim | 1 - image/scanner/rhel/Dockerfile | 1 - image/scanner/rhel/Dockerfile.slim | 1 - 4 files changed, 4 deletions(-) diff --git a/image/db/rhel/Dockerfile b/image/db/rhel/Dockerfile index d09e262fc..1310fee12 100644 --- a/image/db/rhel/Dockerfile +++ b/image/db/rhel/Dockerfile @@ -30,7 +30,6 @@ RUN dnf install -y \ --releasever=9 \ --setopt=install_weak_deps=0 \ --nodocs \ - bash \ findutils \ util-linux \ shadow-utils \ diff --git a/image/db/rhel/Dockerfile.slim b/image/db/rhel/Dockerfile.slim index bccbc9dba..66aa42cb1 100644 --- a/image/db/rhel/Dockerfile.slim +++ b/image/db/rhel/Dockerfile.slim @@ -30,7 +30,6 @@ RUN dnf install -y \ --releasever=9 \ --setopt=install_weak_deps=0 \ --nodocs \ - bash \ findutils \ util-linux \ shadow-utils \ diff --git a/image/scanner/rhel/Dockerfile b/image/scanner/rhel/Dockerfile index 9527597e4..fdd50b24e 100644 --- a/image/scanner/rhel/Dockerfile +++ b/image/scanner/rhel/Dockerfile @@ -19,7 +19,6 @@ RUN dnf install -y \ --releasever=9 \ --setopt=install_weak_deps=0 \ --nodocs \ - bash \ findutils \ util-linux \ ca-certificates \ diff --git a/image/scanner/rhel/Dockerfile.slim b/image/scanner/rhel/Dockerfile.slim index 739c3fe35..cbde9a95c 100644 --- a/image/scanner/rhel/Dockerfile.slim +++ b/image/scanner/rhel/Dockerfile.slim @@ -19,7 +19,6 @@ RUN dnf install -y \ --releasever=9 \ --setopt=install_weak_deps=0 \ --nodocs \ - bash \ findutils \ util-linux \ ca-certificates \ From 2aef6d7e059ea2a6b7dab4e7e7a7059f04d6a1db Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Fri, 17 Apr 2026 15:58:02 +0200 Subject: [PATCH 07/37] chore: Remove redundant util-linux installation from Dockerfiles util-linux is not used by any scripts and is not installed in the main stackrox/stackrox repository Dockerfiles, so removing it to reduce image size and build time. Co-Authored-By: Claude Sonnet 4.5 --- image/db/rhel/Dockerfile | 1 - image/db/rhel/Dockerfile.slim | 1 - image/scanner/rhel/Dockerfile | 1 - image/scanner/rhel/Dockerfile.slim | 1 - 4 files changed, 4 deletions(-) diff --git a/image/db/rhel/Dockerfile b/image/db/rhel/Dockerfile index 1310fee12..d7152a597 100644 --- a/image/db/rhel/Dockerfile +++ b/image/db/rhel/Dockerfile @@ -31,7 +31,6 @@ RUN dnf install -y \ --setopt=install_weak_deps=0 \ --nodocs \ findutils \ - util-linux \ shadow-utils \ ca-certificates \ openldap \ diff --git a/image/db/rhel/Dockerfile.slim b/image/db/rhel/Dockerfile.slim index 66aa42cb1..31854df68 100644 --- a/image/db/rhel/Dockerfile.slim +++ b/image/db/rhel/Dockerfile.slim @@ -31,7 +31,6 @@ RUN dnf install -y \ --setopt=install_weak_deps=0 \ --nodocs \ findutils \ - util-linux \ shadow-utils \ ca-certificates \ openldap \ diff --git a/image/scanner/rhel/Dockerfile b/image/scanner/rhel/Dockerfile index fdd50b24e..c93200bd2 100644 --- a/image/scanner/rhel/Dockerfile +++ b/image/scanner/rhel/Dockerfile @@ -20,7 +20,6 @@ RUN dnf install -y \ --setopt=install_weak_deps=0 \ --nodocs \ findutils \ - util-linux \ ca-certificates \ xz \ gzip \ diff --git a/image/scanner/rhel/Dockerfile.slim b/image/scanner/rhel/Dockerfile.slim index cbde9a95c..d020fd18e 100644 --- a/image/scanner/rhel/Dockerfile.slim +++ b/image/scanner/rhel/Dockerfile.slim @@ -20,7 +20,6 @@ RUN dnf install -y \ --setopt=install_weak_deps=0 \ --nodocs \ findutils \ - util-linux \ ca-certificates \ xz \ gzip \ From 20e6fcc75dc2540a8a95a3f2d53c31048a5dad3a Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Fri, 17 Apr 2026 16:02:25 +0200 Subject: [PATCH 08/37] chore: Remove bash and util-linux from rpms.in.yaml These packages are already included in ubi9-micro base image, so they don't need to be prefetched for Konflux builds. Note: rpms.lock.yaml will be auto-regenerated by Konflux CI on next build. Co-Authored-By: Claude Sonnet 4.5 --- rpms.in.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rpms.in.yaml b/rpms.in.yaml index 8280faa46..d19c0d1b7 100644 --- a/rpms.in.yaml +++ b/rpms.in.yaml @@ -4,10 +4,8 @@ packages: # Scanner packages (for konflux.Dockerfile stage: package_installer) # These packages are installed on top of ubi9-micro base image -# Note: coreutils is excluded - ubi9-micro has coreutils-single which provides the commands we need -- bash +# Note: coreutils and bash are excluded - ubi9-micro already includes them - findutils -- util-linux - ca-certificates - xz - gzip From a26a3faac6e53fadbe5bcef77f60b1f9ac927b2d Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Fri, 17 Apr 2026 17:33:17 +0200 Subject: [PATCH 09/37] refactor: Simplify scanner-db Dockerfiles to use postgres base image Problem: scanner-db was using ubi9-minimal with multi-stage build, manually downloading and installing postgres RPMs via download.sh, creating maintenance overhead and divergence from the main postgres image pattern used in stackrox/stackrox and konflux.Dockerfile. Solution: Switch to registry.redhat.io/rhel9/postgresql-15 base image (same pattern as konflux.Dockerfile). This eliminates: - Multi-stage ubi9-micro build with chroot complexity - RPM downloads and GPG key handling - Manual postgres user creation - Complex dependency installation Now simply modifies existing postgres user to UID/GID 70 and sets up required directories. Aligns with stackrox/stackrox PR #19981. Deleted: download.sh and PGDG-RPM-GPG-KEY-RHEL (no longer needed) Co-Authored-By: Claude Sonnet 4.5 --- image/db/rhel/Dockerfile | 99 ++++------------- image/db/rhel/Dockerfile.slim | 101 ++++-------------- image/db/rhel/scripts/download.sh | 38 ------- .../db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL | 41 ------- 4 files changed, 41 insertions(+), 238 deletions(-) delete mode 100755 image/db/rhel/scripts/download.sh delete mode 100644 image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL diff --git a/image/db/rhel/Dockerfile b/image/db/rhel/Dockerfile index d7152a597..704988866 100644 --- a/image/db/rhel/Dockerfile +++ b/image/db/rhel/Dockerfile @@ -1,89 +1,18 @@ -ARG RPMS_REGISTRY=registry.access.redhat.com -ARG RPMS_BASE_IMAGE=ubi9 -ARG RPMS_BASE_TAG=latest +ARG PG_VERSION=15 +FROM registry.redhat.io/rhel9/postgresql-${PG_VERSION}:latest ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi9-minimal ARG BASE_TAG=latest -FROM ${BASE_REGISTRY}/ubi9-micro:${BASE_TAG} AS ubi-micro-base - FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS extracted_bundle COPY bundle.tar.gz / - WORKDIR /bundle RUN microdnf install -y tar gzip && tar -zxf /bundle.tar.gz -FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS postgres_rpms - -COPY scripts/download.sh /download.sh -RUN /download.sh - -FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS dependency_builder - -ENV PG_MAJOR=15 - -COPY --from=ubi-micro-base / /out/ - -RUN dnf install -y \ - --installroot=/out/ \ - --releasever=9 \ - --setopt=install_weak_deps=0 \ - --nodocs \ - findutils \ - shadow-utils \ - ca-certificates \ - openldap \ - glibc-langpack-en \ - glibc-locale-source \ - libicu \ - libxslt \ - lz4 \ - perl-libs \ - python3 \ - systemd-sysv \ - zstd \ - uuid \ - gzip \ - less \ - tar && \ - dnf clean all --installroot=/out/ && \ - rm -rf /out/var/cache/dnf /out/var/cache/yum +FROM registry.redhat.io/rhel9/postgresql-${PG_VERSION}:latest -COPY --from=postgres_rpms /rpms/postgres.rpm /rpms/postgres-libs.rpm /rpms/postgres-server.rpm /rpms/postgres-contrib.rpm /tmp/ -COPY signatures/PGDG-RPM-GPG-KEY-RHEL /tmp/ - -RUN rpm --root=/out/ --import /tmp/PGDG-RPM-GPG-KEY-RHEL && \ - rpm --root=/out/ -ivh --nodeps /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ - rm -rf /tmp/*.rpm /tmp/PGDG-RPM-GPG-KEY-RHEL - -RUN chroot /out /bin/sh -c " \ - if getent group postgres >/dev/null; then \ - current_gid=\$(getent group postgres | cut -d: -f3); \ - if [ \$current_gid -ne 70 ]; then \ - groupmod -g 70 postgres; \ - fi; \ - else \ - groupadd -g 70 postgres; \ - fi && \ - if id -u postgres &>/dev/null; then \ - current_uid=\$(id -u postgres); \ - if [ \$current_uid -ne 70 ]; then \ - usermod -u 70 -g 70 postgres; \ - fi; \ - else \ - useradd postgres -u 70 -g 70 -d /var/lib/postgresql -s /bin/sh; \ - fi \ - " - -RUN chroot /out /bin/sh -c "localedef -f UTF-8 -i en_US en_US.UTF-8" - -RUN mkdir -p /out/docker-entrypoint-initdb.d \ - /out/var/run/postgresql \ - /out/var/lib/postgresql && \ - chroot /out /bin/sh -c "chown 70:70 /var/run/postgresql && chmod 03775 /var/run/postgresql && chown 70:70 /var/lib/postgresql && chmod 0700 /var/lib/postgresql" - -FROM ubi-micro-base AS base +USER root ARG LABEL_VERSION ARG LABEL_RELEASE @@ -100,14 +29,26 @@ LABEL name="scanner-db" \ ENV PG_MAJOR=15 ENV PATH="$PATH:/usr/pgsql-$PG_MAJOR/bin/" \ - PGDATA="/var/lib/postgresql/data/pgdata" - -COPY --from=dependency_builder /out/ / + PGDATA="/var/lib/postgresql/data/pgdata" \ + LANG="en_US.utf8" COPY scripts/docker-entrypoint.sh /usr/local/bin/ COPY --from=extracted_bundle /bundle/etc/postgresql.conf /bundle/etc/pg_hba.conf /etc/ -# This is equivalent to postgres:postgres. +RUN dnf upgrade -y --nobest && \ + localedef -f UTF-8 -i en_US en_US.UTF-8 && \ + mkdir -p /var/lib/postgresql && \ + groupmod -g 70 postgres && \ + usermod -u 70 postgres -d /var/lib/postgresql && \ + chown -R postgres:postgres /var/lib/postgresql && \ + chown -R postgres:postgres /var/run/postgresql && \ + chown -R postgres /var/lib/pgsql && \ + chown -R postgres /opt/app-root && \ + dnf clean all && \ + rpm --verbose -e --nodeps $(rpm -qa curl '*rpm*' '*dnf*' '*libsolv*' '*hawkey*' 'yum*') && \ + rm -rf /var/cache/dnf /var/cache/yum && \ + mkdir /docker-entrypoint-initdb.d + USER 70:70 COPY --from=extracted_bundle /bundle/docker-entrypoint-initdb.d/definitions.sql.gz /docker-entrypoint-initdb.d/ diff --git a/image/db/rhel/Dockerfile.slim b/image/db/rhel/Dockerfile.slim index 31854df68..e67e27323 100644 --- a/image/db/rhel/Dockerfile.slim +++ b/image/db/rhel/Dockerfile.slim @@ -1,89 +1,18 @@ -ARG RPMS_REGISTRY=registry.access.redhat.com -ARG RPMS_BASE_IMAGE=ubi9 -ARG RPMS_BASE_TAG=latest +ARG PG_VERSION=15 +FROM registry.redhat.io/rhel9/postgresql-${PG_VERSION}:latest ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi9-minimal ARG BASE_TAG=latest -FROM ${BASE_REGISTRY}/ubi9-micro:${BASE_TAG} AS ubi-micro-base - FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS extracted_bundle COPY bundle.tar.gz / - WORKDIR /bundle RUN microdnf install -y tar gzip && tar -zxf /bundle.tar.gz -FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS postgres_rpms - -COPY scripts/download.sh /download.sh -RUN /download.sh - -FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS dependency_builder - -ENV PG_MAJOR=15 - -COPY --from=ubi-micro-base / /out/ - -RUN dnf install -y \ - --installroot=/out/ \ - --releasever=9 \ - --setopt=install_weak_deps=0 \ - --nodocs \ - findutils \ - shadow-utils \ - ca-certificates \ - openldap \ - glibc-langpack-en \ - glibc-locale-source \ - libicu \ - libxslt \ - lz4 \ - perl-libs \ - python3 \ - systemd-sysv \ - zstd \ - uuid \ - gzip \ - less \ - tar && \ - dnf clean all --installroot=/out/ && \ - rm -rf /out/var/cache/dnf /out/var/cache/yum - -COPY --from=postgres_rpms /rpms/postgres.rpm /rpms/postgres-libs.rpm /rpms/postgres-server.rpm /rpms/postgres-contrib.rpm /tmp/ -COPY signatures/PGDG-RPM-GPG-KEY-RHEL /tmp/ +FROM registry.redhat.io/rhel9/postgresql-${PG_VERSION}:latest -RUN rpm --root=/out/ --import /tmp/PGDG-RPM-GPG-KEY-RHEL && \ - rpm --root=/out/ -ivh --nodeps /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ - rm -rf /tmp/*.rpm /tmp/PGDG-RPM-GPG-KEY-RHEL - -RUN chroot /out /bin/sh -c " \ - if getent group postgres >/dev/null; then \ - current_gid=\$(getent group postgres | cut -d: -f3); \ - if [ \$current_gid -ne 70 ]; then \ - groupmod -g 70 postgres; \ - fi; \ - else \ - groupadd -g 70 postgres; \ - fi && \ - if id -u postgres &>/dev/null; then \ - current_uid=\$(id -u postgres); \ - if [ \$current_uid -ne 70 ]; then \ - usermod -u 70 -g 70 postgres; \ - fi; \ - else \ - useradd postgres -u 70 -g 70 -d /var/lib/postgresql -s /bin/sh; \ - fi \ - " - -RUN chroot /out /bin/sh -c "localedef -f UTF-8 -i en_US en_US.UTF-8" - -RUN mkdir -p /out/docker-entrypoint-initdb.d \ - /out/var/run/postgresql \ - /out/var/lib/postgresql && \ - chroot /out /bin/sh -c "chown 70:70 /var/run/postgresql && chmod 03775 /var/run/postgresql && chown 70:70 /var/lib/postgresql && chmod 0700 /var/lib/postgresql" - -FROM ubi-micro-base AS base +USER root ARG LABEL_VERSION ARG LABEL_RELEASE @@ -100,18 +29,30 @@ LABEL name="scanner-db-slim" \ ENV PG_MAJOR=15 ENV PATH="$PATH:/usr/pgsql-$PG_MAJOR/bin/" \ - PGDATA="/var/lib/postgresql/data/pgdata" - -COPY --from=dependency_builder /out/ / + PGDATA="/var/lib/postgresql/data/pgdata" \ + LANG="en_US.utf8" COPY scripts/docker-entrypoint.sh /usr/local/bin/ COPY --from=extracted_bundle /bundle/etc/postgresql.conf /bundle/etc/pg_hba.conf /etc/ -# This is equivalent to postgres:postgres. -USER 70:70 +RUN dnf upgrade -y --nobest && \ + localedef -f UTF-8 -i en_US en_US.UTF-8 && \ + mkdir -p /var/lib/postgresql && \ + groupmod -g 70 postgres && \ + usermod -u 70 postgres -d /var/lib/postgresql && \ + chown -R postgres:postgres /var/lib/postgresql && \ + chown -R postgres:postgres /var/run/postgresql && \ + chown -R postgres /var/lib/pgsql && \ + chown -R postgres /opt/app-root && \ + dnf clean all && \ + rpm --verbose -e --nodeps $(rpm -qa curl '*rpm*' '*dnf*' '*libsolv*' '*hawkey*' 'yum*') && \ + rm -rf /var/cache/dnf /var/cache/yum && \ + mkdir /docker-entrypoint-initdb.d ENV ROX_SLIM_MODE="true" +USER 70:70 + ENTRYPOINT ["docker-entrypoint.sh"] EXPOSE 5432 diff --git a/image/db/rhel/scripts/download.sh b/image/db/rhel/scripts/download.sh deleted file mode 100755 index f64470109..000000000 --- a/image/db/rhel/scripts/download.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -set -euo pipefail - -# If this is updated, be sure to update PG_MAJOR in the Dockerfile and the signature file. -postgres_major=15 -pg_rhel_major=9 - -arch="$(uname -m)" -dnf_list_args=() -if [[ "$arch" == "arm64" ]]; then - arch="aarch64" -fi -output_dir="/rpms" -mkdir $output_dir - -if [[ "$arch" == "s390x" ]]; then - # TODO(ROX-30647): Builds are failing due to UBI9:latest not containing the - # necessary version of openssl-libs to build postgresql-contrib. - pg_build_version="0:16.8-1.module_el9+1209+bd6e4013.s390x" - dnf module enable -y postgresql:16 - dnf install -y --downloadonly --downloaddir=/tmp "postgresql-${pg_build_version}" "postgresql-private-libs-${pg_build_version}" "postgresql-server-${pg_build_version}" "postgresql-contrib-${pg_build_version}" - mv /tmp/postgresql-contrib-*.rpm "${output_dir}/postgres-contrib.rpm" - mv /tmp/postgresql-server-*.rpm "${output_dir}/postgres-server.rpm" - mv /tmp/postgresql-private-libs-*.rpm "${output_dir}/postgres-libs.rpm" - mv /tmp/postgresql-*.rpm "${output_dir}/postgres.rpm" -else - postgres_repo_url="https://download.postgresql.org/pub/repos/yum/reporpms/EL-${pg_rhel_major}-${arch}/pgdg-redhat-repo-latest.noarch.rpm" - dnf install --disablerepo='*' -y "${postgres_repo_url}" - postgres_minor=$(dnf list ${dnf_list_args[@]+"${dnf_list_args[@]}"} --disablerepo='*' --enablerepo="pgdg${postgres_major}" -y "postgresql${postgres_major}-server.$arch" | tail -n 1 | awk '{print $2}') - postgres_minor="$postgres_minor.$arch" - - postgres_url="https://download.postgresql.org/pub/repos/yum/${postgres_major}/redhat/rhel-${pg_rhel_major}-${arch}" - curl --retry 3 -sS --fail -o "${output_dir}/postgres.rpm" "${postgres_url}/postgresql${postgres_major}-${postgres_minor}.rpm" - curl --retry 3 -sS --fail -o "${output_dir}/postgres-server.rpm" "${postgres_url}/postgresql${postgres_major}-server-${postgres_minor}.rpm" - curl --retry 3 -sS --fail -o "${output_dir}/postgres-libs.rpm" "${postgres_url}/postgresql${postgres_major}-libs-${postgres_minor}.rpm" - curl --retry 3 -sS --fail -o "${output_dir}/postgres-contrib.rpm" "${postgres_url}/postgresql${postgres_major}-contrib-${postgres_minor}.rpm" -fi diff --git a/image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL b/image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL deleted file mode 100644 index 0f3d62029..000000000 --- a/image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL +++ /dev/null @@ -1,41 +0,0 @@ ------BEGIN PGP PUBLIC KEY BLOCK----- - -mQGNBGWBr8EBDAC+atC3Hl2yKkFg0F4tDg4ABCTvvhgMn7g7oZ0vJqpaUAwUgijU -+jLXH8qVSkyhk2eruSXlbj4dIMHhsbRQ1wUnd+tb8pZPdRaBFR9MzFMjvDzobAlZ -RH6cUbgm2EdAHrrZFVQJuIb6SRzQzkk4QEWTkWP6CHzvxnlVpkI7T1yjsJnmLefN -TT/J+r0gxC1DRXOKwSMmWUCzYcRXiv/RZcp+IwM04e5BXOj6xoLIpAwhSGZ0LR6b -dwliBpMSFuVyXFIu+7AS2M8tEO1cGK+ywDhg7TriMc/rgjZjeu11WusXFwbvEUeM -FIYM9oXQlAlWDIob85YcGtNXV4EVGovQ2nFd4Ivl9OYq+HixAhWBLulkEAUREKq8 -uXV8HDjxOfYa8VhczphvkCLr5UEMzXmC2eDc6nCH2hveAqSVLnFNkhtExvVOPRBB -gRsviaGWvdOA3eNeEofHX9YWtSzM43tWABKUzI/oTMcdFJlkJ465bvh4p7KyHDth -5I46iBUZmfP4RckAEQEAAbQ+UG9zdGdyZVNRTCBSUE0gUmVwb3NpdG9yeSA8cGdz -cWwtcGtnLXl1bUBsaXN0cy5wb3N0Z3Jlc3FsLm9yZz6JAdIEEwEIADwWIQTUvwiu -Z6C0x6HbzNJAvKK0CLQNIAUCZYGvwQIbAwULCQgHAgMiAgEGFQoJCAsCBBYCAwEC -HgcCF4AACgkQQLyitAi0DSBwkwwAvE1vGNMiP8Qvqvpk5otuJOvz5meELUwmhT60 -IOWNr9RMroKfb27mnc5RHlOmMk/0SPyboFX9qtOdwFUq3cYbjsP+bqI9vuQuQ4Gz -siLIvSZPtQrdtUP8wdndndeKNpDIvRdYwvaPfIrBxxCSslB8iuCtjbyCl2rzlika -sCOWi7oTwuNB4eKHCRt9oh7NHFas92bF2JiaR7hvmXlCU058/lnR+jXCp/NWiGfE -QV37xAu/ssRH5MykGweEzQ3mX2EKppdKmmoOaJsTfS7UNujeZQqo1uqZg9yRHgwf -PaquIwgdXBY6JkMUM4Zhn7QkP5ssD6g+GzWe2UAMN+K8Xe3QwEMfp9AF7sEEM/Zp -+p5m7D1GlOho/m9juxcRa5r7VfvCFL05uyXdDoefOCFal/pDmwvZofK+pqtDZfKt -+AnF/Y6Z3ewvJ0ZRNBX/0Iw30uJusDIgkXaHwxEeDOnlKi8jVyBCMr1In2QKrb1+ -N9PR5P5ZKKq40WNvbiPfoUeKwKKSuQGNBGWBr8EBDAD1nXgbf+Qki5Z0H2k0xLbI -GYhxnousjVlrWcxOTYqVilSvBig7RKuVFGt0D3yuBWrAS7+MCUvpuCshHcc+w97G -iWmRskIHqZoD26kkU8PhgYayyArqepZp50ALIdOhedOp9b/NUkSPEL4BJow9H8Lp -a28WEXpHZcam43RDMzLMUvJBWem474APx5674EZYX+994lT2cNSAFrnJK956lKmc -ZdzzKuMTcIVGyRF6+KXCmScLAyQks8lHuTJb+AA4eseZnbOsnwnA1xuVfYIfMF/F -bLlR7vl5Autmgnz1SdCaUqIp4MO54GZOgh4MjVadsxIWj8H0cN3uTfukuW4A0+dP -d0YrOKb52Mnejh7x39qWIsMtT8DgcufGcVsuVhC/5LCiHB3pB73J9SMxBafcyGyK -XfLFL5FoDkKTU5KkBfqMQ4k//27mLbJ4kWxHHtNsvnn/6a5m7rRYxFD4dxBWn1CU -BpMjf3m9B3xLc7lKlQZiLLNC7p15gHS51yMvCGxCaHcAEQEAAYkBtgQYAQgAIBYh -BNS/CK5noLTHodvM0kC8orQItA0gBQJlga/BAhsMAAoJEEC8orQItA0guy0L/1ze -AHxV8pxPawOIlgDWoALLb/tqvmG+yz8SN5IWDfvMkMW5kbVoY8zi9SnJtOHVULBC -sdiYN4Dn/Ox1eLlW50F4Z76RI2r/O9rBlHzUk/jAQOcDDCRWjj4a+pYX9I4atU6e -+qOOzxMBsFD0vK84NYJ6caC0LHR64xWnyvXStkDEPSzgHhAlhdn9oTqbIoXuDhSx -zBVSXyowi+cBL8tNsAH4Zlj0li1Gii6bM4DFseQGhKIiTFbx1HD47DT6Pu0X2PSA -pIuZ47n8rP2uTLCYjtnfpXbMwmVOXWxIojhUqIceF+KRr4vRsspSbMxMKg0yeGka -RfQX29x8baM4mdKVBmU9KQxRgno6lcks14STnawqf6o9nHxKp80VQrcNTsYHlq2B -PGAanK8G4WeYojQWCQHBi73qCoTERMpBG73gpTIr836TBinGZaSZ8I1deUS89Hnw -A62QO1TS57zxMTrstzaawLoCIHTqyJ2VeZrVC1INV4ENnyVsud3NaZtfWuIk7Q== -=Elfg ------END PGP PUBLIC KEY BLOCK----- From 6d2fddec4bae4c8899465d0e221f32e45b1562db Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Fri, 17 Apr 2026 17:33:47 +0200 Subject: [PATCH 10/37] chore: Regenerate rpms.lock.yaml after removing bash and util-linux Regenerated using regenerate-rpms-lockfile.sh from stackrox/collector. Removed 1461 lines of dependencies that are no longer needed since bash and util-linux were removed from rpms.in.yaml. Co-Authored-By: Claude Sonnet 4.5 --- rpms.lock.yaml | 1461 ------------------------------------------------ 1 file changed, 1461 deletions(-) diff --git a/rpms.lock.yaml b/rpms.lock.yaml index 2fb08b7da..f91758f1a 100644 --- a/rpms.lock.yaml +++ b/rpms.lock.yaml @@ -11,20 +11,6 @@ arches: name: alternatives evr: 1.24-2.el9 sourcerpm: chkconfig-1.24-2.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 120220 - checksum: sha256:001622be7ab510ecddc8d0d1dbc2769892e867fa149bca5226c2a9b804f6e545 - name: audit-libs - evr: 3.1.5-7.el9 - sourcerpm: audit-3.1.5-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 43945 - checksum: sha256:d5ae9d4fc841dbfa72948e6810cbc1baf0430545a2cb195683b1b5b950ae8cc6 - name: bzip2-libs - evr: 1.0.8-10.el9_5 - sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 1072208 @@ -32,27 +18,6 @@ arches: name: ca-certificates evr: 2025.2.80_v9.0.305-91.el9 sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/cracklib-2.9.6-27.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 100995 - checksum: sha256:6b4e2bae51af42c1ab0f1ec7430ab19542747937a827eba8cac540cb7514a145 - name: cracklib - evr: 2.9.6-27.el9 - sourcerpm: cracklib-2.9.6-27.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/cracklib-dicts-2.9.6-27.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 3821337 - checksum: sha256:c4ef55b06c9b5352b2338a6deccd25030472308b3ffe39735585967382e75419 - name: cracklib-dicts - evr: 2.9.6-27.el9 - sourcerpm: cracklib-2.9.6-27.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 92511 - checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 - name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/f/findutils-4.8.0-7.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 564807 @@ -81,41 +46,6 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libblkid-2.37.4-21.el9_7.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 113441 - checksum: sha256:9d940eda5075b64ce8c1106fd5c7aeeb00cf9869ff3d0d23ccb5621bc1bc1e9c - name: libblkid - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 36033 - checksum: sha256:dc4eae31749196c0043225c6749e7306ff71f081c09cbdb2fc98a561087c4474 - name: libcap-ng - evr: 0.8.2-7.el9 - sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 727417 - checksum: sha256:3a912b2a0a6226695a5773138ce5ce090c9fb155151dffe732b8d52e6dd22d63 - name: libdb - evr: 5.3.28-57.el9_6 - sourcerpm: libdb-5.3.28-57.el9_6.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libeconf-0.4.1-4.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 29577 - checksum: sha256:b6f435b6b79b8a62729f581edead46542dc61fe7276117b2354c324c44ba8309 - name: libeconf - evr: 0.4.1-4.el9 - sourcerpm: libeconf-0.4.1-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libfdisk-2.37.4-21.el9_7.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 156277 - checksum: sha256:c3373716e1a6bd9f4efeacb66b11dfe8c96e8b988462a61fbb2426a608e32bb4 - name: libfdisk - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libffi-3.4.2-8.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 38554 @@ -123,41 +53,6 @@ arches: name: libffi evr: 3.4.2-8.el9 sourcerpm: libffi-3.4.2-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 468890 - checksum: sha256:3d2245f8566422e27f77d0ef4820bafe8d059b12612e74e5672d9c5959ff7ec3 - name: libgcrypt - evr: 1.10.0-11.el9 - sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 222476 - checksum: sha256:aee968114aed0238eb26cff42ec9b0819ad32e2bac99aa8124d55b480806aca5 - name: libgpg-error - evr: 1.42-5.el9 - sourcerpm: libgpg-error-1.42-5.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libmount-2.37.4-21.el9_7.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 139754 - checksum: sha256:dca68e66736a1d618cba55d0ccac0f973e0b8b0294ed321cb3c63f33fc2264e7 - name: libmount - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 125712 - checksum: sha256:1657d94bbd79f93dc7a79d474316813bde681ce3a7f62f73314ec4d630e39349 - name: libpwquality - evr: 1.4.4-8.el9 - sourcerpm: libpwquality-1.4.4-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 120963 - checksum: sha256:233d8270827b9166ad11827599800d2a09284d29e73af09c7a12bae251a9463c - name: libsemanage - evr: 3.6-5.el9_6 - sourcerpm: libsemanage-3.6-5.el9_6.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 30566 @@ -165,13 +60,6 @@ arches: name: libsigsegv evr: 2.13-4.el9 sourcerpm: libsigsegv-2.13-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libsmartcols-2.37.4-21.el9_7.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 67408 - checksum: sha256:b2da571bb9f2b940dedc98bc20608d45a4329d3c4f32b97fd1a4408649cbd2ba - name: libsmartcols - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 77910 @@ -179,69 +67,6 @@ arches: name: libtasn1 evr: 4.16.0-9.el9 sourcerpm: libtasn1-4.16.0-9.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 30505 - checksum: sha256:d352371cbb7d5bd0c53fc699df953c8c1f184b056690b3c4571e57a6634015c5 - name: libutempter - evr: 1.2.1-6.el9 - sourcerpm: libutempter-1.2.1-6.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libuuid-2.37.4-21.el9_7.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 32214 - checksum: sha256:03b4107d8470f4c47d532c3504896564691d402e1a347dd8e52620384e7bd8ec - name: libuuid - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 127655 - checksum: sha256:f05030123425a5033bcca3f260313cafc199bc7bca57e9fb13c335bd087c35a7 - name: libxcrypt - evr: 4.4.18-3.el9 - sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 283159 - checksum: sha256:1229ed44dc7a68278682d7697c41d0abd7daedd242d90c6dc58a9aa6e76f9e6f - name: libzstd - evr: 1.5.5-1.el9 - sourcerpm: zstd-1.5.5-1.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 70696 - checksum: sha256:e1dbd2c38a65b135427c7c8fe988ea70dc95f7e26c4c8177b7dcb23925020015 - name: lz4-libs - evr: 1.9.3-5.el9 - sourcerpm: lz4-1.9.3-5.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-3.5.1-7.el9_7.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 1541274 - checksum: sha256:fa672afb8e31cda4d155929f0e84efba28a925134fd3edacf822802c04e35b8d - name: openssl - evr: 1:3.5.1-7.el9_7 - sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 9366 - checksum: sha256:0cfe7b281ae2ca3cb0ceaa1a0b84f8c087c4ac16662ebb9c19b5681cf39f99a9 - name: openssl-fips-provider - evr: 3.0.7-8.el9 - sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-8.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 524824 - checksum: sha256:18c77b9b37e7abf0e8cf1dac4b3de770efe895547bdcab8aea8d8d8592954947 - name: openssl-fips-provider-so - evr: 3.0.7-8.el9 - sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 2285222 - checksum: sha256:5a659a77448de7221c58e25cf3474c49f2d80e2b96ef18c8807bd80d82fcf167 - name: openssl-libs - evr: 1:3.5.1-7.el9_7 - sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 523171 @@ -256,13 +81,6 @@ arches: name: p11-kit-trust evr: 0.25.3-3.el9_5 sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/pam-1.5.1-26.el9_6.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 636107 - checksum: sha256:fd8dc3ae80d01e90bed08e84e32e3b47b568fe5ddc857dffbae36cc4bde0887b - name: pam - evr: 1.5.1-26.el9_6 - sourcerpm: pam-1.5.1-26.el9_6.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/pcre-8.44-4.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 187289 @@ -270,13 +88,6 @@ arches: name: pcre evr: 8.44-4.el9 sourcerpm: pcre-8.44-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/r/readline-8.1-4.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 219015 - checksum: sha256:2ae424b368c6747124b51b205b9e11d74aeaff56b3de90e8cbd36012e0d17707 - name: readline - evr: 8.1-4.el9 - sourcerpm: readline-8.1-4.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/sed-4.8-9.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 314254 @@ -284,20 +95,6 @@ arches: name: sed evr: 4.8-9.el9 sourcerpm: sed-4.8-9.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/shadow-utils-4.9-15.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 1241888 - checksum: sha256:93e53d8bf8f4bf2a3acf0f4f82967598570e24cb4bc2633cb3022a3c70217a74 - name: shadow-utils - evr: 2:4.9-15.el9 - sourcerpm: shadow-utils-4.9-15.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/systemd-libs-252-55.el9_7.8.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 645755 - checksum: sha256:4bc26c6f072da71d9473139f43fc927aff22cf30793c388053a8dfcbec7fa67a - name: systemd-libs - evr: 252-55.el9_7.8 - sourcerpm: systemd-252-55.el9_7.8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/t/tar-1.34-9.el9_7.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 898317 @@ -305,20 +102,6 @@ arches: name: tar evr: 2:1.34-9.el9_7 sourcerpm: tar-1.34-9.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/u/util-linux-2.37.4-21.el9_7.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 2388428 - checksum: sha256:00ec97a5869f54e74f5c2187739954ad807d528a6e9f7a9079271d34e5890b53 - name: util-linux - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/u/util-linux-core-2.37.4-21.el9_7.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 472668 - checksum: sha256:6c64ae44f7b363099c14c54e6baf8fbeec666818bd60d3fea6ff247df1420370 - name: util-linux-core - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 235798 @@ -333,26 +116,7 @@ arches: name: xz-libs evr: 5.2.5-8.el9_0 sourcerpm: xz-5.2.5-8.el9_0.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/z/zlib-1.2.11-40.el9.aarch64.rpm - repoid: rhel-9-for-aarch64-baseos-rpms - size: 94454 - checksum: sha256:2e7f193e67235130c10f5579c2d2ec92e22e4098b6d12fb2855d93b1540c60f7 - name: zlib - evr: 1.2.11-40.el9 - sourcerpm: zlib-1.2.11-40.el9.src.rpm source: - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 1268651 - checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb - name: audit - evr: 3.1.5-7.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 824335 - checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 - name: bzip2 - evr: 1.0.8-10.el9_5 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 711648 @@ -365,18 +129,6 @@ arches: checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc name: chkconfig evr: 1.24-2.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/cracklib-2.9.6-27.el9.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 6414228 - checksum: sha256:56a815a100d75c1d42c07090b632f05e51ea6d17df097d2936ab25d9aca49310 - name: cracklib - evr: 2.9.6-27.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 107074 - checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa - name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 2010585 @@ -401,54 +153,12 @@ arches: checksum: sha256:4a5023846942905da4226503f6a9da91a66bf6c179dc21d2e4210b3371399b17 name: less evr: 590-6.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 470599 - checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 - name: libcap-ng - evr: 0.8.2-7.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libdb-5.3.28-57.el9_6.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 35290920 - checksum: sha256:6a74a3d96bd4657659524050945e2a47e93779addf2de374a13e1baf32b4ab8d - name: libdb - evr: 5.3.28-57.el9_6 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libeconf-0.4.1-4.el9.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 201501 - checksum: sha256:4541a0915eca1e6fd1440253cf6bdfc5482c7b6dd3d3c7310a77faf852b7671a - name: libeconf - evr: 0.4.1-4.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 1367398 checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 name: libffi evr: 3.4.2-8.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libgcrypt-1.10.0-11.el9.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 3981814 - checksum: sha256:3ac5b6ac1a4be5513e76fa2f33346014b8b3c5c47bbe71524ce326782b163d2e - name: libgcrypt - evr: 1.10.0-11.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libgpg-error-1.42-5.el9.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 994101 - checksum: sha256:9586046fd9622e5e898f92a08821948bf0754a74ab343cc093ca21caae0352a6 - name: libgpg-error - evr: 1.42-5.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libpwquality-1.4.4-8.el9.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 447225 - checksum: sha256:14fbf335e2c6f22b441a9750a69b7c41e197c4dd21adac701fd81f17660ee0b4 - name: libpwquality - evr: 1.4.4-8.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 223978 - checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 - name: libsemanage - evr: 3.6-5.el9_6 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 473267 @@ -461,108 +171,36 @@ arches: checksum: sha256:a3d9612fc631100fa0a528d7721bdee96acc33e35befb6a96544526eae169936 name: libtasn1 evr: 4.16.0-9.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libutempter-1.2.1-6.el9.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 30093 - checksum: sha256:e48843d2734fefad084a86165860ea9575bdc53f63bb5845d8807ce9ccb4f914 - name: libutempter - evr: 1.2.1-6.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 543970 - checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 - name: libxcrypt - evr: 4.4.18-3.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 333421 - checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 - name: lz4 - evr: 1.9.3-5.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 53417882 - checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb - name: openssl - evr: 1:3.5.1-7.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 89979766 - checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 - name: openssl-fips-provider - evr: 3.0.7-8.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 1027881 checksum: sha256:de598a2e1ca170df85cd69d6cc406402407a244988506f53f8736a7546135260 name: p11-kit evr: 0.25.3-3.el9_5 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/pam-1.5.1-26.el9_6.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 1130406 - checksum: sha256:9a351f0455da788ff63026af9a8ee30e744017941c82283f970d1ed066000bb6 - name: pam - evr: 1.5.1-26.el9_6 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 1624356 checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 name: pcre evr: 8.44-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 3009702 - checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 - name: readline - evr: 8.1-4.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 1424192 checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 name: sed evr: 4.8-9.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 1712227 - checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 - name: shadow-utils - evr: 2:4.9-15.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/systemd-252-55.el9_7.8.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 44888096 - checksum: sha256:a633587c7170f5928a0bf1ba144f8f58d759cfdcbc4e6437c4dcb74b1742c69b - name: systemd - evr: 252-55.el9_7.8 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 2282680 checksum: sha256:9b84935c6072500fa28674521fe13816a8be44c50bb8eaf5ec73994782161250 name: tar evr: 2:1.34-9.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/u/util-linux-2.37.4-21.el9_7.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 6285412 - checksum: sha256:023c096f5d669249836bc5d5a445a96ce86b7bbc0b52a1321c371d208df69a57 - name: util-linux - evr: 2.37.4-21.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 1168293 checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 name: xz evr: 5.2.5-8.el9_0 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 561153 - checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 - name: zlib - evr: 1.2.11-40.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm - repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 2378112 - checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e - name: zstd - evr: 1.5.5-1.el9 module_metadata: [] - arch: ppc64le packages: @@ -573,20 +211,6 @@ arches: name: alternatives evr: 1.24-2.el9 sourcerpm: chkconfig-1.24-2.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 140704 - checksum: sha256:7d4c990831f2f92403ad7f59f5fadcaffef98442b951f34dd648a0b69b2b9a18 - name: audit-libs - evr: 3.1.5-7.el9 - sourcerpm: audit-3.1.5-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 47605 - checksum: sha256:f1b07f02b34fe8d8ba24eed9afd874ced25f4da14eb1b0c804e47de1281fce49 - name: bzip2-libs - evr: 1.0.8-10.el9_5 - sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 1072208 @@ -594,27 +218,6 @@ arches: name: ca-certificates evr: 2025.2.80_v9.0.305-91.el9 sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/cracklib-2.9.6-27.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 102420 - checksum: sha256:be3738f99a18e14c80b771e0bcc4e13d9d067f1a1bcefd9ffcdabdb5e03bf46a - name: cracklib - evr: 2.9.6-27.el9 - sourcerpm: cracklib-2.9.6-27.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/cracklib-dicts-2.9.6-27.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 3821001 - checksum: sha256:a5ae48064c709f448291de88bbf97427c65cc6a03179972496d27d4223bb6e96 - name: cracklib-dicts - evr: 2.9.6-27.el9 - sourcerpm: cracklib-2.9.6-27.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 92511 - checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 - name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/f/findutils-4.8.0-7.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 603076 @@ -643,41 +246,6 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libblkid-2.37.4-21.el9_7.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 130064 - checksum: sha256:598ac49c65ed4a04bdbc48716be204c4a1501bc936ce1cc24d142b925b0edfb8 - name: libblkid - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 37600 - checksum: sha256:2483f8a4b41d76f84939855b712cfa8a990254ac36fc590daa641b2c19b014eb - name: libcap-ng - evr: 0.8.2-7.el9 - sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 837087 - checksum: sha256:3c73512cfb5cff3477193e37e80fbd416449035f909998b7873bcade57aa242c - name: libdb - evr: 5.3.28-57.el9_6 - sourcerpm: libdb-5.3.28-57.el9_6.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libeconf-0.4.1-4.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 32878 - checksum: sha256:a3fbb9481c4d4f13cc1f1593a83f31fc27975b759fd01235b875d09973eeb102 - name: libeconf - evr: 0.4.1-4.el9 - sourcerpm: libeconf-0.4.1-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libfdisk-2.37.4-21.el9_7.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 176639 - checksum: sha256:4c772f1872f91203182ffec334b60d8c11a1d5dcca283e203af0a564cbab9458 - name: libfdisk - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libffi-3.4.2-8.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 40799 @@ -685,48 +253,6 @@ arches: name: libffi evr: 3.4.2-8.el9 sourcerpm: libffi-3.4.2-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 612983 - checksum: sha256:917a9fc0eca0405813697b4d830578c92b01c1dba766321bfa880a248b0c4d5e - name: libgcrypt - evr: 1.10.0-11.el9 - sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libgpg-error-1.42-5.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 234885 - checksum: sha256:2db222784b8d4183fd2704cffa9df4d7023ebd5dc51806fbdc30e8fa9123c5a5 - name: libgpg-error - evr: 1.42-5.el9 - sourcerpm: libgpg-error-1.42-5.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libmount-2.37.4-21.el9_7.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 159458 - checksum: sha256:c92c1ad53728ceb535bee3bbf0d1296abc5e446aaac1d17a14cc701ceb93e281 - name: libmount - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 128350 - checksum: sha256:0b13ff548b9b0be9f8d0271d90fa3673c081fbc22dc869ae4c37c68fa2a32c09 - name: libpwquality - evr: 1.4.4-8.el9 - sourcerpm: libpwquality-1.4.4-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/librtas-2.0.6-1.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 86335 - checksum: sha256:64d105e7f8b9ee542efe65816ae77fb38988c00bef1e0cc5ea3e1a4e89fb7505 - name: librtas - evr: 2.0.6-1.el9 - sourcerpm: librtas-2.0.6-1.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 136617 - checksum: sha256:fb48b9d444876b4517d441b63955b32ff022b27d99865384900912c55d84f808 - name: libsemanage - evr: 3.6-5.el9_6 - sourcerpm: libsemanage-3.6-5.el9_6.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libsigsegv-2.13-4.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 31522 @@ -734,13 +260,6 @@ arches: name: libsigsegv evr: 2.13-4.el9 sourcerpm: libsigsegv-2.13-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libsmartcols-2.37.4-21.el9_7.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 73994 - checksum: sha256:85729feb0f651f49aef6a3ab41218de9ecf3d97e4edfeb905667c9554d6f6716 - name: libsmartcols - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 84469 @@ -748,69 +267,6 @@ arches: name: libtasn1 evr: 4.16.0-9.el9 sourcerpm: libtasn1-4.16.0-9.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libutempter-1.2.1-6.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 30656 - checksum: sha256:b62a3c29e31482fc21de315eaefa28f3e52f59396b0a33e6d1267822cabc1c67 - name: libutempter - evr: 1.2.1-6.el9 - sourcerpm: libutempter-1.2.1-6.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libuuid-2.37.4-21.el9_7.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 34226 - checksum: sha256:164d9da68feaa8bc4cd4edacbe93e6727a78a4a6398b62444ac87c643325fb77 - name: libuuid - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 136063 - checksum: sha256:c0bc93eea8ae33a88c33d7f4ac290a7c4fb844e591fb69a55e50dca8df8fbbff - name: libxcrypt - evr: 4.4.18-3.el9 - sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libzstd-1.5.5-1.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 329280 - checksum: sha256:c613b79b53a7d9b00bb33fac7971d412d8f9f9656436cdc8e451e4a805f53ee8 - name: libzstd - evr: 1.5.5-1.el9 - sourcerpm: zstd-1.5.5-1.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 90452 - checksum: sha256:2a7ef3bd2571c62bf75f3bc1a9206f5715ddcb1cb77f561689de458a417e5914 - name: lz4-libs - evr: 1.9.3-5.el9 - sourcerpm: lz4-1.9.3-5.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-3.5.1-7.el9_7.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 1566615 - checksum: sha256:c5a5284070d6d182a4c93283039a327bf02efd41ab7ab4a748971421773ba605 - name: openssl - evr: 1:3.5.1-7.el9_7 - sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 9390 - checksum: sha256:c4a55a68f123fd873380d919ede200fb64f7443eb4235ce555a307cfee9fb6a5 - name: openssl-fips-provider - evr: 3.0.7-8.el9 - sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-8.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 576788 - checksum: sha256:325a2017d21f5ca789931de321cd9fb5f359ce12fb0d0acc2f3cd9dc00b00dc3 - name: openssl-fips-provider-so - evr: 3.0.7-8.el9 - sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 2550625 - checksum: sha256:99dac7eb92b2cf3e4e2f512378397f59d206795e89bef3bb6891062e334fa65c - name: openssl-libs - evr: 1:3.5.1-7.el9_7 - sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 547598 @@ -825,13 +281,6 @@ arches: name: p11-kit-trust evr: 0.25.3-3.el9_5 sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/pam-1.5.1-26.el9_6.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 677447 - checksum: sha256:93eb19dd21e5bb33d1d004c9e49e49d0049aca990074b8c6f4204e5af4c3c38e - name: pam - evr: 1.5.1-26.el9_6 - sourcerpm: pam-1.5.1-26.el9_6.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/pcre-8.44-4.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 208333 @@ -839,13 +288,6 @@ arches: name: pcre evr: 8.44-4.el9 sourcerpm: pcre-8.44-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/r/readline-8.1-4.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 236301 - checksum: sha256:e346c16a0e4b617897f744fe448701cdc90202aecc61d5a40b9ed0986609cb25 - name: readline - evr: 8.1-4.el9 - sourcerpm: readline-8.1-4.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/sed-4.8-9.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 322393 @@ -853,20 +295,6 @@ arches: name: sed evr: 4.8-9.el9 sourcerpm: sed-4.8-9.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/shadow-utils-4.9-15.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 1272062 - checksum: sha256:306514b0e1eff64bbcf43b53cd73f952e48cd4221c3d215dfe7b1908354f07ca - name: shadow-utils - evr: 2:4.9-15.el9 - sourcerpm: shadow-utils-4.9-15.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/systemd-libs-252-55.el9_7.8.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 710620 - checksum: sha256:ce27f22f72b9bc45bb09924bdd51a3a99a63fbdc88bbd3f22c6ecd70affded1c - name: systemd-libs - evr: 252-55.el9_7.8 - sourcerpm: systemd-252-55.el9_7.8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/t/tar-1.34-9.el9_7.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 938310 @@ -874,20 +302,6 @@ arches: name: tar evr: 2:1.34-9.el9_7 sourcerpm: tar-1.34-9.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/u/util-linux-2.37.4-21.el9_7.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 2424397 - checksum: sha256:f8fb64127696c7c7856fddc98e9b6642b2d603487363eda8d72f449e7efe39c9 - name: util-linux - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/u/util-linux-core-2.37.4-21.el9_7.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 495317 - checksum: sha256:d9a5aee7efe2b85b531648bd8d0aa53a0e02d2dbe2f77881b7072ac9390eeb2c - name: util-linux-core - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/x/xz-5.2.5-8.el9_0.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 243215 @@ -902,26 +316,7 @@ arches: name: xz-libs evr: 5.2.5-8.el9_0 sourcerpm: xz-5.2.5-8.el9_0.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/z/zlib-1.2.11-40.el9.ppc64le.rpm - repoid: rhel-9-for-ppc64le-baseos-rpms - size: 106130 - checksum: sha256:330a6c1a9e15d4118a4dbff5b5446f054e42a8286fbd85a416b8d30771d6db6f - name: zlib - evr: 1.2.11-40.el9 - sourcerpm: zlib-1.2.11-40.el9.src.rpm source: - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 1268651 - checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb - name: audit - evr: 3.1.5-7.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 824335 - checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 - name: bzip2 - evr: 1.0.8-10.el9_5 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 711648 @@ -934,18 +329,6 @@ arches: checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc name: chkconfig evr: 1.24-2.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/cracklib-2.9.6-27.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 6414228 - checksum: sha256:56a815a100d75c1d42c07090b632f05e51ea6d17df097d2936ab25d9aca49310 - name: cracklib - evr: 2.9.6-27.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 107074 - checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa - name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 2010585 @@ -970,60 +353,12 @@ arches: checksum: sha256:4a5023846942905da4226503f6a9da91a66bf6c179dc21d2e4210b3371399b17 name: less evr: 590-6.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 470599 - checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 - name: libcap-ng - evr: 0.8.2-7.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libdb-5.3.28-57.el9_6.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 35290920 - checksum: sha256:6a74a3d96bd4657659524050945e2a47e93779addf2de374a13e1baf32b4ab8d - name: libdb - evr: 5.3.28-57.el9_6 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libeconf-0.4.1-4.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 201501 - checksum: sha256:4541a0915eca1e6fd1440253cf6bdfc5482c7b6dd3d3c7310a77faf852b7671a - name: libeconf - evr: 0.4.1-4.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 1367398 checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 name: libffi evr: 3.4.2-8.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libgcrypt-1.10.0-11.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 3981814 - checksum: sha256:3ac5b6ac1a4be5513e76fa2f33346014b8b3c5c47bbe71524ce326782b163d2e - name: libgcrypt - evr: 1.10.0-11.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libgpg-error-1.42-5.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 994101 - checksum: sha256:9586046fd9622e5e898f92a08821948bf0754a74ab343cc093ca21caae0352a6 - name: libgpg-error - evr: 1.42-5.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libpwquality-1.4.4-8.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 447225 - checksum: sha256:14fbf335e2c6f22b441a9750a69b7c41e197c4dd21adac701fd81f17660ee0b4 - name: libpwquality - evr: 1.4.4-8.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/librtas-2.0.6-1.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 162965 - checksum: sha256:b87597d7d10c2031ef18cb2bbaf2a318ecd21c274855c49d57a9557df3292113 - name: librtas - evr: 2.0.6-1.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 223978 - checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 - name: libsemanage - evr: 3.6-5.el9_6 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 473267 @@ -1036,108 +371,36 @@ arches: checksum: sha256:a3d9612fc631100fa0a528d7721bdee96acc33e35befb6a96544526eae169936 name: libtasn1 evr: 4.16.0-9.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libutempter-1.2.1-6.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 30093 - checksum: sha256:e48843d2734fefad084a86165860ea9575bdc53f63bb5845d8807ce9ccb4f914 - name: libutempter - evr: 1.2.1-6.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 543970 - checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 - name: libxcrypt - evr: 4.4.18-3.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 333421 - checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 - name: lz4 - evr: 1.9.3-5.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 53417882 - checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb - name: openssl - evr: 1:3.5.1-7.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 89979766 - checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 - name: openssl-fips-provider - evr: 3.0.7-8.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 1027881 checksum: sha256:de598a2e1ca170df85cd69d6cc406402407a244988506f53f8736a7546135260 name: p11-kit evr: 0.25.3-3.el9_5 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/pam-1.5.1-26.el9_6.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 1130406 - checksum: sha256:9a351f0455da788ff63026af9a8ee30e744017941c82283f970d1ed066000bb6 - name: pam - evr: 1.5.1-26.el9_6 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 1624356 checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 name: pcre evr: 8.44-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 3009702 - checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 - name: readline - evr: 8.1-4.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 1424192 checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 name: sed evr: 4.8-9.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 1712227 - checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 - name: shadow-utils - evr: 2:4.9-15.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/systemd-252-55.el9_7.8.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 44888096 - checksum: sha256:a633587c7170f5928a0bf1ba144f8f58d759cfdcbc4e6437c4dcb74b1742c69b - name: systemd - evr: 252-55.el9_7.8 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 2282680 checksum: sha256:9b84935c6072500fa28674521fe13816a8be44c50bb8eaf5ec73994782161250 name: tar evr: 2:1.34-9.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/u/util-linux-2.37.4-21.el9_7.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 6285412 - checksum: sha256:023c096f5d669249836bc5d5a445a96ce86b7bbc0b52a1321c371d208df69a57 - name: util-linux - evr: 2.37.4-21.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 1168293 checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 name: xz evr: 5.2.5-8.el9_0 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 561153 - checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 - name: zlib - evr: 1.2.11-40.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm - repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 2378112 - checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e - name: zstd - evr: 1.5.5-1.el9 module_metadata: [] - arch: s390x packages: @@ -1148,20 +411,6 @@ arches: name: alternatives evr: 1.24-2.el9 sourcerpm: chkconfig-1.24-2.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 119512 - checksum: sha256:d511b2237d2487a68d30e13140cd203661fbe271b14f9ffa9b69263c148826c0 - name: audit-libs - evr: 3.1.5-7.el9 - sourcerpm: audit-3.1.5-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 43993 - checksum: sha256:1543fd23b32a7964ef5a570515a1905100122cc6a044d5959dbea65c51c93719 - name: bzip2-libs - evr: 1.0.8-10.el9_5 - sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 1072208 @@ -1169,27 +418,6 @@ arches: name: ca-certificates evr: 2025.2.80_v9.0.305-91.el9 sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/cracklib-2.9.6-27.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 100558 - checksum: sha256:7cd93f220df178d0a76f486ab341cbf858e4ea768e9bc779b1e6eb74259fc3bf - name: cracklib - evr: 2.9.6-27.el9 - sourcerpm: cracklib-2.9.6-27.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/cracklib-dicts-2.9.6-27.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 3838529 - checksum: sha256:fb179b85546fb2ba2e044e40d6f97a7856802840150f636447a048ecf680c07d - name: cracklib-dicts - evr: 2.9.6-27.el9 - sourcerpm: cracklib-2.9.6-27.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 92511 - checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 - name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/f/findutils-4.8.0-7.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 562344 @@ -1218,41 +446,6 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libblkid-2.37.4-21.el9_7.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 110737 - checksum: sha256:6f9853158a5b0c1a1d0a30b43b18e716771741fb327cbdf33342ee1066586de8 - name: libblkid - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 36348 - checksum: sha256:b41f491e2bf52e3f453219fd79e3ab33378b9c1e608b082e6d453b3ec7dc8d6b - name: libcap-ng - evr: 0.8.2-7.el9 - sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 721041 - checksum: sha256:150208aa151d6351c3926632a7f9850022788d16d647d4151915a79af3c3c74f - name: libdb - evr: 5.3.28-57.el9_6 - sourcerpm: libdb-5.3.28-57.el9_6.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libeconf-0.4.1-4.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 30401 - checksum: sha256:97f2c01fb34760ab35d8f1b88fc59d743710035ae1677f06ea8919d0390e0ebb - name: libeconf - evr: 0.4.1-4.el9 - sourcerpm: libeconf-0.4.1-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libfdisk-2.37.4-21.el9_7.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 155697 - checksum: sha256:0fd99f51b377f1f178ffc8c6e17ecfd0d34c73bf9ab59000a38ed229bf8c9d06 - name: libfdisk - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libffi-3.4.2-8.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 37310 @@ -1260,41 +453,6 @@ arches: name: libffi evr: 3.4.2-8.el9 sourcerpm: libffi-3.4.2-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 469635 - checksum: sha256:ad73b3b1163668089b5768b0887561960dd3eae21b6d05f3a09fe1dca42920a3 - name: libgcrypt - evr: 1.10.0-11.el9 - sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libgpg-error-1.42-5.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 224395 - checksum: sha256:edee8e59f5786ffa5dd0397b512277cd5caa3ee221a9728e6f972fc531b6709e - name: libgpg-error - evr: 1.42-5.el9 - sourcerpm: libgpg-error-1.42-5.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libmount-2.37.4-21.el9_7.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 139163 - checksum: sha256:f954719f75db726a84d88aa90e3d04f8d56824072f3db69be14ebcdf6d807818 - name: libmount - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 125703 - checksum: sha256:d3878b8c342582135698ee7c7fb371ed8326c7998bca3b8426191082bd32a6ae - name: libpwquality - evr: 1.4.4-8.el9 - sourcerpm: libpwquality-1.4.4-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 120733 - checksum: sha256:1b7217f14c6ffbd10a10e00a84563002b9d38d02138cb23f21b168bbeea197e9 - name: libsemanage - evr: 3.6-5.el9_6 - sourcerpm: libsemanage-3.6-5.el9_6.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libsigsegv-2.13-4.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 30531 @@ -1302,13 +460,6 @@ arches: name: libsigsegv evr: 2.13-4.el9 sourcerpm: libsigsegv-2.13-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libsmartcols-2.37.4-21.el9_7.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 67710 - checksum: sha256:044670a86134922c7e15bb6563061359a3b5681b1c994fe279e55406fb454cdc - name: libsmartcols - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 78514 @@ -1316,69 +467,6 @@ arches: name: libtasn1 evr: 4.16.0-9.el9 sourcerpm: libtasn1-4.16.0-9.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libutempter-1.2.1-6.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 30191 - checksum: sha256:4cd059814008cfc903b75f38ed7da8037f51f6123a953218e8a37a8a96822c53 - name: libutempter - evr: 1.2.1-6.el9 - sourcerpm: libutempter-1.2.1-6.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libuuid-2.37.4-21.el9_7.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 32342 - checksum: sha256:fa33d5ba3d699b1c170618139eacbb8ae967675665812a787944762f7b47d25a - name: libuuid - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 125532 - checksum: sha256:c5b89459884f858b3527c879cda2b0576fa27b7e1e5005a98f2cab573291f979 - name: libxcrypt - evr: 4.4.18-3.el9 - sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libzstd-1.5.5-1.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 283786 - checksum: sha256:168d08a885a564418b39c075756bbe77fd2f06ad501d7a61b7ac72cc33152e93 - name: libzstd - evr: 1.5.5-1.el9 - sourcerpm: zstd-1.5.5-1.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 71491 - checksum: sha256:c03955837786dadb6b988a7554f30e03e9a536f322921934a1f590db8a142c1d - name: lz4-libs - evr: 1.9.3-5.el9 - sourcerpm: lz4-1.9.3-5.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-3.5.1-7.el9_7.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 1548995 - checksum: sha256:12d540f2ad34e2c202d47d3edff129acc324012a3946ef57cb1a5db8aad544a2 - name: openssl - evr: 1:3.5.1-7.el9_7 - sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 9381 - checksum: sha256:8a4bc9f39ece3d6841a46681c0cdc7ca8510590057e486939b6d0cc1aace958d - name: openssl-fips-provider - evr: 3.0.7-8.el9 - sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-8.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 314467 - checksum: sha256:612f812c248e7cf6d86de00a2e670d74233bd1da20d45a68dd09527dc0547f10 - name: openssl-fips-provider-so - evr: 3.0.7-8.el9 - sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 2038064 - checksum: sha256:51f30f99a5529a3413f13d5a2ddf41be7c06fc4528b842d320e6f68bb82e4b20 - name: openssl-libs - evr: 1:3.5.1-7.el9_7 - sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 554452 @@ -1393,13 +481,6 @@ arches: name: p11-kit-trust evr: 0.25.3-3.el9_5 sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/pam-1.5.1-26.el9_6.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 628673 - checksum: sha256:0817657a9c8638a20357b6d057abe3448dd9cf8c3fed61a74772e18a9d5a209b - name: pam - evr: 1.5.1-26.el9_6 - sourcerpm: pam-1.5.1-26.el9_6.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/pcre-8.44-4.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 121477 @@ -1407,13 +488,6 @@ arches: name: pcre evr: 8.44-4.el9 sourcerpm: pcre-8.44-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/r/readline-8.1-4.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 219915 - checksum: sha256:82eb7921f4285a5e73e8ffb73d399637784d3059e8cda6c8b92c2522e81f6a0d - name: readline - evr: 8.1-4.el9 - sourcerpm: readline-8.1-4.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/sed-4.8-9.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 316228 @@ -1421,20 +495,6 @@ arches: name: sed evr: 4.8-9.el9 sourcerpm: sed-4.8-9.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/shadow-utils-4.9-15.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 1242982 - checksum: sha256:2eb4f76ccae0aa1a7c3c558a574ee7dae2541fc65004122035e5348dbd50a51a - name: shadow-utils - evr: 2:4.9-15.el9 - sourcerpm: shadow-utils-4.9-15.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/systemd-libs-252-55.el9_7.8.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 640507 - checksum: sha256:3207a84729736a7a06063de7871eb35a28e6d85f20a9598ac0a3d73581923c27 - name: systemd-libs - evr: 252-55.el9_7.8 - sourcerpm: systemd-252-55.el9_7.8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/t/tar-1.34-9.el9_7.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 900131 @@ -1442,20 +502,6 @@ arches: name: tar evr: 2:1.34-9.el9_7 sourcerpm: tar-1.34-9.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/u/util-linux-2.37.4-21.el9_7.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 2326731 - checksum: sha256:c235f80ddea8e310263f766987e3b157ea0cc06e36f55ca9e0ec31607c2fc4c5 - name: util-linux - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/u/util-linux-core-2.37.4-21.el9_7.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 468076 - checksum: sha256:6c361b6341c1d06f7e6f9c1253dc487ab883cb83f88f8007dc4ec60d7703da2b - name: util-linux-core - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/x/xz-5.2.5-8.el9_0.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 234632 @@ -1470,26 +516,7 @@ arches: name: xz-libs evr: 5.2.5-8.el9_0 sourcerpm: xz-5.2.5-8.el9_0.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/z/zlib-1.2.11-40.el9.s390x.rpm - repoid: rhel-9-for-s390x-baseos-rpms - size: 100230 - checksum: sha256:451ee05b1bb32a5d5da936d9c4da4b26e99ba8787e8e9f22e2c9a9ceca931507 - name: zlib - evr: 1.2.11-40.el9 - sourcerpm: zlib-1.2.11-40.el9.src.rpm source: - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 1268651 - checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb - name: audit - evr: 3.1.5-7.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 824335 - checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 - name: bzip2 - evr: 1.0.8-10.el9_5 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 711648 @@ -1502,18 +529,6 @@ arches: checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc name: chkconfig evr: 1.24-2.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/cracklib-2.9.6-27.el9.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 6414228 - checksum: sha256:56a815a100d75c1d42c07090b632f05e51ea6d17df097d2936ab25d9aca49310 - name: cracklib - evr: 2.9.6-27.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 107074 - checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa - name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 2010585 @@ -1538,54 +553,12 @@ arches: checksum: sha256:4a5023846942905da4226503f6a9da91a66bf6c179dc21d2e4210b3371399b17 name: less evr: 590-6.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 470599 - checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 - name: libcap-ng - evr: 0.8.2-7.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libdb-5.3.28-57.el9_6.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 35290920 - checksum: sha256:6a74a3d96bd4657659524050945e2a47e93779addf2de374a13e1baf32b4ab8d - name: libdb - evr: 5.3.28-57.el9_6 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libeconf-0.4.1-4.el9.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 201501 - checksum: sha256:4541a0915eca1e6fd1440253cf6bdfc5482c7b6dd3d3c7310a77faf852b7671a - name: libeconf - evr: 0.4.1-4.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 1367398 checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 name: libffi evr: 3.4.2-8.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libgcrypt-1.10.0-11.el9.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 3981814 - checksum: sha256:3ac5b6ac1a4be5513e76fa2f33346014b8b3c5c47bbe71524ce326782b163d2e - name: libgcrypt - evr: 1.10.0-11.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libgpg-error-1.42-5.el9.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 994101 - checksum: sha256:9586046fd9622e5e898f92a08821948bf0754a74ab343cc093ca21caae0352a6 - name: libgpg-error - evr: 1.42-5.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libpwquality-1.4.4-8.el9.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 447225 - checksum: sha256:14fbf335e2c6f22b441a9750a69b7c41e197c4dd21adac701fd81f17660ee0b4 - name: libpwquality - evr: 1.4.4-8.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 223978 - checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 - name: libsemanage - evr: 3.6-5.el9_6 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 473267 @@ -1598,108 +571,36 @@ arches: checksum: sha256:a3d9612fc631100fa0a528d7721bdee96acc33e35befb6a96544526eae169936 name: libtasn1 evr: 4.16.0-9.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libutempter-1.2.1-6.el9.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 30093 - checksum: sha256:e48843d2734fefad084a86165860ea9575bdc53f63bb5845d8807ce9ccb4f914 - name: libutempter - evr: 1.2.1-6.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 543970 - checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 - name: libxcrypt - evr: 4.4.18-3.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 333421 - checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 - name: lz4 - evr: 1.9.3-5.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 53417882 - checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb - name: openssl - evr: 1:3.5.1-7.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 89979766 - checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 - name: openssl-fips-provider - evr: 3.0.7-8.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 1027881 checksum: sha256:de598a2e1ca170df85cd69d6cc406402407a244988506f53f8736a7546135260 name: p11-kit evr: 0.25.3-3.el9_5 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/pam-1.5.1-26.el9_6.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 1130406 - checksum: sha256:9a351f0455da788ff63026af9a8ee30e744017941c82283f970d1ed066000bb6 - name: pam - evr: 1.5.1-26.el9_6 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 1624356 checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 name: pcre evr: 8.44-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 3009702 - checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 - name: readline - evr: 8.1-4.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 1424192 checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 name: sed evr: 4.8-9.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 1712227 - checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 - name: shadow-utils - evr: 2:4.9-15.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/systemd-252-55.el9_7.8.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 44888096 - checksum: sha256:a633587c7170f5928a0bf1ba144f8f58d759cfdcbc4e6437c4dcb74b1742c69b - name: systemd - evr: 252-55.el9_7.8 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 2282680 checksum: sha256:9b84935c6072500fa28674521fe13816a8be44c50bb8eaf5ec73994782161250 name: tar evr: 2:1.34-9.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/u/util-linux-2.37.4-21.el9_7.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 6285412 - checksum: sha256:023c096f5d669249836bc5d5a445a96ce86b7bbc0b52a1321c371d208df69a57 - name: util-linux - evr: 2.37.4-21.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 1168293 checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 name: xz evr: 5.2.5-8.el9_0 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 561153 - checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 - name: zlib - evr: 1.2.11-40.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm - repoid: rhel-9-for-s390x-baseos-source-rpms - size: 2378112 - checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e - name: zstd - evr: 1.5.5-1.el9 module_metadata: [] - arch: x86_64 packages: @@ -1710,20 +611,6 @@ arches: name: alternatives evr: 1.24-2.el9 sourcerpm: chkconfig-1.24-2.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 121610 - checksum: sha256:3a2fa9a5bcb190840b9928f1ce18b5b5a11b5628abe412ef7d130f3584af12d2 - name: audit-libs - evr: 3.1.5-7.el9 - sourcerpm: audit-3.1.5-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 42618 - checksum: sha256:5058aca2a4c5ac3356fb42e6e423e4101bc29199e0ae80d79d3fc564ba9d7c84 - name: bzip2-libs - evr: 1.0.8-10.el9_5 - sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 1072208 @@ -1731,27 +618,6 @@ arches: name: ca-certificates evr: 2025.2.80_v9.0.305-91.el9 sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/cracklib-2.9.6-27.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 100903 - checksum: sha256:8551b711718596fbfef6622bbf32f785864959af9d06a76da2545ec9f3a126e7 - name: cracklib - evr: 2.9.6-27.el9 - sourcerpm: cracklib-2.9.6-27.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/cracklib-dicts-2.9.6-27.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 3821230 - checksum: sha256:ab4356c86bdc996dc9e55703a7ae936e3e46aec6ebf6d6f008e126ff06e83df2 - name: cracklib-dicts - evr: 2.9.6-27.el9 - sourcerpm: cracklib-2.9.6-27.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 92511 - checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 - name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/f/findutils-4.8.0-7.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 563531 @@ -1780,41 +646,6 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libblkid-2.37.4-21.el9_7.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 113836 - checksum: sha256:1220fd34bbe71b9aef8c76921eb893681e5e1cf8378a4b65f5c762ff44acb54d - name: libblkid - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 36752 - checksum: sha256:ebddfc188d1ddbb0d6a238583cbc02dcb9fc0bd063a850b22d48980899976628 - name: libcap-ng - evr: 0.8.2-7.el9 - sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 755192 - checksum: sha256:3246e76f197e2b60eb470b9b55d3e0dda2301b029f295fed9c38ff70b87c5b6b - name: libdb - evr: 5.3.28-57.el9_6 - sourcerpm: libdb-5.3.28-57.el9_6.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libeconf-0.4.1-4.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 30371 - checksum: sha256:f7998382ca1be7836f6af05d42dc03f88799abcb10aa7a761e16f74058598012 - name: libeconf - evr: 0.4.1-4.el9 - sourcerpm: libeconf-0.4.1-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libfdisk-2.37.4-21.el9_7.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 161481 - checksum: sha256:833ea0e100e0404affc6d103db64b8aa685e73886f2651c4073d0f3cd35a42e0 - name: libfdisk - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libffi-3.4.2-8.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 40619 @@ -1822,41 +653,6 @@ arches: name: libffi evr: 3.4.2-8.el9 sourcerpm: libffi-3.4.2-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 522581 - checksum: sha256:9d5a5a4292a5a345143b632c2764ad8e7b095413f78f5693d29c2ea5e7d37119 - name: libgcrypt - evr: 1.10.0-11.el9 - sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 225603 - checksum: sha256:8248e20d7a253aa9c0dc7dc3d56b42e1def4fd5753ce8e8b9e980aa664fc9068 - name: libgpg-error - evr: 1.42-5.el9 - sourcerpm: libgpg-error-1.42-5.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libmount-2.37.4-21.el9_7.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 141779 - checksum: sha256:ffb6163cf57329e2216f7c3470ad4508dd93db5f4dbb03099272cfff006b8b8c - name: libmount - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 126104 - checksum: sha256:14b7ff2f7fdaf8ebec90261f4619ea7f7c3564c4de8483666de7ed4b1f49b66f - name: libpwquality - evr: 1.4.4-8.el9 - sourcerpm: libpwquality-1.4.4-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 123449 - checksum: sha256:7ac29f46714cd762f18a52e9807fd1766b0cf9e0388aa3d9befaabf8785a01e3 - name: libsemanage - evr: 3.6-5.el9_6 - sourcerpm: libsemanage-3.6-5.el9_6.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 30681 @@ -1864,13 +660,6 @@ arches: name: libsigsegv evr: 2.13-4.el9 sourcerpm: libsigsegv-2.13-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libsmartcols-2.37.4-21.el9_7.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 68171 - checksum: sha256:4bd36af2f8431ef671702f2ee82d4676f5430b2ae9896a946461ef5fbd111213 - name: libsmartcols - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 78596 @@ -1878,69 +667,6 @@ arches: name: libtasn1 evr: 4.16.0-9.el9 sourcerpm: libtasn1-4.16.0-9.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 30354 - checksum: sha256:0f1df5e0d48c2ac9914bfffa7ed569cd58e42b17ba96bb3f7cf74d1e80de2597 - name: libutempter - evr: 1.2.1-6.el9 - sourcerpm: libutempter-1.2.1-6.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libuuid-2.37.4-21.el9_7.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 32512 - checksum: sha256:3e37247269ee0aa0ca2608bde2562d52e7347bd393367c485b9ccfe7cdc931ce - name: libuuid - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 122599 - checksum: sha256:a50bb26a28ee7e6379c86b5b91285299b71569fa87ea968d800a56090b7a179d - name: libxcrypt - evr: 4.4.18-3.el9 - sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 304135 - checksum: sha256:d8a149f0d8f217126642cc4b40199d631b940f7d227191cc2179f3158fd47f9e - name: libzstd - evr: 1.5.5-1.el9 - sourcerpm: zstd-1.5.5-1.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 70922 - checksum: sha256:9658da838021711f687cf283368664984bfb1c8b9176897d7d477a724a11a731 - name: lz4-libs - evr: 1.9.3-5.el9 - sourcerpm: lz4-1.9.3-5.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-3.5.1-7.el9_7.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 1565197 - checksum: sha256:efc3eb2f303047d5244a0f717a13615820d0de977c62d58bbe6d04ce35df8c6e - name: openssl - evr: 1:3.5.1-7.el9_7 - sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 9402 - checksum: sha256:bbf25303def8e1270675531c47bdad432f6ad8ef4c327556ae65bd6abaf8edb5 - name: openssl-fips-provider - evr: 3.0.7-8.el9 - sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-8.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 589811 - checksum: sha256:ab48d98504fae6f8636de027a1ee06d21d5e9c27b7beb247017a6fe55567c5e9 - name: openssl-fips-provider-so - evr: 3.0.7-8.el9 - sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 2422039 - checksum: sha256:150962b6c8dbde0e36d11f5e7601130a2d4a9e40aa5e35cd5baa606e9d3f18b7 - name: openssl-libs - evr: 1:3.5.1-7.el9_7 - sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 548533 @@ -1955,13 +681,6 @@ arches: name: p11-kit-trust evr: 0.25.3-3.el9_5 sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/pam-1.5.1-26.el9_6.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 636788 - checksum: sha256:247027fa7a2236c1fb46756ed372637f85cf85886603a2ad5ba918e4231324bc - name: pam - evr: 1.5.1-26.el9_6 - sourcerpm: pam-1.5.1-26.el9_6.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/pcre-8.44-4.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 205261 @@ -1969,13 +688,6 @@ arches: name: pcre evr: 8.44-4.el9 sourcerpm: pcre-8.44-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/r/readline-8.1-4.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 220174 - checksum: sha256:01bf315b3bc44c28515c4d33d49173b23d7979d2a09b7b15f749d434b60851e6 - name: readline - evr: 8.1-4.el9 - sourcerpm: readline-8.1-4.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/sed-4.8-9.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 316395 @@ -1983,20 +695,6 @@ arches: name: sed evr: 4.8-9.el9 sourcerpm: sed-4.8-9.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/shadow-utils-4.9-15.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 1250789 - checksum: sha256:297d8d9785fb98fd8e0c13eec05ee2da08db24e4e6099730b18f6a820b851c51 - name: shadow-utils - evr: 2:4.9-15.el9 - sourcerpm: shadow-utils-4.9-15.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/systemd-libs-252-55.el9_7.8.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 678105 - checksum: sha256:59231ce96ab64d81527771954195722d61e8914786dd35b185cefa6a10df6c3e - name: systemd-libs - evr: 252-55.el9_7.8 - sourcerpm: systemd-252-55.el9_7.8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/t/tar-1.34-9.el9_7.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 906521 @@ -2004,20 +702,6 @@ arches: name: tar evr: 2:1.34-9.el9_7 sourcerpm: tar-1.34-9.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/u/util-linux-2.37.4-21.el9_7.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 2382589 - checksum: sha256:35bdc67c40e276a8b775be673a55b24862755ad9c6a8a8d685c2543431711e9d - name: util-linux - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/u/util-linux-core-2.37.4-21.el9_7.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 475071 - checksum: sha256:ac86e01cb061c529b3becdb824e7f62d5ca70f6984f7f775f5355ec13dcbc087 - name: util-linux-core - evr: 2.37.4-21.el9_7 - sourcerpm: util-linux-2.37.4-21.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 235693 @@ -2032,26 +716,7 @@ arches: name: xz-libs evr: 5.2.5-8.el9_0 sourcerpm: xz-5.2.5-8.el9_0.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/z/zlib-1.2.11-40.el9.x86_64.rpm - repoid: rhel-9-for-x86_64-baseos-rpms - size: 95708 - checksum: sha256:baf95ffbf40ee014135f16fe33e343faf7ff1ca06509fd97cd988e6afeabf670 - name: zlib - evr: 1.2.11-40.el9 - sourcerpm: zlib-1.2.11-40.el9.src.rpm source: - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 1268651 - checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb - name: audit - evr: 3.1.5-7.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 824335 - checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 - name: bzip2 - evr: 1.0.8-10.el9_5 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 711648 @@ -2064,18 +729,6 @@ arches: checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc name: chkconfig evr: 1.24-2.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/cracklib-2.9.6-27.el9.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 6414228 - checksum: sha256:56a815a100d75c1d42c07090b632f05e51ea6d17df097d2936ab25d9aca49310 - name: cracklib - evr: 2.9.6-27.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 107074 - checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa - name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 2010585 @@ -2100,54 +753,12 @@ arches: checksum: sha256:4a5023846942905da4226503f6a9da91a66bf6c179dc21d2e4210b3371399b17 name: less evr: 590-6.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 470599 - checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 - name: libcap-ng - evr: 0.8.2-7.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libdb-5.3.28-57.el9_6.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 35290920 - checksum: sha256:6a74a3d96bd4657659524050945e2a47e93779addf2de374a13e1baf32b4ab8d - name: libdb - evr: 5.3.28-57.el9_6 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libeconf-0.4.1-4.el9.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 201501 - checksum: sha256:4541a0915eca1e6fd1440253cf6bdfc5482c7b6dd3d3c7310a77faf852b7671a - name: libeconf - evr: 0.4.1-4.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 1367398 checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 name: libffi evr: 3.4.2-8.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libgcrypt-1.10.0-11.el9.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 3981814 - checksum: sha256:3ac5b6ac1a4be5513e76fa2f33346014b8b3c5c47bbe71524ce326782b163d2e - name: libgcrypt - evr: 1.10.0-11.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libgpg-error-1.42-5.el9.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 994101 - checksum: sha256:9586046fd9622e5e898f92a08821948bf0754a74ab343cc093ca21caae0352a6 - name: libgpg-error - evr: 1.42-5.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libpwquality-1.4.4-8.el9.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 447225 - checksum: sha256:14fbf335e2c6f22b441a9750a69b7c41e197c4dd21adac701fd81f17660ee0b4 - name: libpwquality - evr: 1.4.4-8.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 223978 - checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 - name: libsemanage - evr: 3.6-5.el9_6 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 473267 @@ -2160,106 +771,34 @@ arches: checksum: sha256:a3d9612fc631100fa0a528d7721bdee96acc33e35befb6a96544526eae169936 name: libtasn1 evr: 4.16.0-9.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libutempter-1.2.1-6.el9.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 30093 - checksum: sha256:e48843d2734fefad084a86165860ea9575bdc53f63bb5845d8807ce9ccb4f914 - name: libutempter - evr: 1.2.1-6.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 543970 - checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 - name: libxcrypt - evr: 4.4.18-3.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 333421 - checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 - name: lz4 - evr: 1.9.3-5.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 53417882 - checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb - name: openssl - evr: 1:3.5.1-7.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 89979766 - checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 - name: openssl-fips-provider - evr: 3.0.7-8.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 1027881 checksum: sha256:de598a2e1ca170df85cd69d6cc406402407a244988506f53f8736a7546135260 name: p11-kit evr: 0.25.3-3.el9_5 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/pam-1.5.1-26.el9_6.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 1130406 - checksum: sha256:9a351f0455da788ff63026af9a8ee30e744017941c82283f970d1ed066000bb6 - name: pam - evr: 1.5.1-26.el9_6 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 1624356 checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 name: pcre evr: 8.44-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 3009702 - checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 - name: readline - evr: 8.1-4.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 1424192 checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 name: sed evr: 4.8-9.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 1712227 - checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 - name: shadow-utils - evr: 2:4.9-15.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/systemd-252-55.el9_7.8.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 44888096 - checksum: sha256:a633587c7170f5928a0bf1ba144f8f58d759cfdcbc4e6437c4dcb74b1742c69b - name: systemd - evr: 252-55.el9_7.8 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 2282680 checksum: sha256:9b84935c6072500fa28674521fe13816a8be44c50bb8eaf5ec73994782161250 name: tar evr: 2:1.34-9.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/u/util-linux-2.37.4-21.el9_7.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 6285412 - checksum: sha256:023c096f5d669249836bc5d5a445a96ce86b7bbc0b52a1321c371d208df69a57 - name: util-linux - evr: 2.37.4-21.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 1168293 checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 name: xz evr: 5.2.5-8.el9_0 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 561153 - checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 - name: zlib - evr: 1.2.11-40.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm - repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 2378112 - checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e - name: zstd - evr: 1.5.5-1.el9 module_metadata: [] From 5d4e3c40d4700faeb0190b1a776264c37500d917 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Fri, 17 Apr 2026 19:21:48 +0200 Subject: [PATCH 11/37] Revert "refactor: Simplify scanner-db Dockerfiles to use postgres base image" This reverts commit 34cc249655e885fd23f3f64d241b6d6712c9acc7. --- image/db/rhel/Dockerfile | 99 +++++++++++++---- image/db/rhel/Dockerfile.slim | 101 ++++++++++++++---- image/db/rhel/scripts/download.sh | 38 +++++++ .../db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL | 41 +++++++ 4 files changed, 238 insertions(+), 41 deletions(-) create mode 100755 image/db/rhel/scripts/download.sh create mode 100644 image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL diff --git a/image/db/rhel/Dockerfile b/image/db/rhel/Dockerfile index 704988866..d7152a597 100644 --- a/image/db/rhel/Dockerfile +++ b/image/db/rhel/Dockerfile @@ -1,18 +1,89 @@ -ARG PG_VERSION=15 -FROM registry.redhat.io/rhel9/postgresql-${PG_VERSION}:latest +ARG RPMS_REGISTRY=registry.access.redhat.com +ARG RPMS_BASE_IMAGE=ubi9 +ARG RPMS_BASE_TAG=latest ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi9-minimal ARG BASE_TAG=latest +FROM ${BASE_REGISTRY}/ubi9-micro:${BASE_TAG} AS ubi-micro-base + FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS extracted_bundle COPY bundle.tar.gz / + WORKDIR /bundle RUN microdnf install -y tar gzip && tar -zxf /bundle.tar.gz -FROM registry.redhat.io/rhel9/postgresql-${PG_VERSION}:latest +FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS postgres_rpms + +COPY scripts/download.sh /download.sh +RUN /download.sh + +FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS dependency_builder + +ENV PG_MAJOR=15 + +COPY --from=ubi-micro-base / /out/ + +RUN dnf install -y \ + --installroot=/out/ \ + --releasever=9 \ + --setopt=install_weak_deps=0 \ + --nodocs \ + findutils \ + shadow-utils \ + ca-certificates \ + openldap \ + glibc-langpack-en \ + glibc-locale-source \ + libicu \ + libxslt \ + lz4 \ + perl-libs \ + python3 \ + systemd-sysv \ + zstd \ + uuid \ + gzip \ + less \ + tar && \ + dnf clean all --installroot=/out/ && \ + rm -rf /out/var/cache/dnf /out/var/cache/yum -USER root +COPY --from=postgres_rpms /rpms/postgres.rpm /rpms/postgres-libs.rpm /rpms/postgres-server.rpm /rpms/postgres-contrib.rpm /tmp/ +COPY signatures/PGDG-RPM-GPG-KEY-RHEL /tmp/ + +RUN rpm --root=/out/ --import /tmp/PGDG-RPM-GPG-KEY-RHEL && \ + rpm --root=/out/ -ivh --nodeps /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ + rm -rf /tmp/*.rpm /tmp/PGDG-RPM-GPG-KEY-RHEL + +RUN chroot /out /bin/sh -c " \ + if getent group postgres >/dev/null; then \ + current_gid=\$(getent group postgres | cut -d: -f3); \ + if [ \$current_gid -ne 70 ]; then \ + groupmod -g 70 postgres; \ + fi; \ + else \ + groupadd -g 70 postgres; \ + fi && \ + if id -u postgres &>/dev/null; then \ + current_uid=\$(id -u postgres); \ + if [ \$current_uid -ne 70 ]; then \ + usermod -u 70 -g 70 postgres; \ + fi; \ + else \ + useradd postgres -u 70 -g 70 -d /var/lib/postgresql -s /bin/sh; \ + fi \ + " + +RUN chroot /out /bin/sh -c "localedef -f UTF-8 -i en_US en_US.UTF-8" + +RUN mkdir -p /out/docker-entrypoint-initdb.d \ + /out/var/run/postgresql \ + /out/var/lib/postgresql && \ + chroot /out /bin/sh -c "chown 70:70 /var/run/postgresql && chmod 03775 /var/run/postgresql && chown 70:70 /var/lib/postgresql && chmod 0700 /var/lib/postgresql" + +FROM ubi-micro-base AS base ARG LABEL_VERSION ARG LABEL_RELEASE @@ -29,26 +100,14 @@ LABEL name="scanner-db" \ ENV PG_MAJOR=15 ENV PATH="$PATH:/usr/pgsql-$PG_MAJOR/bin/" \ - PGDATA="/var/lib/postgresql/data/pgdata" \ - LANG="en_US.utf8" + PGDATA="/var/lib/postgresql/data/pgdata" + +COPY --from=dependency_builder /out/ / COPY scripts/docker-entrypoint.sh /usr/local/bin/ COPY --from=extracted_bundle /bundle/etc/postgresql.conf /bundle/etc/pg_hba.conf /etc/ -RUN dnf upgrade -y --nobest && \ - localedef -f UTF-8 -i en_US en_US.UTF-8 && \ - mkdir -p /var/lib/postgresql && \ - groupmod -g 70 postgres && \ - usermod -u 70 postgres -d /var/lib/postgresql && \ - chown -R postgres:postgres /var/lib/postgresql && \ - chown -R postgres:postgres /var/run/postgresql && \ - chown -R postgres /var/lib/pgsql && \ - chown -R postgres /opt/app-root && \ - dnf clean all && \ - rpm --verbose -e --nodeps $(rpm -qa curl '*rpm*' '*dnf*' '*libsolv*' '*hawkey*' 'yum*') && \ - rm -rf /var/cache/dnf /var/cache/yum && \ - mkdir /docker-entrypoint-initdb.d - +# This is equivalent to postgres:postgres. USER 70:70 COPY --from=extracted_bundle /bundle/docker-entrypoint-initdb.d/definitions.sql.gz /docker-entrypoint-initdb.d/ diff --git a/image/db/rhel/Dockerfile.slim b/image/db/rhel/Dockerfile.slim index e67e27323..31854df68 100644 --- a/image/db/rhel/Dockerfile.slim +++ b/image/db/rhel/Dockerfile.slim @@ -1,18 +1,89 @@ -ARG PG_VERSION=15 -FROM registry.redhat.io/rhel9/postgresql-${PG_VERSION}:latest +ARG RPMS_REGISTRY=registry.access.redhat.com +ARG RPMS_BASE_IMAGE=ubi9 +ARG RPMS_BASE_TAG=latest ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi9-minimal ARG BASE_TAG=latest +FROM ${BASE_REGISTRY}/ubi9-micro:${BASE_TAG} AS ubi-micro-base + FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS extracted_bundle COPY bundle.tar.gz / + WORKDIR /bundle RUN microdnf install -y tar gzip && tar -zxf /bundle.tar.gz -FROM registry.redhat.io/rhel9/postgresql-${PG_VERSION}:latest +FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS postgres_rpms + +COPY scripts/download.sh /download.sh +RUN /download.sh + +FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS dependency_builder + +ENV PG_MAJOR=15 + +COPY --from=ubi-micro-base / /out/ + +RUN dnf install -y \ + --installroot=/out/ \ + --releasever=9 \ + --setopt=install_weak_deps=0 \ + --nodocs \ + findutils \ + shadow-utils \ + ca-certificates \ + openldap \ + glibc-langpack-en \ + glibc-locale-source \ + libicu \ + libxslt \ + lz4 \ + perl-libs \ + python3 \ + systemd-sysv \ + zstd \ + uuid \ + gzip \ + less \ + tar && \ + dnf clean all --installroot=/out/ && \ + rm -rf /out/var/cache/dnf /out/var/cache/yum + +COPY --from=postgres_rpms /rpms/postgres.rpm /rpms/postgres-libs.rpm /rpms/postgres-server.rpm /rpms/postgres-contrib.rpm /tmp/ +COPY signatures/PGDG-RPM-GPG-KEY-RHEL /tmp/ -USER root +RUN rpm --root=/out/ --import /tmp/PGDG-RPM-GPG-KEY-RHEL && \ + rpm --root=/out/ -ivh --nodeps /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ + rm -rf /tmp/*.rpm /tmp/PGDG-RPM-GPG-KEY-RHEL + +RUN chroot /out /bin/sh -c " \ + if getent group postgres >/dev/null; then \ + current_gid=\$(getent group postgres | cut -d: -f3); \ + if [ \$current_gid -ne 70 ]; then \ + groupmod -g 70 postgres; \ + fi; \ + else \ + groupadd -g 70 postgres; \ + fi && \ + if id -u postgres &>/dev/null; then \ + current_uid=\$(id -u postgres); \ + if [ \$current_uid -ne 70 ]; then \ + usermod -u 70 -g 70 postgres; \ + fi; \ + else \ + useradd postgres -u 70 -g 70 -d /var/lib/postgresql -s /bin/sh; \ + fi \ + " + +RUN chroot /out /bin/sh -c "localedef -f UTF-8 -i en_US en_US.UTF-8" + +RUN mkdir -p /out/docker-entrypoint-initdb.d \ + /out/var/run/postgresql \ + /out/var/lib/postgresql && \ + chroot /out /bin/sh -c "chown 70:70 /var/run/postgresql && chmod 03775 /var/run/postgresql && chown 70:70 /var/lib/postgresql && chmod 0700 /var/lib/postgresql" + +FROM ubi-micro-base AS base ARG LABEL_VERSION ARG LABEL_RELEASE @@ -29,30 +100,18 @@ LABEL name="scanner-db-slim" \ ENV PG_MAJOR=15 ENV PATH="$PATH:/usr/pgsql-$PG_MAJOR/bin/" \ - PGDATA="/var/lib/postgresql/data/pgdata" \ - LANG="en_US.utf8" + PGDATA="/var/lib/postgresql/data/pgdata" + +COPY --from=dependency_builder /out/ / COPY scripts/docker-entrypoint.sh /usr/local/bin/ COPY --from=extracted_bundle /bundle/etc/postgresql.conf /bundle/etc/pg_hba.conf /etc/ -RUN dnf upgrade -y --nobest && \ - localedef -f UTF-8 -i en_US en_US.UTF-8 && \ - mkdir -p /var/lib/postgresql && \ - groupmod -g 70 postgres && \ - usermod -u 70 postgres -d /var/lib/postgresql && \ - chown -R postgres:postgres /var/lib/postgresql && \ - chown -R postgres:postgres /var/run/postgresql && \ - chown -R postgres /var/lib/pgsql && \ - chown -R postgres /opt/app-root && \ - dnf clean all && \ - rpm --verbose -e --nodeps $(rpm -qa curl '*rpm*' '*dnf*' '*libsolv*' '*hawkey*' 'yum*') && \ - rm -rf /var/cache/dnf /var/cache/yum && \ - mkdir /docker-entrypoint-initdb.d +# This is equivalent to postgres:postgres. +USER 70:70 ENV ROX_SLIM_MODE="true" -USER 70:70 - ENTRYPOINT ["docker-entrypoint.sh"] EXPOSE 5432 diff --git a/image/db/rhel/scripts/download.sh b/image/db/rhel/scripts/download.sh new file mode 100755 index 000000000..f64470109 --- /dev/null +++ b/image/db/rhel/scripts/download.sh @@ -0,0 +1,38 @@ +#!/bin/bash + +set -euo pipefail + +# If this is updated, be sure to update PG_MAJOR in the Dockerfile and the signature file. +postgres_major=15 +pg_rhel_major=9 + +arch="$(uname -m)" +dnf_list_args=() +if [[ "$arch" == "arm64" ]]; then + arch="aarch64" +fi +output_dir="/rpms" +mkdir $output_dir + +if [[ "$arch" == "s390x" ]]; then + # TODO(ROX-30647): Builds are failing due to UBI9:latest not containing the + # necessary version of openssl-libs to build postgresql-contrib. + pg_build_version="0:16.8-1.module_el9+1209+bd6e4013.s390x" + dnf module enable -y postgresql:16 + dnf install -y --downloadonly --downloaddir=/tmp "postgresql-${pg_build_version}" "postgresql-private-libs-${pg_build_version}" "postgresql-server-${pg_build_version}" "postgresql-contrib-${pg_build_version}" + mv /tmp/postgresql-contrib-*.rpm "${output_dir}/postgres-contrib.rpm" + mv /tmp/postgresql-server-*.rpm "${output_dir}/postgres-server.rpm" + mv /tmp/postgresql-private-libs-*.rpm "${output_dir}/postgres-libs.rpm" + mv /tmp/postgresql-*.rpm "${output_dir}/postgres.rpm" +else + postgres_repo_url="https://download.postgresql.org/pub/repos/yum/reporpms/EL-${pg_rhel_major}-${arch}/pgdg-redhat-repo-latest.noarch.rpm" + dnf install --disablerepo='*' -y "${postgres_repo_url}" + postgres_minor=$(dnf list ${dnf_list_args[@]+"${dnf_list_args[@]}"} --disablerepo='*' --enablerepo="pgdg${postgres_major}" -y "postgresql${postgres_major}-server.$arch" | tail -n 1 | awk '{print $2}') + postgres_minor="$postgres_minor.$arch" + + postgres_url="https://download.postgresql.org/pub/repos/yum/${postgres_major}/redhat/rhel-${pg_rhel_major}-${arch}" + curl --retry 3 -sS --fail -o "${output_dir}/postgres.rpm" "${postgres_url}/postgresql${postgres_major}-${postgres_minor}.rpm" + curl --retry 3 -sS --fail -o "${output_dir}/postgres-server.rpm" "${postgres_url}/postgresql${postgres_major}-server-${postgres_minor}.rpm" + curl --retry 3 -sS --fail -o "${output_dir}/postgres-libs.rpm" "${postgres_url}/postgresql${postgres_major}-libs-${postgres_minor}.rpm" + curl --retry 3 -sS --fail -o "${output_dir}/postgres-contrib.rpm" "${postgres_url}/postgresql${postgres_major}-contrib-${postgres_minor}.rpm" +fi diff --git a/image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL b/image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL new file mode 100644 index 000000000..0f3d62029 --- /dev/null +++ b/image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL @@ -0,0 +1,41 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- + +mQGNBGWBr8EBDAC+atC3Hl2yKkFg0F4tDg4ABCTvvhgMn7g7oZ0vJqpaUAwUgijU ++jLXH8qVSkyhk2eruSXlbj4dIMHhsbRQ1wUnd+tb8pZPdRaBFR9MzFMjvDzobAlZ +RH6cUbgm2EdAHrrZFVQJuIb6SRzQzkk4QEWTkWP6CHzvxnlVpkI7T1yjsJnmLefN +TT/J+r0gxC1DRXOKwSMmWUCzYcRXiv/RZcp+IwM04e5BXOj6xoLIpAwhSGZ0LR6b +dwliBpMSFuVyXFIu+7AS2M8tEO1cGK+ywDhg7TriMc/rgjZjeu11WusXFwbvEUeM +FIYM9oXQlAlWDIob85YcGtNXV4EVGovQ2nFd4Ivl9OYq+HixAhWBLulkEAUREKq8 +uXV8HDjxOfYa8VhczphvkCLr5UEMzXmC2eDc6nCH2hveAqSVLnFNkhtExvVOPRBB +gRsviaGWvdOA3eNeEofHX9YWtSzM43tWABKUzI/oTMcdFJlkJ465bvh4p7KyHDth +5I46iBUZmfP4RckAEQEAAbQ+UG9zdGdyZVNRTCBSUE0gUmVwb3NpdG9yeSA8cGdz +cWwtcGtnLXl1bUBsaXN0cy5wb3N0Z3Jlc3FsLm9yZz6JAdIEEwEIADwWIQTUvwiu +Z6C0x6HbzNJAvKK0CLQNIAUCZYGvwQIbAwULCQgHAgMiAgEGFQoJCAsCBBYCAwEC +HgcCF4AACgkQQLyitAi0DSBwkwwAvE1vGNMiP8Qvqvpk5otuJOvz5meELUwmhT60 +IOWNr9RMroKfb27mnc5RHlOmMk/0SPyboFX9qtOdwFUq3cYbjsP+bqI9vuQuQ4Gz +siLIvSZPtQrdtUP8wdndndeKNpDIvRdYwvaPfIrBxxCSslB8iuCtjbyCl2rzlika +sCOWi7oTwuNB4eKHCRt9oh7NHFas92bF2JiaR7hvmXlCU058/lnR+jXCp/NWiGfE +QV37xAu/ssRH5MykGweEzQ3mX2EKppdKmmoOaJsTfS7UNujeZQqo1uqZg9yRHgwf +PaquIwgdXBY6JkMUM4Zhn7QkP5ssD6g+GzWe2UAMN+K8Xe3QwEMfp9AF7sEEM/Zp ++p5m7D1GlOho/m9juxcRa5r7VfvCFL05uyXdDoefOCFal/pDmwvZofK+pqtDZfKt ++AnF/Y6Z3ewvJ0ZRNBX/0Iw30uJusDIgkXaHwxEeDOnlKi8jVyBCMr1In2QKrb1+ +N9PR5P5ZKKq40WNvbiPfoUeKwKKSuQGNBGWBr8EBDAD1nXgbf+Qki5Z0H2k0xLbI +GYhxnousjVlrWcxOTYqVilSvBig7RKuVFGt0D3yuBWrAS7+MCUvpuCshHcc+w97G +iWmRskIHqZoD26kkU8PhgYayyArqepZp50ALIdOhedOp9b/NUkSPEL4BJow9H8Lp +a28WEXpHZcam43RDMzLMUvJBWem474APx5674EZYX+994lT2cNSAFrnJK956lKmc +ZdzzKuMTcIVGyRF6+KXCmScLAyQks8lHuTJb+AA4eseZnbOsnwnA1xuVfYIfMF/F +bLlR7vl5Autmgnz1SdCaUqIp4MO54GZOgh4MjVadsxIWj8H0cN3uTfukuW4A0+dP +d0YrOKb52Mnejh7x39qWIsMtT8DgcufGcVsuVhC/5LCiHB3pB73J9SMxBafcyGyK +XfLFL5FoDkKTU5KkBfqMQ4k//27mLbJ4kWxHHtNsvnn/6a5m7rRYxFD4dxBWn1CU +BpMjf3m9B3xLc7lKlQZiLLNC7p15gHS51yMvCGxCaHcAEQEAAYkBtgQYAQgAIBYh +BNS/CK5noLTHodvM0kC8orQItA0gBQJlga/BAhsMAAoJEEC8orQItA0guy0L/1ze +AHxV8pxPawOIlgDWoALLb/tqvmG+yz8SN5IWDfvMkMW5kbVoY8zi9SnJtOHVULBC +sdiYN4Dn/Ox1eLlW50F4Z76RI2r/O9rBlHzUk/jAQOcDDCRWjj4a+pYX9I4atU6e ++qOOzxMBsFD0vK84NYJ6caC0LHR64xWnyvXStkDEPSzgHhAlhdn9oTqbIoXuDhSx +zBVSXyowi+cBL8tNsAH4Zlj0li1Gii6bM4DFseQGhKIiTFbx1HD47DT6Pu0X2PSA +pIuZ47n8rP2uTLCYjtnfpXbMwmVOXWxIojhUqIceF+KRr4vRsspSbMxMKg0yeGka +RfQX29x8baM4mdKVBmU9KQxRgno6lcks14STnawqf6o9nHxKp80VQrcNTsYHlq2B +PGAanK8G4WeYojQWCQHBi73qCoTERMpBG73gpTIr836TBinGZaSZ8I1deUS89Hnw +A62QO1TS57zxMTrstzaawLoCIHTqyJ2VeZrVC1INV4ENnyVsud3NaZtfWuIk7Q== +=Elfg +-----END PGP PUBLIC KEY BLOCK----- From d099e0b54def78632b963af7eecc19d437281472 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Tue, 21 Apr 2026 13:57:26 +0200 Subject: [PATCH 12/37] fix: Remove bash and util-linux from konflux.Dockerfile These packages were removed from rpms.in.yaml in commit 20e6fcc7 but were still referenced in the Dockerfile, causing Konflux build failures. Co-Authored-By: Claude Sonnet 4.5 --- image/scanner/rhel/konflux.Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/image/scanner/rhel/konflux.Dockerfile b/image/scanner/rhel/konflux.Dockerfile index 35ec7e99e..8e3b86599 100644 --- a/image/scanner/rhel/konflux.Dockerfile +++ b/image/scanner/rhel/konflux.Dockerfile @@ -39,9 +39,7 @@ RUN dnf install -y \ --setopt=install_weak_deps=0 \ --setopt=reposdir=/etc/yum.repos.d \ --nodocs \ - bash \ findutils \ - util-linux \ ca-certificates \ xz \ gzip \ From 703624d26a2da2db68dfa6271a843f6c1b5ca4d0 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Wed, 22 Apr 2026 19:31:17 +0200 Subject: [PATCH 13/37] fix: Add missing rpm package and improve entrypoint robustness Fixes critical pod startup failures when migrating to ubi9-micro base image. Root Cause Analysis: 1. Scanner binary requires 'rpm' command to query packages in scanned images 2. ubi9-minimal includes rpm by default, but ubi9-micro does NOT 3. Scanner failed at startup with: exec: "rpm": executable file not found in $PATH Changes: 1. Add rpm package to all scanner Dockerfiles (Dockerfile, Dockerfile.slim, konflux.Dockerfile) 2. Add rpm to rpms.in.yaml for Konflux hermetic builds 3. Add file existence check in import-additional-cas before copying ca.pem - Prevents crashes if /run/secrets/stackrox.io/certs/ca.pem is missing - Script has 'set -euo pipefail' so any command failure exits immediately 4. Pass arguments through entrypoint.sh with "$@" - Allows custom -config flag from StackRox deployments - Maintains backward compatibility when no args provided Note: rpms.lock.yaml needs regeneration (see commit 6d2fddec for process) Fixes: stackrox/stackrox#20071 (scanner pod Error status with 10+ restarts) Fixes: #3095 (e2e-tests and slim-e2e-tests failures) Co-Authored-By: Claude Sonnet 4.5 --- image/scanner/rhel/Dockerfile | 1 + image/scanner/rhel/Dockerfile.slim | 1 + image/scanner/rhel/konflux.Dockerfile | 1 + image/scanner/scripts/entrypoint.sh | 2 +- image/scanner/scripts/import-additional-cas | 10 +++++++--- rpms.in.yaml | 2 ++ 6 files changed, 13 insertions(+), 4 deletions(-) diff --git a/image/scanner/rhel/Dockerfile b/image/scanner/rhel/Dockerfile index c93200bd2..a8e34c101 100644 --- a/image/scanner/rhel/Dockerfile +++ b/image/scanner/rhel/Dockerfile @@ -21,6 +21,7 @@ RUN dnf install -y \ --nodocs \ findutils \ ca-certificates \ + rpm \ xz \ gzip \ less \ diff --git a/image/scanner/rhel/Dockerfile.slim b/image/scanner/rhel/Dockerfile.slim index d020fd18e..0de60a0b3 100644 --- a/image/scanner/rhel/Dockerfile.slim +++ b/image/scanner/rhel/Dockerfile.slim @@ -21,6 +21,7 @@ RUN dnf install -y \ --nodocs \ findutils \ ca-certificates \ + rpm \ xz \ gzip \ less \ diff --git a/image/scanner/rhel/konflux.Dockerfile b/image/scanner/rhel/konflux.Dockerfile index 8e3b86599..797bfa7c5 100644 --- a/image/scanner/rhel/konflux.Dockerfile +++ b/image/scanner/rhel/konflux.Dockerfile @@ -41,6 +41,7 @@ RUN dnf install -y \ --nodocs \ findutils \ ca-certificates \ + rpm \ xz \ gzip \ less \ diff --git a/image/scanner/scripts/entrypoint.sh b/image/scanner/scripts/entrypoint.sh index c0bc81c98..f13736380 100755 --- a/image/scanner/scripts/entrypoint.sh +++ b/image/scanner/scripts/entrypoint.sh @@ -5,4 +5,4 @@ set -euo pipefail /restore-all-dir-contents /import-additional-cas -exec /scanner +exec /scanner "$@" diff --git a/image/scanner/scripts/import-additional-cas b/image/scanner/scripts/import-additional-cas index d3bfe544a..cdd3342da 100755 --- a/image/scanner/scripts/import-additional-cas +++ b/image/scanner/scripts/import-additional-cas @@ -26,9 +26,13 @@ copy_existing /etc/pki/injected-ca-trust # Only copy ca.pem — the mount also contains server cert and key which # should not be added as trusted CA anchors. CA_PATH="/run/secrets/stackrox.io/certs/ca.pem" -echo "Copying StackRox root CA from '${CA_PATH}'" -# For RHEL -cp "${CA_PATH}" /etc/pki/ca-trust/source/anchors/root-ca.pem +if [ -f "$CA_PATH" ]; then + echo "Copying StackRox root CA from '${CA_PATH}'" + # For RHEL + cp "${CA_PATH}" /etc/pki/ca-trust/source/anchors/root-ca.pem +else + echo "No StackRox root CA found at '${CA_PATH}' - skipping" +fi echo "Updating CA trust" # Though /etc/pki/ca-trust/extracted is the default output, update-ca-trust diff --git a/rpms.in.yaml b/rpms.in.yaml index d19c0d1b7..2117567c8 100644 --- a/rpms.in.yaml +++ b/rpms.in.yaml @@ -5,8 +5,10 @@ packages: # Scanner packages (for konflux.Dockerfile stage: package_installer) # These packages are installed on top of ubi9-micro base image # Note: coreutils and bash are excluded - ubi9-micro already includes them +# Note: rpm is required by scanner binary to query packages in scanned images - findutils - ca-certificates +- rpm - xz - gzip - less From 7b1dd2bd8e7e05a64288caccaa4399ef390fa35a Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Thu, 23 Apr 2026 12:14:55 +0200 Subject: [PATCH 14/37] chore: Regenerate rpms.lock.yaml after adding rpm package Co-Authored-By: Claude Sonnet 4.5 --- rpms.lock.yaml | 2140 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 2140 insertions(+) diff --git a/rpms.lock.yaml b/rpms.lock.yaml index f91758f1a..831d10e4c 100644 --- a/rpms.lock.yaml +++ b/rpms.lock.yaml @@ -11,6 +11,20 @@ arches: name: alternatives evr: 1.24-2.el9 sourcerpm: chkconfig-1.24-2.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 120220 + checksum: sha256:001622be7ab510ecddc8d0d1dbc2769892e867fa149bca5226c2a9b804f6e545 + name: audit-libs + evr: 3.1.5-7.el9 + sourcerpm: audit-3.1.5-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 43945 + checksum: sha256:d5ae9d4fc841dbfa72948e6810cbc1baf0430545a2cb195683b1b5b950ae8cc6 + name: bzip2-libs + evr: 1.0.8-10.el9_5 + sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 1072208 @@ -18,6 +32,27 @@ arches: name: ca-certificates evr: 2025.2.80_v9.0.305-91.el9 sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 92511 + checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/curl-7.76.1-35.el9_7.3.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 295895 + checksum: sha256:2ed44feaa9dd15834295493690fd383d21d226ab1801be9daf4234d064ccc428 + name: curl + evr: 7.76.1-35.el9_7.3 + sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 771760 + checksum: sha256:7e4f331fc477f0a8482c825ab1b6bfec7f4007481f4eb53fde7fa0ef2d1f6cde + name: cyrus-sasl-lib + evr: 2.1.27-22.el9 + sourcerpm: cyrus-sasl-2.1.27-22.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/f/findutils-4.8.0-7.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 564807 @@ -25,6 +60,27 @@ arches: name: findutils evr: 1:4.8.0-7.el9 sourcerpm: findutils-4.8.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/gawk-5.1.0-6.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1024204 + checksum: sha256:a4b7202ac90653a7d3e072c2444bde6a9270d6a818eb6f2ffcfcaa50774f1fad + name: gawk + evr: 5.1.0-6.el9 + sourcerpm: gawk-5.1.0-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 60311 + checksum: sha256:74fffe15dd7f5a41c7d1990c2804defa1b45fb845da29465b73a81d5866e8a72 + name: gdbm-libs + evr: 1:1.23-1.el9 + sourcerpm: gdbm-1.23-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/gmp-6.2.0-13.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 275679 + checksum: sha256:df01d909e4613514b1844d6ca26d0bcdff8a659762e507188d04ed046fb0cec4 + name: gmp + evr: 1:6.2.0-13.el9 + sourcerpm: gmp-6.2.0-13.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/grep-3.6-5.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 276244 @@ -39,6 +95,20 @@ arches: name: gzip evr: 1.12-1.el9 sourcerpm: gzip-1.12-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 34341 + checksum: sha256:d747ed6e1916d8ea400c89ad6078a8c298e30d652ec21985c93539e34c587a73 + name: keyutils-libs + evr: 1.6.3-1.el9 + sourcerpm: keyutils-1.6.3-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/k/krb5-libs-1.21.1-9.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 793456 + checksum: sha256:ddd56a2ab7609568d273dae5956e680f8fca41a8314c13def2b9149948d601c4 + name: krb5-libs + evr: 1.21.1-9.el9_7 + sourcerpm: krb5-1.21.1-9.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/less-590-6.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 165028 @@ -46,6 +116,48 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 400590 + checksum: sha256:1e611163dd78803e78d8faaed629566513fd5365ae5070041a18695009f5f516 + name: libarchive + evr: 3.5.3-9.el9_7 + sourcerpm: libarchive-3.5.3-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 325179 + checksum: sha256:f5237abc90191238333c1214da97b5202c8a15c2be3ab401ee10d95343cfdf17 + name: libbrotli + evr: 1.0.9-9.el9_7 + sourcerpm: brotli-1.0.9-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 36033 + checksum: sha256:dc4eae31749196c0043225c6749e7306ff71f081c09cbdb2fc98a561087c4474 + name: libcap-ng + evr: 0.8.2-7.el9 + sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 26607 + checksum: sha256:b7e5c8fe9d9f15864966f46c124659de6cb9137d01e213b3e8cac00d10aab55a + name: libcom_err + evr: 1.46.5-8.el9 + sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-35.el9_7.3.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 284784 + checksum: sha256:ab4a5868ad994f4776b32e92833ac5112cdc81c99fb78e76d8607e9c88ae2bf9 + name: libcurl + evr: 7.76.1-35.el9_7.3 + sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 265763 + checksum: sha256:0858687ac9d55a0db78ecc4f669ad21ccba6815744457d135f5a313898dfcab7 + name: libevent + evr: 2.1.12-8.el9_4 + sourcerpm: libevent-2.1.12-8.el9_4.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libffi-3.4.2-8.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 38554 @@ -53,6 +165,34 @@ arches: name: libffi evr: 3.4.2-8.el9 sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 107549 + checksum: sha256:657925cd0fc0abc03cc83ff3688e131a452ea673a5dcb815cd0fc168bf962fc7 + name: libidn2 + evr: 2.3.0-7.el9 + sourcerpm: libidn2-2.3.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_7.1.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 79593 + checksum: sha256:60e82df5c22ff2aa0c093b6c3992a13e32e1c0998e27020be724c3d9cc4892f2 + name: libnghttp2 + evr: 1.43.0-6.el9_7.1 + sourcerpm: nghttp2-1.43.0-6.el9_7.1.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 67300 + checksum: sha256:08968334789ba764986d3beb4745de28eb1e2ed401a03dba9d80e75e3179aa76 + name: libpsl + evr: 0.21.1-5.el9 + sourcerpm: libpsl-0.21.1-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 120963 + checksum: sha256:233d8270827b9166ad11827599800d2a09284d29e73af09c7a12bae251a9463c + name: libsemanage + evr: 3.6-5.el9_6 + sourcerpm: libsemanage-3.6-5.el9_6.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 30566 @@ -60,6 +200,20 @@ arches: name: libsigsegv evr: 2.13-4.el9 sourcerpm: libsigsegv-2.13-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-17.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 215091 + checksum: sha256:900b684846c180a7303ac561030ce4cb0c6be2ad51b3ea9ef0810e3ae103ec32 + name: libssh + evr: 0.10.4-17.el9_7 + sourcerpm: libssh-0.10.4-17.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-17.el9_7.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 8268 + checksum: sha256:9815db066478c3b1bdd5367de09e0aedf465127716358a8877990736589c6078 + name: libssh-config + evr: 0.10.4-17.el9_7 + sourcerpm: libssh-0.10.4-17.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 77910 @@ -67,6 +221,97 @@ arches: name: libtasn1 evr: 4.16.0-9.el9 sourcerpm: libtasn1-4.16.0-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libtool-ltdl-2.4.6-46.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 37581 + checksum: sha256:85f38e641398438f7f08526d7003f47e47a14369798464fd67c465134258e964 + name: libtool-ltdl + evr: 2.4.6-46.el9 + sourcerpm: libtool-2.4.6-46.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 503151 + checksum: sha256:f68934935fc209e7c595c5619df75f822cc832803e3ea6de2c92e3b91b4d5008 + name: libunistring + evr: 0.9.10-15.el9 + sourcerpm: libunistring-0.9.10-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libverto-0.3.2-3.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 24651 + checksum: sha256:80d6e32c111ab9c0b2c607475b6a6691cdf6abaec19fde27043e8710a94a8f0c + name: libverto + evr: 0.3.2-3.el9 + sourcerpm: libverto-0.3.2-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 127655 + checksum: sha256:f05030123425a5033bcca3f260313cafc199bc7bca57e9fb13c335bd087c35a7 + name: libxcrypt + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 747343 + checksum: sha256:439834f9b140eb591dec0e23aa6f3d7353b412170d3bc6f729010080197e85e5 + name: libxml2 + evr: 2.9.13-14.el9_7 + sourcerpm: libxml2-2.9.13-14.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 283159 + checksum: sha256:1229ed44dc7a68278682d7697c41d0abd7daedd242d90c6dc58a9aa6e76f9e6f + name: libzstd + evr: 1.5.5-1.el9 + sourcerpm: zstd-1.5.5-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/lua-libs-5.4.4-4.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 132531 + checksum: sha256:3bc4dceda442b11c804971ba71ffc2ef398371cd993b207b886de87fb9d7f596 + name: lua-libs + evr: 5.4.4-4.el9 + sourcerpm: lua-5.4.4-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 70696 + checksum: sha256:e1dbd2c38a65b135427c7c8fe988ea70dc95f7e26c4c8177b7dcb23925020015 + name: lz4-libs + evr: 1.9.3-5.el9 + sourcerpm: lz4-1.9.3-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/m/mpfr-4.1.0-7.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 247844 + checksum: sha256:09ff81634b9741b286b42e2067270b4f95141a5ea03886f0610e25e9d0f941a2 + name: mpfr + evr: 4.1.0-7.el9 + sourcerpm: mpfr-4.1.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openldap-2.6.8-4.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 291500 + checksum: sha256:fd684316480b2f9a9448d550c2509e37016710ca0724ff3d17d91fa0be2bdc4e + name: openldap + evr: 2.6.8-4.el9 + sourcerpm: openldap-2.6.8-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 9366 + checksum: sha256:0cfe7b281ae2ca3cb0ceaa1a0b84f8c087c4ac16662ebb9c19b5681cf39f99a9 + name: openssl-fips-provider + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-8.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 524824 + checksum: sha256:18c77b9b37e7abf0e8cf1dac4b3de770efe895547bdcab8aea8d8d8592954947 + name: openssl-fips-provider-so + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 2285222 + checksum: sha256:5a659a77448de7221c58e25cf3474c49f2d80e2b96ef18c8807bd80d82fcf167 + name: openssl-libs + evr: 1:3.5.1-7.el9_7 + sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 523171 @@ -88,6 +333,41 @@ arches: name: pcre evr: 8.44-4.el9 sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/popt-1.18-8.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 70067 + checksum: sha256:f49c6d53f428bb3b610633af7b1053a6c1dc522762a9c6cb35195e519227eb51 + name: popt + evr: 1.18-8.el9 + sourcerpm: popt-1.18-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 60882 + checksum: sha256:e6ec3390a736b085f403168c512a6b2b6f8e12a8fd5a4459f1c7dbbff2b67c33 + name: publicsuffix-list-dafsa + evr: 20210518-3.el9 + sourcerpm: publicsuffix-list-20210518-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/r/readline-8.1-4.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 219015 + checksum: sha256:2ae424b368c6747124b51b205b9e11d74aeaff56b3de90e8cbd36012e0d17707 + name: readline + evr: 8.1-4.el9 + sourcerpm: readline-8.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/r/rpm-4.16.1.3-39.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 544141 + checksum: sha256:804800eb678ecfb03d1c4abdbfebb96520cfd80138cee5534472d0c5af5e33cb + name: rpm + evr: 4.16.1.3-39.el9 + sourcerpm: rpm-4.16.1.3-39.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/r/rpm-libs-4.16.1.3-39.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 307199 + checksum: sha256:3a676cf7aa248b4840517977afcaec6e7f4b0f875626fc257d5af023467a20d0 + name: rpm-libs + evr: 4.16.1.3-39.el9 + sourcerpm: rpm-4.16.1.3-39.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/sed-4.8-9.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 314254 @@ -95,6 +375,20 @@ arches: name: sed evr: 4.8-9.el9 sourcerpm: sed-4.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/shadow-utils-4.9-15.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1241888 + checksum: sha256:93e53d8bf8f4bf2a3acf0f4f82967598570e24cb4bc2633cb3022a3c70217a74 + name: shadow-utils + evr: 2:4.9-15.el9 + sourcerpm: shadow-utils-4.9-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/sqlite-libs-3.34.1-9.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 651362 + checksum: sha256:0536dc96331c04f3be530ad58e42cf32c8685242856ece0864f5bbfffc17dc59 + name: sqlite-libs + evr: 3.34.1-9.el9_7 + sourcerpm: sqlite-3.34.1-9.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/t/tar-1.34-9.el9_7.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 898317 @@ -116,7 +410,32 @@ arches: name: xz-libs evr: 5.2.5-8.el9_0 sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/z/zlib-1.2.11-40.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 94454 + checksum: sha256:2e7f193e67235130c10f5579c2d2ec92e22e4098b6d12fb2855d93b1540c60f7 + name: zlib + evr: 1.2.11-40.el9 + sourcerpm: zlib-1.2.11-40.el9.src.rpm source: + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1268651 + checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb + name: audit + evr: 3.1.5-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/b/brotli-1.0.9-9.el9_7.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 517498 + checksum: sha256:814868e0bec831c79d3e12ff76d31e06e5e62c462a1a4b6607b1f3cab7014438 + name: brotli + evr: 1.0.9-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 824335 + checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 + name: bzip2 + evr: 1.0.8-10.el9_5 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 711648 @@ -129,12 +448,54 @@ arches: checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc name: chkconfig evr: 1.24-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 107074 + checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/curl-7.76.1-35.el9_7.3.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 2564300 + checksum: sha256:670afd4496d5eec73b99528af258cf87be65cf4567c9e7c76a3c7508af3e6687 + name: curl + evr: 7.76.1-35.el9_7.3 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/cyrus-sasl-2.1.27-22.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 4025677 + checksum: sha256:f4b3d139bfb74a2d628592c5696a003bc8c4896711386b1bbc3dffdf8a33883e + name: cyrus-sasl + evr: 2.1.27-22.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/e/e2fsprogs-1.46.5-8.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 7416727 + checksum: sha256:5c613445f928889a52a0a82f4ed866502e82c99b0c983024ab97421391abd061 + name: e2fsprogs + evr: 1.46.5-8.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 2010585 checksum: sha256:48bd4d4dd081120bcc6ab772b930a150f30b2fc89a4a14a24220383d24a30b3f name: findutils evr: 1:4.8.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/gawk-5.1.0-6.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 3190934 + checksum: sha256:37571947707e835d36ceb5641b187aba13ef8f5f605a6762ce72aeea3e745b8d + name: gawk + evr: 5.1.0-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/gdbm-1.23-1.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1130147 + checksum: sha256:ad42264274c2a792220395a4dbe736a1de6100c4e14611707ec1dd447583271f + name: gdbm + evr: 1:1.23-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/gmp-6.2.0-13.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 2503825 + checksum: sha256:d0d8a795eea9ae555da63fbcfc3575425e86bb7e96d117b9ae2785b4f5e82f7c + name: gmp + evr: 1:6.2.0-13.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/grep-3.6-5.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 1620891 @@ -147,30 +508,156 @@ arches: checksum: sha256:a05f582ec42e89258ee5e10af96dee4300bcb2a6a69a76bfb5b46f79e6a6a47b name: gzip evr: 1.12-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/k/keyutils-1.6.3-1.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 150790 + checksum: sha256:6afa567438acd0d3a6a66bc6a3c68ec2f4ae5ed9c7230c3f0478d2281a092688 + name: keyutils + evr: 1.6.3-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/k/krb5-1.21.1-9.el9_7.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 8950679 + checksum: sha256:060d98c68b453970fcb516ba38eb5b797e6f4e20e173e3b237c2ca36cc23a411 + name: krb5 + evr: 1.21.1-9.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/less-590-6.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 382338 checksum: sha256:4a5023846942905da4226503f6a9da91a66bf6c179dc21d2e4210b3371399b17 name: less evr: 590-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libarchive-3.5.3-9.el9_7.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 7061017 + checksum: sha256:69ee18f9881f3768c7b01d03185f3fba9637c0477e585a113fd3641c7dcd3d41 + name: libarchive + evr: 3.5.3-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 470599 + checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 + name: libcap-ng + evr: 0.8.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libevent-2.1.12-8.el9_4.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1123179 + checksum: sha256:8c00dc837b8685fc660cc0bcdfd4f533888facaa8c83655c26d2fb068cb7b135 + name: libevent + evr: 2.1.12-8.el9_4 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 1367398 checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 name: libffi evr: 3.4.2-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libidn2-2.3.0-7.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 2214169 + checksum: sha256:c27f21437a76f07b0ee9f4f7e61d621cbb9c483c14563b31e55e320d19df99a6 + name: libidn2 + evr: 2.3.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libpsl-0.21.1-5.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 9160109 + checksum: sha256:0325329a882e68a2f817bac959abe49abc67d3dac9381a5a02c006916a86f17c + name: libpsl + evr: 0.21.1-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 223978 + checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 + name: libsemanage + evr: 3.6-5.el9_6 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 473267 checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 name: libsigsegv evr: 2.13-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libssh-0.10.4-17.el9_7.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 666751 + checksum: sha256:b6704bba8787776c03b828b5b1de4e499f68818852e7b1aa08f5270724d5b832 + name: libssh + evr: 0.10.4-17.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-9.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 1895591 checksum: sha256:a3d9612fc631100fa0a528d7721bdee96acc33e35befb6a96544526eae169936 name: libtasn1 evr: 4.16.0-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libtool-2.4.6-46.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1002417 + checksum: sha256:1130b15333736ad40a18b5924959a8b0c6c151305bc252c0cbd5276432e10002 + name: libtool + evr: 2.4.6-46.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libunistring-0.9.10-15.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 2065802 + checksum: sha256:f6c329a60743d0d4955e070c5104407e47795b1ef617e7e59d052298961aec2b + name: libunistring + evr: 0.9.10-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libverto-0.3.2-3.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 396005 + checksum: sha256:a648c6c90c2cfcd6836681bff947499285656e60a5b2243a53b7d6590a8b73ee + name: libverto + evr: 0.3.2-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 543970 + checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 + name: libxcrypt + evr: 4.4.18-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libxml2-2.9.13-14.el9_7.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 3287727 + checksum: sha256:734596effcfb386afa2483354c318c31ea95b453f11a24e74158925c23b410bd + name: libxml2 + evr: 2.9.13-14.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/lua-5.4.4-4.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 521629 + checksum: sha256:18feaae23ff1b674acccf0f081f0d3c36ca482df0c468e9368d4f4432dff820c + name: lua + evr: 5.4.4-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 333421 + checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 + name: lz4 + evr: 1.9.3-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-7.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1556195 + checksum: sha256:1a6f60487d5ebb8998718c8246a49baf182e27318aa16e6a80b1ba7600b74e13 + name: mpfr + evr: 4.1.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/n/nghttp2-1.43.0-6.el9_7.1.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 4003759 + checksum: sha256:6a1a3c8ee5ed3ebd826d16e9432102657903fbc833002b61e26d251f903b7a6a + name: nghttp2 + evr: 1.43.0-6.el9_7.1 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/o/openldap-2.6.8-4.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 6548889 + checksum: sha256:0d21c12c55d40d1fc2f006c8ec187b5fcc799b794cfd31ed2d98434189c62800 + name: openldap + evr: 2.6.8-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 53417882 + checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb + name: openssl + evr: 1:3.5.1-7.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 89979766 + checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 + name: openssl-fips-provider + evr: 3.0.7-8.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 1027881 @@ -183,12 +670,48 @@ arches: checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 name: pcre evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/popt-1.18-8.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 595630 + checksum: sha256:1c5d47907a884ec21001c4965013fa70bea3f770d385fdc897cb7afc1cf62fe6 + name: popt + evr: 1.18-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/publicsuffix-list-20210518-3.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 93646 + checksum: sha256:3e2e87867d4d3967d0cd00d1a80812438e5b20eda61b620fe8b62084e528490b + name: publicsuffix-list + evr: 20210518-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 3009702 + checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 + name: readline + evr: 8.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/r/rpm-4.16.1.3-39.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 4498489 + checksum: sha256:07d62b4b303a48f60845d4bae4d269bee8b2fc372e470cecc486d09a9685139f + name: rpm + evr: 4.16.1.3-39.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 1424192 checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 name: sed evr: 4.8-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1712227 + checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 + name: shadow-utils + evr: 2:4.9-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-9.el9_7.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 25109403 + checksum: sha256:1d89566fe2e33bbd86fe1d024e3dbb7e800aef138f8d8d99ab65b15a6f6c2c5a + name: sqlite + evr: 3.34.1-9.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 2282680 @@ -201,6 +724,18 @@ arches: checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 name: xz evr: 5.2.5-8.el9_0 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 561153 + checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 + name: zlib + evr: 1.2.11-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 2378112 + checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e + name: zstd + evr: 1.5.5-1.el9 module_metadata: [] - arch: ppc64le packages: @@ -211,6 +746,20 @@ arches: name: alternatives evr: 1.24-2.el9 sourcerpm: chkconfig-1.24-2.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 140704 + checksum: sha256:7d4c990831f2f92403ad7f59f5fadcaffef98442b951f34dd648a0b69b2b9a18 + name: audit-libs + evr: 3.1.5-7.el9 + sourcerpm: audit-3.1.5-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 47605 + checksum: sha256:f1b07f02b34fe8d8ba24eed9afd874ced25f4da14eb1b0c804e47de1281fce49 + name: bzip2-libs + evr: 1.0.8-10.el9_5 + sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 1072208 @@ -218,6 +767,27 @@ arches: name: ca-certificates evr: 2025.2.80_v9.0.305-91.el9 sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 92511 + checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/curl-7.76.1-35.el9_7.3.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 302683 + checksum: sha256:089b35068610a9c120fcb60e0043efb776f16e1146a433cd9acc01cc8c910420 + name: curl + evr: 7.76.1-35.el9_7.3 + sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 876118 + checksum: sha256:b0cfaae4c1a887e1c8cd58f4f4fdce366b2353094747cd21553dcb316b252699 + name: cyrus-sasl-lib + evr: 2.1.27-22.el9 + sourcerpm: cyrus-sasl-2.1.27-22.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/f/findutils-4.8.0-7.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 603076 @@ -225,6 +795,27 @@ arches: name: findutils evr: 1:4.8.0-7.el9 sourcerpm: findutils-4.8.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/gawk-5.1.0-6.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1064251 + checksum: sha256:b0cc389ad0855900c79f2cfa525df8cbc663093056b0b5d29ec3e36a189b325e + name: gawk + evr: 5.1.0-6.el9 + sourcerpm: gawk-5.1.0-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 65838 + checksum: sha256:18bdea48a00d647410ad82fc2cd8da81124611b1b2dd21a5526ba7e433c52be0 + name: gdbm-libs + evr: 1:1.23-1.el9 + sourcerpm: gdbm-1.23-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/gmp-6.2.0-13.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 312805 + checksum: sha256:aeaf0f125933153cc8fc9727dac28dade4c6a8ae146812c4445643dadd3a585c + name: gmp + evr: 1:6.2.0-13.el9 + sourcerpm: gmp-6.2.0-13.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/grep-3.6-5.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 288035 @@ -239,6 +830,20 @@ arches: name: gzip evr: 1.12-1.el9 sourcerpm: gzip-1.12-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 35505 + checksum: sha256:6e45fee51e67239d8550789a53ab7ca562c605513afe0ff890786ae9fff8fac5 + name: keyutils-libs + evr: 1.6.3-1.el9 + sourcerpm: keyutils-1.6.3-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/k/krb5-libs-1.21.1-9.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 872282 + checksum: sha256:feaf53dec0358504c62e7d7528269226431953daab7592eda1bc3ab8f0630fa0 + name: krb5-libs + evr: 1.21.1-9.el9_7 + sourcerpm: krb5-1.21.1-9.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/less-590-6.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 177816 @@ -246,6 +851,48 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 470833 + checksum: sha256:601ea0fd901cc78ee30d9f88d857ddc4cacf9ae72b726449620a41eba2842fbd + name: libarchive + evr: 3.5.3-9.el9_7 + sourcerpm: libarchive-3.5.3-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 349508 + checksum: sha256:ff72df4a441c2f8ee8e1bcde8dcbd5bbd89250db9caf8792ff253b7af3e1c51c + name: libbrotli + evr: 1.0.9-9.el9_7 + sourcerpm: brotli-1.0.9-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 37600 + checksum: sha256:2483f8a4b41d76f84939855b712cfa8a990254ac36fc590daa641b2c19b014eb + name: libcap-ng + evr: 0.8.2-7.el9 + sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 27218 + checksum: sha256:e42731a8cd63ee553dd01bf989e6cdda8d33fb515119d83039046c987a000f6c + name: libcom_err + evr: 1.46.5-8.el9 + sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libcurl-7.76.1-35.el9_7.3.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 321185 + checksum: sha256:4fe25624bf8d64e84154fbb95d64567dc6d50d841ebf41d78fdc3445b84f25b6 + name: libcurl + evr: 7.76.1-35.el9_7.3 + sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 287857 + checksum: sha256:bc6eb253e6cf0e06fa7270c029502e14ee70cb22c2ed86b15f2a9952ba2f375f + name: libevent + evr: 2.1.12-8.el9_4 + sourcerpm: libevent-2.1.12-8.el9_4.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libffi-3.4.2-8.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 40799 @@ -253,6 +900,34 @@ arches: name: libffi evr: 3.4.2-8.el9 sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libidn2-2.3.0-7.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 110270 + checksum: sha256:28a3da7752093735a9c0de6232bcb6c3d9910a90956891396712825b354bf7d5 + name: libidn2 + evr: 2.3.0-7.el9 + sourcerpm: libidn2-2.3.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_7.1.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 89545 + checksum: sha256:9d85c546efc693de263ef885d1bd79d00717a8a64dfeb7c7baa967401f757160 + name: libnghttp2 + evr: 1.43.0-6.el9_7.1 + sourcerpm: nghttp2-1.43.0-6.el9_7.1.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libpsl-0.21.1-5.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 69346 + checksum: sha256:dfdaff3aa507721d913aae308caa7b672a952e1d21485958daa749b2d1793fc3 + name: libpsl + evr: 0.21.1-5.el9 + sourcerpm: libpsl-0.21.1-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 136617 + checksum: sha256:fb48b9d444876b4517d441b63955b32ff022b27d99865384900912c55d84f808 + name: libsemanage + evr: 3.6-5.el9_6 + sourcerpm: libsemanage-3.6-5.el9_6.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libsigsegv-2.13-4.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 31522 @@ -260,6 +935,20 @@ arches: name: libsigsegv evr: 2.13-4.el9 sourcerpm: libsigsegv-2.13-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libssh-0.10.4-17.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 243596 + checksum: sha256:cf9bcbd36e0d333f87fca58187a49ac3b179f31025437acaa97ff4fac61fe902 + name: libssh + evr: 0.10.4-17.el9_7 + sourcerpm: libssh-0.10.4-17.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libssh-config-0.10.4-17.el9_7.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 8268 + checksum: sha256:9815db066478c3b1bdd5367de09e0aedf465127716358a8877990736589c6078 + name: libssh-config + evr: 0.10.4-17.el9_7 + sourcerpm: libssh-0.10.4-17.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 84469 @@ -267,6 +956,97 @@ arches: name: libtasn1 evr: 4.16.0-9.el9 sourcerpm: libtasn1-4.16.0-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libtool-ltdl-2.4.6-46.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 41941 + checksum: sha256:1aeb1dd5ed52720e71481871150b8feed52d0fed307d38fefb636a2065854107 + name: libtool-ltdl + evr: 2.4.6-46.el9 + sourcerpm: libtool-2.4.6-46.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libunistring-0.9.10-15.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 519115 + checksum: sha256:8ea5a350f1a29e412100e7b51967f440715f1cf8480a2ccae1a703806953486e + name: libunistring + evr: 0.9.10-15.el9 + sourcerpm: libunistring-0.9.10-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libverto-0.3.2-3.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 25896 + checksum: sha256:54ba79ab0122e9e427efa5b10e9c63dbb28e13c4698711fd5c5bde4e9d794a65 + name: libverto + evr: 0.3.2-3.el9 + sourcerpm: libverto-0.3.2-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 136063 + checksum: sha256:c0bc93eea8ae33a88c33d7f4ac290a7c4fb844e591fb69a55e50dca8df8fbbff + name: libxcrypt + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libxml2-2.9.13-14.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 842812 + checksum: sha256:a946303620df2a718355c4ffcbcfd5bbf95d606a3458b806b8586343f7b31121 + name: libxml2 + evr: 2.9.13-14.el9_7 + sourcerpm: libxml2-2.9.13-14.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libzstd-1.5.5-1.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 329280 + checksum: sha256:c613b79b53a7d9b00bb33fac7971d412d8f9f9656436cdc8e451e4a805f53ee8 + name: libzstd + evr: 1.5.5-1.el9 + sourcerpm: zstd-1.5.5-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/lua-libs-5.4.4-4.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 152736 + checksum: sha256:5c301c0b57c154457144d7857dcedd4f37025129a9fe868a1c76c9b0461e8e07 + name: lua-libs + evr: 5.4.4-4.el9 + sourcerpm: lua-5.4.4-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 90452 + checksum: sha256:2a7ef3bd2571c62bf75f3bc1a9206f5715ddcb1cb77f561689de458a417e5914 + name: lz4-libs + evr: 1.9.3-5.el9 + sourcerpm: lz4-1.9.3-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/m/mpfr-4.1.0-7.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 331631 + checksum: sha256:2b26e39f0eb248620c4ad20dff1690502c1912374b8ca7158d6d7eab33c27209 + name: mpfr + evr: 4.1.0-7.el9 + sourcerpm: mpfr-4.1.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openldap-2.6.8-4.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 329998 + checksum: sha256:8476e903e6a0ba08961f26a776bd5ae130771ce83edcbc9c57260a49e654c053 + name: openldap + evr: 2.6.8-4.el9 + sourcerpm: openldap-2.6.8-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 9390 + checksum: sha256:c4a55a68f123fd873380d919ede200fb64f7443eb4235ce555a307cfee9fb6a5 + name: openssl-fips-provider + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-8.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 576788 + checksum: sha256:325a2017d21f5ca789931de321cd9fb5f359ce12fb0d0acc2f3cd9dc00b00dc3 + name: openssl-fips-provider-so + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 2550625 + checksum: sha256:99dac7eb92b2cf3e4e2f512378397f59d206795e89bef3bb6891062e334fa65c + name: openssl-libs + evr: 1:3.5.1-7.el9_7 + sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 547598 @@ -288,6 +1068,41 @@ arches: name: pcre evr: 8.44-4.el9 sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/popt-1.18-8.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 74761 + checksum: sha256:f306d3dc7ae527041162c2f44e153dcd00826c8f79ef588437883c34abe12d9d + name: popt + evr: 1.18-8.el9 + sourcerpm: popt-1.18-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 60882 + checksum: sha256:e6ec3390a736b085f403168c512a6b2b6f8e12a8fd5a4459f1c7dbbff2b67c33 + name: publicsuffix-list-dafsa + evr: 20210518-3.el9 + sourcerpm: publicsuffix-list-20210518-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/r/readline-8.1-4.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 236301 + checksum: sha256:e346c16a0e4b617897f744fe448701cdc90202aecc61d5a40b9ed0986609cb25 + name: readline + evr: 8.1-4.el9 + sourcerpm: readline-8.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/r/rpm-4.16.1.3-39.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 546629 + checksum: sha256:2f55ea9c1fa47d8b45f61d231aebfebb2e8c399e3edfa1b20d2fe1b20b8c74a0 + name: rpm + evr: 4.16.1.3-39.el9 + sourcerpm: rpm-4.16.1.3-39.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/r/rpm-libs-4.16.1.3-39.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 359163 + checksum: sha256:e94030abfe242b8e8b35292754f0505e3f195ec03fe46d2e19ce8a0825e0afb6 + name: rpm-libs + evr: 4.16.1.3-39.el9 + sourcerpm: rpm-4.16.1.3-39.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/sed-4.8-9.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 322393 @@ -295,6 +1110,20 @@ arches: name: sed evr: 4.8-9.el9 sourcerpm: sed-4.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/shadow-utils-4.9-15.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1272062 + checksum: sha256:306514b0e1eff64bbcf43b53cd73f952e48cd4221c3d215dfe7b1908354f07ca + name: shadow-utils + evr: 2:4.9-15.el9 + sourcerpm: shadow-utils-4.9-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/sqlite-libs-3.34.1-9.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 748982 + checksum: sha256:f1f8905dd84e19aed6c4a91654006f52387c233662afb719a46b223e806354a1 + name: sqlite-libs + evr: 3.34.1-9.el9_7 + sourcerpm: sqlite-3.34.1-9.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/t/tar-1.34-9.el9_7.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 938310 @@ -316,7 +1145,32 @@ arches: name: xz-libs evr: 5.2.5-8.el9_0 sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/z/zlib-1.2.11-40.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 106130 + checksum: sha256:330a6c1a9e15d4118a4dbff5b5446f054e42a8286fbd85a416b8d30771d6db6f + name: zlib + evr: 1.2.11-40.el9 + sourcerpm: zlib-1.2.11-40.el9.src.rpm source: + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1268651 + checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb + name: audit + evr: 3.1.5-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/b/brotli-1.0.9-9.el9_7.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 517498 + checksum: sha256:814868e0bec831c79d3e12ff76d31e06e5e62c462a1a4b6607b1f3cab7014438 + name: brotli + evr: 1.0.9-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 824335 + checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 + name: bzip2 + evr: 1.0.8-10.el9_5 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 711648 @@ -329,12 +1183,54 @@ arches: checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc name: chkconfig evr: 1.24-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 107074 + checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/curl-7.76.1-35.el9_7.3.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 2564300 + checksum: sha256:670afd4496d5eec73b99528af258cf87be65cf4567c9e7c76a3c7508af3e6687 + name: curl + evr: 7.76.1-35.el9_7.3 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/cyrus-sasl-2.1.27-22.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 4025677 + checksum: sha256:f4b3d139bfb74a2d628592c5696a003bc8c4896711386b1bbc3dffdf8a33883e + name: cyrus-sasl + evr: 2.1.27-22.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/e/e2fsprogs-1.46.5-8.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 7416727 + checksum: sha256:5c613445f928889a52a0a82f4ed866502e82c99b0c983024ab97421391abd061 + name: e2fsprogs + evr: 1.46.5-8.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 2010585 checksum: sha256:48bd4d4dd081120bcc6ab772b930a150f30b2fc89a4a14a24220383d24a30b3f name: findutils evr: 1:4.8.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/gawk-5.1.0-6.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 3190934 + checksum: sha256:37571947707e835d36ceb5641b187aba13ef8f5f605a6762ce72aeea3e745b8d + name: gawk + evr: 5.1.0-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/gdbm-1.23-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1130147 + checksum: sha256:ad42264274c2a792220395a4dbe736a1de6100c4e14611707ec1dd447583271f + name: gdbm + evr: 1:1.23-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/gmp-6.2.0-13.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 2503825 + checksum: sha256:d0d8a795eea9ae555da63fbcfc3575425e86bb7e96d117b9ae2785b4f5e82f7c + name: gmp + evr: 1:6.2.0-13.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/grep-3.6-5.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 1620891 @@ -347,30 +1243,156 @@ arches: checksum: sha256:a05f582ec42e89258ee5e10af96dee4300bcb2a6a69a76bfb5b46f79e6a6a47b name: gzip evr: 1.12-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/k/keyutils-1.6.3-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 150790 + checksum: sha256:6afa567438acd0d3a6a66bc6a3c68ec2f4ae5ed9c7230c3f0478d2281a092688 + name: keyutils + evr: 1.6.3-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/k/krb5-1.21.1-9.el9_7.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 8950679 + checksum: sha256:060d98c68b453970fcb516ba38eb5b797e6f4e20e173e3b237c2ca36cc23a411 + name: krb5 + evr: 1.21.1-9.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/less-590-6.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 382338 checksum: sha256:4a5023846942905da4226503f6a9da91a66bf6c179dc21d2e4210b3371399b17 name: less evr: 590-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libarchive-3.5.3-9.el9_7.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 7061017 + checksum: sha256:69ee18f9881f3768c7b01d03185f3fba9637c0477e585a113fd3641c7dcd3d41 + name: libarchive + evr: 3.5.3-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 470599 + checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 + name: libcap-ng + evr: 0.8.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libevent-2.1.12-8.el9_4.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1123179 + checksum: sha256:8c00dc837b8685fc660cc0bcdfd4f533888facaa8c83655c26d2fb068cb7b135 + name: libevent + evr: 2.1.12-8.el9_4 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 1367398 checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 name: libffi evr: 3.4.2-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libidn2-2.3.0-7.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 2214169 + checksum: sha256:c27f21437a76f07b0ee9f4f7e61d621cbb9c483c14563b31e55e320d19df99a6 + name: libidn2 + evr: 2.3.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libpsl-0.21.1-5.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 9160109 + checksum: sha256:0325329a882e68a2f817bac959abe49abc67d3dac9381a5a02c006916a86f17c + name: libpsl + evr: 0.21.1-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 223978 + checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 + name: libsemanage + evr: 3.6-5.el9_6 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 473267 checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 name: libsigsegv evr: 2.13-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libssh-0.10.4-17.el9_7.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 666751 + checksum: sha256:b6704bba8787776c03b828b5b1de4e499f68818852e7b1aa08f5270724d5b832 + name: libssh + evr: 0.10.4-17.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-9.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 1895591 checksum: sha256:a3d9612fc631100fa0a528d7721bdee96acc33e35befb6a96544526eae169936 name: libtasn1 evr: 4.16.0-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libtool-2.4.6-46.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1002417 + checksum: sha256:1130b15333736ad40a18b5924959a8b0c6c151305bc252c0cbd5276432e10002 + name: libtool + evr: 2.4.6-46.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libunistring-0.9.10-15.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 2065802 + checksum: sha256:f6c329a60743d0d4955e070c5104407e47795b1ef617e7e59d052298961aec2b + name: libunistring + evr: 0.9.10-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libverto-0.3.2-3.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 396005 + checksum: sha256:a648c6c90c2cfcd6836681bff947499285656e60a5b2243a53b7d6590a8b73ee + name: libverto + evr: 0.3.2-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 543970 + checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 + name: libxcrypt + evr: 4.4.18-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libxml2-2.9.13-14.el9_7.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 3287727 + checksum: sha256:734596effcfb386afa2483354c318c31ea95b453f11a24e74158925c23b410bd + name: libxml2 + evr: 2.9.13-14.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/lua-5.4.4-4.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 521629 + checksum: sha256:18feaae23ff1b674acccf0f081f0d3c36ca482df0c468e9368d4f4432dff820c + name: lua + evr: 5.4.4-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 333421 + checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 + name: lz4 + evr: 1.9.3-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-7.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1556195 + checksum: sha256:1a6f60487d5ebb8998718c8246a49baf182e27318aa16e6a80b1ba7600b74e13 + name: mpfr + evr: 4.1.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/n/nghttp2-1.43.0-6.el9_7.1.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 4003759 + checksum: sha256:6a1a3c8ee5ed3ebd826d16e9432102657903fbc833002b61e26d251f903b7a6a + name: nghttp2 + evr: 1.43.0-6.el9_7.1 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/o/openldap-2.6.8-4.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 6548889 + checksum: sha256:0d21c12c55d40d1fc2f006c8ec187b5fcc799b794cfd31ed2d98434189c62800 + name: openldap + evr: 2.6.8-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 53417882 + checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb + name: openssl + evr: 1:3.5.1-7.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 89979766 + checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 + name: openssl-fips-provider + evr: 3.0.7-8.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 1027881 @@ -383,12 +1405,48 @@ arches: checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 name: pcre evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/popt-1.18-8.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 595630 + checksum: sha256:1c5d47907a884ec21001c4965013fa70bea3f770d385fdc897cb7afc1cf62fe6 + name: popt + evr: 1.18-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/publicsuffix-list-20210518-3.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 93646 + checksum: sha256:3e2e87867d4d3967d0cd00d1a80812438e5b20eda61b620fe8b62084e528490b + name: publicsuffix-list + evr: 20210518-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 3009702 + checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 + name: readline + evr: 8.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/r/rpm-4.16.1.3-39.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 4498489 + checksum: sha256:07d62b4b303a48f60845d4bae4d269bee8b2fc372e470cecc486d09a9685139f + name: rpm + evr: 4.16.1.3-39.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 1424192 checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 name: sed evr: 4.8-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1712227 + checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 + name: shadow-utils + evr: 2:4.9-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-9.el9_7.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 25109403 + checksum: sha256:1d89566fe2e33bbd86fe1d024e3dbb7e800aef138f8d8d99ab65b15a6f6c2c5a + name: sqlite + evr: 3.34.1-9.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 2282680 @@ -401,6 +1459,18 @@ arches: checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 name: xz evr: 5.2.5-8.el9_0 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 561153 + checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 + name: zlib + evr: 1.2.11-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 2378112 + checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e + name: zstd + evr: 1.5.5-1.el9 module_metadata: [] - arch: s390x packages: @@ -411,6 +1481,20 @@ arches: name: alternatives evr: 1.24-2.el9 sourcerpm: chkconfig-1.24-2.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 119512 + checksum: sha256:d511b2237d2487a68d30e13140cd203661fbe271b14f9ffa9b69263c148826c0 + name: audit-libs + evr: 3.1.5-7.el9 + sourcerpm: audit-3.1.5-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 43993 + checksum: sha256:1543fd23b32a7964ef5a570515a1905100122cc6a044d5959dbea65c51c93719 + name: bzip2-libs + evr: 1.0.8-10.el9_5 + sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 1072208 @@ -418,6 +1502,27 @@ arches: name: ca-certificates evr: 2025.2.80_v9.0.305-91.el9 sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 92511 + checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/curl-7.76.1-35.el9_7.3.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 297640 + checksum: sha256:28d114798ac0f43619f12602109f10d187e91935affa4c7a30ebd92c0c3e1920 + name: curl + evr: 7.76.1-35.el9_7.3 + sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 763345 + checksum: sha256:251bd589f10367ccfe138b453f9fd867fe7c256b3c04a6e5ad34c791e0add57b + name: cyrus-sasl-lib + evr: 2.1.27-22.el9 + sourcerpm: cyrus-sasl-2.1.27-22.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/f/findutils-4.8.0-7.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 562344 @@ -425,6 +1530,27 @@ arches: name: findutils evr: 1:4.8.0-7.el9 sourcerpm: findutils-4.8.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/gawk-5.1.0-6.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1029188 + checksum: sha256:d34fd3f586240f43f71bc74824ae513cba2e4a6812f0ebbd101122e7e99bafe8 + name: gawk + evr: 5.1.0-6.el9 + sourcerpm: gawk-5.1.0-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 60437 + checksum: sha256:675a6555f4e72fcfcbdd28581b0f285173649bce266c5cb87f84c22c16c0824b + name: gdbm-libs + evr: 1:1.23-1.el9 + sourcerpm: gdbm-1.23-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/gmp-6.2.0-13.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 296399 + checksum: sha256:5cb3d34e852eb7d37efcf92fecdcedd1ab9c39540ecaa1ae1e535c1d111abd09 + name: gmp + evr: 1:6.2.0-13.el9 + sourcerpm: gmp-6.2.0-13.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/grep-3.6-5.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 280207 @@ -439,6 +1565,20 @@ arches: name: gzip evr: 1.12-1.el9 sourcerpm: gzip-1.12-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 34136 + checksum: sha256:1bde6151bc8e8f34a36b853301245e153190867909db7f5a3261dfb50a95dac7 + name: keyutils-libs + evr: 1.6.3-1.el9 + sourcerpm: keyutils-1.6.3-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/k/krb5-libs-1.21.1-9.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 772268 + checksum: sha256:9e19a808237465db85c4c074a488d01b4de034c89100cedae5ee049a74b28408 + name: krb5-libs + evr: 1.21.1-9.el9_7 + sourcerpm: krb5-1.21.1-9.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/less-590-6.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 166698 @@ -446,6 +1586,48 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 400907 + checksum: sha256:6946b5f945d43f9973e373fa9bc55190a363c08a1712a6df44d4dc5617b992f3 + name: libarchive + evr: 3.5.3-9.el9_7 + sourcerpm: libarchive-3.5.3-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 329308 + checksum: sha256:ea47c24d8670923c31472fac1c2887ee8124b0a142ffb8a3c4953da8bf65c238 + name: libbrotli + evr: 1.0.9-9.el9_7 + sourcerpm: brotli-1.0.9-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 36348 + checksum: sha256:b41f491e2bf52e3f453219fd79e3ab33378b9c1e608b082e6d453b3ec7dc8d6b + name: libcap-ng + evr: 0.8.2-7.el9 + sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 26687 + checksum: sha256:8d3c7141a1fc45e35d781dacf595c1ddf98335d5e7c06862e288597fd51e6ca3 + name: libcom_err + evr: 1.46.5-8.el9 + sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libcurl-7.76.1-35.el9_7.3.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 284311 + checksum: sha256:8c27ace08b127c9ade5acfc6e6039482f96d6df1ea387e29170114129cc37798 + name: libcurl + evr: 7.76.1-35.el9_7.3 + sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 264391 + checksum: sha256:0abf1b13779d3aea3820b2ab76ce687f1f9675e531fb13bfff89ff97a288ba6c + name: libevent + evr: 2.1.12-8.el9_4 + sourcerpm: libevent-2.1.12-8.el9_4.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libffi-3.4.2-8.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 37310 @@ -453,6 +1635,34 @@ arches: name: libffi evr: 3.4.2-8.el9 sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libidn2-2.3.0-7.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 107023 + checksum: sha256:7d534eadb4f019135e9e52ca8c96d2c7584b89cb691814421a0cfbc87356e2c4 + name: libidn2 + evr: 2.3.0-7.el9 + sourcerpm: libidn2-2.3.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_7.1.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 78113 + checksum: sha256:106eb532962c17f6ece718221898c6b251a8b363334ab14acac2d779bb0a3bf0 + name: libnghttp2 + evr: 1.43.0-6.el9_7.1 + sourcerpm: nghttp2-1.43.0-6.el9_7.1.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libpsl-0.21.1-5.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 67494 + checksum: sha256:7d326d8b55ac070665c9b9d4ff1a4fc6077d807b276d5e763e5da01bb90e9e68 + name: libpsl + evr: 0.21.1-5.el9 + sourcerpm: libpsl-0.21.1-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 120733 + checksum: sha256:1b7217f14c6ffbd10a10e00a84563002b9d38d02138cb23f21b168bbeea197e9 + name: libsemanage + evr: 3.6-5.el9_6 + sourcerpm: libsemanage-3.6-5.el9_6.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libsigsegv-2.13-4.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 30531 @@ -460,6 +1670,20 @@ arches: name: libsigsegv evr: 2.13-4.el9 sourcerpm: libsigsegv-2.13-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libssh-0.10.4-17.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 205726 + checksum: sha256:8dde249ae04dafa3fbd656472eef30b80173f95bea445fc36919c0f797837469 + name: libssh + evr: 0.10.4-17.el9_7 + sourcerpm: libssh-0.10.4-17.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libssh-config-0.10.4-17.el9_7.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 8268 + checksum: sha256:9815db066478c3b1bdd5367de09e0aedf465127716358a8877990736589c6078 + name: libssh-config + evr: 0.10.4-17.el9_7 + sourcerpm: libssh-0.10.4-17.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 78514 @@ -467,6 +1691,97 @@ arches: name: libtasn1 evr: 4.16.0-9.el9 sourcerpm: libtasn1-4.16.0-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libtool-ltdl-2.4.6-46.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 38223 + checksum: sha256:eb4af423c05fa567c3886feb8598da24a0c31de2010aa92ea21b871fbb9f8e31 + name: libtool-ltdl + evr: 2.4.6-46.el9 + sourcerpm: libtool-2.4.6-46.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libunistring-0.9.10-15.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 504493 + checksum: sha256:66cbdef59dc780f9d93d9c32bb4aeab799fbe0cd477b9052cd5e6543b6668f19 + name: libunistring + evr: 0.9.10-15.el9 + sourcerpm: libunistring-0.9.10-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libverto-0.3.2-3.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 24610 + checksum: sha256:57e49939ac0d2c34764d60a7ea12391644da135dfb8d23231a75eff334bde1f2 + name: libverto + evr: 0.3.2-3.el9 + sourcerpm: libverto-0.3.2-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 125532 + checksum: sha256:c5b89459884f858b3527c879cda2b0576fa27b7e1e5005a98f2cab573291f979 + name: libxcrypt + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libxml2-2.9.13-14.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 726738 + checksum: sha256:a50220c3501846b0b2ca7c23619448b91cfe369477f15107989f4a0956b4d1b4 + name: libxml2 + evr: 2.9.13-14.el9_7 + sourcerpm: libxml2-2.9.13-14.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libzstd-1.5.5-1.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 283786 + checksum: sha256:168d08a885a564418b39c075756bbe77fd2f06ad501d7a61b7ac72cc33152e93 + name: libzstd + evr: 1.5.5-1.el9 + sourcerpm: zstd-1.5.5-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/lua-libs-5.4.4-4.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 133375 + checksum: sha256:67f9ef92d9e51e4dedcd291105b271e83a1fffa11e5801f6eb24f447aebafcac + name: lua-libs + evr: 5.4.4-4.el9 + sourcerpm: lua-5.4.4-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 71491 + checksum: sha256:c03955837786dadb6b988a7554f30e03e9a536f322921934a1f590db8a142c1d + name: lz4-libs + evr: 1.9.3-5.el9 + sourcerpm: lz4-1.9.3-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/m/mpfr-4.1.0-7.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 261260 + checksum: sha256:fad3617d5fb5bb5213df4251eb36b1a41ddd570a79f225e8e7cb7b6c2e8ccb58 + name: mpfr + evr: 4.1.0-7.el9 + sourcerpm: mpfr-4.1.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openldap-2.6.8-4.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 291034 + checksum: sha256:feb41164b97dac914b237d69095f2bf4f120b4518c0909e66d7d3e41a0e229dc + name: openldap + evr: 2.6.8-4.el9 + sourcerpm: openldap-2.6.8-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 9381 + checksum: sha256:8a4bc9f39ece3d6841a46681c0cdc7ca8510590057e486939b6d0cc1aace958d + name: openssl-fips-provider + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-8.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 314467 + checksum: sha256:612f812c248e7cf6d86de00a2e670d74233bd1da20d45a68dd09527dc0547f10 + name: openssl-fips-provider-so + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 2038064 + checksum: sha256:51f30f99a5529a3413f13d5a2ddf41be7c06fc4528b842d320e6f68bb82e4b20 + name: openssl-libs + evr: 1:3.5.1-7.el9_7 + sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 554452 @@ -488,6 +1803,41 @@ arches: name: pcre evr: 8.44-4.el9 sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/popt-1.18-8.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 71507 + checksum: sha256:f9b49ecc69a43d8fb077397dc245a912b91335caa7cdef78fa4f670d9faa05a8 + name: popt + evr: 1.18-8.el9 + sourcerpm: popt-1.18-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 60882 + checksum: sha256:e6ec3390a736b085f403168c512a6b2b6f8e12a8fd5a4459f1c7dbbff2b67c33 + name: publicsuffix-list-dafsa + evr: 20210518-3.el9 + sourcerpm: publicsuffix-list-20210518-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/r/readline-8.1-4.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 219915 + checksum: sha256:82eb7921f4285a5e73e8ffb73d399637784d3059e8cda6c8b92c2522e81f6a0d + name: readline + evr: 8.1-4.el9 + sourcerpm: readline-8.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/r/rpm-4.16.1.3-39.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 545413 + checksum: sha256:b5cd01c30e5b4ee80c3d4e0de7c13e7d4395fffc34eb4402fa01e5fb0a42059c + name: rpm + evr: 4.16.1.3-39.el9 + sourcerpm: rpm-4.16.1.3-39.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/r/rpm-libs-4.16.1.3-39.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 311459 + checksum: sha256:5651c9b94bec1f3dc84b2b0b1e8292925d27a04cc4a7434418f1e1b58376547b + name: rpm-libs + evr: 4.16.1.3-39.el9 + sourcerpm: rpm-4.16.1.3-39.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/sed-4.8-9.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 316228 @@ -495,6 +1845,20 @@ arches: name: sed evr: 4.8-9.el9 sourcerpm: sed-4.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/shadow-utils-4.9-15.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1242982 + checksum: sha256:2eb4f76ccae0aa1a7c3c558a574ee7dae2541fc65004122035e5348dbd50a51a + name: shadow-utils + evr: 2:4.9-15.el9 + sourcerpm: shadow-utils-4.9-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/sqlite-libs-3.34.1-9.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 646041 + checksum: sha256:7cca5b2433ae78c47ae88971f1e3cd5332d606c17200d785fe0d712e1abcbfdf + name: sqlite-libs + evr: 3.34.1-9.el9_7 + sourcerpm: sqlite-3.34.1-9.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/t/tar-1.34-9.el9_7.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 900131 @@ -516,7 +1880,32 @@ arches: name: xz-libs evr: 5.2.5-8.el9_0 sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/z/zlib-1.2.11-40.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 100230 + checksum: sha256:451ee05b1bb32a5d5da936d9c4da4b26e99ba8787e8e9f22e2c9a9ceca931507 + name: zlib + evr: 1.2.11-40.el9 + sourcerpm: zlib-1.2.11-40.el9.src.rpm source: + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1268651 + checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb + name: audit + evr: 3.1.5-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/b/brotli-1.0.9-9.el9_7.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 517498 + checksum: sha256:814868e0bec831c79d3e12ff76d31e06e5e62c462a1a4b6607b1f3cab7014438 + name: brotli + evr: 1.0.9-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 824335 + checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 + name: bzip2 + evr: 1.0.8-10.el9_5 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 711648 @@ -529,12 +1918,54 @@ arches: checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc name: chkconfig evr: 1.24-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 107074 + checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/curl-7.76.1-35.el9_7.3.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 2564300 + checksum: sha256:670afd4496d5eec73b99528af258cf87be65cf4567c9e7c76a3c7508af3e6687 + name: curl + evr: 7.76.1-35.el9_7.3 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/cyrus-sasl-2.1.27-22.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 4025677 + checksum: sha256:f4b3d139bfb74a2d628592c5696a003bc8c4896711386b1bbc3dffdf8a33883e + name: cyrus-sasl + evr: 2.1.27-22.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/e/e2fsprogs-1.46.5-8.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 7416727 + checksum: sha256:5c613445f928889a52a0a82f4ed866502e82c99b0c983024ab97421391abd061 + name: e2fsprogs + evr: 1.46.5-8.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 2010585 checksum: sha256:48bd4d4dd081120bcc6ab772b930a150f30b2fc89a4a14a24220383d24a30b3f name: findutils evr: 1:4.8.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/gawk-5.1.0-6.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 3190934 + checksum: sha256:37571947707e835d36ceb5641b187aba13ef8f5f605a6762ce72aeea3e745b8d + name: gawk + evr: 5.1.0-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/gdbm-1.23-1.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1130147 + checksum: sha256:ad42264274c2a792220395a4dbe736a1de6100c4e14611707ec1dd447583271f + name: gdbm + evr: 1:1.23-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/gmp-6.2.0-13.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 2503825 + checksum: sha256:d0d8a795eea9ae555da63fbcfc3575425e86bb7e96d117b9ae2785b4f5e82f7c + name: gmp + evr: 1:6.2.0-13.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/grep-3.6-5.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 1620891 @@ -547,30 +1978,156 @@ arches: checksum: sha256:a05f582ec42e89258ee5e10af96dee4300bcb2a6a69a76bfb5b46f79e6a6a47b name: gzip evr: 1.12-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/k/keyutils-1.6.3-1.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 150790 + checksum: sha256:6afa567438acd0d3a6a66bc6a3c68ec2f4ae5ed9c7230c3f0478d2281a092688 + name: keyutils + evr: 1.6.3-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/k/krb5-1.21.1-9.el9_7.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 8950679 + checksum: sha256:060d98c68b453970fcb516ba38eb5b797e6f4e20e173e3b237c2ca36cc23a411 + name: krb5 + evr: 1.21.1-9.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/less-590-6.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 382338 checksum: sha256:4a5023846942905da4226503f6a9da91a66bf6c179dc21d2e4210b3371399b17 name: less evr: 590-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libarchive-3.5.3-9.el9_7.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 7061017 + checksum: sha256:69ee18f9881f3768c7b01d03185f3fba9637c0477e585a113fd3641c7dcd3d41 + name: libarchive + evr: 3.5.3-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 470599 + checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 + name: libcap-ng + evr: 0.8.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libevent-2.1.12-8.el9_4.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1123179 + checksum: sha256:8c00dc837b8685fc660cc0bcdfd4f533888facaa8c83655c26d2fb068cb7b135 + name: libevent + evr: 2.1.12-8.el9_4 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 1367398 checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 name: libffi evr: 3.4.2-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libidn2-2.3.0-7.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 2214169 + checksum: sha256:c27f21437a76f07b0ee9f4f7e61d621cbb9c483c14563b31e55e320d19df99a6 + name: libidn2 + evr: 2.3.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libpsl-0.21.1-5.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 9160109 + checksum: sha256:0325329a882e68a2f817bac959abe49abc67d3dac9381a5a02c006916a86f17c + name: libpsl + evr: 0.21.1-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 223978 + checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 + name: libsemanage + evr: 3.6-5.el9_6 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 473267 checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 name: libsigsegv evr: 2.13-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libssh-0.10.4-17.el9_7.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 666751 + checksum: sha256:b6704bba8787776c03b828b5b1de4e499f68818852e7b1aa08f5270724d5b832 + name: libssh + evr: 0.10.4-17.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-9.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 1895591 checksum: sha256:a3d9612fc631100fa0a528d7721bdee96acc33e35befb6a96544526eae169936 name: libtasn1 evr: 4.16.0-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libtool-2.4.6-46.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1002417 + checksum: sha256:1130b15333736ad40a18b5924959a8b0c6c151305bc252c0cbd5276432e10002 + name: libtool + evr: 2.4.6-46.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libunistring-0.9.10-15.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 2065802 + checksum: sha256:f6c329a60743d0d4955e070c5104407e47795b1ef617e7e59d052298961aec2b + name: libunistring + evr: 0.9.10-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libverto-0.3.2-3.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 396005 + checksum: sha256:a648c6c90c2cfcd6836681bff947499285656e60a5b2243a53b7d6590a8b73ee + name: libverto + evr: 0.3.2-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 543970 + checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 + name: libxcrypt + evr: 4.4.18-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libxml2-2.9.13-14.el9_7.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 3287727 + checksum: sha256:734596effcfb386afa2483354c318c31ea95b453f11a24e74158925c23b410bd + name: libxml2 + evr: 2.9.13-14.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/lua-5.4.4-4.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 521629 + checksum: sha256:18feaae23ff1b674acccf0f081f0d3c36ca482df0c468e9368d4f4432dff820c + name: lua + evr: 5.4.4-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 333421 + checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 + name: lz4 + evr: 1.9.3-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-7.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1556195 + checksum: sha256:1a6f60487d5ebb8998718c8246a49baf182e27318aa16e6a80b1ba7600b74e13 + name: mpfr + evr: 4.1.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/n/nghttp2-1.43.0-6.el9_7.1.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 4003759 + checksum: sha256:6a1a3c8ee5ed3ebd826d16e9432102657903fbc833002b61e26d251f903b7a6a + name: nghttp2 + evr: 1.43.0-6.el9_7.1 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/o/openldap-2.6.8-4.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 6548889 + checksum: sha256:0d21c12c55d40d1fc2f006c8ec187b5fcc799b794cfd31ed2d98434189c62800 + name: openldap + evr: 2.6.8-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 53417882 + checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb + name: openssl + evr: 1:3.5.1-7.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 89979766 + checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 + name: openssl-fips-provider + evr: 3.0.7-8.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 1027881 @@ -583,12 +2140,48 @@ arches: checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 name: pcre evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/popt-1.18-8.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 595630 + checksum: sha256:1c5d47907a884ec21001c4965013fa70bea3f770d385fdc897cb7afc1cf62fe6 + name: popt + evr: 1.18-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/publicsuffix-list-20210518-3.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 93646 + checksum: sha256:3e2e87867d4d3967d0cd00d1a80812438e5b20eda61b620fe8b62084e528490b + name: publicsuffix-list + evr: 20210518-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 3009702 + checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 + name: readline + evr: 8.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/r/rpm-4.16.1.3-39.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 4498489 + checksum: sha256:07d62b4b303a48f60845d4bae4d269bee8b2fc372e470cecc486d09a9685139f + name: rpm + evr: 4.16.1.3-39.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 1424192 checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 name: sed evr: 4.8-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1712227 + checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 + name: shadow-utils + evr: 2:4.9-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-9.el9_7.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 25109403 + checksum: sha256:1d89566fe2e33bbd86fe1d024e3dbb7e800aef138f8d8d99ab65b15a6f6c2c5a + name: sqlite + evr: 3.34.1-9.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 2282680 @@ -601,6 +2194,18 @@ arches: checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 name: xz evr: 5.2.5-8.el9_0 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 561153 + checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 + name: zlib + evr: 1.2.11-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 2378112 + checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e + name: zstd + evr: 1.5.5-1.el9 module_metadata: [] - arch: x86_64 packages: @@ -611,6 +2216,20 @@ arches: name: alternatives evr: 1.24-2.el9 sourcerpm: chkconfig-1.24-2.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 121610 + checksum: sha256:3a2fa9a5bcb190840b9928f1ce18b5b5a11b5628abe412ef7d130f3584af12d2 + name: audit-libs + evr: 3.1.5-7.el9 + sourcerpm: audit-3.1.5-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 42618 + checksum: sha256:5058aca2a4c5ac3356fb42e6e423e4101bc29199e0ae80d79d3fc564ba9d7c84 + name: bzip2-libs + evr: 1.0.8-10.el9_5 + sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 1072208 @@ -618,6 +2237,27 @@ arches: name: ca-certificates evr: 2025.2.80_v9.0.305-91.el9 sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 92511 + checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/curl-7.76.1-35.el9_7.3.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 299410 + checksum: sha256:5b01bc58d38b77f3ff9a8c88a512b9a35c5a7fbecb6e3f734212008ea3bdc30b + name: curl + evr: 7.76.1-35.el9_7.3 + sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 786202 + checksum: sha256:a85ebdee7a9a49990f87e4709c368212e6a54ecf18c88a3dd54d823a82443898 + name: cyrus-sasl-lib + evr: 2.1.27-22.el9 + sourcerpm: cyrus-sasl-2.1.27-22.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/f/findutils-4.8.0-7.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 563531 @@ -625,6 +2265,27 @@ arches: name: findutils evr: 1:4.8.0-7.el9 sourcerpm: findutils-4.8.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/gawk-5.1.0-6.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 1045534 + checksum: sha256:99fda6725a2c668bae29fbab74d1b347e074f4e8c8ed18d656cb928fb6fc92b7 + name: gawk + evr: 5.1.0-6.el9 + sourcerpm: gawk-5.1.0-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 60152 + checksum: sha256:c8b8346a98d921206666ce740a3647a52ad7a87c2d01d73166165b3e9a789a6c + name: gdbm-libs + evr: 1:1.23-1.el9 + sourcerpm: gdbm-1.23-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/gmp-6.2.0-13.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 326840 + checksum: sha256:d4529445e30b7eb9a8225b0539f70d26d585d7fe306296f948ea73114d1c171f + name: gmp + evr: 1:6.2.0-13.el9 + sourcerpm: gmp-6.2.0-13.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/grep-3.6-5.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 279174 @@ -639,6 +2300,20 @@ arches: name: gzip evr: 1.12-1.el9 sourcerpm: gzip-1.12-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 34363 + checksum: sha256:96d75824948387a884d206865db534cd3d46f32422efcb020c20060b59edb27c + name: keyutils-libs + evr: 1.6.3-1.el9 + sourcerpm: keyutils-1.6.3-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/k/krb5-libs-1.21.1-9.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 790457 + checksum: sha256:ed93cda537e6778606b009b12d10c7fb06a1ed3caee74cf2c9a4b4808e569b4a + name: krb5-libs + evr: 1.21.1-9.el9_7 + sourcerpm: krb5-1.21.1-9.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/less-590-6.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 166025 @@ -646,6 +2321,48 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 402750 + checksum: sha256:c59dce1d4640c2b0caa720d8b32946a13ece7e0c23c2516f87daf0ba16fe96e5 + name: libarchive + evr: 3.5.3-9.el9_7 + sourcerpm: libarchive-3.5.3-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 326278 + checksum: sha256:81096e6aed022489306e2fe1d1496b2b689d8f0bf6c70a94b5bddb82356eeda1 + name: libbrotli + evr: 1.0.9-9.el9_7 + sourcerpm: brotli-1.0.9-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 36752 + checksum: sha256:ebddfc188d1ddbb0d6a238583cbc02dcb9fc0bd063a850b22d48980899976628 + name: libcap-ng + evr: 0.8.2-7.el9 + sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 26980 + checksum: sha256:b7593ee2d841c69573d8ed553b7416ef727b2c77c0473416a5dadf4b567bf547 + name: libcom_err + evr: 1.46.5-8.el9 + sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-35.el9_7.3.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 289642 + checksum: sha256:76a6cc994c5b63968854eed67230e73c8fd70b9f59c9f274c3042a85fcbe490f + name: libcurl + evr: 7.76.1-35.el9_7.3 + sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 272588 + checksum: sha256:072426910a254b797bbe977b3397ab90513911d020580a0135179f700a48df44 + name: libevent + evr: 2.1.12-8.el9_4 + sourcerpm: libevent-2.1.12-8.el9_4.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libffi-3.4.2-8.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 40619 @@ -653,6 +2370,34 @@ arches: name: libffi evr: 3.4.2-8.el9 sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 107099 + checksum: sha256:055f4ce6b721be7138dc2e45a6586412c65508acea3fe385a2655c129fe264f9 + name: libidn2 + evr: 2.3.0-7.el9 + sourcerpm: libidn2-2.3.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_7.1.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 80370 + checksum: sha256:a3df6142080db5d53d1a50cdc64ab7fef0b3cf6bfeb7100a6ffee10d1b9664da + name: libnghttp2 + evr: 1.43.0-6.el9_7.1 + sourcerpm: nghttp2-1.43.0-6.el9_7.1.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 67454 + checksum: sha256:ad1a62ef07682bb64a476c1a49f5cfc7abc9beb44775e7e511bf737e9a6bf99d + name: libpsl + evr: 0.21.1-5.el9 + sourcerpm: libpsl-0.21.1-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 123449 + checksum: sha256:7ac29f46714cd762f18a52e9807fd1766b0cf9e0388aa3d9befaabf8785a01e3 + name: libsemanage + evr: 3.6-5.el9_6 + sourcerpm: libsemanage-3.6-5.el9_6.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 30681 @@ -660,6 +2405,20 @@ arches: name: libsigsegv evr: 2.13-4.el9 sourcerpm: libsigsegv-2.13-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-17.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 218882 + checksum: sha256:470f7067968489f9ec3df43266032241563d3cfa577ce2a5b7375a0660833005 + name: libssh + evr: 0.10.4-17.el9_7 + sourcerpm: libssh-0.10.4-17.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-17.el9_7.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 8268 + checksum: sha256:9815db066478c3b1bdd5367de09e0aedf465127716358a8877990736589c6078 + name: libssh-config + evr: 0.10.4-17.el9_7 + sourcerpm: libssh-0.10.4-17.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 78596 @@ -667,6 +2426,97 @@ arches: name: libtasn1 evr: 4.16.0-9.el9 sourcerpm: libtasn1-4.16.0-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libtool-ltdl-2.4.6-46.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 38043 + checksum: sha256:44f7303229bdb4c2975f9829e3dd13dc7984e2cb53ef0f85baf894b39f605c38 + name: libtool-ltdl + evr: 2.4.6-46.el9 + sourcerpm: libtool-2.4.6-46.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 510558 + checksum: sha256:6477fb3c3285158f676360e228057e13dc6e983f453c7c74ed4ab140357f9a0d + name: libunistring + evr: 0.9.10-15.el9 + sourcerpm: libunistring-0.9.10-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libverto-0.3.2-3.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 25042 + checksum: sha256:7008029afd91af33ca17a22e6eb4ba792fd9b32bee8fb613c79c1527fa6f589a + name: libverto + evr: 0.3.2-3.el9 + sourcerpm: libverto-0.3.2-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 122599 + checksum: sha256:a50bb26a28ee7e6379c86b5b91285299b71569fa87ea968d800a56090b7a179d + name: libxcrypt + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 764632 + checksum: sha256:c6a5c5b2d2d40fe50c93ee5166517d924f619ad59b99a5f9cebcfc649c80ddd7 + name: libxml2 + evr: 2.9.13-14.el9_7 + sourcerpm: libxml2-2.9.13-14.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 304135 + checksum: sha256:d8a149f0d8f217126642cc4b40199d631b940f7d227191cc2179f3158fd47f9e + name: libzstd + evr: 1.5.5-1.el9 + sourcerpm: zstd-1.5.5-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/lua-libs-5.4.4-4.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 135403 + checksum: sha256:9c6c7abe93691e0a6be505199cccab5a41f92ada084faa4f1045ce3932b34d05 + name: lua-libs + evr: 5.4.4-4.el9 + sourcerpm: lua-5.4.4-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 70922 + checksum: sha256:9658da838021711f687cf283368664984bfb1c8b9176897d7d477a724a11a731 + name: lz4-libs + evr: 1.9.3-5.el9 + sourcerpm: lz4-1.9.3-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/m/mpfr-4.1.0-7.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 337166 + checksum: sha256:cf60adcc7a5f0cb469e6f066a1bdc62ae9af7c06305c76c15884b59df7f93274 + name: mpfr + evr: 4.1.0-7.el9 + sourcerpm: mpfr-4.1.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openldap-2.6.8-4.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 296805 + checksum: sha256:68df8cf8fb4d54c2f1681fa9a030f7af3b179e6dd4fd10ffd7532824121ea74c + name: openldap + evr: 2.6.8-4.el9 + sourcerpm: openldap-2.6.8-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 9402 + checksum: sha256:bbf25303def8e1270675531c47bdad432f6ad8ef4c327556ae65bd6abaf8edb5 + name: openssl-fips-provider + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-8.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 589811 + checksum: sha256:ab48d98504fae6f8636de027a1ee06d21d5e9c27b7beb247017a6fe55567c5e9 + name: openssl-fips-provider-so + evr: 3.0.7-8.el9 + sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 2422039 + checksum: sha256:150962b6c8dbde0e36d11f5e7601130a2d4a9e40aa5e35cd5baa606e9d3f18b7 + name: openssl-libs + evr: 1:3.5.1-7.el9_7 + sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 548533 @@ -688,6 +2538,41 @@ arches: name: pcre evr: 8.44-4.el9 sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/popt-1.18-8.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 70397 + checksum: sha256:1649240d2a69e13d3b5ddc5c5e63c5d64a77930578a6bc4c3aca32f00423cd87 + name: popt + evr: 1.18-8.el9 + sourcerpm: popt-1.18-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 60882 + checksum: sha256:e6ec3390a736b085f403168c512a6b2b6f8e12a8fd5a4459f1c7dbbff2b67c33 + name: publicsuffix-list-dafsa + evr: 20210518-3.el9 + sourcerpm: publicsuffix-list-20210518-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/r/readline-8.1-4.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 220174 + checksum: sha256:01bf315b3bc44c28515c4d33d49173b23d7979d2a09b7b15f749d434b60851e6 + name: readline + evr: 8.1-4.el9 + sourcerpm: readline-8.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/r/rpm-4.16.1.3-39.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 547965 + checksum: sha256:45d0c44a93c45dbf6c0915ca5652d7d62a5a2a14cfc9d03136b730999caef451 + name: rpm + evr: 4.16.1.3-39.el9 + sourcerpm: rpm-4.16.1.3-39.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/r/rpm-libs-4.16.1.3-39.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 314790 + checksum: sha256:6a4c641361b72c7769b6422b06b638d73bb1c45a921f75e638fa7025d5151bc6 + name: rpm-libs + evr: 4.16.1.3-39.el9 + sourcerpm: rpm-4.16.1.3-39.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/sed-4.8-9.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 316395 @@ -695,6 +2580,20 @@ arches: name: sed evr: 4.8-9.el9 sourcerpm: sed-4.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/shadow-utils-4.9-15.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 1250789 + checksum: sha256:297d8d9785fb98fd8e0c13eec05ee2da08db24e4e6099730b18f6a820b851c51 + name: shadow-utils + evr: 2:4.9-15.el9 + sourcerpm: shadow-utils-4.9-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/sqlite-libs-3.34.1-9.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 657343 + checksum: sha256:ad9870b2abc325496c80fa3a7497315d91632e583ff22c9d8cfc556119a77f8a + name: sqlite-libs + evr: 3.34.1-9.el9_7 + sourcerpm: sqlite-3.34.1-9.el9_7.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/t/tar-1.34-9.el9_7.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 906521 @@ -716,7 +2615,32 @@ arches: name: xz-libs evr: 5.2.5-8.el9_0 sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/z/zlib-1.2.11-40.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 95708 + checksum: sha256:baf95ffbf40ee014135f16fe33e343faf7ff1ca06509fd97cd988e6afeabf670 + name: zlib + evr: 1.2.11-40.el9 + sourcerpm: zlib-1.2.11-40.el9.src.rpm source: + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1268651 + checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb + name: audit + evr: 3.1.5-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/b/brotli-1.0.9-9.el9_7.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 517498 + checksum: sha256:814868e0bec831c79d3e12ff76d31e06e5e62c462a1a4b6607b1f3cab7014438 + name: brotli + evr: 1.0.9-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 824335 + checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 + name: bzip2 + evr: 1.0.8-10.el9_5 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 711648 @@ -729,12 +2653,54 @@ arches: checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc name: chkconfig evr: 1.24-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 107074 + checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa + name: crypto-policies + evr: 20250905-1.git377cc42.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/curl-7.76.1-35.el9_7.3.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 2564300 + checksum: sha256:670afd4496d5eec73b99528af258cf87be65cf4567c9e7c76a3c7508af3e6687 + name: curl + evr: 7.76.1-35.el9_7.3 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/cyrus-sasl-2.1.27-22.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 4025677 + checksum: sha256:f4b3d139bfb74a2d628592c5696a003bc8c4896711386b1bbc3dffdf8a33883e + name: cyrus-sasl + evr: 2.1.27-22.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/e/e2fsprogs-1.46.5-8.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 7416727 + checksum: sha256:5c613445f928889a52a0a82f4ed866502e82c99b0c983024ab97421391abd061 + name: e2fsprogs + evr: 1.46.5-8.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 2010585 checksum: sha256:48bd4d4dd081120bcc6ab772b930a150f30b2fc89a4a14a24220383d24a30b3f name: findutils evr: 1:4.8.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/gawk-5.1.0-6.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 3190934 + checksum: sha256:37571947707e835d36ceb5641b187aba13ef8f5f605a6762ce72aeea3e745b8d + name: gawk + evr: 5.1.0-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/gdbm-1.23-1.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1130147 + checksum: sha256:ad42264274c2a792220395a4dbe736a1de6100c4e14611707ec1dd447583271f + name: gdbm + evr: 1:1.23-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/gmp-6.2.0-13.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 2503825 + checksum: sha256:d0d8a795eea9ae555da63fbcfc3575425e86bb7e96d117b9ae2785b4f5e82f7c + name: gmp + evr: 1:6.2.0-13.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/grep-3.6-5.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 1620891 @@ -747,30 +2713,156 @@ arches: checksum: sha256:a05f582ec42e89258ee5e10af96dee4300bcb2a6a69a76bfb5b46f79e6a6a47b name: gzip evr: 1.12-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/k/keyutils-1.6.3-1.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 150790 + checksum: sha256:6afa567438acd0d3a6a66bc6a3c68ec2f4ae5ed9c7230c3f0478d2281a092688 + name: keyutils + evr: 1.6.3-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/k/krb5-1.21.1-9.el9_7.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 8950679 + checksum: sha256:060d98c68b453970fcb516ba38eb5b797e6f4e20e173e3b237c2ca36cc23a411 + name: krb5 + evr: 1.21.1-9.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/less-590-6.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 382338 checksum: sha256:4a5023846942905da4226503f6a9da91a66bf6c179dc21d2e4210b3371399b17 name: less evr: 590-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libarchive-3.5.3-9.el9_7.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 7061017 + checksum: sha256:69ee18f9881f3768c7b01d03185f3fba9637c0477e585a113fd3641c7dcd3d41 + name: libarchive + evr: 3.5.3-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 470599 + checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 + name: libcap-ng + evr: 0.8.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libevent-2.1.12-8.el9_4.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1123179 + checksum: sha256:8c00dc837b8685fc660cc0bcdfd4f533888facaa8c83655c26d2fb068cb7b135 + name: libevent + evr: 2.1.12-8.el9_4 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 1367398 checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 name: libffi evr: 3.4.2-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libidn2-2.3.0-7.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 2214169 + checksum: sha256:c27f21437a76f07b0ee9f4f7e61d621cbb9c483c14563b31e55e320d19df99a6 + name: libidn2 + evr: 2.3.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libpsl-0.21.1-5.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 9160109 + checksum: sha256:0325329a882e68a2f817bac959abe49abc67d3dac9381a5a02c006916a86f17c + name: libpsl + evr: 0.21.1-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 223978 + checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 + name: libsemanage + evr: 3.6-5.el9_6 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 473267 checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 name: libsigsegv evr: 2.13-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libssh-0.10.4-17.el9_7.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 666751 + checksum: sha256:b6704bba8787776c03b828b5b1de4e499f68818852e7b1aa08f5270724d5b832 + name: libssh + evr: 0.10.4-17.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-9.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 1895591 checksum: sha256:a3d9612fc631100fa0a528d7721bdee96acc33e35befb6a96544526eae169936 name: libtasn1 evr: 4.16.0-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libtool-2.4.6-46.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1002417 + checksum: sha256:1130b15333736ad40a18b5924959a8b0c6c151305bc252c0cbd5276432e10002 + name: libtool + evr: 2.4.6-46.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libunistring-0.9.10-15.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 2065802 + checksum: sha256:f6c329a60743d0d4955e070c5104407e47795b1ef617e7e59d052298961aec2b + name: libunistring + evr: 0.9.10-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libverto-0.3.2-3.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 396005 + checksum: sha256:a648c6c90c2cfcd6836681bff947499285656e60a5b2243a53b7d6590a8b73ee + name: libverto + evr: 0.3.2-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 543970 + checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 + name: libxcrypt + evr: 4.4.18-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libxml2-2.9.13-14.el9_7.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 3287727 + checksum: sha256:734596effcfb386afa2483354c318c31ea95b453f11a24e74158925c23b410bd + name: libxml2 + evr: 2.9.13-14.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/lua-5.4.4-4.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 521629 + checksum: sha256:18feaae23ff1b674acccf0f081f0d3c36ca482df0c468e9368d4f4432dff820c + name: lua + evr: 5.4.4-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 333421 + checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 + name: lz4 + evr: 1.9.3-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-7.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1556195 + checksum: sha256:1a6f60487d5ebb8998718c8246a49baf182e27318aa16e6a80b1ba7600b74e13 + name: mpfr + evr: 4.1.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/n/nghttp2-1.43.0-6.el9_7.1.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 4003759 + checksum: sha256:6a1a3c8ee5ed3ebd826d16e9432102657903fbc833002b61e26d251f903b7a6a + name: nghttp2 + evr: 1.43.0-6.el9_7.1 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/o/openldap-2.6.8-4.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 6548889 + checksum: sha256:0d21c12c55d40d1fc2f006c8ec187b5fcc799b794cfd31ed2d98434189c62800 + name: openldap + evr: 2.6.8-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 53417882 + checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb + name: openssl + evr: 1:3.5.1-7.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 89979766 + checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 + name: openssl-fips-provider + evr: 3.0.7-8.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 1027881 @@ -783,12 +2875,48 @@ arches: checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 name: pcre evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/popt-1.18-8.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 595630 + checksum: sha256:1c5d47907a884ec21001c4965013fa70bea3f770d385fdc897cb7afc1cf62fe6 + name: popt + evr: 1.18-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/publicsuffix-list-20210518-3.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 93646 + checksum: sha256:3e2e87867d4d3967d0cd00d1a80812438e5b20eda61b620fe8b62084e528490b + name: publicsuffix-list + evr: 20210518-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 3009702 + checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 + name: readline + evr: 8.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/r/rpm-4.16.1.3-39.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 4498489 + checksum: sha256:07d62b4b303a48f60845d4bae4d269bee8b2fc372e470cecc486d09a9685139f + name: rpm + evr: 4.16.1.3-39.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 1424192 checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 name: sed evr: 4.8-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1712227 + checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 + name: shadow-utils + evr: 2:4.9-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-9.el9_7.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 25109403 + checksum: sha256:1d89566fe2e33bbd86fe1d024e3dbb7e800aef138f8d8d99ab65b15a6f6c2c5a + name: sqlite + evr: 3.34.1-9.el9_7 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 2282680 @@ -801,4 +2929,16 @@ arches: checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 name: xz evr: 5.2.5-8.el9_0 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 561153 + checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 + name: zlib + evr: 1.2.11-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 2378112 + checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e + name: zstd + evr: 1.5.5-1.el9 module_metadata: [] From 05ab07169fcc70a7dfeb2f0fca2c35e9f05095e7 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Thu, 23 Apr 2026 14:23:08 +0200 Subject: [PATCH 15/37] fix: Use sclorg postgres base image for scanner-db to fix timezone data Problem: Scanner-DB pods were failing to start with error: FATAL: configuration file "/etc/postgresql.conf" contains errors LOG: invalid value for parameter "log_timezone": "UTC" LOG: could not open directory "/usr/share/zoneinfo": No such file or directory Root Cause: The ubi9-micro base image with manually installed PostgreSQL was missing /usr/share/zoneinfo directory that PostgreSQL requires. Solution: Switch Dockerfile and Dockerfile.slim to use quay.io/sclorg/postgresql-15-c9s base image, matching the pattern from stackrox/stackrox commit c92e85134. The sclorg image includes all required timezone data and dependencies. Note: konflux.Dockerfile continues to use registry.redhat.io/rhel9/postgresql-15 which has its own timezone data handling. This simplifies the regular Dockerfiles by: - Eliminating multi-stage ubi9-micro builds - Removing RPM downloads and GPG key handling (download.sh, PGDG-RPM-GPG-KEY-RHEL) - Using existing postgres user (modified to UID/GID 70) - Adding chown for sclorg-specific directories (/var/lib/pgsql, /opt/app-root) Co-Authored-By: Claude Sonnet 4.5 --- image/db/rhel/Dockerfile | 98 +++------------ image/db/rhel/Dockerfile.slim | 113 ++++-------------- image/db/rhel/scripts/download.sh | 38 ------ .../db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL | 41 ------- 4 files changed, 39 insertions(+), 251 deletions(-) delete mode 100755 image/db/rhel/scripts/download.sh delete mode 100644 image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL diff --git a/image/db/rhel/Dockerfile b/image/db/rhel/Dockerfile index d7152a597..c5763b387 100644 --- a/image/db/rhel/Dockerfile +++ b/image/db/rhel/Dockerfile @@ -1,89 +1,19 @@ -ARG RPMS_REGISTRY=registry.access.redhat.com -ARG RPMS_BASE_IMAGE=ubi9 -ARG RPMS_BASE_TAG=latest +ARG PG_VERSION=15 +FROM quay.io/sclorg/postgresql-${PG_VERSION}-c9s:latest ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi9-minimal ARG BASE_TAG=latest -FROM ${BASE_REGISTRY}/ubi9-micro:${BASE_TAG} AS ubi-micro-base - FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS extracted_bundle COPY bundle.tar.gz / WORKDIR /bundle RUN microdnf install -y tar gzip && tar -zxf /bundle.tar.gz -FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS postgres_rpms - -COPY scripts/download.sh /download.sh -RUN /download.sh - -FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS dependency_builder - -ENV PG_MAJOR=15 - -COPY --from=ubi-micro-base / /out/ - -RUN dnf install -y \ - --installroot=/out/ \ - --releasever=9 \ - --setopt=install_weak_deps=0 \ - --nodocs \ - findutils \ - shadow-utils \ - ca-certificates \ - openldap \ - glibc-langpack-en \ - glibc-locale-source \ - libicu \ - libxslt \ - lz4 \ - perl-libs \ - python3 \ - systemd-sysv \ - zstd \ - uuid \ - gzip \ - less \ - tar && \ - dnf clean all --installroot=/out/ && \ - rm -rf /out/var/cache/dnf /out/var/cache/yum - -COPY --from=postgres_rpms /rpms/postgres.rpm /rpms/postgres-libs.rpm /rpms/postgres-server.rpm /rpms/postgres-contrib.rpm /tmp/ -COPY signatures/PGDG-RPM-GPG-KEY-RHEL /tmp/ +FROM quay.io/sclorg/postgresql-${PG_VERSION}-c9s:latest -RUN rpm --root=/out/ --import /tmp/PGDG-RPM-GPG-KEY-RHEL && \ - rpm --root=/out/ -ivh --nodeps /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ - rm -rf /tmp/*.rpm /tmp/PGDG-RPM-GPG-KEY-RHEL - -RUN chroot /out /bin/sh -c " \ - if getent group postgres >/dev/null; then \ - current_gid=\$(getent group postgres | cut -d: -f3); \ - if [ \$current_gid -ne 70 ]; then \ - groupmod -g 70 postgres; \ - fi; \ - else \ - groupadd -g 70 postgres; \ - fi && \ - if id -u postgres &>/dev/null; then \ - current_uid=\$(id -u postgres); \ - if [ \$current_uid -ne 70 ]; then \ - usermod -u 70 -g 70 postgres; \ - fi; \ - else \ - useradd postgres -u 70 -g 70 -d /var/lib/postgresql -s /bin/sh; \ - fi \ - " - -RUN chroot /out /bin/sh -c "localedef -f UTF-8 -i en_US en_US.UTF-8" - -RUN mkdir -p /out/docker-entrypoint-initdb.d \ - /out/var/run/postgresql \ - /out/var/lib/postgresql && \ - chroot /out /bin/sh -c "chown 70:70 /var/run/postgresql && chmod 03775 /var/run/postgresql && chown 70:70 /var/lib/postgresql && chmod 0700 /var/lib/postgresql" - -FROM ubi-micro-base AS base +USER root ARG LABEL_VERSION ARG LABEL_RELEASE @@ -98,15 +28,25 @@ LABEL name="scanner-db" \ release="${LABEL_RELEASE}" \ quay.expires-after="${QUAY_TAG_EXPIRATION}" -ENV PG_MAJOR=15 -ENV PATH="$PATH:/usr/pgsql-$PG_MAJOR/bin/" \ - PGDATA="/var/lib/postgresql/data/pgdata" - -COPY --from=dependency_builder /out/ / +ENV LANG="en_US.utf8" COPY scripts/docker-entrypoint.sh /usr/local/bin/ COPY --from=extracted_bundle /bundle/etc/postgresql.conf /bundle/etc/pg_hba.conf /etc/ +RUN dnf upgrade -y --nobest && \ + localedef -f UTF-8 -i en_US en_US.UTF-8 && \ + mkdir -p /var/lib/postgresql && \ + groupmod -g 70 postgres && \ + usermod -u 70 postgres -d /var/lib/postgresql && \ + chown -R postgres:postgres /var/lib/postgresql && \ + chown -R postgres:postgres /var/run/postgresql && \ + chown -R postgres /var/lib/pgsql && \ + chown -R postgres /opt/app-root && \ + dnf clean all && \ + rpm --verbose -e --nodeps $(rpm -qa curl '*rpm*' '*dnf*' '*libsolv*' '*hawkey*' 'yum*') && \ + rm -rf /var/cache/dnf /var/cache/yum && \ + mkdir /docker-entrypoint-initdb.d + # This is equivalent to postgres:postgres. USER 70:70 diff --git a/image/db/rhel/Dockerfile.slim b/image/db/rhel/Dockerfile.slim index 31854df68..9bc454127 100644 --- a/image/db/rhel/Dockerfile.slim +++ b/image/db/rhel/Dockerfile.slim @@ -1,89 +1,7 @@ -ARG RPMS_REGISTRY=registry.access.redhat.com -ARG RPMS_BASE_IMAGE=ubi9 -ARG RPMS_BASE_TAG=latest +ARG PG_VERSION=15 +FROM quay.io/sclorg/postgresql-${PG_VERSION}-c9s:latest -ARG BASE_REGISTRY=registry.access.redhat.com -ARG BASE_IMAGE=ubi9-minimal -ARG BASE_TAG=latest - -FROM ${BASE_REGISTRY}/ubi9-micro:${BASE_TAG} AS ubi-micro-base - -FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS extracted_bundle -COPY bundle.tar.gz / - -WORKDIR /bundle -RUN microdnf install -y tar gzip && tar -zxf /bundle.tar.gz - -FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS postgres_rpms - -COPY scripts/download.sh /download.sh -RUN /download.sh - -FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS dependency_builder - -ENV PG_MAJOR=15 - -COPY --from=ubi-micro-base / /out/ - -RUN dnf install -y \ - --installroot=/out/ \ - --releasever=9 \ - --setopt=install_weak_deps=0 \ - --nodocs \ - findutils \ - shadow-utils \ - ca-certificates \ - openldap \ - glibc-langpack-en \ - glibc-locale-source \ - libicu \ - libxslt \ - lz4 \ - perl-libs \ - python3 \ - systemd-sysv \ - zstd \ - uuid \ - gzip \ - less \ - tar && \ - dnf clean all --installroot=/out/ && \ - rm -rf /out/var/cache/dnf /out/var/cache/yum - -COPY --from=postgres_rpms /rpms/postgres.rpm /rpms/postgres-libs.rpm /rpms/postgres-server.rpm /rpms/postgres-contrib.rpm /tmp/ -COPY signatures/PGDG-RPM-GPG-KEY-RHEL /tmp/ - -RUN rpm --root=/out/ --import /tmp/PGDG-RPM-GPG-KEY-RHEL && \ - rpm --root=/out/ -ivh --nodeps /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ - rm -rf /tmp/*.rpm /tmp/PGDG-RPM-GPG-KEY-RHEL - -RUN chroot /out /bin/sh -c " \ - if getent group postgres >/dev/null; then \ - current_gid=\$(getent group postgres | cut -d: -f3); \ - if [ \$current_gid -ne 70 ]; then \ - groupmod -g 70 postgres; \ - fi; \ - else \ - groupadd -g 70 postgres; \ - fi && \ - if id -u postgres &>/dev/null; then \ - current_uid=\$(id -u postgres); \ - if [ \$current_uid -ne 70 ]; then \ - usermod -u 70 -g 70 postgres; \ - fi; \ - else \ - useradd postgres -u 70 -g 70 -d /var/lib/postgresql -s /bin/sh; \ - fi \ - " - -RUN chroot /out /bin/sh -c "localedef -f UTF-8 -i en_US en_US.UTF-8" - -RUN mkdir -p /out/docker-entrypoint-initdb.d \ - /out/var/run/postgresql \ - /out/var/lib/postgresql && \ - chroot /out /bin/sh -c "chown 70:70 /var/run/postgresql && chmod 03775 /var/run/postgresql && chown 70:70 /var/lib/postgresql && chmod 0700 /var/lib/postgresql" - -FROM ubi-micro-base AS base +USER root ARG LABEL_VERSION ARG LABEL_RELEASE @@ -98,20 +16,29 @@ LABEL name="scanner-db-slim" \ release="${LABEL_RELEASE}" \ quay.expires-after="${QUAY_TAG_EXPIRATION}" -ENV PG_MAJOR=15 -ENV PATH="$PATH:/usr/pgsql-$PG_MAJOR/bin/" \ - PGDATA="/var/lib/postgresql/data/pgdata" - -COPY --from=dependency_builder /out/ / +ENV LANG="en_US.utf8" +ENV ROX_SLIM_MODE="true" COPY scripts/docker-entrypoint.sh /usr/local/bin/ -COPY --from=extracted_bundle /bundle/etc/postgresql.conf /bundle/etc/pg_hba.conf /etc/ +COPY etc/postgresql.conf etc/pg_hba.conf /etc/ + +RUN dnf upgrade -y --nobest && \ + localedef -f UTF-8 -i en_US en_US.UTF-8 && \ + mkdir -p /var/lib/postgresql && \ + groupmod -g 70 postgres && \ + usermod -u 70 postgres -d /var/lib/postgresql && \ + chown -R postgres:postgres /var/lib/postgresql && \ + chown -R postgres:postgres /var/run/postgresql && \ + chown -R postgres /var/lib/pgsql && \ + chown -R postgres /opt/app-root && \ + dnf clean all && \ + rpm --verbose -e --nodeps $(rpm -qa curl '*rpm*' '*dnf*' '*libsolv*' '*hawkey*' 'yum*') && \ + rm -rf /var/cache/dnf /var/cache/yum && \ + mkdir /docker-entrypoint-initdb.d # This is equivalent to postgres:postgres. USER 70:70 -ENV ROX_SLIM_MODE="true" - ENTRYPOINT ["docker-entrypoint.sh"] EXPOSE 5432 diff --git a/image/db/rhel/scripts/download.sh b/image/db/rhel/scripts/download.sh deleted file mode 100755 index f64470109..000000000 --- a/image/db/rhel/scripts/download.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -set -euo pipefail - -# If this is updated, be sure to update PG_MAJOR in the Dockerfile and the signature file. -postgres_major=15 -pg_rhel_major=9 - -arch="$(uname -m)" -dnf_list_args=() -if [[ "$arch" == "arm64" ]]; then - arch="aarch64" -fi -output_dir="/rpms" -mkdir $output_dir - -if [[ "$arch" == "s390x" ]]; then - # TODO(ROX-30647): Builds are failing due to UBI9:latest not containing the - # necessary version of openssl-libs to build postgresql-contrib. - pg_build_version="0:16.8-1.module_el9+1209+bd6e4013.s390x" - dnf module enable -y postgresql:16 - dnf install -y --downloadonly --downloaddir=/tmp "postgresql-${pg_build_version}" "postgresql-private-libs-${pg_build_version}" "postgresql-server-${pg_build_version}" "postgresql-contrib-${pg_build_version}" - mv /tmp/postgresql-contrib-*.rpm "${output_dir}/postgres-contrib.rpm" - mv /tmp/postgresql-server-*.rpm "${output_dir}/postgres-server.rpm" - mv /tmp/postgresql-private-libs-*.rpm "${output_dir}/postgres-libs.rpm" - mv /tmp/postgresql-*.rpm "${output_dir}/postgres.rpm" -else - postgres_repo_url="https://download.postgresql.org/pub/repos/yum/reporpms/EL-${pg_rhel_major}-${arch}/pgdg-redhat-repo-latest.noarch.rpm" - dnf install --disablerepo='*' -y "${postgres_repo_url}" - postgres_minor=$(dnf list ${dnf_list_args[@]+"${dnf_list_args[@]}"} --disablerepo='*' --enablerepo="pgdg${postgres_major}" -y "postgresql${postgres_major}-server.$arch" | tail -n 1 | awk '{print $2}') - postgres_minor="$postgres_minor.$arch" - - postgres_url="https://download.postgresql.org/pub/repos/yum/${postgres_major}/redhat/rhel-${pg_rhel_major}-${arch}" - curl --retry 3 -sS --fail -o "${output_dir}/postgres.rpm" "${postgres_url}/postgresql${postgres_major}-${postgres_minor}.rpm" - curl --retry 3 -sS --fail -o "${output_dir}/postgres-server.rpm" "${postgres_url}/postgresql${postgres_major}-server-${postgres_minor}.rpm" - curl --retry 3 -sS --fail -o "${output_dir}/postgres-libs.rpm" "${postgres_url}/postgresql${postgres_major}-libs-${postgres_minor}.rpm" - curl --retry 3 -sS --fail -o "${output_dir}/postgres-contrib.rpm" "${postgres_url}/postgresql${postgres_major}-contrib-${postgres_minor}.rpm" -fi diff --git a/image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL b/image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL deleted file mode 100644 index 0f3d62029..000000000 --- a/image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL +++ /dev/null @@ -1,41 +0,0 @@ ------BEGIN PGP PUBLIC KEY BLOCK----- - -mQGNBGWBr8EBDAC+atC3Hl2yKkFg0F4tDg4ABCTvvhgMn7g7oZ0vJqpaUAwUgijU -+jLXH8qVSkyhk2eruSXlbj4dIMHhsbRQ1wUnd+tb8pZPdRaBFR9MzFMjvDzobAlZ -RH6cUbgm2EdAHrrZFVQJuIb6SRzQzkk4QEWTkWP6CHzvxnlVpkI7T1yjsJnmLefN -TT/J+r0gxC1DRXOKwSMmWUCzYcRXiv/RZcp+IwM04e5BXOj6xoLIpAwhSGZ0LR6b -dwliBpMSFuVyXFIu+7AS2M8tEO1cGK+ywDhg7TriMc/rgjZjeu11WusXFwbvEUeM -FIYM9oXQlAlWDIob85YcGtNXV4EVGovQ2nFd4Ivl9OYq+HixAhWBLulkEAUREKq8 -uXV8HDjxOfYa8VhczphvkCLr5UEMzXmC2eDc6nCH2hveAqSVLnFNkhtExvVOPRBB -gRsviaGWvdOA3eNeEofHX9YWtSzM43tWABKUzI/oTMcdFJlkJ465bvh4p7KyHDth -5I46iBUZmfP4RckAEQEAAbQ+UG9zdGdyZVNRTCBSUE0gUmVwb3NpdG9yeSA8cGdz -cWwtcGtnLXl1bUBsaXN0cy5wb3N0Z3Jlc3FsLm9yZz6JAdIEEwEIADwWIQTUvwiu -Z6C0x6HbzNJAvKK0CLQNIAUCZYGvwQIbAwULCQgHAgMiAgEGFQoJCAsCBBYCAwEC -HgcCF4AACgkQQLyitAi0DSBwkwwAvE1vGNMiP8Qvqvpk5otuJOvz5meELUwmhT60 -IOWNr9RMroKfb27mnc5RHlOmMk/0SPyboFX9qtOdwFUq3cYbjsP+bqI9vuQuQ4Gz -siLIvSZPtQrdtUP8wdndndeKNpDIvRdYwvaPfIrBxxCSslB8iuCtjbyCl2rzlika -sCOWi7oTwuNB4eKHCRt9oh7NHFas92bF2JiaR7hvmXlCU058/lnR+jXCp/NWiGfE -QV37xAu/ssRH5MykGweEzQ3mX2EKppdKmmoOaJsTfS7UNujeZQqo1uqZg9yRHgwf -PaquIwgdXBY6JkMUM4Zhn7QkP5ssD6g+GzWe2UAMN+K8Xe3QwEMfp9AF7sEEM/Zp -+p5m7D1GlOho/m9juxcRa5r7VfvCFL05uyXdDoefOCFal/pDmwvZofK+pqtDZfKt -+AnF/Y6Z3ewvJ0ZRNBX/0Iw30uJusDIgkXaHwxEeDOnlKi8jVyBCMr1In2QKrb1+ -N9PR5P5ZKKq40WNvbiPfoUeKwKKSuQGNBGWBr8EBDAD1nXgbf+Qki5Z0H2k0xLbI -GYhxnousjVlrWcxOTYqVilSvBig7RKuVFGt0D3yuBWrAS7+MCUvpuCshHcc+w97G -iWmRskIHqZoD26kkU8PhgYayyArqepZp50ALIdOhedOp9b/NUkSPEL4BJow9H8Lp -a28WEXpHZcam43RDMzLMUvJBWem474APx5674EZYX+994lT2cNSAFrnJK956lKmc -ZdzzKuMTcIVGyRF6+KXCmScLAyQks8lHuTJb+AA4eseZnbOsnwnA1xuVfYIfMF/F -bLlR7vl5Autmgnz1SdCaUqIp4MO54GZOgh4MjVadsxIWj8H0cN3uTfukuW4A0+dP -d0YrOKb52Mnejh7x39qWIsMtT8DgcufGcVsuVhC/5LCiHB3pB73J9SMxBafcyGyK -XfLFL5FoDkKTU5KkBfqMQ4k//27mLbJ4kWxHHtNsvnn/6a5m7rRYxFD4dxBWn1CU -BpMjf3m9B3xLc7lKlQZiLLNC7p15gHS51yMvCGxCaHcAEQEAAYkBtgQYAQgAIBYh -BNS/CK5noLTHodvM0kC8orQItA0gBQJlga/BAhsMAAoJEEC8orQItA0guy0L/1ze -AHxV8pxPawOIlgDWoALLb/tqvmG+yz8SN5IWDfvMkMW5kbVoY8zi9SnJtOHVULBC -sdiYN4Dn/Ox1eLlW50F4Z76RI2r/O9rBlHzUk/jAQOcDDCRWjj4a+pYX9I4atU6e -+qOOzxMBsFD0vK84NYJ6caC0LHR64xWnyvXStkDEPSzgHhAlhdn9oTqbIoXuDhSx -zBVSXyowi+cBL8tNsAH4Zlj0li1Gii6bM4DFseQGhKIiTFbx1HD47DT6Pu0X2PSA -pIuZ47n8rP2uTLCYjtnfpXbMwmVOXWxIojhUqIceF+KRr4vRsspSbMxMKg0yeGka -RfQX29x8baM4mdKVBmU9KQxRgno6lcks14STnawqf6o9nHxKp80VQrcNTsYHlq2B -PGAanK8G4WeYojQWCQHBi73qCoTERMpBG73gpTIr836TBinGZaSZ8I1deUS89Hnw -A62QO1TS57zxMTrstzaawLoCIHTqyJ2VeZrVC1INV4ENnyVsud3NaZtfWuIk7Q== -=Elfg ------END PGP PUBLIC KEY BLOCK----- From e20a1337a8a04c722ece6635c079c54da198d009 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Thu, 23 Apr 2026 15:18:51 +0200 Subject: [PATCH 16/37] fix: Fix ARG placement in scanner-db Dockerfile Problem: Build was failing with error: ERROR: failed to parse stage name "/:": invalid reference format Root Cause: PG_VERSION ARG was used in FROM statement before being defined. Docker requires ARGs to be defined before the FROM statement that uses them. Solution: Move PG_VERSION ARG declaration to just before the FROM statement that references it (line 10-11). Co-Authored-By: Claude Sonnet 4.5 --- image/db/rhel/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/image/db/rhel/Dockerfile b/image/db/rhel/Dockerfile index c5763b387..751059f93 100644 --- a/image/db/rhel/Dockerfile +++ b/image/db/rhel/Dockerfile @@ -1,6 +1,3 @@ -ARG PG_VERSION=15 -FROM quay.io/sclorg/postgresql-${PG_VERSION}-c9s:latest - ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi9-minimal ARG BASE_TAG=latest @@ -11,6 +8,7 @@ COPY bundle.tar.gz / WORKDIR /bundle RUN microdnf install -y tar gzip && tar -zxf /bundle.tar.gz +ARG PG_VERSION=15 FROM quay.io/sclorg/postgresql-${PG_VERSION}-c9s:latest USER root From 8d94ba131c35f041f6c827b750b7ad12f81b8325 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Thu, 23 Apr 2026 15:31:02 +0200 Subject: [PATCH 17/37] fix: Move PG_VERSION ARG to global scope in Dockerfile Problem: Build failing with: UndefinedArgInFrom: FROM argument 'PG_VERSION' is not declared ERROR: quay.io/sclorg/postgresql--c9s:latest (empty PG_VERSION) Root Cause: ARG declared between FROM statements is not in global scope. Docker ARGs need to be declared at the very top (before any FROM) to be available to all FROM statements in the multi-stage build. Solution: Move ARG PG_VERSION=15 to line 1 (global scope), matching the pattern from stackrox/stackrox commit c92e85134. Co-Authored-By: Claude Sonnet 4.5 --- image/db/rhel/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image/db/rhel/Dockerfile b/image/db/rhel/Dockerfile index 751059f93..0bae33d8f 100644 --- a/image/db/rhel/Dockerfile +++ b/image/db/rhel/Dockerfile @@ -1,3 +1,4 @@ +ARG PG_VERSION=15 ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi9-minimal ARG BASE_TAG=latest @@ -8,7 +9,6 @@ COPY bundle.tar.gz / WORKDIR /bundle RUN microdnf install -y tar gzip && tar -zxf /bundle.tar.gz -ARG PG_VERSION=15 FROM quay.io/sclorg/postgresql-${PG_VERSION}-c9s:latest USER root From c84cd7249c02742f6f1d141a7a128b5bd4d01e2c Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Thu, 23 Apr 2026 15:48:26 +0200 Subject: [PATCH 18/37] fix: Fix postgresql.conf path in Dockerfile.slim Problem: Build failing with: ERROR: "/etc/postgresql.conf": not found Root Cause: Dockerfile.slim was trying to copy from etc/postgresql.conf but the build context is image/db/rhel, and the files are in image/db/. Solution: Change COPY path from etc/ to ../ to reference files in parent directory (image/db/postgresql.conf and image/db/pg_hba.conf). Co-Authored-By: Claude Sonnet 4.5 --- image/db/rhel/Dockerfile.slim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image/db/rhel/Dockerfile.slim b/image/db/rhel/Dockerfile.slim index 9bc454127..de2a42318 100644 --- a/image/db/rhel/Dockerfile.slim +++ b/image/db/rhel/Dockerfile.slim @@ -20,7 +20,7 @@ ENV LANG="en_US.utf8" ENV ROX_SLIM_MODE="true" COPY scripts/docker-entrypoint.sh /usr/local/bin/ -COPY etc/postgresql.conf etc/pg_hba.conf /etc/ +COPY ../postgresql.conf ../pg_hba.conf /etc/ RUN dnf upgrade -y --nobest && \ localedef -f UTF-8 -i en_US en_US.UTF-8 && \ From de3762906694430489c664500791feddb9bdbfcd Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Thu, 23 Apr 2026 16:07:27 +0200 Subject: [PATCH 19/37] fix: Copy postgresql.conf to rhel/ directory for Dockerfile.slim build context Docker COPY cannot reference files outside the build context with ../. The CI workflow uses image/db/rhel as the build context, so config files must be within that directory. Co-Authored-By: Claude Sonnet 4.5 --- image/db/rhel/Dockerfile.slim | 2 +- image/db/rhel/pg_hba.conf | 103 +++++ image/db/rhel/postgresql.conf | 755 ++++++++++++++++++++++++++++++++++ 3 files changed, 859 insertions(+), 1 deletion(-) create mode 100644 image/db/rhel/pg_hba.conf create mode 100644 image/db/rhel/postgresql.conf diff --git a/image/db/rhel/Dockerfile.slim b/image/db/rhel/Dockerfile.slim index de2a42318..90bccac19 100644 --- a/image/db/rhel/Dockerfile.slim +++ b/image/db/rhel/Dockerfile.slim @@ -20,7 +20,7 @@ ENV LANG="en_US.utf8" ENV ROX_SLIM_MODE="true" COPY scripts/docker-entrypoint.sh /usr/local/bin/ -COPY ../postgresql.conf ../pg_hba.conf /etc/ +COPY postgresql.conf pg_hba.conf /etc/ RUN dnf upgrade -y --nobest && \ localedef -f UTF-8 -i en_US en_US.UTF-8 && \ diff --git a/image/db/rhel/pg_hba.conf b/image/db/rhel/pg_hba.conf new file mode 100644 index 000000000..23de5a5b8 --- /dev/null +++ b/image/db/rhel/pg_hba.conf @@ -0,0 +1,103 @@ +# PostgreSQL Client Authentication Configuration File +# =================================================== +# +# Refer to the "Client Authentication" section in the PostgreSQL +# documentation for a complete description of this file. A short +# synopsis follows. +# +# This file controls: which hosts are allowed to connect, how clients +# are authenticated, which PostgreSQL user names they can use, which +# databases they can access. Records take one of these forms: +# +# local DATABASE USER METHOD [OPTIONS] +# host DATABASE USER ADDRESS METHOD [OPTIONS] +# hostssl DATABASE USER ADDRESS METHOD [OPTIONS] +# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS] +# +# (The uppercase items must be replaced by actual values.) +# +# The first field is the connection type: "local" is a Unix-domain +# socket, "host" is either a plain or SSL-encrypted TCP/IP socket, +# "hostssl" is an SSL-encrypted TCP/IP socket, and "hostnossl" is a +# plain TCP/IP socket. +# +# DATABASE can be "all", "sameuser", "samerole", "replication", a +# database name, or a comma-separated list thereof. The "all" +# keyword does not match "replication". Access to replication +# must be enabled in a separate record (see example below). +# +# USER can be "all", a user name, a group name prefixed with "+", or a +# comma-separated list thereof. In both the DATABASE and USER fields +# you can also write a file name prefixed with "@" to include names +# from a separate file. +# +# ADDRESS specifies the set of hosts the record matches. It can be a +# host name, or it is made up of an IP address and a CIDR mask that is +# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that +# specifies the number of significant bits in the mask. A host name +# that starts with a dot (.) matches a suffix of the actual host name. +# Alternatively, you can write an IP address and netmask in separate +# columns to specify the set of hosts. Instead of a CIDR-address, you +# can write "samehost" to match any of the server's own IP addresses, +# or "samenet" to match any address in any subnet that the server is +# directly connected to. +# +# METHOD can be "trust", "reject", "md5", "password", "scram-sha-256", +# "gss", "sspi", "ident", "peer", "pam", "ldap", "radius" or "cert". +# Note that "password" sends passwords in clear text; "md5" or +# "scram-sha-256" are preferred since they send encrypted passwords. +# +# OPTIONS are a set of options for the authentication in the format +# NAME=VALUE. The available options depend on the different +# authentication methods -- refer to the "Client Authentication" +# section in the documentation for a list of which options are +# available for which authentication methods. +# +# Database and user names containing spaces, commas, quotes and other +# special characters must be quoted. Quoting one of the keywords +# "all", "sameuser", "samerole" or "replication" makes the name lose +# its special character, and just match a database or username with +# that name. +# +# This file is read on server startup and when the server receives a +# SIGHUP signal. If you edit the file on a running system, you have to +# SIGHUP the server for the changes to take effect, run "pg_ctl reload", +# or execute "SELECT pg_reload_conf()". +# +# Put your actual configuration here +# ---------------------------------- +# +# If you want to allow non-local connections, you need to add more +# "host" records. In that case you will also need to make PostgreSQL +# listen on a non-local interface via the listen_addresses +# configuration parameter, or via the -i or -h command line switches. + +# CAUTION: Configuring the system for local "trust" authentication +# allows any local user to connect as any PostgreSQL user, including +# the database superuser. If you do not trust all your local users, +# use another authentication method. + + +# TYPE DATABASE USER ADDRESS METHOD + +# "local" is for Unix domain socket connections only +local all all md5 +# IPv4 local connections: +host all all 127.0.0.1/32 md5 +# IPv6 local connections: +host all all ::1/128 md5 +# Allow replication connections from localhost, by a user with the +# replication privilege. +local replication all reject +host replication all 127.0.0.1/32 reject +host replication all ::1/128 reject + +### STACKROX MODIFIED +# Reject all non ssl connections from IPs +hostnossl all all 0.0.0.0/0 reject +hostnossl all all ::0/0 reject + +# Accept connections from ssl with password +hostssl all all 0.0.0.0/0 md5 +hostssl all all ::0/0 md5 +### diff --git a/image/db/rhel/postgresql.conf b/image/db/rhel/postgresql.conf new file mode 100644 index 000000000..eb0538477 --- /dev/null +++ b/image/db/rhel/postgresql.conf @@ -0,0 +1,755 @@ +# ----------------------------- +# PostgreSQL configuration file +# ----------------------------- +# +# This file consists of lines of the form: +# +# name = value +# +# (The "=" is optional.) Whitespace may be used. Comments are introduced with +# "#" anywhere on a line. The complete list of parameter names and allowed +# values can be found in the PostgreSQL documentation. +# +# The commented-out settings shown in this file represent the default values. +# Re-commenting a setting is NOT sufficient to revert it to the default value; +# you need to reload the server. +# +# This file is read on server startup and when the server receives a SIGHUP +# signal. If you edit the file on a running system, you have to SIGHUP the +# server for the changes to take effect, run "pg_ctl reload", or execute +# "SELECT pg_reload_conf()". Some parameters, which are marked below, +# require a server shutdown and restart to take effect. +# +# Any parameter can also be given as a command-line option to the server, e.g., +# "postgres -c log_connections=on". Some parameters can be changed at run time +# with the "SET" SQL command. +# +# Memory units: kB = kilobytes Time units: ms = milliseconds +# MB = megabytes s = seconds +# GB = gigabytes min = minutes +# TB = terabytes h = hours +# d = days + + +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ + +# The default values of these variables are driven from the -D command-line +# option or PGDATA environment variable, represented here as ConfigDir. + +#data_directory = 'ConfigDir' # use data in another directory + # (change requires restart) + +### STACKROX MODIFIED - Configure config file path to work with initdb +hba_file = '/etc/pg_hba.conf' # host-based authentication file + # (change requires restart) + +#ident_file = 'ConfigDir/pg_ident.conf' # ident configuration file + # (change requires restart) + +# If external_pid_file is not explicitly set, no extra PID file is written. +#external_pid_file = '' # write an extra PID file + # (change requires restart) + + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ + +# - Connection Settings - + +listen_addresses = '*' + # comma-separated list of addresses; + # defaults to 'localhost'; use '*' for all + # (change requires restart) +#port = 5432 # (change requires restart) +max_connections = 100 # (change requires restart) +#superuser_reserved_connections = 3 # (change requires restart) +#unix_socket_directories = '/var/run/postgresql' # comma-separated list of directories + # (change requires restart) +#unix_socket_group = '' # (change requires restart) +#unix_socket_permissions = 0777 # begin with 0 to use octal notation + # (change requires restart) +#bonjour = off # advertise server via Bonjour + # (change requires restart) +#bonjour_name = '' # defaults to the computer name + # (change requires restart) + +# - TCP settings - +# see "man 7 tcp" for details + +#tcp_keepalives_idle = 0 # TCP_KEEPIDLE, in seconds; + # 0 selects the system default +#tcp_keepalives_interval = 0 # TCP_KEEPINTVL, in seconds; + # 0 selects the system default +#tcp_keepalives_count = 0 # TCP_KEEPCNT; + # 0 selects the system default +#tcp_user_timeout = 0 # TCP_USER_TIMEOUT, in milliseconds; + # 0 selects the system default + +# - Authentication - + +#authentication_timeout = 1min # 1s-600s +#password_encryption = md5 # md5 or scram-sha-256 +#db_user_namespace = off + +# GSSAPI using Kerberos +#krb_server_keyfile = '' +#krb_caseins_users = off + + +### STACKROX MODIFIED - Configure SSL +# - SSL - + +ssl = on +ssl_ca_file = '/run/secrets/stackrox.io/certs/root.crt' +ssl_cert_file = '/run/secrets/stackrox.io/certs/server.crt' +#ssl_crl_file = '' +ssl_key_file = '/run/secrets/stackrox.io/certs/server.key' +#ssl_ciphers = 'HIGH:MEDIUM:+3DES:!aNULL' # allowed SSL ciphers +#ssl_prefer_server_ciphers = on +#ssl_ecdh_curve = 'prime256v1' +#ssl_min_protocol_version = 'TLSv1' +#ssl_max_protocol_version = '' +#ssl_dh_params_file = '' +#ssl_passphrase_command = '' +#ssl_passphrase_command_supports_reload = off + + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ + +# - Memory - + +shared_buffers = 128MB # min 128kB + # (change requires restart) +#huge_pages = try # on, off, or try + # (change requires restart) +#temp_buffers = 8MB # min 800kB +#max_prepared_transactions = 0 # zero disables the feature + # (change requires restart) +# Caution: it is not advisable to set max_prepared_transactions nonzero unless +# you actively intend to use prepared transactions. +#work_mem = 4MB # min 64kB +#maintenance_work_mem = 64MB # min 1MB +#autovacuum_work_mem = -1 # min 1MB, or -1 to use maintenance_work_mem +#max_stack_depth = 2MB # min 100kB +#shared_memory_type = mmap # the default is the first option + # supported by the operating system: + # mmap + # sysv + # windows + # (change requires restart) +dynamic_shared_memory_type = posix # the default is the first option + # supported by the operating system: + # posix + # sysv + # windows + # mmap + # (change requires restart) + +# - Disk - + +#temp_file_limit = -1 # limits per-process temp file space + # in kB, or -1 for no limit + +# - Kernel Resources - + +#max_files_per_process = 1000 # min 25 + # (change requires restart) + +# - Cost-Based Vacuum Delay - + +#vacuum_cost_delay = 0 # 0-100 milliseconds (0 disables) +#vacuum_cost_page_hit = 1 # 0-10000 credits +#vacuum_cost_page_miss = 10 # 0-10000 credits +#vacuum_cost_page_dirty = 20 # 0-10000 credits +#vacuum_cost_limit = 200 # 1-10000 credits + +# - Background Writer - + +#bgwriter_delay = 200ms # 10-10000ms between rounds +#bgwriter_lru_maxpages = 100 # max buffers written/round, 0 disables +#bgwriter_lru_multiplier = 2.0 # 0-10.0 multiplier on buffers scanned/round +#bgwriter_flush_after = 512kB # measured in pages, 0 disables + +# - Asynchronous Behavior - + +#effective_io_concurrency = 1 # 1-1000; 0 disables prefetching +#max_worker_processes = 8 # (change requires restart) +#max_parallel_maintenance_workers = 2 # taken from max_parallel_workers +#max_parallel_workers_per_gather = 2 # taken from max_parallel_workers +#parallel_leader_participation = on +#max_parallel_workers = 8 # maximum number of max_worker_processes that + # can be used in parallel operations +#old_snapshot_threshold = -1 # 1min-60d; -1 disables; 0 is immediate + # (change requires restart) +#backend_flush_after = 0 # measured in pages, 0 disables + + +#------------------------------------------------------------------------------ +# WRITE-AHEAD LOG +#------------------------------------------------------------------------------ + +# - Settings - + +#wal_level = replica # minimal, replica, or logical + # (change requires restart) +#fsync = on # flush data to disk for crash safety + # (turning this off can cause + # unrecoverable data corruption) +#synchronous_commit = on # synchronization level; + # off, local, remote_write, remote_apply, or on +#wal_sync_method = fsync # the default is the first option + # supported by the operating system: + # open_datasync + # fdatasync (default on Linux) + # fsync + # fsync_writethrough + # open_sync +#full_page_writes = on # recover from partial page writes +#wal_compression = off # enable compression of full-page writes +#wal_log_hints = off # also do full page writes of non-critical updates + # (change requires restart) +#wal_init_zero = on # zero-fill new WAL files +#wal_recycle = on # recycle WAL files +#wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers + # (change requires restart) +#wal_writer_delay = 200ms # 1-10000 milliseconds +#wal_writer_flush_after = 1MB # measured in pages, 0 disables + +#commit_delay = 0 # range 0-100000, in microseconds +#commit_siblings = 5 # range 1-1000 + +# - Checkpoints - + +#checkpoint_timeout = 5min # range 30s-1d +max_wal_size = 1GB +min_wal_size = 80MB +#checkpoint_completion_target = 0.5 # checkpoint target duration, 0.0 - 1.0 +#checkpoint_flush_after = 256kB # measured in pages, 0 disables +#checkpoint_warning = 30s # 0 disables + +# - Archiving - + +#archive_mode = off # enables archiving; off, on, or always + # (change requires restart) +#archive_command = '' # command to use to archive a logfile segment + # placeholders: %p = path of file to archive + # %f = file name only + # e.g. 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f' +#archive_timeout = 0 # force a logfile segment switch after this + # number of seconds; 0 disables + +# - Archive Recovery - + +# These are only used in recovery mode. + +#restore_command = '' # command to use to restore an archived logfile segment + # placeholders: %p = path of file to restore + # %f = file name only + # e.g. 'cp /mnt/server/archivedir/%f %p' + # (change requires restart) +#archive_cleanup_command = '' # command to execute at every restartpoint +#recovery_end_command = '' # command to execute at completion of recovery + +# - Recovery Target - + +# Set these only when performing a targeted recovery. + +#recovery_target = '' # 'immediate' to end recovery as soon as a + # consistent state is reached + # (change requires restart) +#recovery_target_name = '' # the named restore point to which recovery will proceed + # (change requires restart) +#recovery_target_time = '' # the time stamp up to which recovery will proceed + # (change requires restart) +#recovery_target_xid = '' # the transaction ID up to which recovery will proceed + # (change requires restart) +#recovery_target_lsn = '' # the WAL LSN up to which recovery will proceed + # (change requires restart) +#recovery_target_inclusive = on # Specifies whether to stop: + # just after the specified recovery target (on) + # just before the recovery target (off) + # (change requires restart) +#recovery_target_timeline = 'latest' # 'current', 'latest', or timeline ID + # (change requires restart) +#recovery_target_action = 'pause' # 'pause', 'promote', 'shutdown' + # (change requires restart) + + +#------------------------------------------------------------------------------ +# REPLICATION +#------------------------------------------------------------------------------ + +# - Sending Servers - + +# Set these on the master and on any standby that will send replication data. + +#max_wal_senders = 10 # max number of walsender processes + # (change requires restart) +#wal_keep_segments = 0 # in logfile segments; 0 disables +#wal_sender_timeout = 60s # in milliseconds; 0 disables + +#max_replication_slots = 10 # max number of replication slots + # (change requires restart) +#track_commit_timestamp = off # collect timestamp of transaction commit + # (change requires restart) + +# - Master Server - + +# These settings are ignored on a standby server. + +#synchronous_standby_names = '' # standby servers that provide sync rep + # method to choose sync standbys, number of sync standbys, + # and comma-separated list of application_name + # from standby(s); '*' = all +#vacuum_defer_cleanup_age = 0 # number of xacts by which cleanup is delayed + +# - Standby Servers - + +# These settings are ignored on a master server. + +#primary_conninfo = '' # connection string to sending server + # (change requires restart) +#primary_slot_name = '' # replication slot on sending server + # (change requires restart) +#promote_trigger_file = '' # file name whose presence ends recovery +#hot_standby = on # "off" disallows queries during recovery + # (change requires restart) +#max_standby_archive_delay = 30s # max delay before canceling queries + # when reading WAL from archive; + # -1 allows indefinite delay +#max_standby_streaming_delay = 30s # max delay before canceling queries + # when reading streaming WAL; + # -1 allows indefinite delay +#wal_receiver_status_interval = 10s # send replies at least this often + # 0 disables +#hot_standby_feedback = off # send info from standby to prevent + # query conflicts +#wal_receiver_timeout = 60s # time that receiver waits for + # communication from master + # in milliseconds; 0 disables +#wal_retrieve_retry_interval = 5s # time to wait before retrying to + # retrieve WAL after a failed attempt +#recovery_min_apply_delay = 0 # minimum delay for applying changes during recovery + +# - Subscribers - + +# These settings are ignored on a publisher. + +#max_logical_replication_workers = 4 # taken from max_worker_processes + # (change requires restart) +#max_sync_workers_per_subscription = 2 # taken from max_logical_replication_workers + + +#------------------------------------------------------------------------------ +# QUERY TUNING +#------------------------------------------------------------------------------ + +# - Planner Method Configuration - + +#enable_bitmapscan = on +#enable_hashagg = on +#enable_hashjoin = on +#enable_indexscan = on +#enable_indexonlyscan = on +#enable_material = on +#enable_mergejoin = on +#enable_nestloop = on +#enable_parallel_append = on +#enable_seqscan = on +#enable_sort = on +#enable_tidscan = on +#enable_partitionwise_join = off +#enable_partitionwise_aggregate = off +#enable_parallel_hash = on +#enable_partition_pruning = on + +# - Planner Cost Constants - + +#seq_page_cost = 1.0 # measured on an arbitrary scale +#random_page_cost = 4.0 # same scale as above +#cpu_tuple_cost = 0.01 # same scale as above +#cpu_index_tuple_cost = 0.005 # same scale as above +#cpu_operator_cost = 0.0025 # same scale as above +#parallel_tuple_cost = 0.1 # same scale as above +#parallel_setup_cost = 1000.0 # same scale as above + +#jit_above_cost = 100000 # perform JIT compilation if available + # and query more expensive than this; + # -1 disables +#jit_inline_above_cost = 500000 # inline small functions if query is + # more expensive than this; -1 disables +#jit_optimize_above_cost = 500000 # use expensive JIT optimizations if + # query is more expensive than this; + # -1 disables + +#min_parallel_table_scan_size = 8MB +#min_parallel_index_scan_size = 512kB +#effective_cache_size = 4GB + +# - Genetic Query Optimizer - + +#geqo = on +#geqo_threshold = 12 +#geqo_effort = 5 # range 1-10 +#geqo_pool_size = 0 # selects default based on effort +#geqo_generations = 0 # selects default based on effort +#geqo_selection_bias = 2.0 # range 1.5-2.0 +#geqo_seed = 0.0 # range 0.0-1.0 + +# - Other Planner Options - + +#default_statistics_target = 100 # range 1-10000 +#constraint_exclusion = partition # on, off, or partition +#cursor_tuple_fraction = 0.1 # range 0.0-1.0 +#from_collapse_limit = 8 +#join_collapse_limit = 8 # 1 disables collapsing of explicit + # JOIN clauses +#force_parallel_mode = off +#jit = on # allow JIT compilation +#plan_cache_mode = auto # auto, force_generic_plan or + # force_custom_plan + + +#------------------------------------------------------------------------------ +# REPORTING AND LOGGING +#------------------------------------------------------------------------------ + +# - Where to Log - + +#log_destination = 'stderr' # Valid values are combinations of + # stderr, csvlog, syslog, and eventlog, + # depending on platform. csvlog + # requires logging_collector to be on. + +# This is used when logging to stderr: +#logging_collector = off # Enable capturing of stderr and csvlog + # into log files. Required to be on for + # csvlogs. + # (change requires restart) + +# These are only used if logging_collector is on: +#log_directory = 'log' # directory where log files are written, + # can be absolute or relative to PGDATA +#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern, + # can include strftime() escapes +#log_file_mode = 0600 # creation mode for log files, + # begin with 0 to use octal notation +#log_truncate_on_rotation = off # If on, an existing log file with the + # same name as the new log file will be + # truncated rather than appended to. + # But such truncation only occurs on + # time-driven rotation, not on restarts + # or size-driven rotation. Default is + # off, meaning append to existing files + # in all cases. +#log_rotation_age = 1d # Automatic rotation of logfiles will + # happen after that time. 0 disables. +#log_rotation_size = 10MB # Automatic rotation of logfiles will + # happen after that much log output. + # 0 disables. + +# These are relevant when logging to syslog: +#syslog_facility = 'LOCAL0' +#syslog_ident = 'postgres' +#syslog_sequence_numbers = on +#syslog_split_messages = on + +# This is only relevant when logging to eventlog (win32): +# (change requires restart) +#event_source = 'PostgreSQL' + +# - When to Log - + +#log_min_messages = warning # values in order of decreasing detail: + # debug5 + # debug4 + # debug3 + # debug2 + # debug1 + # info + # notice + # warning + # error + # log + # fatal + # panic + +#log_min_error_statement = error # values in order of decreasing detail: + # debug5 + # debug4 + # debug3 + # debug2 + # debug1 + # info + # notice + # warning + # error + # log + # fatal + # panic (effectively off) + +#log_min_duration_statement = -1 # -1 is disabled, 0 logs all statements + # and their durations, > 0 logs only + # statements running at least this number + # of milliseconds + +#log_transaction_sample_rate = 0.0 # Fraction of transactions whose statements + # are logged regardless of their duration. 1.0 logs all + # statements from all transactions, 0.0 never logs. + +# - What to Log - + +#debug_print_parse = off +#debug_print_rewritten = off +#debug_print_plan = off +#debug_pretty_print = on +#log_checkpoints = off +#log_connections = off +#log_disconnections = off +#log_duration = off +#log_error_verbosity = default # terse, default, or verbose messages +#log_hostname = off +#log_line_prefix = '%m [%p] ' # special values: + # %a = application name + # %u = user name + # %d = database name + # %r = remote host and port + # %h = remote host + # %p = process ID + # %t = timestamp without milliseconds + # %m = timestamp with milliseconds + # %n = timestamp with milliseconds (as a Unix epoch) + # %i = command tag + # %e = SQL state + # %c = session ID + # %l = session line number + # %s = session start timestamp + # %v = virtual transaction ID + # %x = transaction ID (0 if none) + # %q = stop here in non-session + # processes + # %% = '%' + # e.g. '<%u%%%d> ' +#log_lock_waits = off # log lock waits >= deadlock_timeout +#log_statement = 'none' # none, ddl, mod, all +#log_replication_commands = off +#log_temp_files = -1 # log temporary files equal or larger + # than the specified size in kilobytes; + # -1 disables, 0 logs all temp files +log_timezone = 'UTC' + +#------------------------------------------------------------------------------ +# PROCESS TITLE +#------------------------------------------------------------------------------ + +#cluster_name = '' # added to process titles if nonempty + # (change requires restart) +#update_process_title = on + + +#------------------------------------------------------------------------------ +# STATISTICS +#------------------------------------------------------------------------------ + +# - Query and Index Statistics Collector - + +#track_activities = on +#track_counts = on +#track_io_timing = off +#track_functions = none # none, pl, all +#track_activity_query_size = 1024 # (change requires restart) +#stats_temp_directory = 'pg_stat_tmp' + + +# - Monitoring - + +#log_parser_stats = off +#log_planner_stats = off +#log_executor_stats = off +#log_statement_stats = off + + +#------------------------------------------------------------------------------ +# AUTOVACUUM +#------------------------------------------------------------------------------ + +#autovacuum = on # Enable autovacuum subprocess? 'on' + # requires track_counts to also be on. +#log_autovacuum_min_duration = -1 # -1 disables, 0 logs all actions and + # their durations, > 0 logs only + # actions running at least this number + # of milliseconds. +#autovacuum_max_workers = 3 # max number of autovacuum subprocesses + # (change requires restart) +#autovacuum_naptime = 1min # time between autovacuum runs +#autovacuum_vacuum_threshold = 50 # min number of row updates before + # vacuum +#autovacuum_analyze_threshold = 50 # min number of row updates before + # analyze +#autovacuum_vacuum_scale_factor = 0.2 # fraction of table size before vacuum +#autovacuum_analyze_scale_factor = 0.1 # fraction of table size before analyze +#autovacuum_freeze_max_age = 200000000 # maximum XID age before forced vacuum + # (change requires restart) +#autovacuum_multixact_freeze_max_age = 400000000 # maximum multixact age + # before forced vacuum + # (change requires restart) +#autovacuum_vacuum_cost_delay = 2ms # default vacuum cost delay for + # autovacuum, in milliseconds; + # -1 means use vacuum_cost_delay +#autovacuum_vacuum_cost_limit = -1 # default vacuum cost limit for + # autovacuum, -1 means use + # vacuum_cost_limit + + +#------------------------------------------------------------------------------ +# CLIENT CONNECTION DEFAULTS +#------------------------------------------------------------------------------ + +# - Statement Behavior - + +#client_min_messages = notice # values in order of decreasing detail: + # debug5 + # debug4 + # debug3 + # debug2 + # debug1 + # log + # notice + # warning + # error +#search_path = '"$user", public' # schema names +#row_security = on +#default_tablespace = '' # a tablespace name, '' uses the default +#temp_tablespaces = '' # a list of tablespace names, '' uses + # only default tablespace +#default_table_access_method = 'heap' +#check_function_bodies = on +#default_transaction_isolation = 'read committed' +#default_transaction_read_only = off +#default_transaction_deferrable = off +#session_replication_role = 'origin' +#statement_timeout = 0 # in milliseconds, 0 is disabled +#lock_timeout = 0 # in milliseconds, 0 is disabled +#idle_in_transaction_session_timeout = 0 # in milliseconds, 0 is disabled +#vacuum_freeze_min_age = 50000000 +#vacuum_freeze_table_age = 150000000 +#vacuum_multixact_freeze_min_age = 5000000 +#vacuum_multixact_freeze_table_age = 150000000 +#vacuum_cleanup_index_scale_factor = 0.1 # fraction of total number of tuples + # before index cleanup, 0 always performs + # index cleanup +#bytea_output = 'hex' # hex, escape +#xmlbinary = 'base64' +#xmloption = 'content' +#gin_fuzzy_search_limit = 0 +#gin_pending_list_limit = 4MB + +# - Locale and Formatting - + +datestyle = 'iso, mdy' +#intervalstyle = 'postgres' +timezone = 'UTC' +#timezone_abbreviations = 'Default' # Select the set of available time zone + # abbreviations. Currently, there are + # Default + # Australia (historical usage) + # India + # You can create your own file in + # share/timezonesets/. +#extra_float_digits = 1 # min -15, max 3; any value >0 actually + # selects precise output mode +#client_encoding = sql_ascii # actually, defaults to database + # encoding + +# These settings are initialized by initdb, but they can be changed. +lc_messages = 'en_US.utf8' # locale for system error message + # strings +lc_monetary = 'en_US.utf8' # locale for monetary formatting +lc_numeric = 'en_US.utf8' # locale for number formatting +lc_time = 'en_US.utf8' # locale for time formatting + +# default configuration for text search +default_text_search_config = 'pg_catalog.english' + +# - Shared Library Preloading - + +#shared_preload_libraries = '' # (change requires restart) +#local_preload_libraries = '' +#session_preload_libraries = '' +#jit_provider = 'llvmjit' # JIT library to use + +# - Other Defaults - + +#dynamic_library_path = '$libdir' + + +#------------------------------------------------------------------------------ +# LOCK MANAGEMENT +#------------------------------------------------------------------------------ + +#deadlock_timeout = 1s +#max_locks_per_transaction = 64 # min 10 + # (change requires restart) +#max_pred_locks_per_transaction = 64 # min 10 + # (change requires restart) +#max_pred_locks_per_relation = -2 # negative values mean + # (max_pred_locks_per_transaction + # / -max_pred_locks_per_relation) - 1 +#max_pred_locks_per_page = 2 # min 0 + + +#------------------------------------------------------------------------------ +# VERSION AND PLATFORM COMPATIBILITY +#------------------------------------------------------------------------------ + +# - Previous PostgreSQL Versions - + +#array_nulls = on +#backslash_quote = safe_encoding # on, off, or safe_encoding +#escape_string_warning = on +#lo_compat_privileges = off +#operator_precedence_warning = off +#quote_all_identifiers = off +#standard_conforming_strings = on +#synchronize_seqscans = on + +# - Other Platforms and Clients - + +#transform_null_equals = off + + +#------------------------------------------------------------------------------ +# ERROR HANDLING +#------------------------------------------------------------------------------ + +#exit_on_error = off # terminate session on any error? +#restart_after_crash = on # reinitialize after backend crash? +#data_sync_retry = off # retry or panic on failure to fsync + # data? + # (change requires restart) + + +#------------------------------------------------------------------------------ +# CONFIG FILE INCLUDES +#------------------------------------------------------------------------------ + +# These options allow settings to be loaded from files other than the +# default postgresql.conf. Note that these are directives, not variable +# assignments, so they can usefully be given more than once. + +#include_dir = '...' # include files ending in '.conf' from + # a directory, e.g., 'conf.d' +#include_if_exists = '...' # include file only if it exists +#include = '...' # include file + + +#------------------------------------------------------------------------------ +# CUSTOMIZED OPTIONS +#------------------------------------------------------------------------------ + +# Add settings for extensions here From 7dd718fc871f7589b72382ff04a7ddf88852351c Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Wed, 29 Apr 2026 11:50:23 +0200 Subject: [PATCH 20/37] fix: Let postgres use default config instead of baking postgresql.conf into image Problem: CI e2e tests fail because scanner-db pod cannot start. The sclorg postgresql base image expects to manage postgres configuration in $PGDATA, but we were overriding it by copying static postgresql.conf and pg_hba.conf files into /etc/ and forcing postgres to use them via -c config_file=/etc/postgresql.conf. Root Cause: Unlike the ubi9-micro base we migrated from, the sclorg base image (quay.io/sclorg/postgresql-15-c9s) has its own postgres configuration management that conflicts with baked-in config files. Solution: Follow the stackrox/stackrox pattern - remove postgresql.conf and pg_hba.conf from the image build and let postgres use default configuration. Runtime-specific settings should be applied via: - Kubernetes ConfigMaps mounted at runtime (like stackrox does) - Command-line -c parameters - Environment variables Changes: - Dockerfile & Dockerfile.slim: Remove COPY of config files, change CMD from 'postgres -c config_file=/etc/postgresql.conf' to just 'postgres' - create-bundle.sh: Remove bundling of *.conf files - Delete duplicated pg_hba.conf and postgresql.conf from image/db/rhel/ (originals remain in image/db/ for reference) Note: konflux.Dockerfile still uses config files - it uses the Red Hat registry base image (registry.redhat.io/rhel9/postgresql-15) which may handle config differently than sclorg. Co-Authored-By: Claude Sonnet 4.5 --- image/db/rhel/Dockerfile | 3 +- image/db/rhel/Dockerfile.slim | 3 +- image/db/rhel/create-bundle.sh | 3 +- image/db/rhel/pg_hba.conf | 103 ----- image/db/rhel/postgresql.conf | 755 --------------------------------- 5 files changed, 3 insertions(+), 864 deletions(-) delete mode 100644 image/db/rhel/pg_hba.conf delete mode 100644 image/db/rhel/postgresql.conf diff --git a/image/db/rhel/Dockerfile b/image/db/rhel/Dockerfile index 0bae33d8f..59d78666b 100644 --- a/image/db/rhel/Dockerfile +++ b/image/db/rhel/Dockerfile @@ -29,7 +29,6 @@ LABEL name="scanner-db" \ ENV LANG="en_US.utf8" COPY scripts/docker-entrypoint.sh /usr/local/bin/ -COPY --from=extracted_bundle /bundle/etc/postgresql.conf /bundle/etc/pg_hba.conf /etc/ RUN dnf upgrade -y --nobest && \ localedef -f UTF-8 -i en_US en_US.UTF-8 && \ @@ -53,4 +52,4 @@ COPY --from=extracted_bundle /bundle/docker-entrypoint-initdb.d/definitions.sql. ENTRYPOINT ["docker-entrypoint.sh"] EXPOSE 5432 -CMD ["postgres", "-c", "config_file=/etc/postgresql.conf"] +CMD ["postgres"] diff --git a/image/db/rhel/Dockerfile.slim b/image/db/rhel/Dockerfile.slim index 90bccac19..26e946fee 100644 --- a/image/db/rhel/Dockerfile.slim +++ b/image/db/rhel/Dockerfile.slim @@ -20,7 +20,6 @@ ENV LANG="en_US.utf8" ENV ROX_SLIM_MODE="true" COPY scripts/docker-entrypoint.sh /usr/local/bin/ -COPY postgresql.conf pg_hba.conf /etc/ RUN dnf upgrade -y --nobest && \ localedef -f UTF-8 -i en_US en_US.UTF-8 && \ @@ -42,4 +41,4 @@ USER 70:70 ENTRYPOINT ["docker-entrypoint.sh"] EXPOSE 5432 -CMD ["postgres", "-c", "config_file=/etc/postgresql.conf"] +CMD ["postgres"] diff --git a/image/db/rhel/create-bundle.sh b/image/db/rhel/create-bundle.sh index bfe52647c..5a9ffab57 100755 --- a/image/db/rhel/create-bundle.sh +++ b/image/db/rhel/create-bundle.sh @@ -22,7 +22,7 @@ OUTPUT_BUNDLE="${OUTPUT_DIR}/bundle.tar.gz" # Create tmp directory with stackrox directory structure bundle_root="$(mktemp -d)" -mkdir -p "${bundle_root}/"{"usr/local/bin","etc","docker-entrypoint-initdb.d"} +mkdir -p "${bundle_root}/"{"usr/local/bin","docker-entrypoint-initdb.d"} chmod -R 755 "${bundle_root}" # ============================================================================= @@ -32,7 +32,6 @@ chmod -R 755 "${bundle_root}" # Dockerfile. cp -p "${INPUT_ROOT}/dump/definitions.sql.gz" "${bundle_root}/docker-entrypoint-initdb.d/" -cp -p "${INPUT_ROOT}"/*.conf "${bundle_root}/etc/" # ============================================================================= diff --git a/image/db/rhel/pg_hba.conf b/image/db/rhel/pg_hba.conf deleted file mode 100644 index 23de5a5b8..000000000 --- a/image/db/rhel/pg_hba.conf +++ /dev/null @@ -1,103 +0,0 @@ -# PostgreSQL Client Authentication Configuration File -# =================================================== -# -# Refer to the "Client Authentication" section in the PostgreSQL -# documentation for a complete description of this file. A short -# synopsis follows. -# -# This file controls: which hosts are allowed to connect, how clients -# are authenticated, which PostgreSQL user names they can use, which -# databases they can access. Records take one of these forms: -# -# local DATABASE USER METHOD [OPTIONS] -# host DATABASE USER ADDRESS METHOD [OPTIONS] -# hostssl DATABASE USER ADDRESS METHOD [OPTIONS] -# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS] -# -# (The uppercase items must be replaced by actual values.) -# -# The first field is the connection type: "local" is a Unix-domain -# socket, "host" is either a plain or SSL-encrypted TCP/IP socket, -# "hostssl" is an SSL-encrypted TCP/IP socket, and "hostnossl" is a -# plain TCP/IP socket. -# -# DATABASE can be "all", "sameuser", "samerole", "replication", a -# database name, or a comma-separated list thereof. The "all" -# keyword does not match "replication". Access to replication -# must be enabled in a separate record (see example below). -# -# USER can be "all", a user name, a group name prefixed with "+", or a -# comma-separated list thereof. In both the DATABASE and USER fields -# you can also write a file name prefixed with "@" to include names -# from a separate file. -# -# ADDRESS specifies the set of hosts the record matches. It can be a -# host name, or it is made up of an IP address and a CIDR mask that is -# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that -# specifies the number of significant bits in the mask. A host name -# that starts with a dot (.) matches a suffix of the actual host name. -# Alternatively, you can write an IP address and netmask in separate -# columns to specify the set of hosts. Instead of a CIDR-address, you -# can write "samehost" to match any of the server's own IP addresses, -# or "samenet" to match any address in any subnet that the server is -# directly connected to. -# -# METHOD can be "trust", "reject", "md5", "password", "scram-sha-256", -# "gss", "sspi", "ident", "peer", "pam", "ldap", "radius" or "cert". -# Note that "password" sends passwords in clear text; "md5" or -# "scram-sha-256" are preferred since they send encrypted passwords. -# -# OPTIONS are a set of options for the authentication in the format -# NAME=VALUE. The available options depend on the different -# authentication methods -- refer to the "Client Authentication" -# section in the documentation for a list of which options are -# available for which authentication methods. -# -# Database and user names containing spaces, commas, quotes and other -# special characters must be quoted. Quoting one of the keywords -# "all", "sameuser", "samerole" or "replication" makes the name lose -# its special character, and just match a database or username with -# that name. -# -# This file is read on server startup and when the server receives a -# SIGHUP signal. If you edit the file on a running system, you have to -# SIGHUP the server for the changes to take effect, run "pg_ctl reload", -# or execute "SELECT pg_reload_conf()". -# -# Put your actual configuration here -# ---------------------------------- -# -# If you want to allow non-local connections, you need to add more -# "host" records. In that case you will also need to make PostgreSQL -# listen on a non-local interface via the listen_addresses -# configuration parameter, or via the -i or -h command line switches. - -# CAUTION: Configuring the system for local "trust" authentication -# allows any local user to connect as any PostgreSQL user, including -# the database superuser. If you do not trust all your local users, -# use another authentication method. - - -# TYPE DATABASE USER ADDRESS METHOD - -# "local" is for Unix domain socket connections only -local all all md5 -# IPv4 local connections: -host all all 127.0.0.1/32 md5 -# IPv6 local connections: -host all all ::1/128 md5 -# Allow replication connections from localhost, by a user with the -# replication privilege. -local replication all reject -host replication all 127.0.0.1/32 reject -host replication all ::1/128 reject - -### STACKROX MODIFIED -# Reject all non ssl connections from IPs -hostnossl all all 0.0.0.0/0 reject -hostnossl all all ::0/0 reject - -# Accept connections from ssl with password -hostssl all all 0.0.0.0/0 md5 -hostssl all all ::0/0 md5 -### diff --git a/image/db/rhel/postgresql.conf b/image/db/rhel/postgresql.conf deleted file mode 100644 index eb0538477..000000000 --- a/image/db/rhel/postgresql.conf +++ /dev/null @@ -1,755 +0,0 @@ -# ----------------------------- -# PostgreSQL configuration file -# ----------------------------- -# -# This file consists of lines of the form: -# -# name = value -# -# (The "=" is optional.) Whitespace may be used. Comments are introduced with -# "#" anywhere on a line. The complete list of parameter names and allowed -# values can be found in the PostgreSQL documentation. -# -# The commented-out settings shown in this file represent the default values. -# Re-commenting a setting is NOT sufficient to revert it to the default value; -# you need to reload the server. -# -# This file is read on server startup and when the server receives a SIGHUP -# signal. If you edit the file on a running system, you have to SIGHUP the -# server for the changes to take effect, run "pg_ctl reload", or execute -# "SELECT pg_reload_conf()". Some parameters, which are marked below, -# require a server shutdown and restart to take effect. -# -# Any parameter can also be given as a command-line option to the server, e.g., -# "postgres -c log_connections=on". Some parameters can be changed at run time -# with the "SET" SQL command. -# -# Memory units: kB = kilobytes Time units: ms = milliseconds -# MB = megabytes s = seconds -# GB = gigabytes min = minutes -# TB = terabytes h = hours -# d = days - - -#------------------------------------------------------------------------------ -# FILE LOCATIONS -#------------------------------------------------------------------------------ - -# The default values of these variables are driven from the -D command-line -# option or PGDATA environment variable, represented here as ConfigDir. - -#data_directory = 'ConfigDir' # use data in another directory - # (change requires restart) - -### STACKROX MODIFIED - Configure config file path to work with initdb -hba_file = '/etc/pg_hba.conf' # host-based authentication file - # (change requires restart) - -#ident_file = 'ConfigDir/pg_ident.conf' # ident configuration file - # (change requires restart) - -# If external_pid_file is not explicitly set, no extra PID file is written. -#external_pid_file = '' # write an extra PID file - # (change requires restart) - - -#------------------------------------------------------------------------------ -# CONNECTIONS AND AUTHENTICATION -#------------------------------------------------------------------------------ - -# - Connection Settings - - -listen_addresses = '*' - # comma-separated list of addresses; - # defaults to 'localhost'; use '*' for all - # (change requires restart) -#port = 5432 # (change requires restart) -max_connections = 100 # (change requires restart) -#superuser_reserved_connections = 3 # (change requires restart) -#unix_socket_directories = '/var/run/postgresql' # comma-separated list of directories - # (change requires restart) -#unix_socket_group = '' # (change requires restart) -#unix_socket_permissions = 0777 # begin with 0 to use octal notation - # (change requires restart) -#bonjour = off # advertise server via Bonjour - # (change requires restart) -#bonjour_name = '' # defaults to the computer name - # (change requires restart) - -# - TCP settings - -# see "man 7 tcp" for details - -#tcp_keepalives_idle = 0 # TCP_KEEPIDLE, in seconds; - # 0 selects the system default -#tcp_keepalives_interval = 0 # TCP_KEEPINTVL, in seconds; - # 0 selects the system default -#tcp_keepalives_count = 0 # TCP_KEEPCNT; - # 0 selects the system default -#tcp_user_timeout = 0 # TCP_USER_TIMEOUT, in milliseconds; - # 0 selects the system default - -# - Authentication - - -#authentication_timeout = 1min # 1s-600s -#password_encryption = md5 # md5 or scram-sha-256 -#db_user_namespace = off - -# GSSAPI using Kerberos -#krb_server_keyfile = '' -#krb_caseins_users = off - - -### STACKROX MODIFIED - Configure SSL -# - SSL - - -ssl = on -ssl_ca_file = '/run/secrets/stackrox.io/certs/root.crt' -ssl_cert_file = '/run/secrets/stackrox.io/certs/server.crt' -#ssl_crl_file = '' -ssl_key_file = '/run/secrets/stackrox.io/certs/server.key' -#ssl_ciphers = 'HIGH:MEDIUM:+3DES:!aNULL' # allowed SSL ciphers -#ssl_prefer_server_ciphers = on -#ssl_ecdh_curve = 'prime256v1' -#ssl_min_protocol_version = 'TLSv1' -#ssl_max_protocol_version = '' -#ssl_dh_params_file = '' -#ssl_passphrase_command = '' -#ssl_passphrase_command_supports_reload = off - - -#------------------------------------------------------------------------------ -# RESOURCE USAGE (except WAL) -#------------------------------------------------------------------------------ - -# - Memory - - -shared_buffers = 128MB # min 128kB - # (change requires restart) -#huge_pages = try # on, off, or try - # (change requires restart) -#temp_buffers = 8MB # min 800kB -#max_prepared_transactions = 0 # zero disables the feature - # (change requires restart) -# Caution: it is not advisable to set max_prepared_transactions nonzero unless -# you actively intend to use prepared transactions. -#work_mem = 4MB # min 64kB -#maintenance_work_mem = 64MB # min 1MB -#autovacuum_work_mem = -1 # min 1MB, or -1 to use maintenance_work_mem -#max_stack_depth = 2MB # min 100kB -#shared_memory_type = mmap # the default is the first option - # supported by the operating system: - # mmap - # sysv - # windows - # (change requires restart) -dynamic_shared_memory_type = posix # the default is the first option - # supported by the operating system: - # posix - # sysv - # windows - # mmap - # (change requires restart) - -# - Disk - - -#temp_file_limit = -1 # limits per-process temp file space - # in kB, or -1 for no limit - -# - Kernel Resources - - -#max_files_per_process = 1000 # min 25 - # (change requires restart) - -# - Cost-Based Vacuum Delay - - -#vacuum_cost_delay = 0 # 0-100 milliseconds (0 disables) -#vacuum_cost_page_hit = 1 # 0-10000 credits -#vacuum_cost_page_miss = 10 # 0-10000 credits -#vacuum_cost_page_dirty = 20 # 0-10000 credits -#vacuum_cost_limit = 200 # 1-10000 credits - -# - Background Writer - - -#bgwriter_delay = 200ms # 10-10000ms between rounds -#bgwriter_lru_maxpages = 100 # max buffers written/round, 0 disables -#bgwriter_lru_multiplier = 2.0 # 0-10.0 multiplier on buffers scanned/round -#bgwriter_flush_after = 512kB # measured in pages, 0 disables - -# - Asynchronous Behavior - - -#effective_io_concurrency = 1 # 1-1000; 0 disables prefetching -#max_worker_processes = 8 # (change requires restart) -#max_parallel_maintenance_workers = 2 # taken from max_parallel_workers -#max_parallel_workers_per_gather = 2 # taken from max_parallel_workers -#parallel_leader_participation = on -#max_parallel_workers = 8 # maximum number of max_worker_processes that - # can be used in parallel operations -#old_snapshot_threshold = -1 # 1min-60d; -1 disables; 0 is immediate - # (change requires restart) -#backend_flush_after = 0 # measured in pages, 0 disables - - -#------------------------------------------------------------------------------ -# WRITE-AHEAD LOG -#------------------------------------------------------------------------------ - -# - Settings - - -#wal_level = replica # minimal, replica, or logical - # (change requires restart) -#fsync = on # flush data to disk for crash safety - # (turning this off can cause - # unrecoverable data corruption) -#synchronous_commit = on # synchronization level; - # off, local, remote_write, remote_apply, or on -#wal_sync_method = fsync # the default is the first option - # supported by the operating system: - # open_datasync - # fdatasync (default on Linux) - # fsync - # fsync_writethrough - # open_sync -#full_page_writes = on # recover from partial page writes -#wal_compression = off # enable compression of full-page writes -#wal_log_hints = off # also do full page writes of non-critical updates - # (change requires restart) -#wal_init_zero = on # zero-fill new WAL files -#wal_recycle = on # recycle WAL files -#wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers - # (change requires restart) -#wal_writer_delay = 200ms # 1-10000 milliseconds -#wal_writer_flush_after = 1MB # measured in pages, 0 disables - -#commit_delay = 0 # range 0-100000, in microseconds -#commit_siblings = 5 # range 1-1000 - -# - Checkpoints - - -#checkpoint_timeout = 5min # range 30s-1d -max_wal_size = 1GB -min_wal_size = 80MB -#checkpoint_completion_target = 0.5 # checkpoint target duration, 0.0 - 1.0 -#checkpoint_flush_after = 256kB # measured in pages, 0 disables -#checkpoint_warning = 30s # 0 disables - -# - Archiving - - -#archive_mode = off # enables archiving; off, on, or always - # (change requires restart) -#archive_command = '' # command to use to archive a logfile segment - # placeholders: %p = path of file to archive - # %f = file name only - # e.g. 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f' -#archive_timeout = 0 # force a logfile segment switch after this - # number of seconds; 0 disables - -# - Archive Recovery - - -# These are only used in recovery mode. - -#restore_command = '' # command to use to restore an archived logfile segment - # placeholders: %p = path of file to restore - # %f = file name only - # e.g. 'cp /mnt/server/archivedir/%f %p' - # (change requires restart) -#archive_cleanup_command = '' # command to execute at every restartpoint -#recovery_end_command = '' # command to execute at completion of recovery - -# - Recovery Target - - -# Set these only when performing a targeted recovery. - -#recovery_target = '' # 'immediate' to end recovery as soon as a - # consistent state is reached - # (change requires restart) -#recovery_target_name = '' # the named restore point to which recovery will proceed - # (change requires restart) -#recovery_target_time = '' # the time stamp up to which recovery will proceed - # (change requires restart) -#recovery_target_xid = '' # the transaction ID up to which recovery will proceed - # (change requires restart) -#recovery_target_lsn = '' # the WAL LSN up to which recovery will proceed - # (change requires restart) -#recovery_target_inclusive = on # Specifies whether to stop: - # just after the specified recovery target (on) - # just before the recovery target (off) - # (change requires restart) -#recovery_target_timeline = 'latest' # 'current', 'latest', or timeline ID - # (change requires restart) -#recovery_target_action = 'pause' # 'pause', 'promote', 'shutdown' - # (change requires restart) - - -#------------------------------------------------------------------------------ -# REPLICATION -#------------------------------------------------------------------------------ - -# - Sending Servers - - -# Set these on the master and on any standby that will send replication data. - -#max_wal_senders = 10 # max number of walsender processes - # (change requires restart) -#wal_keep_segments = 0 # in logfile segments; 0 disables -#wal_sender_timeout = 60s # in milliseconds; 0 disables - -#max_replication_slots = 10 # max number of replication slots - # (change requires restart) -#track_commit_timestamp = off # collect timestamp of transaction commit - # (change requires restart) - -# - Master Server - - -# These settings are ignored on a standby server. - -#synchronous_standby_names = '' # standby servers that provide sync rep - # method to choose sync standbys, number of sync standbys, - # and comma-separated list of application_name - # from standby(s); '*' = all -#vacuum_defer_cleanup_age = 0 # number of xacts by which cleanup is delayed - -# - Standby Servers - - -# These settings are ignored on a master server. - -#primary_conninfo = '' # connection string to sending server - # (change requires restart) -#primary_slot_name = '' # replication slot on sending server - # (change requires restart) -#promote_trigger_file = '' # file name whose presence ends recovery -#hot_standby = on # "off" disallows queries during recovery - # (change requires restart) -#max_standby_archive_delay = 30s # max delay before canceling queries - # when reading WAL from archive; - # -1 allows indefinite delay -#max_standby_streaming_delay = 30s # max delay before canceling queries - # when reading streaming WAL; - # -1 allows indefinite delay -#wal_receiver_status_interval = 10s # send replies at least this often - # 0 disables -#hot_standby_feedback = off # send info from standby to prevent - # query conflicts -#wal_receiver_timeout = 60s # time that receiver waits for - # communication from master - # in milliseconds; 0 disables -#wal_retrieve_retry_interval = 5s # time to wait before retrying to - # retrieve WAL after a failed attempt -#recovery_min_apply_delay = 0 # minimum delay for applying changes during recovery - -# - Subscribers - - -# These settings are ignored on a publisher. - -#max_logical_replication_workers = 4 # taken from max_worker_processes - # (change requires restart) -#max_sync_workers_per_subscription = 2 # taken from max_logical_replication_workers - - -#------------------------------------------------------------------------------ -# QUERY TUNING -#------------------------------------------------------------------------------ - -# - Planner Method Configuration - - -#enable_bitmapscan = on -#enable_hashagg = on -#enable_hashjoin = on -#enable_indexscan = on -#enable_indexonlyscan = on -#enable_material = on -#enable_mergejoin = on -#enable_nestloop = on -#enable_parallel_append = on -#enable_seqscan = on -#enable_sort = on -#enable_tidscan = on -#enable_partitionwise_join = off -#enable_partitionwise_aggregate = off -#enable_parallel_hash = on -#enable_partition_pruning = on - -# - Planner Cost Constants - - -#seq_page_cost = 1.0 # measured on an arbitrary scale -#random_page_cost = 4.0 # same scale as above -#cpu_tuple_cost = 0.01 # same scale as above -#cpu_index_tuple_cost = 0.005 # same scale as above -#cpu_operator_cost = 0.0025 # same scale as above -#parallel_tuple_cost = 0.1 # same scale as above -#parallel_setup_cost = 1000.0 # same scale as above - -#jit_above_cost = 100000 # perform JIT compilation if available - # and query more expensive than this; - # -1 disables -#jit_inline_above_cost = 500000 # inline small functions if query is - # more expensive than this; -1 disables -#jit_optimize_above_cost = 500000 # use expensive JIT optimizations if - # query is more expensive than this; - # -1 disables - -#min_parallel_table_scan_size = 8MB -#min_parallel_index_scan_size = 512kB -#effective_cache_size = 4GB - -# - Genetic Query Optimizer - - -#geqo = on -#geqo_threshold = 12 -#geqo_effort = 5 # range 1-10 -#geqo_pool_size = 0 # selects default based on effort -#geqo_generations = 0 # selects default based on effort -#geqo_selection_bias = 2.0 # range 1.5-2.0 -#geqo_seed = 0.0 # range 0.0-1.0 - -# - Other Planner Options - - -#default_statistics_target = 100 # range 1-10000 -#constraint_exclusion = partition # on, off, or partition -#cursor_tuple_fraction = 0.1 # range 0.0-1.0 -#from_collapse_limit = 8 -#join_collapse_limit = 8 # 1 disables collapsing of explicit - # JOIN clauses -#force_parallel_mode = off -#jit = on # allow JIT compilation -#plan_cache_mode = auto # auto, force_generic_plan or - # force_custom_plan - - -#------------------------------------------------------------------------------ -# REPORTING AND LOGGING -#------------------------------------------------------------------------------ - -# - Where to Log - - -#log_destination = 'stderr' # Valid values are combinations of - # stderr, csvlog, syslog, and eventlog, - # depending on platform. csvlog - # requires logging_collector to be on. - -# This is used when logging to stderr: -#logging_collector = off # Enable capturing of stderr and csvlog - # into log files. Required to be on for - # csvlogs. - # (change requires restart) - -# These are only used if logging_collector is on: -#log_directory = 'log' # directory where log files are written, - # can be absolute or relative to PGDATA -#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern, - # can include strftime() escapes -#log_file_mode = 0600 # creation mode for log files, - # begin with 0 to use octal notation -#log_truncate_on_rotation = off # If on, an existing log file with the - # same name as the new log file will be - # truncated rather than appended to. - # But such truncation only occurs on - # time-driven rotation, not on restarts - # or size-driven rotation. Default is - # off, meaning append to existing files - # in all cases. -#log_rotation_age = 1d # Automatic rotation of logfiles will - # happen after that time. 0 disables. -#log_rotation_size = 10MB # Automatic rotation of logfiles will - # happen after that much log output. - # 0 disables. - -# These are relevant when logging to syslog: -#syslog_facility = 'LOCAL0' -#syslog_ident = 'postgres' -#syslog_sequence_numbers = on -#syslog_split_messages = on - -# This is only relevant when logging to eventlog (win32): -# (change requires restart) -#event_source = 'PostgreSQL' - -# - When to Log - - -#log_min_messages = warning # values in order of decreasing detail: - # debug5 - # debug4 - # debug3 - # debug2 - # debug1 - # info - # notice - # warning - # error - # log - # fatal - # panic - -#log_min_error_statement = error # values in order of decreasing detail: - # debug5 - # debug4 - # debug3 - # debug2 - # debug1 - # info - # notice - # warning - # error - # log - # fatal - # panic (effectively off) - -#log_min_duration_statement = -1 # -1 is disabled, 0 logs all statements - # and their durations, > 0 logs only - # statements running at least this number - # of milliseconds - -#log_transaction_sample_rate = 0.0 # Fraction of transactions whose statements - # are logged regardless of their duration. 1.0 logs all - # statements from all transactions, 0.0 never logs. - -# - What to Log - - -#debug_print_parse = off -#debug_print_rewritten = off -#debug_print_plan = off -#debug_pretty_print = on -#log_checkpoints = off -#log_connections = off -#log_disconnections = off -#log_duration = off -#log_error_verbosity = default # terse, default, or verbose messages -#log_hostname = off -#log_line_prefix = '%m [%p] ' # special values: - # %a = application name - # %u = user name - # %d = database name - # %r = remote host and port - # %h = remote host - # %p = process ID - # %t = timestamp without milliseconds - # %m = timestamp with milliseconds - # %n = timestamp with milliseconds (as a Unix epoch) - # %i = command tag - # %e = SQL state - # %c = session ID - # %l = session line number - # %s = session start timestamp - # %v = virtual transaction ID - # %x = transaction ID (0 if none) - # %q = stop here in non-session - # processes - # %% = '%' - # e.g. '<%u%%%d> ' -#log_lock_waits = off # log lock waits >= deadlock_timeout -#log_statement = 'none' # none, ddl, mod, all -#log_replication_commands = off -#log_temp_files = -1 # log temporary files equal or larger - # than the specified size in kilobytes; - # -1 disables, 0 logs all temp files -log_timezone = 'UTC' - -#------------------------------------------------------------------------------ -# PROCESS TITLE -#------------------------------------------------------------------------------ - -#cluster_name = '' # added to process titles if nonempty - # (change requires restart) -#update_process_title = on - - -#------------------------------------------------------------------------------ -# STATISTICS -#------------------------------------------------------------------------------ - -# - Query and Index Statistics Collector - - -#track_activities = on -#track_counts = on -#track_io_timing = off -#track_functions = none # none, pl, all -#track_activity_query_size = 1024 # (change requires restart) -#stats_temp_directory = 'pg_stat_tmp' - - -# - Monitoring - - -#log_parser_stats = off -#log_planner_stats = off -#log_executor_stats = off -#log_statement_stats = off - - -#------------------------------------------------------------------------------ -# AUTOVACUUM -#------------------------------------------------------------------------------ - -#autovacuum = on # Enable autovacuum subprocess? 'on' - # requires track_counts to also be on. -#log_autovacuum_min_duration = -1 # -1 disables, 0 logs all actions and - # their durations, > 0 logs only - # actions running at least this number - # of milliseconds. -#autovacuum_max_workers = 3 # max number of autovacuum subprocesses - # (change requires restart) -#autovacuum_naptime = 1min # time between autovacuum runs -#autovacuum_vacuum_threshold = 50 # min number of row updates before - # vacuum -#autovacuum_analyze_threshold = 50 # min number of row updates before - # analyze -#autovacuum_vacuum_scale_factor = 0.2 # fraction of table size before vacuum -#autovacuum_analyze_scale_factor = 0.1 # fraction of table size before analyze -#autovacuum_freeze_max_age = 200000000 # maximum XID age before forced vacuum - # (change requires restart) -#autovacuum_multixact_freeze_max_age = 400000000 # maximum multixact age - # before forced vacuum - # (change requires restart) -#autovacuum_vacuum_cost_delay = 2ms # default vacuum cost delay for - # autovacuum, in milliseconds; - # -1 means use vacuum_cost_delay -#autovacuum_vacuum_cost_limit = -1 # default vacuum cost limit for - # autovacuum, -1 means use - # vacuum_cost_limit - - -#------------------------------------------------------------------------------ -# CLIENT CONNECTION DEFAULTS -#------------------------------------------------------------------------------ - -# - Statement Behavior - - -#client_min_messages = notice # values in order of decreasing detail: - # debug5 - # debug4 - # debug3 - # debug2 - # debug1 - # log - # notice - # warning - # error -#search_path = '"$user", public' # schema names -#row_security = on -#default_tablespace = '' # a tablespace name, '' uses the default -#temp_tablespaces = '' # a list of tablespace names, '' uses - # only default tablespace -#default_table_access_method = 'heap' -#check_function_bodies = on -#default_transaction_isolation = 'read committed' -#default_transaction_read_only = off -#default_transaction_deferrable = off -#session_replication_role = 'origin' -#statement_timeout = 0 # in milliseconds, 0 is disabled -#lock_timeout = 0 # in milliseconds, 0 is disabled -#idle_in_transaction_session_timeout = 0 # in milliseconds, 0 is disabled -#vacuum_freeze_min_age = 50000000 -#vacuum_freeze_table_age = 150000000 -#vacuum_multixact_freeze_min_age = 5000000 -#vacuum_multixact_freeze_table_age = 150000000 -#vacuum_cleanup_index_scale_factor = 0.1 # fraction of total number of tuples - # before index cleanup, 0 always performs - # index cleanup -#bytea_output = 'hex' # hex, escape -#xmlbinary = 'base64' -#xmloption = 'content' -#gin_fuzzy_search_limit = 0 -#gin_pending_list_limit = 4MB - -# - Locale and Formatting - - -datestyle = 'iso, mdy' -#intervalstyle = 'postgres' -timezone = 'UTC' -#timezone_abbreviations = 'Default' # Select the set of available time zone - # abbreviations. Currently, there are - # Default - # Australia (historical usage) - # India - # You can create your own file in - # share/timezonesets/. -#extra_float_digits = 1 # min -15, max 3; any value >0 actually - # selects precise output mode -#client_encoding = sql_ascii # actually, defaults to database - # encoding - -# These settings are initialized by initdb, but they can be changed. -lc_messages = 'en_US.utf8' # locale for system error message - # strings -lc_monetary = 'en_US.utf8' # locale for monetary formatting -lc_numeric = 'en_US.utf8' # locale for number formatting -lc_time = 'en_US.utf8' # locale for time formatting - -# default configuration for text search -default_text_search_config = 'pg_catalog.english' - -# - Shared Library Preloading - - -#shared_preload_libraries = '' # (change requires restart) -#local_preload_libraries = '' -#session_preload_libraries = '' -#jit_provider = 'llvmjit' # JIT library to use - -# - Other Defaults - - -#dynamic_library_path = '$libdir' - - -#------------------------------------------------------------------------------ -# LOCK MANAGEMENT -#------------------------------------------------------------------------------ - -#deadlock_timeout = 1s -#max_locks_per_transaction = 64 # min 10 - # (change requires restart) -#max_pred_locks_per_transaction = 64 # min 10 - # (change requires restart) -#max_pred_locks_per_relation = -2 # negative values mean - # (max_pred_locks_per_transaction - # / -max_pred_locks_per_relation) - 1 -#max_pred_locks_per_page = 2 # min 0 - - -#------------------------------------------------------------------------------ -# VERSION AND PLATFORM COMPATIBILITY -#------------------------------------------------------------------------------ - -# - Previous PostgreSQL Versions - - -#array_nulls = on -#backslash_quote = safe_encoding # on, off, or safe_encoding -#escape_string_warning = on -#lo_compat_privileges = off -#operator_precedence_warning = off -#quote_all_identifiers = off -#standard_conforming_strings = on -#synchronize_seqscans = on - -# - Other Platforms and Clients - - -#transform_null_equals = off - - -#------------------------------------------------------------------------------ -# ERROR HANDLING -#------------------------------------------------------------------------------ - -#exit_on_error = off # terminate session on any error? -#restart_after_crash = on # reinitialize after backend crash? -#data_sync_retry = off # retry or panic on failure to fsync - # data? - # (change requires restart) - - -#------------------------------------------------------------------------------ -# CONFIG FILE INCLUDES -#------------------------------------------------------------------------------ - -# These options allow settings to be loaded from files other than the -# default postgresql.conf. Note that these are directives, not variable -# assignments, so they can usefully be given more than once. - -#include_dir = '...' # include files ending in '.conf' from - # a directory, e.g., 'conf.d' -#include_if_exists = '...' # include file only if it exists -#include = '...' # include file - - -#------------------------------------------------------------------------------ -# CUSTOMIZED OPTIONS -#------------------------------------------------------------------------------ - -# Add settings for extensions here From 2074717d893d0640967b64b0f5fbfee7e44760fe Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Wed, 29 Apr 2026 15:15:37 +0200 Subject: [PATCH 21/37] fix: Add missing init-entrypoint.sh script for database initialization Problem: E2E tests fail because scanner-db init container gets stuck in Init:0/1 state and never completes, causing deployment to time out after 40 minutes. Root Cause: The init container (configured in chart/templates/db-deployment.yaml) runs with ROX_SCANNER_DB_INIT=true environment variable and expects init-entrypoint.sh script to exist for database initialization. Previous commit 7dd718fc removed postgresql.conf copies but also inadvertently changed COPY from copying both scripts to only docker-entrypoint.sh, breaking the init container. Solution: Copy init-entrypoint.sh from stackrox/stackrox and add it back to Dockerfile and Dockerfile.slim COPY statements. This script handles database initialization via initdb when ROX_SCANNER_DB_INIT is set. Changes: - Add image/db/rhel/scripts/init-entrypoint.sh (from stackrox/stackrox) - Dockerfile: COPY both docker-entrypoint.sh and init-entrypoint.sh - Dockerfile.slim: COPY both scripts This matches the stackrox/stackrox pattern: COPY scripts/docker-entrypoint.sh scripts/init-entrypoint.sh /usr/local/bin/ Co-Authored-By: Claude Sonnet 4.5 --- image/db/rhel/Dockerfile | 2 +- image/db/rhel/Dockerfile.slim | 2 +- image/db/rhel/scripts/init-entrypoint.sh | 55 ++++++++++++++++++++++++ 3 files changed, 57 insertions(+), 2 deletions(-) create mode 100755 image/db/rhel/scripts/init-entrypoint.sh diff --git a/image/db/rhel/Dockerfile b/image/db/rhel/Dockerfile index 59d78666b..5b21f889f 100644 --- a/image/db/rhel/Dockerfile +++ b/image/db/rhel/Dockerfile @@ -28,7 +28,7 @@ LABEL name="scanner-db" \ ENV LANG="en_US.utf8" -COPY scripts/docker-entrypoint.sh /usr/local/bin/ +COPY scripts/docker-entrypoint.sh scripts/init-entrypoint.sh /usr/local/bin/ RUN dnf upgrade -y --nobest && \ localedef -f UTF-8 -i en_US en_US.UTF-8 && \ diff --git a/image/db/rhel/Dockerfile.slim b/image/db/rhel/Dockerfile.slim index 26e946fee..ef438ba5f 100644 --- a/image/db/rhel/Dockerfile.slim +++ b/image/db/rhel/Dockerfile.slim @@ -19,7 +19,7 @@ LABEL name="scanner-db-slim" \ ENV LANG="en_US.utf8" ENV ROX_SLIM_MODE="true" -COPY scripts/docker-entrypoint.sh /usr/local/bin/ +COPY scripts/docker-entrypoint.sh scripts/init-entrypoint.sh /usr/local/bin/ RUN dnf upgrade -y --nobest && \ localedef -f UTF-8 -i en_US en_US.UTF-8 && \ diff --git a/image/db/rhel/scripts/init-entrypoint.sh b/image/db/rhel/scripts/init-entrypoint.sh new file mode 100755 index 000000000..c82c843b7 --- /dev/null +++ b/image/db/rhel/scripts/init-entrypoint.sh @@ -0,0 +1,55 @@ +#!/usr/bin/env bash + +# init-entrypoint.sh initializes the DB if it does not exist. + +set -Eeo pipefail + +# load-init-bundle calls pg_restore on the database init bundle. +load-init-bundle() { + local db=${1:?missing first required argument: db} + local bundle=${2:?missing second required argument: f} + local dump + + dump=$(mktemp) + + zstd >"$dump" -dc "$bundle" + pg_ctl start + pg_restore \ + --verbose \ + --format=custom \ + --jobs "$(nproc)" \ + --exit-on-error \ + --dbname "$db" \ + --no-owner \ + "$dump" + pg_ctl stop + rm -f "$dump" +} + +# main runs the main script. +main() { + local init_check="$PGDATA/.init-ready" + local init_bundle="/db-init.dump.zst" + + [ -e "$init_check" ] && return + + # Ensure DB is clean to avoid blocking on failed initialization attempts. + rm -rf "$PGDATA" + + # Create cluster. + initdb --auth-host="$POSTGRES_HOST_AUTH_METHOD" \ + --auth-local="$POSTGRES_HOST_AUTH_METHOD" \ + --pwfile "$POSTGRES_PASSWORD_FILE" \ + --data-checksums + + # Load init bundle, if enabled and the bundle exists. + if [ "${SCANNER_DB_INIT_BUNDLE_ENABLED:-}" = "true" ] && + [ -s /db-init.dump.zst ]; then + PGPASSWORD="$(cat "$POSTGRES_PASSWORD_FILE")" \ + load-init-bundle postgres "$init_bundle" + fi + + touch "$init_check" +} + +[ "${BASH_SOURCE[0]}" = "$0" ] && main "$@" From 02e0118b6d24fd61186a896eb6de80c8c3752f14 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Wed, 29 Apr 2026 18:03:00 +0200 Subject: [PATCH 22/37] Revert scanner-db changes to master state Revert all scanner-db image changes to defer PostgreSQL migration to a separate PR. The sclorg postgresql base image initialization requires different entrypoint handling that needs more investigation. Changes reverted: - image/db/rhel/Dockerfile - image/db/rhel/Dockerfile.slim - image/db/rhel/create-bundle.sh - image/db/rhel/scripts/download.sh (restored) - image/db/rhel/scripts/init-entrypoint.sh (removed) - image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL (restored) Co-Authored-By: Claude Sonnet 4.5 --- image/db/rhel/Dockerfile | 65 ++++++++++++---- image/db/rhel/Dockerfile.slim | 78 ++++++++++++++----- image/db/rhel/create-bundle.sh | 3 +- image/db/rhel/scripts/download.sh | 38 +++++++++ image/db/rhel/scripts/init-entrypoint.sh | 55 ------------- .../db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL | 41 ++++++++++ 6 files changed, 189 insertions(+), 91 deletions(-) create mode 100755 image/db/rhel/scripts/download.sh delete mode 100755 image/db/rhel/scripts/init-entrypoint.sh create mode 100644 image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL diff --git a/image/db/rhel/Dockerfile b/image/db/rhel/Dockerfile index 5b21f889f..bffbfc43f 100644 --- a/image/db/rhel/Dockerfile +++ b/image/db/rhel/Dockerfile @@ -1,4 +1,7 @@ -ARG PG_VERSION=15 +ARG RPMS_REGISTRY=registry.access.redhat.com +ARG RPMS_BASE_IMAGE=ubi9 +ARG RPMS_BASE_TAG=latest + ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi9-minimal ARG BASE_TAG=latest @@ -9,9 +12,12 @@ COPY bundle.tar.gz / WORKDIR /bundle RUN microdnf install -y tar gzip && tar -zxf /bundle.tar.gz -FROM quay.io/sclorg/postgresql-${PG_VERSION}-c9s:latest +FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS postgres_rpms + +COPY scripts/download.sh /download.sh +RUN /download.sh -USER root +FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS base ARG LABEL_VERSION ARG LABEL_RELEASE @@ -26,22 +32,47 @@ LABEL name="scanner-db" \ release="${LABEL_RELEASE}" \ quay.expires-after="${QUAY_TAG_EXPIRATION}" -ENV LANG="en_US.utf8" +ENV PG_MAJOR=15 +ENV PATH="$PATH:/usr/pgsql-$PG_MAJOR/bin/" \ + PGDATA="/var/lib/postgresql/data/pgdata" -COPY scripts/docker-entrypoint.sh scripts/init-entrypoint.sh /usr/local/bin/ +COPY signatures/PGDG-RPM-GPG-KEY-RHEL / +COPY scripts/docker-entrypoint.sh /usr/local/bin/ +COPY --from=extracted_bundle /bundle/etc/postgresql.conf /bundle/etc/pg_hba.conf /etc/ +COPY --from=postgres_rpms /rpms/postgres.rpm /rpms/postgres-libs.rpm /rpms/postgres-server.rpm /rpms/postgres-contrib.rpm /tmp/ -RUN dnf upgrade -y --nobest && \ +RUN microdnf upgrade -y --nobest && \ + microdnf install -y shadow-utils && \ + groupadd -g 70 postgres && \ + adduser postgres -u 70 -g 70 -d /var/lib/postgresql -s /bin/sh && \ + rpm --import PGDG-RPM-GPG-KEY-RHEL && \ + microdnf install -y \ + ca-certificates \ + glibc-langpack-en \ + glibc-locale-source \ + libicu \ + libxslt \ + lz4 \ + perl-libs \ + python3 \ + systemd-sysv \ + zstd \ + && \ + if [[ $(awk -F'=' '/VERSION_ID/{ gsub(/"/,""); print substr($2,1,1)}' /etc/os-release) -gt 8 ]]; then \ + microdnf install -y uuid; \ + fi && \ + rpm -i /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ + # The removal of /usr/share/zoneinfo from UBI minimal images is intentional. + # After building the image, the image is reduced in size as much as possible, + # and the /usr/share/zoneinfo directory is purged as it saves space + # in the final distribution of the image. + # https://access.redhat.com/solutions/5616681 + microdnf reinstall -y tzdata && \ + microdnf clean all && \ + # (Optional) Remove line below to keep package management utilities + rpm -e --nodeps $(rpm -qa shadow-utils curl '*rpm*' '*dnf*' '*libsolv*' '*hawkey*' 'yum*') && \ + rm -rf /var/cache/dnf /var/cache/yum /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ localedef -f UTF-8 -i en_US en_US.UTF-8 && \ - mkdir -p /var/lib/postgresql && \ - groupmod -g 70 postgres && \ - usermod -u 70 postgres -d /var/lib/postgresql && \ - chown -R postgres:postgres /var/lib/postgresql && \ - chown -R postgres:postgres /var/run/postgresql && \ - chown -R postgres /var/lib/pgsql && \ - chown -R postgres /opt/app-root && \ - dnf clean all && \ - rpm --verbose -e --nodeps $(rpm -qa curl '*rpm*' '*dnf*' '*libsolv*' '*hawkey*' 'yum*') && \ - rm -rf /var/cache/dnf /var/cache/yum && \ mkdir /docker-entrypoint-initdb.d # This is equivalent to postgres:postgres. @@ -52,4 +83,4 @@ COPY --from=extracted_bundle /bundle/docker-entrypoint-initdb.d/definitions.sql. ENTRYPOINT ["docker-entrypoint.sh"] EXPOSE 5432 -CMD ["postgres"] +CMD ["postgres", "-c", "config_file=/etc/postgresql.conf"] diff --git a/image/db/rhel/Dockerfile.slim b/image/db/rhel/Dockerfile.slim index ef438ba5f..8e3bb7d34 100644 --- a/image/db/rhel/Dockerfile.slim +++ b/image/db/rhel/Dockerfile.slim @@ -1,7 +1,23 @@ -ARG PG_VERSION=15 -FROM quay.io/sclorg/postgresql-${PG_VERSION}-c9s:latest +ARG RPMS_REGISTRY=registry.access.redhat.com +ARG RPMS_BASE_IMAGE=ubi9 +ARG RPMS_BASE_TAG=latest -USER root +ARG BASE_REGISTRY=registry.access.redhat.com +ARG BASE_IMAGE=ubi9-minimal +ARG BASE_TAG=latest + +FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS extracted_bundle +COPY bundle.tar.gz / + +WORKDIR /bundle +RUN microdnf install -y tar gzip && tar -zxf /bundle.tar.gz + +FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS postgres_rpms + +COPY scripts/download.sh /download.sh +RUN /download.sh + +FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS base ARG LABEL_VERSION ARG LABEL_RELEASE @@ -16,29 +32,55 @@ LABEL name="scanner-db-slim" \ release="${LABEL_RELEASE}" \ quay.expires-after="${QUAY_TAG_EXPIRATION}" -ENV LANG="en_US.utf8" -ENV ROX_SLIM_MODE="true" +ENV PG_MAJOR=15 +ENV PATH="$PATH:/usr/pgsql-$PG_MAJOR/bin/" \ + PGDATA="/var/lib/postgresql/data/pgdata" -COPY scripts/docker-entrypoint.sh scripts/init-entrypoint.sh /usr/local/bin/ +COPY signatures/PGDG-RPM-GPG-KEY-RHEL / +COPY scripts/docker-entrypoint.sh /usr/local/bin/ +COPY --from=extracted_bundle /bundle/etc/postgresql.conf /bundle/etc/pg_hba.conf /etc/ +COPY --from=postgres_rpms /rpms/postgres.rpm /rpms/postgres-libs.rpm /rpms/postgres-server.rpm /rpms/postgres-contrib.rpm /tmp/ -RUN dnf upgrade -y --nobest && \ +RUN microdnf upgrade -y --nobest && \ + microdnf install -y shadow-utils && \ + groupadd -g 70 postgres && \ + adduser postgres -u 70 -g 70 -d /var/lib/postgresql -s /bin/sh && \ + rpm --import PGDG-RPM-GPG-KEY-RHEL && \ + microdnf install -y \ + ca-certificates \ + glibc-langpack-en \ + glibc-locale-source \ + libicu \ + libxslt \ + lz4 \ + perl-libs \ + python3 \ + systemd-sysv \ + zstd \ + && \ + if [[ $(awk -F'=' '/VERSION_ID/{ gsub(/"/,""); print substr($2,1,1)}' /etc/os-release) -gt 8 ]]; then \ + microdnf install -y uuid; \ + fi && \ + rpm -i /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ + # The removal of /usr/share/zoneinfo from UBI minimal images is intentional. + # After building the image, the image is reduced in size as much as possible, + # and the /usr/share/zoneinfo directory is purged as it saves space + # in the final distribution of the image. + # https://access.redhat.com/solutions/5616681 + microdnf reinstall -y tzdata && \ + microdnf clean all && \ + # (Optional) Remove line below to keep package management utilities + rpm -e --nodeps $(rpm -qa shadow-utils curl '*rpm*' '*dnf*' '*libsolv*' '*hawkey*' 'yum*') && \ + rm -rf /var/cache/dnf /var/cache/yum /tmp/postgres-libs.rpm /tmp/postgres-server.rpm /tmp/postgres.rpm /tmp/postgres-contrib.rpm && \ localedef -f UTF-8 -i en_US en_US.UTF-8 && \ - mkdir -p /var/lib/postgresql && \ - groupmod -g 70 postgres && \ - usermod -u 70 postgres -d /var/lib/postgresql && \ - chown -R postgres:postgres /var/lib/postgresql && \ - chown -R postgres:postgres /var/run/postgresql && \ - chown -R postgres /var/lib/pgsql && \ - chown -R postgres /opt/app-root && \ - dnf clean all && \ - rpm --verbose -e --nodeps $(rpm -qa curl '*rpm*' '*dnf*' '*libsolv*' '*hawkey*' 'yum*') && \ - rm -rf /var/cache/dnf /var/cache/yum && \ mkdir /docker-entrypoint-initdb.d # This is equivalent to postgres:postgres. USER 70:70 +ENV ROX_SLIM_MODE="true" + ENTRYPOINT ["docker-entrypoint.sh"] EXPOSE 5432 -CMD ["postgres"] +CMD ["postgres", "-c", "config_file=/etc/postgresql.conf"] diff --git a/image/db/rhel/create-bundle.sh b/image/db/rhel/create-bundle.sh index 5a9ffab57..bfe52647c 100755 --- a/image/db/rhel/create-bundle.sh +++ b/image/db/rhel/create-bundle.sh @@ -22,7 +22,7 @@ OUTPUT_BUNDLE="${OUTPUT_DIR}/bundle.tar.gz" # Create tmp directory with stackrox directory structure bundle_root="$(mktemp -d)" -mkdir -p "${bundle_root}/"{"usr/local/bin","docker-entrypoint-initdb.d"} +mkdir -p "${bundle_root}/"{"usr/local/bin","etc","docker-entrypoint-initdb.d"} chmod -R 755 "${bundle_root}" # ============================================================================= @@ -32,6 +32,7 @@ chmod -R 755 "${bundle_root}" # Dockerfile. cp -p "${INPUT_ROOT}/dump/definitions.sql.gz" "${bundle_root}/docker-entrypoint-initdb.d/" +cp -p "${INPUT_ROOT}"/*.conf "${bundle_root}/etc/" # ============================================================================= diff --git a/image/db/rhel/scripts/download.sh b/image/db/rhel/scripts/download.sh new file mode 100755 index 000000000..f64470109 --- /dev/null +++ b/image/db/rhel/scripts/download.sh @@ -0,0 +1,38 @@ +#!/bin/bash + +set -euo pipefail + +# If this is updated, be sure to update PG_MAJOR in the Dockerfile and the signature file. +postgres_major=15 +pg_rhel_major=9 + +arch="$(uname -m)" +dnf_list_args=() +if [[ "$arch" == "arm64" ]]; then + arch="aarch64" +fi +output_dir="/rpms" +mkdir $output_dir + +if [[ "$arch" == "s390x" ]]; then + # TODO(ROX-30647): Builds are failing due to UBI9:latest not containing the + # necessary version of openssl-libs to build postgresql-contrib. + pg_build_version="0:16.8-1.module_el9+1209+bd6e4013.s390x" + dnf module enable -y postgresql:16 + dnf install -y --downloadonly --downloaddir=/tmp "postgresql-${pg_build_version}" "postgresql-private-libs-${pg_build_version}" "postgresql-server-${pg_build_version}" "postgresql-contrib-${pg_build_version}" + mv /tmp/postgresql-contrib-*.rpm "${output_dir}/postgres-contrib.rpm" + mv /tmp/postgresql-server-*.rpm "${output_dir}/postgres-server.rpm" + mv /tmp/postgresql-private-libs-*.rpm "${output_dir}/postgres-libs.rpm" + mv /tmp/postgresql-*.rpm "${output_dir}/postgres.rpm" +else + postgres_repo_url="https://download.postgresql.org/pub/repos/yum/reporpms/EL-${pg_rhel_major}-${arch}/pgdg-redhat-repo-latest.noarch.rpm" + dnf install --disablerepo='*' -y "${postgres_repo_url}" + postgres_minor=$(dnf list ${dnf_list_args[@]+"${dnf_list_args[@]}"} --disablerepo='*' --enablerepo="pgdg${postgres_major}" -y "postgresql${postgres_major}-server.$arch" | tail -n 1 | awk '{print $2}') + postgres_minor="$postgres_minor.$arch" + + postgres_url="https://download.postgresql.org/pub/repos/yum/${postgres_major}/redhat/rhel-${pg_rhel_major}-${arch}" + curl --retry 3 -sS --fail -o "${output_dir}/postgres.rpm" "${postgres_url}/postgresql${postgres_major}-${postgres_minor}.rpm" + curl --retry 3 -sS --fail -o "${output_dir}/postgres-server.rpm" "${postgres_url}/postgresql${postgres_major}-server-${postgres_minor}.rpm" + curl --retry 3 -sS --fail -o "${output_dir}/postgres-libs.rpm" "${postgres_url}/postgresql${postgres_major}-libs-${postgres_minor}.rpm" + curl --retry 3 -sS --fail -o "${output_dir}/postgres-contrib.rpm" "${postgres_url}/postgresql${postgres_major}-contrib-${postgres_minor}.rpm" +fi diff --git a/image/db/rhel/scripts/init-entrypoint.sh b/image/db/rhel/scripts/init-entrypoint.sh deleted file mode 100755 index c82c843b7..000000000 --- a/image/db/rhel/scripts/init-entrypoint.sh +++ /dev/null @@ -1,55 +0,0 @@ -#!/usr/bin/env bash - -# init-entrypoint.sh initializes the DB if it does not exist. - -set -Eeo pipefail - -# load-init-bundle calls pg_restore on the database init bundle. -load-init-bundle() { - local db=${1:?missing first required argument: db} - local bundle=${2:?missing second required argument: f} - local dump - - dump=$(mktemp) - - zstd >"$dump" -dc "$bundle" - pg_ctl start - pg_restore \ - --verbose \ - --format=custom \ - --jobs "$(nproc)" \ - --exit-on-error \ - --dbname "$db" \ - --no-owner \ - "$dump" - pg_ctl stop - rm -f "$dump" -} - -# main runs the main script. -main() { - local init_check="$PGDATA/.init-ready" - local init_bundle="/db-init.dump.zst" - - [ -e "$init_check" ] && return - - # Ensure DB is clean to avoid blocking on failed initialization attempts. - rm -rf "$PGDATA" - - # Create cluster. - initdb --auth-host="$POSTGRES_HOST_AUTH_METHOD" \ - --auth-local="$POSTGRES_HOST_AUTH_METHOD" \ - --pwfile "$POSTGRES_PASSWORD_FILE" \ - --data-checksums - - # Load init bundle, if enabled and the bundle exists. - if [ "${SCANNER_DB_INIT_BUNDLE_ENABLED:-}" = "true" ] && - [ -s /db-init.dump.zst ]; then - PGPASSWORD="$(cat "$POSTGRES_PASSWORD_FILE")" \ - load-init-bundle postgres "$init_bundle" - fi - - touch "$init_check" -} - -[ "${BASH_SOURCE[0]}" = "$0" ] && main "$@" diff --git a/image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL b/image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL new file mode 100644 index 000000000..0f3d62029 --- /dev/null +++ b/image/db/rhel/signatures/PGDG-RPM-GPG-KEY-RHEL @@ -0,0 +1,41 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- + +mQGNBGWBr8EBDAC+atC3Hl2yKkFg0F4tDg4ABCTvvhgMn7g7oZ0vJqpaUAwUgijU ++jLXH8qVSkyhk2eruSXlbj4dIMHhsbRQ1wUnd+tb8pZPdRaBFR9MzFMjvDzobAlZ +RH6cUbgm2EdAHrrZFVQJuIb6SRzQzkk4QEWTkWP6CHzvxnlVpkI7T1yjsJnmLefN +TT/J+r0gxC1DRXOKwSMmWUCzYcRXiv/RZcp+IwM04e5BXOj6xoLIpAwhSGZ0LR6b +dwliBpMSFuVyXFIu+7AS2M8tEO1cGK+ywDhg7TriMc/rgjZjeu11WusXFwbvEUeM +FIYM9oXQlAlWDIob85YcGtNXV4EVGovQ2nFd4Ivl9OYq+HixAhWBLulkEAUREKq8 +uXV8HDjxOfYa8VhczphvkCLr5UEMzXmC2eDc6nCH2hveAqSVLnFNkhtExvVOPRBB +gRsviaGWvdOA3eNeEofHX9YWtSzM43tWABKUzI/oTMcdFJlkJ465bvh4p7KyHDth +5I46iBUZmfP4RckAEQEAAbQ+UG9zdGdyZVNRTCBSUE0gUmVwb3NpdG9yeSA8cGdz +cWwtcGtnLXl1bUBsaXN0cy5wb3N0Z3Jlc3FsLm9yZz6JAdIEEwEIADwWIQTUvwiu +Z6C0x6HbzNJAvKK0CLQNIAUCZYGvwQIbAwULCQgHAgMiAgEGFQoJCAsCBBYCAwEC +HgcCF4AACgkQQLyitAi0DSBwkwwAvE1vGNMiP8Qvqvpk5otuJOvz5meELUwmhT60 +IOWNr9RMroKfb27mnc5RHlOmMk/0SPyboFX9qtOdwFUq3cYbjsP+bqI9vuQuQ4Gz +siLIvSZPtQrdtUP8wdndndeKNpDIvRdYwvaPfIrBxxCSslB8iuCtjbyCl2rzlika +sCOWi7oTwuNB4eKHCRt9oh7NHFas92bF2JiaR7hvmXlCU058/lnR+jXCp/NWiGfE +QV37xAu/ssRH5MykGweEzQ3mX2EKppdKmmoOaJsTfS7UNujeZQqo1uqZg9yRHgwf +PaquIwgdXBY6JkMUM4Zhn7QkP5ssD6g+GzWe2UAMN+K8Xe3QwEMfp9AF7sEEM/Zp ++p5m7D1GlOho/m9juxcRa5r7VfvCFL05uyXdDoefOCFal/pDmwvZofK+pqtDZfKt ++AnF/Y6Z3ewvJ0ZRNBX/0Iw30uJusDIgkXaHwxEeDOnlKi8jVyBCMr1In2QKrb1+ +N9PR5P5ZKKq40WNvbiPfoUeKwKKSuQGNBGWBr8EBDAD1nXgbf+Qki5Z0H2k0xLbI +GYhxnousjVlrWcxOTYqVilSvBig7RKuVFGt0D3yuBWrAS7+MCUvpuCshHcc+w97G +iWmRskIHqZoD26kkU8PhgYayyArqepZp50ALIdOhedOp9b/NUkSPEL4BJow9H8Lp +a28WEXpHZcam43RDMzLMUvJBWem474APx5674EZYX+994lT2cNSAFrnJK956lKmc +ZdzzKuMTcIVGyRF6+KXCmScLAyQks8lHuTJb+AA4eseZnbOsnwnA1xuVfYIfMF/F +bLlR7vl5Autmgnz1SdCaUqIp4MO54GZOgh4MjVadsxIWj8H0cN3uTfukuW4A0+dP +d0YrOKb52Mnejh7x39qWIsMtT8DgcufGcVsuVhC/5LCiHB3pB73J9SMxBafcyGyK +XfLFL5FoDkKTU5KkBfqMQ4k//27mLbJ4kWxHHtNsvnn/6a5m7rRYxFD4dxBWn1CU +BpMjf3m9B3xLc7lKlQZiLLNC7p15gHS51yMvCGxCaHcAEQEAAYkBtgQYAQgAIBYh +BNS/CK5noLTHodvM0kC8orQItA0gBQJlga/BAhsMAAoJEEC8orQItA0guy0L/1ze +AHxV8pxPawOIlgDWoALLb/tqvmG+yz8SN5IWDfvMkMW5kbVoY8zi9SnJtOHVULBC +sdiYN4Dn/Ox1eLlW50F4Z76RI2r/O9rBlHzUk/jAQOcDDCRWjj4a+pYX9I4atU6e ++qOOzxMBsFD0vK84NYJ6caC0LHR64xWnyvXStkDEPSzgHhAlhdn9oTqbIoXuDhSx +zBVSXyowi+cBL8tNsAH4Zlj0li1Gii6bM4DFseQGhKIiTFbx1HD47DT6Pu0X2PSA +pIuZ47n8rP2uTLCYjtnfpXbMwmVOXWxIojhUqIceF+KRr4vRsspSbMxMKg0yeGka +RfQX29x8baM4mdKVBmU9KQxRgno6lcks14STnawqf6o9nHxKp80VQrcNTsYHlq2B +PGAanK8G4WeYojQWCQHBi73qCoTERMpBG73gpTIr836TBinGZaSZ8I1deUS89Hnw +A62QO1TS57zxMTrstzaawLoCIHTqyJ2VeZrVC1INV4ENnyVsud3NaZtfWuIk7Q== +=Elfg +-----END PGP PUBLIC KEY BLOCK----- From 41f989cf735cbfec0734aa73793a3337535a50df Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Mon, 4 May 2026 13:29:50 +0200 Subject: [PATCH 23/37] revert changes to db Signed-off-by: Tomasz Janiszewski --- .tekton/scanner-db-build.yaml | 8 ++------ .tekton/scanner-db-slim-build.yaml | 8 ++------ 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/.tekton/scanner-db-build.yaml b/.tekton/scanner-db-build.yaml index 36b077045..084c5fbdc 100644 --- a/.tekton/scanner-db-build.yaml +++ b/.tekton/scanner-db-build.yaml @@ -38,11 +38,9 @@ spec: value: 'true' - name: hermetic value: "true" + # No dependencies are required for scanner-db image. - name: prefetch-input - value: | - [ - { "type": "rpm" } - ] + value: '' - name: build-source-image value: 'true' - name: build-target-stage @@ -57,8 +55,6 @@ spec: value: # X.Y in the cpe label must be adjusted for every version stream. - "cpe=cpe:/a:redhat:advanced_cluster_security:X.Y::el9" - - name: ACTIVATION_KEY - value: subscription-manager-activation-key-prod workspaces: - name: git-auth diff --git a/.tekton/scanner-db-slim-build.yaml b/.tekton/scanner-db-slim-build.yaml index dc9d6d142..a75f8f36a 100644 --- a/.tekton/scanner-db-slim-build.yaml +++ b/.tekton/scanner-db-slim-build.yaml @@ -38,11 +38,9 @@ spec: value: 'true' - name: hermetic value: "true" + # No dependencies are required for scanner-db-slim image. - name: prefetch-input - value: | - [ - { "type": "rpm" } - ] + value: '' - name: build-source-image value: 'true' - name: build-target-stage @@ -57,8 +55,6 @@ spec: value: # X.Y in the cpe label must be adjusted for every version stream. - "cpe=cpe:/a:redhat:advanced_cluster_security:X.Y::el9" - - name: ACTIVATION_KEY - value: subscription-manager-activation-key-prod workspaces: - name: git-auth From 6484ade9f63da165d116c95f5a01677d82808f12 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Mon, 4 May 2026 19:12:43 +0200 Subject: [PATCH 24/37] fix: Restore path parameter for RPM prefetch in Tekton pipelines Restores `, "path": "."` for rpm prefetch-input to match the original implementation from commit 92ddf643 (ROX-27638, ROX-20234). The path parameter was unintentionally removed during ubi-micro migration. The original team that added RPM prefetch support included this parameter for both gomod and rpm types, so restoring for consistency. Co-Authored-By: Claude Sonnet 4.5 --- .tekton/scanner-build.yaml | 2 +- .tekton/scanner-slim-build.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/scanner-build.yaml b/.tekton/scanner-build.yaml index 9d4df7d54..12546a4e1 100644 --- a/.tekton/scanner-build.yaml +++ b/.tekton/scanner-build.yaml @@ -42,7 +42,7 @@ spec: value: | [ { "type": "gomod", "path": "." }, - { "type": "rpm" } + { "type": "rpm", "path": "." } ] - name: build-source-image value: 'true' diff --git a/.tekton/scanner-slim-build.yaml b/.tekton/scanner-slim-build.yaml index ee348fac0..b8a8fbe81 100644 --- a/.tekton/scanner-slim-build.yaml +++ b/.tekton/scanner-slim-build.yaml @@ -42,7 +42,7 @@ spec: value: | [ { "type": "gomod", "path": "." }, - { "type": "rpm" } + { "type": "rpm", "path": "." } ] - name: build-source-image value: 'true' From 8a7cd6e606a4c58348b309b3e80e066b4127af51 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Mon, 11 May 2026 12:33:23 +0200 Subject: [PATCH 25/37] chore: Revert defensive file check in import-additional-cas Reverts the file existence check added in commit 703624d2 as it's not required for the ubi9-micro migration. The CA cert path is always mounted in production deployments. Keeps the branch focused on ubi9-micro migration essentials only. Co-Authored-By: Claude Sonnet 4.5 --- image/scanner/scripts/import-additional-cas | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/image/scanner/scripts/import-additional-cas b/image/scanner/scripts/import-additional-cas index cdd3342da..d3bfe544a 100755 --- a/image/scanner/scripts/import-additional-cas +++ b/image/scanner/scripts/import-additional-cas @@ -26,13 +26,9 @@ copy_existing /etc/pki/injected-ca-trust # Only copy ca.pem — the mount also contains server cert and key which # should not be added as trusted CA anchors. CA_PATH="/run/secrets/stackrox.io/certs/ca.pem" -if [ -f "$CA_PATH" ]; then - echo "Copying StackRox root CA from '${CA_PATH}'" - # For RHEL - cp "${CA_PATH}" /etc/pki/ca-trust/source/anchors/root-ca.pem -else - echo "No StackRox root CA found at '${CA_PATH}' - skipping" -fi +echo "Copying StackRox root CA from '${CA_PATH}'" +# For RHEL +cp "${CA_PATH}" /etc/pki/ca-trust/source/anchors/root-ca.pem echo "Updating CA trust" # Though /etc/pki/ca-trust/extracted is the default output, update-ca-trust From 4f21b8277cfdf35de13d7c8742e57d6c46ee10c0 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Tue, 19 May 2026 13:52:44 +0200 Subject: [PATCH 26/37] fix: Remove curl binary from ubi-micro scanner images dnf installs curl as a dependency of rpm package. Since scanner only needs rpm to inspect packages in scanned images, we remove the curl binary to minimize image size (~200KB reduction). The libcurl library remains installed as it's required by rpm. Co-Authored-By: Claude Sonnet 4.5 --- image/scanner/rhel/Dockerfile | 1 + image/scanner/rhel/konflux.Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/image/scanner/rhel/Dockerfile b/image/scanner/rhel/Dockerfile index a8e34c101..edec008e4 100644 --- a/image/scanner/rhel/Dockerfile +++ b/image/scanner/rhel/Dockerfile @@ -26,6 +26,7 @@ RUN dnf install -y \ gzip \ less \ tar && \ + chroot /out rpm -e --nodeps curl && \ dnf clean all --installroot=/out/ && \ rm -rf /out/var/cache/dnf /out/var/cache/yum diff --git a/image/scanner/rhel/konflux.Dockerfile b/image/scanner/rhel/konflux.Dockerfile index 797bfa7c5..5a7c7fca7 100644 --- a/image/scanner/rhel/konflux.Dockerfile +++ b/image/scanner/rhel/konflux.Dockerfile @@ -46,6 +46,7 @@ RUN dnf install -y \ gzip \ less \ tar && \ + chroot /out rpm -e --nodeps curl && \ dnf clean all --installroot=/out/ && \ rm -rf /out/var/cache/dnf /out/var/cache/yum From 917284582790251386f19888543f4e1744d16447 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Tue, 19 May 2026 15:55:30 +0200 Subject: [PATCH 27/37] fix: Update E2E tests for new 2026 log4j CVEs and changed ncurses descriptions Four new Apache Log4j CVEs were published in April 2026 and added to NVD: - CVE-2026-34477: Incomplete fix for CVE-2025-68161 (hostname verification) - CVE-2026-34479: Log4j1XmlLayout XML escaping issue - CVE-2026-34480: XmlLayout XML sanitization issue - CVE-2026-34481: JsonTemplateLayout invalid JSON with non-finite floats Updated test expectations: - log4j 2.9.1: Added CVE-2026-34479, CVE-2026-34480 (now expects 8 CVEs) - log4j 2.14.0: Added all 4 new CVEs (now expects 9 CVEs) - log4j 2.12.2: Added CVE-2026-34477, CVE-2026-34479, CVE-2026-34480 (now expects 7 CVEs) - ncurses-base: Updated CVE descriptions from "MITRE CVE dictionary" to "CVE program" The scanner is correctly detecting these vulnerabilities; this commit updates the test assertions to match current NVD/Red Hat security data. Fixes TestGRPCGetImageVulnerabilities and TestImageSanity failures. Co-Authored-By: Claude Sonnet 4.5 --- e2etests/testcase_test.go | 217 +++++++++++++++++++++++++++++++++++++- 1 file changed, 212 insertions(+), 5 deletions(-) diff --git a/e2etests/testcase_test.go b/e2etests/testcase_test.go index 1ab075a09..88aa71e3a 100644 --- a/e2etests/testcase_test.go +++ b/e2etests/testcase_test.go @@ -3055,10 +3055,56 @@ var testCases = []testCase{ }, FixedBy: "2.25.3", }, + { + Name: "CVE-2026-34479", + Description: "The Log4j1XmlLayout in the Apache Log4j 1-to-Log4j 2 bridge fails to escape characters forbidden by the XML 1.0 standard, producing malformed XML output. This causes conforming XML parsers to reject documents with fatal errors, potentially disrupting downstream log processing systems. Users employing Log4j1XmlLayout directly in Log4j Core 2 configuration or utilizing the Log4j 1 compatibility layer with org.apache.log4j.xml.XMLLayout are affected. Apache Log4j versions 2.7 through 2.25.3 (inclusive) and Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j 2.25.4.", + Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34479", + Severity: "Important", + Metadata: map[string]interface{}{ + "NVD": map[string]interface{}{ + "CVSSv3": map[string]interface{}{ + "ExploitabilityScore": 3.9, + "ImpactScore": 3.6, + "Score": 7.5, + "Vectors": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + }, + "CVSSv2": map[string]interface{}{ + "ExploitabilityScore": 0.0, + "ImpactScore": 0.0, + "Score": 0.0, + "Vectors": "", + }, + }, + }, + FixedBy: "2.25.4", + }, + { + Name: "CVE-2026-34480", + Description: "Apache Log4j Core’s XmlLayout fails to sanitize characters forbidden by XML 1.0 specification in versions up to 2.25.3. When log messages or MDC values contain such characters, invalid XML is produced. Impact varies by StAX implementation: JRE built-in StAX silently outputs malformed XML that conforming parsers must reject, while alternative implementations (e.g., Woodstox) throw exceptions, preventing log delivery. Apache Log4j versions 2.0 through 2.25.3 (inclusive) and Apache Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j Core 2.25.4 which sanitizes forbidden characters before XML output.", + Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34480", + Severity: "Important", + Metadata: map[string]interface{}{ + "NVD": map[string]interface{}{ + "CVSSv3": map[string]interface{}{ + "ExploitabilityScore": 3.9, + "ImpactScore": 3.6, + "Score": 7.5, + "Vectors": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + }, + "CVSSv2": map[string]interface{}{ + "ExploitabilityScore": 0.0, + "ImpactScore": 0.0, + "Score": 0.0, + "Vectors": "", + }, + }, + }, + FixedBy: "2.25.4", + }, }, AddedBy: "sha256:477d0b4ccc14566aec80c3360aba6c84208c9d337727434c3914bd87b023dab3", Location: "usr/share/logstash/vendor/bundle/jruby/2.5.0/gems/logstash-input-tcp-6.0.10-java/vendor/jar-dependencies/org/logstash/inputs/logstash-input-tcp/6.0.10/logstash-input-tcp-6.0.10.jar:log4j-core", - FixedBy: "2.25.3", + FixedBy: "2.25.4", }, { Name: "log4j", @@ -3180,10 +3226,102 @@ var testCases = []testCase{ }, FixedBy: "2.25.3", }, + { + Name: "CVE-2026-34477", + Description: "This vulnerability represents an incomplete fix for CVE-2025-68161. The verifyHostName attribute in the element was silently ignored in all versions through 2.25.3, leaving TLS connections vulnerable to interception even when configured. This allows potential man-in-the-middle attacks on SMTP, Socket, or Syslog appenders using TLS when an attacker presents a trusted certificate. Only affects SMTP, Socket, or Syslog appenders with nested configuration. HTTP appender not affected (uses separate verifyHostname attribute). Apache Log4j versions 2.12.0 through 2.25.3 and Apache Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j Core 2.25.4.", + Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34477", + Severity: "Moderate", + Metadata: map[string]interface{}{ + "NVD": map[string]interface{}{ + "CVSSv3": map[string]interface{}{ + "ExploitabilityScore": 2.2, + "ImpactScore": 3.6, + "Score": 5.9, + "Vectors": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + }, + "CVSSv2": map[string]interface{}{ + "ExploitabilityScore": 0.0, + "ImpactScore": 0.0, + "Score": 0.0, + "Vectors": "", + }, + }, + }, + FixedBy: "2.25.4", + }, + { + Name: "CVE-2026-34479", + Description: "The Log4j1XmlLayout in the Apache Log4j 1-to-Log4j 2 bridge fails to escape characters forbidden by the XML 1.0 standard, producing malformed XML output. This causes conforming XML parsers to reject documents with fatal errors, potentially disrupting downstream log processing systems. Users employing Log4j1XmlLayout directly in Log4j Core 2 configuration or utilizing the Log4j 1 compatibility layer with org.apache.log4j.xml.XMLLayout are affected. Apache Log4j versions 2.7 through 2.25.3 (inclusive) and Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j 2.25.4.", + Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34479", + Severity: "Important", + Metadata: map[string]interface{}{ + "NVD": map[string]interface{}{ + "CVSSv3": map[string]interface{}{ + "ExploitabilityScore": 3.9, + "ImpactScore": 3.6, + "Score": 7.5, + "Vectors": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + }, + "CVSSv2": map[string]interface{}{ + "ExploitabilityScore": 0.0, + "ImpactScore": 0.0, + "Score": 0.0, + "Vectors": "", + }, + }, + }, + FixedBy: "2.25.4", + }, + { + Name: "CVE-2026-34480", + Description: "Apache Log4j Core’s XmlLayout fails to sanitize characters forbidden by XML 1.0 specification in versions up to 2.25.3. When log messages or MDC values contain such characters, invalid XML is produced. Impact varies by StAX implementation: JRE built-in StAX silently outputs malformed XML that conforming parsers must reject, while alternative implementations (e.g., Woodstox) throw exceptions, preventing log delivery. Apache Log4j versions 2.0 through 2.25.3 (inclusive) and Apache Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j Core 2.25.4 which sanitizes forbidden characters before XML output.", + Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34480", + Severity: "Important", + Metadata: map[string]interface{}{ + "NVD": map[string]interface{}{ + "CVSSv3": map[string]interface{}{ + "ExploitabilityScore": 3.9, + "ImpactScore": 3.6, + "Score": 7.5, + "Vectors": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + }, + "CVSSv2": map[string]interface{}{ + "ExploitabilityScore": 0.0, + "ImpactScore": 0.0, + "Score": 0.0, + "Vectors": "", + }, + }, + }, + FixedBy: "2.25.4", + }, + { + Name: "CVE-2026-34481", + Description: "Apache Log4j’s JsonTemplateLayout produces invalid JSON when log events contain non-finite floating-point values (NaN, Infinity, or -Infinity), which violates RFC 8259. This can cause downstream log processing systems to reject or fail to index affected records. An attacker can exploit this only if the application uses JsonTemplateLayout and the application logs a MapMessage with attacker-controlled floating-point values. Apache Log4j versions 2.14.0 through 2.25.3 (inclusive) and Apache Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j 2.25.4.", + Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34481", + Severity: "Important", + Metadata: map[string]interface{}{ + "NVD": map[string]interface{}{ + "CVSSv3": map[string]interface{}{ + "ExploitabilityScore": 3.9, + "ImpactScore": 3.6, + "Score": 7.5, + "Vectors": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + }, + "CVSSv2": map[string]interface{}{ + "ExploitabilityScore": 0.0, + "ImpactScore": 0.0, + "Score": 0.0, + "Vectors": "", + }, + }, + }, + FixedBy: "2.25.4", + }, }, AddedBy: "sha256:477d0b4ccc14566aec80c3360aba6c84208c9d337727434c3914bd87b023dab3", Location: "usr/share/logstash/logstash-core/lib/jars/log4j-core-2.14.0.jar", - FixedBy: "2.25.3", + FixedBy: "2.25.4", }, }, }, @@ -3292,10 +3430,79 @@ var testCases = []testCase{ }, FixedBy: "2.25.3", }, + { + Name: "CVE-2026-34477", + Description: "This vulnerability represents an incomplete fix for CVE-2025-68161. The verifyHostName attribute in the element was silently ignored in all versions through 2.25.3, leaving TLS connections vulnerable to interception even when configured. This allows potential man-in-the-middle attacks on SMTP, Socket, or Syslog appenders using TLS when an attacker presents a trusted certificate. Only affects SMTP, Socket, or Syslog appenders with nested configuration. HTTP appender not affected (uses separate verifyHostname attribute). Apache Log4j versions 2.12.0 through 2.25.3 and Apache Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j Core 2.25.4.", + Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34477", + Severity: "Moderate", + Metadata: map[string]interface{}{ + "NVD": map[string]interface{}{ + "CVSSv3": map[string]interface{}{ + "ExploitabilityScore": 2.2, + "ImpactScore": 3.6, + "Score": 5.9, + "Vectors": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + }, + "CVSSv2": map[string]interface{}{ + "ExploitabilityScore": 0.0, + "ImpactScore": 0.0, + "Score": 0.0, + "Vectors": "", + }, + }, + }, + FixedBy: "2.25.4", + }, + { + Name: "CVE-2026-34479", + Description: "The Log4j1XmlLayout in the Apache Log4j 1-to-Log4j 2 bridge fails to escape characters forbidden by the XML 1.0 standard, producing malformed XML output. This causes conforming XML parsers to reject documents with fatal errors, potentially disrupting downstream log processing systems. Users employing Log4j1XmlLayout directly in Log4j Core 2 configuration or utilizing the Log4j 1 compatibility layer with org.apache.log4j.xml.XMLLayout are affected. Apache Log4j versions 2.7 through 2.25.3 (inclusive) and Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j 2.25.4.", + Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34479", + Severity: "Important", + Metadata: map[string]interface{}{ + "NVD": map[string]interface{}{ + "CVSSv3": map[string]interface{}{ + "ExploitabilityScore": 3.9, + "ImpactScore": 3.6, + "Score": 7.5, + "Vectors": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + }, + "CVSSv2": map[string]interface{}{ + "ExploitabilityScore": 0.0, + "ImpactScore": 0.0, + "Score": 0.0, + "Vectors": "", + }, + }, + }, + FixedBy: "2.25.4", + }, + { + Name: "CVE-2026-34480", + Description: "Apache Log4j Core’s XmlLayout fails to sanitize characters forbidden by XML 1.0 specification in versions up to 2.25.3. When log messages or MDC values contain such characters, invalid XML is produced. Impact varies by StAX implementation: JRE built-in StAX silently outputs malformed XML that conforming parsers must reject, while alternative implementations (e.g., Woodstox) throw exceptions, preventing log delivery. Apache Log4j versions 2.0 through 2.25.3 (inclusive) and Apache Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j Core 2.25.4 which sanitizes forbidden characters before XML output.", + Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34480", + Severity: "Important", + Metadata: map[string]interface{}{ + "NVD": map[string]interface{}{ + "CVSSv3": map[string]interface{}{ + "ExploitabilityScore": 3.9, + "ImpactScore": 3.6, + "Score": 7.5, + "Vectors": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + }, + "CVSSv2": map[string]interface{}{ + "ExploitabilityScore": 0.0, + "ImpactScore": 0.0, + "Score": 0.0, + "Vectors": "", + }, + }, + }, + FixedBy: "2.25.4", + }, }, AddedBy: "sha256:d84ba7ea7803fa43fca06730523d264b31c562968cfd7020f0584f5ec1b26225", Location: "log4j-core-2.12.2.jar", - FixedBy: "2.25.3", + FixedBy: "2.25.4", }, }, }, @@ -3507,7 +3714,7 @@ var testCases = []testCase{ { Name: "CVE-2017-10684", NamespaceName: "centos:7", - Description: "DOCUMENTATION: The MITRE CVE dictionary describes this issue as: In ncurses 6.0, there is a stack-based buffer overflow in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack. STATEMENT: Red Hat Product Security has rated this issue as having Moderate security impact. This issue is not currently planned to be addressed in future updates. For additional information, refer to the Issue Severity Classification: https://access.redhat.com/security/updates/classification/.", + Description: "DOCUMENTATION: The CVE program describes this issue as: In ncurses 6.0, there is a stack-based buffer overflow in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack. STATEMENT: Red Hat Product Security has rated this issue as having Moderate security impact. This issue is not currently planned to be addressed in future updates. For additional information, refer to the Issue Severity Classification: https://access.redhat.com/security/updates/classification/.", Link: "https://access.redhat.com/security/cve/CVE-2017-10684", Severity: "Moderate", Metadata: map[string]interface{}{ @@ -3530,7 +3737,7 @@ var testCases = []testCase{ { Name: "CVE-2017-10685", NamespaceName: "centos:7", - Description: "DOCUMENTATION: The MITRE CVE dictionary describes this issue as: In ncurses 6.0, there is a format string vulnerability in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack. STATEMENT: Red Hat considers this issue as a duplicate of CVE-2017-10684.", + Description: "DOCUMENTATION: The CVE program describes this issue as: In ncurses 6.0, there is a format string vulnerability in the fmt_entry function. A crafted input will lead to a remote arbitrary code execution attack. STATEMENT: Red Hat considers this issue as a duplicate of CVE-2017-10684.", Link: "https://access.redhat.com/security/cve/CVE-2017-10685", Severity: "Moderate", Metadata: map[string]interface{}{ From 3aa790f97211e5389eacb81c5490e79d3d32e4fa Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Tue, 19 May 2026 16:44:58 +0200 Subject: [PATCH 28/37] fix: Remove curl from scanner-slim Dockerfile Add curl removal step to Dockerfile.slim that was missing from the original fix. This ensures scanner-slim images also have curl binary removed, keeping only the libcurl library needed by rpm. --- image/scanner/rhel/Dockerfile.slim | 1 + 1 file changed, 1 insertion(+) diff --git a/image/scanner/rhel/Dockerfile.slim b/image/scanner/rhel/Dockerfile.slim index 0de60a0b3..459ac7bcc 100644 --- a/image/scanner/rhel/Dockerfile.slim +++ b/image/scanner/rhel/Dockerfile.slim @@ -26,6 +26,7 @@ RUN dnf install -y \ gzip \ less \ tar && \ + chroot /out rpm -e --nodeps curl && \ dnf clean all --installroot=/out/ && \ rm -rf /out/var/cache/dnf /out/var/cache/yum From b1174f719daaabe3922d2b0b9eae18ad005d2381 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Tue, 19 May 2026 19:16:27 +0200 Subject: [PATCH 29/37] fix: Update log4j CVE descriptions to match current NVD data NVD updated the descriptions for CVE-2026-34477, CVE-2026-34479, CVE-2026-34480, and CVE-2026-34481. Updated test expectations to match the current descriptions with additional detail and URLs. This fixes test failures in: - TestGRPCGetImageVulnerabilities for log4j 2.9.1, 2.14.0, 2.12.2 - TestImageSanity for log4j 2.9.1, 2.14.0, 2.12.2 --- e2etests/testcase_test.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/e2etests/testcase_test.go b/e2etests/testcase_test.go index 88aa71e3a..87ba98acf 100644 --- a/e2etests/testcase_test.go +++ b/e2etests/testcase_test.go @@ -3057,7 +3057,7 @@ var testCases = []testCase{ }, { Name: "CVE-2026-34479", - Description: "The Log4j1XmlLayout in the Apache Log4j 1-to-Log4j 2 bridge fails to escape characters forbidden by the XML 1.0 standard, producing malformed XML output. This causes conforming XML parsers to reject documents with fatal errors, potentially disrupting downstream log processing systems. Users employing Log4j1XmlLayout directly in Log4j Core 2 configuration or utilizing the Log4j 1 compatibility layer with org.apache.log4j.xml.XMLLayout are affected. Apache Log4j versions 2.7 through 2.25.3 (inclusive) and Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j 2.25.4.", + Description: "The Log4j1XmlLayout from the Apache Log4j 1-to-Log4j 2 bridge fails to escape characters forbidden by the XML 1.0 standard, producing malformed XML output. Conforming XML parsers are required to reject documents containing such characters with a fatal error, which may cause downstream log processing systems to drop or fail to index affected records. Two groups of users are affected: * Those using Log4j1XmlLayout directly in a Log4j Core 2 configuration file. * Those using the Log4j 1 configuration compatibility layer with org.apache.log4j.xml.XMLLayout specified as the layout class. Users are advised to upgrade to Apache Log4j 1-to-Log4j 2 bridge version 2.25.4, which corrects this issue. Note: The Apache Log4j 1-to-Log4j 2 bridge is deprecated and will not be present in Log4j 3. Users are encouraged to consult the Log4j 1 to Log4j 2 migration guide https://logging.apache.org/log4j/2.x/migrate-from-log4j1.html , and specifically the section on eliminating reliance on the bridge.", Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34479", Severity: "Important", Metadata: map[string]interface{}{ @@ -3080,7 +3080,7 @@ var testCases = []testCase{ }, { Name: "CVE-2026-34480", - Description: "Apache Log4j Core’s XmlLayout fails to sanitize characters forbidden by XML 1.0 specification in versions up to 2.25.3. When log messages or MDC values contain such characters, invalid XML is produced. Impact varies by StAX implementation: JRE built-in StAX silently outputs malformed XML that conforming parsers must reject, while alternative implementations (e.g., Woodstox) throw exceptions, preventing log delivery. Apache Log4j versions 2.0 through 2.25.3 (inclusive) and Apache Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j Core 2.25.4 which sanitizes forbidden characters before XML output.", + Description: "Apache Log4j Core’s XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#charsets producing invalid XML output whenever a log message or MDC value contains such characters. The impact depends on the StAX implementation in use: * JRE built-in StAX: Forbidden characters are silently written to the output, producing malformed XML. Conforming parsers must reject such documents with a fatal error, which may cause downstream log-processing systems to drop the affected records. * Alternative StAX implementations (e.g., Woodstox https://github.com/FasterXML/woodstox , a transitive dependency of the Jackson XML Dataformat module): An exception is thrown during the logging call, and the log event is never delivered to its intended appender, only to Log4j’s internal status logger. Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue by sanitizing forbidden characters before XML output.", Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34480", Severity: "Important", Metadata: map[string]interface{}{ @@ -3228,7 +3228,7 @@ var testCases = []testCase{ }, { Name: "CVE-2026-34477", - Description: "This vulnerability represents an incomplete fix for CVE-2025-68161. The verifyHostName attribute in the element was silently ignored in all versions through 2.25.3, leaving TLS connections vulnerable to interception even when configured. This allows potential man-in-the-middle attacks on SMTP, Socket, or Syslog appenders using TLS when an attacker presents a trusted certificate. Only affects SMTP, Socket, or Syslog appenders with nested configuration. HTTP appender not affected (uses separate verifyHostname attribute). Apache Log4j versions 2.12.0 through 2.25.3 and Apache Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j Core 2.25.4.", + Description: "The fix for CVE-2025-68161 https://logging.apache.org/security.html#CVE-2025-68161 was incomplete: it addressed hostname verification only when enabled via the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systemproperties.html#log4j2.sslVerifyHostName system property, but not when configured through the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#SslConfiguration-attr-verifyHostName attribute of the element. Although the verifyHostName configuration attribute was introduced in Log4j Core 2.12.0, it was silently ignored in all versions through 2.25.3, leaving TLS connections vulnerable to interception regardless of the configured value. A network-based attacker may be able to perform a man-in-the-middle attack when all of the following conditions are met: * An SMTP, Socket, or Syslog appender is in use. * TLS is configured via a nested element. * The attacker can present a certificate issued by a CA trusted by the appender's configured trust store, or by the default Java trust store if none is configured. This issue does not affect users of the HTTP appender, which uses a separate verifyHostname https://logging.apache.org/log4j/2.x/manual/appenders/network.html#HttpAppender-attr-verifyHostName attribute that was not subject to this bug and verifies host names by default. Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue.", Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34477", Severity: "Moderate", Metadata: map[string]interface{}{ @@ -3251,7 +3251,7 @@ var testCases = []testCase{ }, { Name: "CVE-2026-34479", - Description: "The Log4j1XmlLayout in the Apache Log4j 1-to-Log4j 2 bridge fails to escape characters forbidden by the XML 1.0 standard, producing malformed XML output. This causes conforming XML parsers to reject documents with fatal errors, potentially disrupting downstream log processing systems. Users employing Log4j1XmlLayout directly in Log4j Core 2 configuration or utilizing the Log4j 1 compatibility layer with org.apache.log4j.xml.XMLLayout are affected. Apache Log4j versions 2.7 through 2.25.3 (inclusive) and Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j 2.25.4.", + Description: "The Log4j1XmlLayout from the Apache Log4j 1-to-Log4j 2 bridge fails to escape characters forbidden by the XML 1.0 standard, producing malformed XML output. Conforming XML parsers are required to reject documents containing such characters with a fatal error, which may cause downstream log processing systems to drop or fail to index affected records. Two groups of users are affected: * Those using Log4j1XmlLayout directly in a Log4j Core 2 configuration file. * Those using the Log4j 1 configuration compatibility layer with org.apache.log4j.xml.XMLLayout specified as the layout class. Users are advised to upgrade to Apache Log4j 1-to-Log4j 2 bridge version 2.25.4, which corrects this issue. Note: The Apache Log4j 1-to-Log4j 2 bridge is deprecated and will not be present in Log4j 3. Users are encouraged to consult the Log4j 1 to Log4j 2 migration guide https://logging.apache.org/log4j/2.x/migrate-from-log4j1.html , and specifically the section on eliminating reliance on the bridge.", Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34479", Severity: "Important", Metadata: map[string]interface{}{ @@ -3274,7 +3274,7 @@ var testCases = []testCase{ }, { Name: "CVE-2026-34480", - Description: "Apache Log4j Core’s XmlLayout fails to sanitize characters forbidden by XML 1.0 specification in versions up to 2.25.3. When log messages or MDC values contain such characters, invalid XML is produced. Impact varies by StAX implementation: JRE built-in StAX silently outputs malformed XML that conforming parsers must reject, while alternative implementations (e.g., Woodstox) throw exceptions, preventing log delivery. Apache Log4j versions 2.0 through 2.25.3 (inclusive) and Apache Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j Core 2.25.4 which sanitizes forbidden characters before XML output.", + Description: "Apache Log4j Core’s XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#charsets producing invalid XML output whenever a log message or MDC value contains such characters. The impact depends on the StAX implementation in use: * JRE built-in StAX: Forbidden characters are silently written to the output, producing malformed XML. Conforming parsers must reject such documents with a fatal error, which may cause downstream log-processing systems to drop the affected records. * Alternative StAX implementations (e.g., Woodstox https://github.com/FasterXML/woodstox , a transitive dependency of the Jackson XML Dataformat module): An exception is thrown during the logging call, and the log event is never delivered to its intended appender, only to Log4j’s internal status logger. Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue by sanitizing forbidden characters before XML output.", Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34480", Severity: "Important", Metadata: map[string]interface{}{ @@ -3297,7 +3297,7 @@ var testCases = []testCase{ }, { Name: "CVE-2026-34481", - Description: "Apache Log4j’s JsonTemplateLayout produces invalid JSON when log events contain non-finite floating-point values (NaN, Infinity, or -Infinity), which violates RFC 8259. This can cause downstream log processing systems to reject or fail to index affected records. An attacker can exploit this only if the application uses JsonTemplateLayout and the application logs a MapMessage with attacker-controlled floating-point values. Apache Log4j versions 2.14.0 through 2.25.3 (inclusive) and Apache Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j 2.25.4.", + Description: "Apache Log4j’s JsonTemplateLayout https://logging.apache.org/log4j/2.x/manual/json-template-layout.html , in versions up to and including 2.25.3, produces invalid JSON output when log events contain non-finite floating-point values (NaN, Infinity, or -Infinity), which are prohibited by RFC 8259. This may cause downstream log processing systems to reject or fail to index affected records. An attacker can exploit this issue only if both of the following conditions are met: * The application uses JsonTemplateLayout. * The application logs a MapMessage containing an attacker-controlled floating-point value. Users are advised to upgrade to Apache Log4j JSON Template Layout 2.25.4, which corrects this issue.", Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34481", Severity: "Important", Metadata: map[string]interface{}{ @@ -3432,7 +3432,7 @@ var testCases = []testCase{ }, { Name: "CVE-2026-34477", - Description: "This vulnerability represents an incomplete fix for CVE-2025-68161. The verifyHostName attribute in the element was silently ignored in all versions through 2.25.3, leaving TLS connections vulnerable to interception even when configured. This allows potential man-in-the-middle attacks on SMTP, Socket, or Syslog appenders using TLS when an attacker presents a trusted certificate. Only affects SMTP, Socket, or Syslog appenders with nested configuration. HTTP appender not affected (uses separate verifyHostname attribute). Apache Log4j versions 2.12.0 through 2.25.3 and Apache Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j Core 2.25.4.", + Description: "The fix for CVE-2025-68161 https://logging.apache.org/security.html#CVE-2025-68161 was incomplete: it addressed hostname verification only when enabled via the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systemproperties.html#log4j2.sslVerifyHostName system property, but not when configured through the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#SslConfiguration-attr-verifyHostName attribute of the element. Although the verifyHostName configuration attribute was introduced in Log4j Core 2.12.0, it was silently ignored in all versions through 2.25.3, leaving TLS connections vulnerable to interception regardless of the configured value. A network-based attacker may be able to perform a man-in-the-middle attack when all of the following conditions are met: * An SMTP, Socket, or Syslog appender is in use. * TLS is configured via a nested element. * The attacker can present a certificate issued by a CA trusted by the appender's configured trust store, or by the default Java trust store if none is configured. This issue does not affect users of the HTTP appender, which uses a separate verifyHostname https://logging.apache.org/log4j/2.x/manual/appenders/network.html#HttpAppender-attr-verifyHostName attribute that was not subject to this bug and verifies host names by default. Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue.", Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34477", Severity: "Moderate", Metadata: map[string]interface{}{ @@ -3455,7 +3455,7 @@ var testCases = []testCase{ }, { Name: "CVE-2026-34479", - Description: "The Log4j1XmlLayout in the Apache Log4j 1-to-Log4j 2 bridge fails to escape characters forbidden by the XML 1.0 standard, producing malformed XML output. This causes conforming XML parsers to reject documents with fatal errors, potentially disrupting downstream log processing systems. Users employing Log4j1XmlLayout directly in Log4j Core 2 configuration or utilizing the Log4j 1 compatibility layer with org.apache.log4j.xml.XMLLayout are affected. Apache Log4j versions 2.7 through 2.25.3 (inclusive) and Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j 2.25.4.", + Description: "The Log4j1XmlLayout from the Apache Log4j 1-to-Log4j 2 bridge fails to escape characters forbidden by the XML 1.0 standard, producing malformed XML output. Conforming XML parsers are required to reject documents containing such characters with a fatal error, which may cause downstream log processing systems to drop or fail to index affected records. Two groups of users are affected: * Those using Log4j1XmlLayout directly in a Log4j Core 2 configuration file. * Those using the Log4j 1 configuration compatibility layer with org.apache.log4j.xml.XMLLayout specified as the layout class. Users are advised to upgrade to Apache Log4j 1-to-Log4j 2 bridge version 2.25.4, which corrects this issue. Note: The Apache Log4j 1-to-Log4j 2 bridge is deprecated and will not be present in Log4j 3. Users are encouraged to consult the Log4j 1 to Log4j 2 migration guide https://logging.apache.org/log4j/2.x/migrate-from-log4j1.html , and specifically the section on eliminating reliance on the bridge.", Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34479", Severity: "Important", Metadata: map[string]interface{}{ @@ -3478,7 +3478,7 @@ var testCases = []testCase{ }, { Name: "CVE-2026-34480", - Description: "Apache Log4j Core’s XmlLayout fails to sanitize characters forbidden by XML 1.0 specification in versions up to 2.25.3. When log messages or MDC values contain such characters, invalid XML is produced. Impact varies by StAX implementation: JRE built-in StAX silently outputs malformed XML that conforming parsers must reject, while alternative implementations (e.g., Woodstox) throw exceptions, preventing log delivery. Apache Log4j versions 2.0 through 2.25.3 (inclusive) and Apache Log4j 3.0.0 alpha and beta releases are affected. This issue is fixed in Apache Log4j Core 2.25.4 which sanitizes forbidden characters before XML output.", + Description: "Apache Log4j Core’s XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#charsets producing invalid XML output whenever a log message or MDC value contains such characters. The impact depends on the StAX implementation in use: * JRE built-in StAX: Forbidden characters are silently written to the output, producing malformed XML. Conforming parsers must reject such documents with a fatal error, which may cause downstream log-processing systems to drop the affected records. * Alternative StAX implementations (e.g., Woodstox https://github.com/FasterXML/woodstox , a transitive dependency of the Jackson XML Dataformat module): An exception is thrown during the logging call, and the log event is never delivered to its intended appender, only to Log4j’s internal status logger. Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue by sanitizing forbidden characters before XML output.", Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34480", Severity: "Important", Metadata: map[string]interface{}{ From aa14842a340f0e023e2cb06d2b8f598a5535a439 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Tue, 19 May 2026 20:06:45 +0200 Subject: [PATCH 30/37] fix: Normalize UTF-8 characters in CVE descriptions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit NVD normalizes fancy UTF-8 apostrophes (U+2019 ') to plain ASCII apostrophes (') in CVE descriptions. Updated test expectations to match the normalized descriptions that the scanner returns. Fixes character length mismatches: - CVE-2026-34480: 1083 → 1079 characters - CVE-2026-34481: 713 → 711 characters --- e2etests/testcase_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/e2etests/testcase_test.go b/e2etests/testcase_test.go index 87ba98acf..bc017ff93 100644 --- a/e2etests/testcase_test.go +++ b/e2etests/testcase_test.go @@ -3080,7 +3080,7 @@ var testCases = []testCase{ }, { Name: "CVE-2026-34480", - Description: "Apache Log4j Core’s XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#charsets producing invalid XML output whenever a log message or MDC value contains such characters. The impact depends on the StAX implementation in use: * JRE built-in StAX: Forbidden characters are silently written to the output, producing malformed XML. Conforming parsers must reject such documents with a fatal error, which may cause downstream log-processing systems to drop the affected records. * Alternative StAX implementations (e.g., Woodstox https://github.com/FasterXML/woodstox , a transitive dependency of the Jackson XML Dataformat module): An exception is thrown during the logging call, and the log event is never delivered to its intended appender, only to Log4j’s internal status logger. Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue by sanitizing forbidden characters before XML output.", + Description: "Apache Log4j Core's XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#charsets producing invalid XML output whenever a log message or MDC value contains such characters. The impact depends on the StAX implementation in use: * JRE built-in StAX: Forbidden characters are silently written to the output, producing malformed XML. Conforming parsers must reject such documents with a fatal error, which may cause downstream log-processing systems to drop the affected records. * Alternative StAX implementations (e.g., Woodstox https://github.com/FasterXML/woodstox , a transitive dependency of the Jackson XML Dataformat module): An exception is thrown during the logging call, and the log event is never delivered to its intended appender, only to Log4j's internal status logger. Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue by sanitizing forbidden characters before XML output.", Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34480", Severity: "Important", Metadata: map[string]interface{}{ @@ -3274,7 +3274,7 @@ var testCases = []testCase{ }, { Name: "CVE-2026-34480", - Description: "Apache Log4j Core’s XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#charsets producing invalid XML output whenever a log message or MDC value contains such characters. The impact depends on the StAX implementation in use: * JRE built-in StAX: Forbidden characters are silently written to the output, producing malformed XML. Conforming parsers must reject such documents with a fatal error, which may cause downstream log-processing systems to drop the affected records. * Alternative StAX implementations (e.g., Woodstox https://github.com/FasterXML/woodstox , a transitive dependency of the Jackson XML Dataformat module): An exception is thrown during the logging call, and the log event is never delivered to its intended appender, only to Log4j’s internal status logger. Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue by sanitizing forbidden characters before XML output.", + Description: "Apache Log4j Core's XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#charsets producing invalid XML output whenever a log message or MDC value contains such characters. The impact depends on the StAX implementation in use: * JRE built-in StAX: Forbidden characters are silently written to the output, producing malformed XML. Conforming parsers must reject such documents with a fatal error, which may cause downstream log-processing systems to drop the affected records. * Alternative StAX implementations (e.g., Woodstox https://github.com/FasterXML/woodstox , a transitive dependency of the Jackson XML Dataformat module): An exception is thrown during the logging call, and the log event is never delivered to its intended appender, only to Log4j's internal status logger. Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue by sanitizing forbidden characters before XML output.", Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34480", Severity: "Important", Metadata: map[string]interface{}{ @@ -3297,7 +3297,7 @@ var testCases = []testCase{ }, { Name: "CVE-2026-34481", - Description: "Apache Log4j’s JsonTemplateLayout https://logging.apache.org/log4j/2.x/manual/json-template-layout.html , in versions up to and including 2.25.3, produces invalid JSON output when log events contain non-finite floating-point values (NaN, Infinity, or -Infinity), which are prohibited by RFC 8259. This may cause downstream log processing systems to reject or fail to index affected records. An attacker can exploit this issue only if both of the following conditions are met: * The application uses JsonTemplateLayout. * The application logs a MapMessage containing an attacker-controlled floating-point value. Users are advised to upgrade to Apache Log4j JSON Template Layout 2.25.4, which corrects this issue.", + Description: "Apache Log4j's JsonTemplateLayout https://logging.apache.org/log4j/2.x/manual/json-template-layout.html , in versions up to and including 2.25.3, produces invalid JSON output when log events contain non-finite floating-point values (NaN, Infinity, or -Infinity), which are prohibited by RFC 8259. This may cause downstream log processing systems to reject or fail to index affected records. An attacker can exploit this issue only if both of the following conditions are met: * The application uses JsonTemplateLayout. * The application logs a MapMessage containing an attacker-controlled floating-point value. Users are advised to upgrade to Apache Log4j JSON Template Layout 2.25.4, which corrects this issue.", Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34481", Severity: "Important", Metadata: map[string]interface{}{ @@ -3478,7 +3478,7 @@ var testCases = []testCase{ }, { Name: "CVE-2026-34480", - Description: "Apache Log4j Core’s XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#charsets producing invalid XML output whenever a log message or MDC value contains such characters. The impact depends on the StAX implementation in use: * JRE built-in StAX: Forbidden characters are silently written to the output, producing malformed XML. Conforming parsers must reject such documents with a fatal error, which may cause downstream log-processing systems to drop the affected records. * Alternative StAX implementations (e.g., Woodstox https://github.com/FasterXML/woodstox , a transitive dependency of the Jackson XML Dataformat module): An exception is thrown during the logging call, and the log event is never delivered to its intended appender, only to Log4j’s internal status logger. Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue by sanitizing forbidden characters before XML output.", + Description: "Apache Log4j Core's XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#charsets producing invalid XML output whenever a log message or MDC value contains such characters. The impact depends on the StAX implementation in use: * JRE built-in StAX: Forbidden characters are silently written to the output, producing malformed XML. Conforming parsers must reject such documents with a fatal error, which may cause downstream log-processing systems to drop the affected records. * Alternative StAX implementations (e.g., Woodstox https://github.com/FasterXML/woodstox , a transitive dependency of the Jackson XML Dataformat module): An exception is thrown during the logging call, and the log event is never delivered to its intended appender, only to Log4j's internal status logger. Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue by sanitizing forbidden characters before XML output.", Link: "https://nvd.nist.gov/vuln/detail/CVE-2026-34480", Severity: "Important", Metadata: map[string]interface{}{ From 4af1fcaf73e603b0c0fa930cc90e3a71f7a0d7e7 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Fri, 29 May 2026 16:20:40 +0200 Subject: [PATCH 31/37] Apply suggestions from code review Co-authored-by: Misha Sugakov <537715+msugakov@users.noreply.github.com> --- image/vulnerabilities/Dockerfile | 2 +- rpms.in.yaml | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/image/vulnerabilities/Dockerfile b/image/vulnerabilities/Dockerfile index 547b4d31b..fa6388a93 100644 --- a/image/vulnerabilities/Dockerfile +++ b/image/vulnerabilities/Dockerfile @@ -2,7 +2,7 @@ ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi9-minimal ARG BASE_TAG=latest -FROM ${BASE_REGISTRY}/ubi9-micro:${BASE_TAG} +FROM registry.access.redhat.com/ubi9-micro:latest ARG LABEL_VERSION ARG LABEL_RELEASE diff --git a/rpms.in.yaml b/rpms.in.yaml index 2117567c8..06fc8a571 100644 --- a/rpms.in.yaml +++ b/rpms.in.yaml @@ -4,7 +4,6 @@ packages: # Scanner packages (for konflux.Dockerfile stage: package_installer) # These packages are installed on top of ubi9-micro base image -# Note: coreutils and bash are excluded - ubi9-micro already includes them # Note: rpm is required by scanner binary to query packages in scanned images - findutils - ca-certificates @@ -14,10 +13,6 @@ packages: - less - tar -# Note: Scanner-DB images don't need RPM prefetch because: -# - konflux.Dockerfile uses registry.redhat.io/rhel9/postgresql-15 base (already has everything) -# - Dockerfile and Dockerfile.slim use ubi9 (full) in dependency_builder stage (can install packages via dnf normally) - contentOrigin: repofiles: [ "rpms.rhel.repo" ] @@ -26,7 +21,8 @@ context: file: image/scanner/rhel/konflux.Dockerfile stageName: package_installer imagePattern: registry.access.redhat.com/ubi9/ubi-micro:latest - +context: + bare: true arches: - aarch64 - ppc64le From 7c32013bd548581cdc7def764c948afd36336993 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Fri, 29 May 2026 16:16:28 +0200 Subject: [PATCH 32/37] fix: Clean up rpms.in.yaml per review feedback Remove redundant comments, add openssl for FIPS support, and use bare context to avoid dependency exclusion bugs. Co-Authored-By: Claude Opus 4.6 --- rpms.in.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/rpms.in.yaml b/rpms.in.yaml index 06fc8a571..0c0db4288 100644 --- a/rpms.in.yaml +++ b/rpms.in.yaml @@ -12,17 +12,14 @@ packages: - gzip - less - tar +- openssl contentOrigin: repofiles: [ "rpms.rhel.repo" ] context: - containerfile: - file: image/scanner/rhel/konflux.Dockerfile - stageName: package_installer - imagePattern: registry.access.redhat.com/ubi9/ubi-micro:latest -context: - bare: true + bare: true + arches: - aarch64 - ppc64le From 3ed0de0a2f6312272a97937702e3802c49444c84 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Fri, 29 May 2026 16:17:35 +0200 Subject: [PATCH 33/37] fix: Simplify Dockerfile FROM lines by removing unused ARGs BASE_REGISTRY, BASE_IMAGE, and BASE_TAG are never overridden for scanner and vulnerabilities images. Co-Authored-By: Claude Opus 4.6 --- image/scanner/rhel/Dockerfile | 10 +++------- image/scanner/rhel/Dockerfile.slim | 10 +++------- image/vulnerabilities/Dockerfile | 6 +----- 3 files changed, 7 insertions(+), 19 deletions(-) diff --git a/image/scanner/rhel/Dockerfile b/image/scanner/rhel/Dockerfile index edec008e4..6800bc539 100644 --- a/image/scanner/rhel/Dockerfile +++ b/image/scanner/rhel/Dockerfile @@ -1,16 +1,12 @@ -ARG BASE_REGISTRY=registry.access.redhat.com -ARG BASE_IMAGE=ubi9-minimal -ARG BASE_TAG=latest +FROM registry.access.redhat.com/ubi9-micro:latest AS ubi-micro-base -FROM ${BASE_REGISTRY}/ubi9-micro:${BASE_TAG} AS ubi-micro-base - -FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS extracted_bundle +FROM registry.access.redhat.com/ubi9-minimal:latest AS extracted_bundle COPY bundle.tar.gz / WORKDIR /bundle RUN microdnf install -y tar gzip && tar -zxf /bundle.tar.gz -FROM ${BASE_REGISTRY}/ubi9:${BASE_TAG} AS package_installer +FROM registry.access.redhat.com/ubi9:latest AS package_installer COPY --from=ubi-micro-base / /out/ diff --git a/image/scanner/rhel/Dockerfile.slim b/image/scanner/rhel/Dockerfile.slim index 459ac7bcc..e6bcfbaab 100644 --- a/image/scanner/rhel/Dockerfile.slim +++ b/image/scanner/rhel/Dockerfile.slim @@ -1,16 +1,12 @@ -ARG BASE_REGISTRY=registry.access.redhat.com -ARG BASE_IMAGE=ubi9-minimal -ARG BASE_TAG=latest +FROM registry.access.redhat.com/ubi9-micro:latest AS ubi-micro-base -FROM ${BASE_REGISTRY}/ubi9-micro:${BASE_TAG} AS ubi-micro-base - -FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS extracted_bundle +FROM registry.access.redhat.com/ubi9-minimal:latest AS extracted_bundle COPY bundle.tar.gz / WORKDIR /bundle RUN microdnf install -y tar gzip && tar -zxf /bundle.tar.gz -FROM ${BASE_REGISTRY}/ubi9:${BASE_TAG} AS package_installer +FROM registry.access.redhat.com/ubi9:latest AS package_installer COPY --from=ubi-micro-base / /out/ diff --git a/image/vulnerabilities/Dockerfile b/image/vulnerabilities/Dockerfile index fa6388a93..80b4f6e1f 100644 --- a/image/vulnerabilities/Dockerfile +++ b/image/vulnerabilities/Dockerfile @@ -1,8 +1,4 @@ -ARG BASE_REGISTRY=registry.access.redhat.com -ARG BASE_IMAGE=ubi9-minimal -ARG BASE_TAG=latest - -FROM registry.access.redhat.com/ubi9-micro:latest +FROM registry.access.redhat.com/ubi9-micro:latest ARG LABEL_VERSION ARG LABEL_RELEASE From 915a7f5632b6f66faae1ac4704e77860e1dfbf59 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Fri, 29 May 2026 16:18:24 +0200 Subject: [PATCH 34/37] fix: Add openssl for FIPS and use rpm --root for curl removal - Add openssl package needed for FIPS compliance - Use rpm --root=/out instead of chroot /out rpm - Add comment explaining why curl removal is needed Co-Authored-By: Claude Opus 4.6 --- image/scanner/rhel/Dockerfile | 6 ++++-- image/scanner/rhel/Dockerfile.slim | 6 ++++-- image/scanner/rhel/konflux.Dockerfile | 6 ++++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/image/scanner/rhel/Dockerfile b/image/scanner/rhel/Dockerfile index 6800bc539..d95807075 100644 --- a/image/scanner/rhel/Dockerfile +++ b/image/scanner/rhel/Dockerfile @@ -21,8 +21,10 @@ RUN dnf install -y \ xz \ gzip \ less \ - tar && \ - chroot /out rpm -e --nodeps curl && \ + tar \ + openssl && \ + # curl is a transitive dependency of rpm but not needed in the scanner image + rpm --root=/out -e --nodeps curl && \ dnf clean all --installroot=/out/ && \ rm -rf /out/var/cache/dnf /out/var/cache/yum diff --git a/image/scanner/rhel/Dockerfile.slim b/image/scanner/rhel/Dockerfile.slim index e6bcfbaab..edacb2566 100644 --- a/image/scanner/rhel/Dockerfile.slim +++ b/image/scanner/rhel/Dockerfile.slim @@ -21,8 +21,10 @@ RUN dnf install -y \ xz \ gzip \ less \ - tar && \ - chroot /out rpm -e --nodeps curl && \ + tar \ + openssl && \ + # curl is a transitive dependency of rpm but not needed in the scanner image + rpm --root=/out -e --nodeps curl && \ dnf clean all --installroot=/out/ && \ rm -rf /out/var/cache/dnf /out/var/cache/yum diff --git a/image/scanner/rhel/konflux.Dockerfile b/image/scanner/rhel/konflux.Dockerfile index 5a7c7fca7..5ac4449bb 100644 --- a/image/scanner/rhel/konflux.Dockerfile +++ b/image/scanner/rhel/konflux.Dockerfile @@ -45,8 +45,10 @@ RUN dnf install -y \ xz \ gzip \ less \ - tar && \ - chroot /out rpm -e --nodeps curl && \ + tar \ + openssl && \ + # curl is a transitive dependency of rpm but not needed in the scanner image + rpm --root=/out -e --nodeps curl && \ dnf clean all --installroot=/out/ && \ rm -rf /out/var/cache/dnf /out/var/cache/yum From 1378f54538a75300db76643d46ce34c670b23c61 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Fri, 29 May 2026 16:27:15 +0200 Subject: [PATCH 35/37] chore: Regenerate rpms.lock.yaml Includes openssl and all transitive dependencies now that context uses bare:true instead of containerfile filtering. Co-Authored-By: Claude Opus 4.6 --- rpms.lock.yaml | 2296 +++++++++++++++++++++++++++++++++++------------- 1 file changed, 1676 insertions(+), 620 deletions(-) diff --git a/rpms.lock.yaml b/rpms.lock.yaml index 831d10e4c..9aeb9e843 100644 --- a/rpms.lock.yaml +++ b/rpms.lock.yaml @@ -11,20 +11,34 @@ arches: name: alternatives evr: 1.24-2.el9 sourcerpm: chkconfig-1.24-2.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.aarch64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 120220 - checksum: sha256:001622be7ab510ecddc8d0d1dbc2769892e867fa149bca5226c2a9b804f6e545 + size: 128901 + checksum: sha256:11880ec70b575841843cbee0853e03e50a0506321ea0a6f76c0c8145d79ae531 name: audit-libs - evr: 3.1.5-7.el9 - sourcerpm: audit-3.1.5-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.aarch64.rpm + evr: 3.1.5-8.el9 + sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 43945 - checksum: sha256:d5ae9d4fc841dbfa72948e6810cbc1baf0430545a2cb195683b1b5b950ae8cc6 + size: 8229 + checksum: sha256:f498b0813fa1a825d550e8e3a9e42255eabfa18e6fc96adfc6cc8fa7e16dd513 + name: basesystem + evr: 11-13.el9 + sourcerpm: basesystem-11-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/b/bash-5.1.8-9.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1760045 + checksum: sha256:7dc1febec9c2fb184ed4407f8a188ab267b7e46b3534866f702c6266008ababa + name: bash + evr: 5.1.8-9.el9 + sourcerpm: bash-5.1.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 47655 + checksum: sha256:8267a866b9289ac4e4a92cb4642adcdeff97c2ed816ddda87ed5d5e9d9431a2f name: bzip2-libs - evr: 1.0.8-10.el9_5 - sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm + evr: 1.0.8-11.el9 + sourcerpm: bzip2-1.0.8-11.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 1072208 @@ -32,20 +46,34 @@ arches: name: ca-certificates evr: 2025.2.80_v9.0.305-91.el9 sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/coreutils-8.32-40.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1178977 + checksum: sha256:232157668e7d2b80c61fe60da1c8165c3f5e50a417d1a6e04408ecd6d692bbf2 + name: coreutils + evr: 8.32-40.el9 + sourcerpm: coreutils-8.32-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/coreutils-common-8.32-40.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 92511 - checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 + size: 2116174 + checksum: sha256:d50877ba7f37788625d6b52d175f2e71bbf160075da235458975361ffdc4811f + name: coreutils-common + evr: 8.32-40.el9 + sourcerpm: coreutils-8.32-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 98707 + checksum: sha256:a9ad86b8df75a7c9c29c6f6dd4b8f78cfa1f42b492eff0d11b82c457d37a7f9f name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/curl-7.76.1-35.el9_7.3.aarch64.rpm + evr: 20260224-1.gitea0f072.el9_8 + sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/curl-7.76.1-40.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 295895 - checksum: sha256:2ed44feaa9dd15834295493690fd383d21d226ab1801be9daf4234d064ccc428 + size: 303260 + checksum: sha256:5abd0d4ade384b6432882e095ee3f354700d66aeb3f655bd78c25427444a3875 name: curl - evr: 7.76.1-35.el9_7.3 - sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 771760 @@ -53,6 +81,13 @@ arches: name: cyrus-sasl-lib evr: 2.1.27-22.el9 sourcerpm: cyrus-sasl-2.1.27-22.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/f/filesystem-3.16-5.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 5003914 + checksum: sha256:484bc41109c49066cf350344150abe144e63263e0fafa0bf12c5a47f853e6a49 + name: filesystem + evr: 3.16-5.el9 + sourcerpm: filesystem-3.16-5.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/f/findutils-4.8.0-7.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 564807 @@ -74,6 +109,34 @@ arches: name: gdbm-libs evr: 1:1.23-1.el9 sourcerpm: gdbm-1.23-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/glibc-2.34-270.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1814894 + checksum: sha256:3c53335370d5ac00dfb094f18f1f1a113452ffc88521ba4af1bb70449149453a + name: glibc + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/glibc-common-2.34-270.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 313725 + checksum: sha256:b908c768c75770132812c89f216af25377cb3efc69b7bafb19d63de41cac526a + name: glibc-common + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/glibc-gconv-extra-2.34-270.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1832221 + checksum: sha256:69d7b550276fd57a3a7b89e734209e4a3c01ca25d757a85ea41278641a2e5cae + name: glibc-gconv-extra + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-270.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 31813 + checksum: sha256:bc3bc61593f11049120c35d6bb297456577ad31a0db114737305c428c6270932 + name: glibc-minimal-langpack + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/gmp-6.2.0-13.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 275679 @@ -102,13 +165,13 @@ arches: name: keyutils-libs evr: 1.6.3-1.el9 sourcerpm: keyutils-1.6.3-1.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/k/krb5-libs-1.21.1-9.el9_7.aarch64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 793456 - checksum: sha256:ddd56a2ab7609568d273dae5956e680f8fca41a8314c13def2b9149948d601c4 + size: 793489 + checksum: sha256:f8bbc9abe0da1ebe5bc028154bd54d465fe0682ddbb64c45882b84ff09f40e1d name: krb5-libs - evr: 1.21.1-9.el9_7 - sourcerpm: krb5-1.21.1-9.el9_7.src.rpm + evr: 1.21.1-10.el9_8 + sourcerpm: krb5-1.21.1-10.el9_8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/less-590-6.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 165028 @@ -116,6 +179,13 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libacl-2.3.1-4.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 24374 + checksum: sha256:7c98786eea7783275ff88dc4b524ab4a9cc0c4c8b40206b2cdf7174d3e339918 + name: libacl + evr: 2.3.1-4.el9 + sourcerpm: acl-2.3.1-4.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 400590 @@ -123,6 +193,13 @@ arches: name: libarchive evr: 3.5.3-9.el9_7 sourcerpm: libarchive-3.5.3-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libattr-2.5.1-3.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 20696 + checksum: sha256:b6a73c9da522df55690b886c0a9af39338571d34ee6f0d4d9b994c8289df3412 + name: libattr + evr: 2.5.1-3.el9 + sourcerpm: attr-2.5.1-3.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 325179 @@ -130,6 +207,13 @@ arches: name: libbrotli evr: 1.0.9-9.el9_7 sourcerpm: brotli-1.0.9-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 78021 + checksum: sha256:1ac3014c33b84d7a492b99d46d47940b096e034a3d5886e16ace7159724be012 + name: libcap + evr: 2.48-10.el9_8.1 + sourcerpm: libcap-2.48-10.el9_8.1.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 36033 @@ -144,13 +228,13 @@ arches: name: libcom_err evr: 1.46.5-8.el9 sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-35.el9_7.3.aarch64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 284784 - checksum: sha256:ab4a5868ad994f4776b32e92833ac5112cdc81c99fb78e76d8607e9c88ae2bf9 + size: 291404 + checksum: sha256:4d77a96282b20b10d8e221e1208f0be8ec21274c090ee44866f36646e7b7206a name: libcurl - evr: 7.76.1-35.el9_7.3 - sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 265763 @@ -165,6 +249,13 @@ arches: name: libffi evr: 3.4.2-8.el9 sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 81211 + checksum: sha256:6923218fdef581189a4b51c7ba158083597f1c6df08cae021a1d90e9d61938a9 + name: libgcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 107549 @@ -172,13 +263,13 @@ arches: name: libidn2 evr: 2.3.0-7.el9 sourcerpm: libidn2-2.3.0-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_7.1.aarch64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 79593 - checksum: sha256:60e82df5c22ff2aa0c093b6c3992a13e32e1c0998e27020be724c3d9cc4892f2 + size: 79620 + checksum: sha256:69ae21fe69981041b43d3420800b691b854a32df2a26e84ce367bcfe4a4cac69 name: libnghttp2 - evr: 1.43.0-6.el9_7.1 - sourcerpm: nghttp2-1.43.0-6.el9_7.1.src.rpm + evr: 1.43.0-6.el9_8.1 + sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 67300 @@ -186,6 +277,13 @@ arches: name: libpsl evr: 0.21.1-5.el9 sourcerpm: libpsl-0.21.1-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libselinux-3.6-3.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 89531 + checksum: sha256:3d7249adbf19206e319cd24acc2e01b0da39975aa3e5af73bdb6c6d438108fac + name: libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 120963 @@ -193,6 +291,13 @@ arches: name: libsemanage evr: 3.6-5.el9_6 sourcerpm: libsemanage-3.6-5.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libsepol-3.6-3.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 326966 + checksum: sha256:496ed9e2d7fac9704afe764eab4c2c43b4a47e8c229c14498dd19786f98f80c0 + name: libsepol + evr: 3.6-3.el9 + sourcerpm: libsepol-3.6-3.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 30566 @@ -200,20 +305,20 @@ arches: name: libsigsegv evr: 2.13-4.el9 sourcerpm: libsigsegv-2.13-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-17.el9_7.aarch64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-18.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 215091 - checksum: sha256:900b684846c180a7303ac561030ce4cb0c6be2ad51b3ea9ef0810e3ae103ec32 + size: 222382 + checksum: sha256:6d529b3f31dee553349277c9f72da4f14ae54a2d48d10aa3088b45fbe90f99c2 name: libssh - evr: 0.10.4-17.el9_7 - sourcerpm: libssh-0.10.4-17.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-17.el9_7.noarch.rpm + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 8268 - checksum: sha256:9815db066478c3b1bdd5367de09e0aedf465127716358a8877990736589c6078 + size: 14685 + checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb name: libssh-config - evr: 0.10.4-17.el9_7 - sourcerpm: libssh-0.10.4-17.el9_7.src.rpm + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 77910 @@ -277,13 +382,27 @@ arches: name: lz4-libs evr: 1.9.3-5.el9 sourcerpm: lz4-1.9.3-5.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/m/mpfr-4.1.0-7.el9.aarch64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 247844 - checksum: sha256:09ff81634b9741b286b42e2067270b4f95141a5ea03886f0610e25e9d0f941a2 + size: 249973 + checksum: sha256:c238f7451d1fcc5431bef2904ba56a0bea51d28337ccb692f6d6a09286043a65 name: mpfr - evr: 4.1.0-7.el9 - sourcerpm: mpfr-4.1.0-7.el9.src.rpm + evr: 4.1.0-10.el9 + sourcerpm: mpfr-4.1.0-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 97840 + checksum: sha256:d62dfd41f9688efa2cf1ceedb96084c63e297fbdcfd1e72bc6757c730092b60c + name: ncurses-base + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 324624 + checksum: sha256:b5dd452392d2f97bb050c9f5e5376998652c567dcbd8f035d26659b1b551b5c9 + name: ncurses-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openldap-2.6.8-4.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 291500 @@ -291,6 +410,13 @@ arches: name: openldap evr: 2.6.8-4.el9 sourcerpm: openldap-2.6.8-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-3.5.5-2.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1540395 + checksum: sha256:403f167e9b16b32c64f5bedb7676c46e026d16540a4f1671e420e8cfc4b32ae0 + name: openssl + evr: 1:3.5.5-2.el9_8 + sourcerpm: openssl-3.5.5-2.el9_8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 9366 @@ -305,27 +431,27 @@ arches: name: openssl-fips-provider-so evr: 3.0.7-8.el9 sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.aarch64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-libs-3.5.5-2.el9_8.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 2285222 - checksum: sha256:5a659a77448de7221c58e25cf3474c49f2d80e2b96ef18c8807bd80d82fcf167 + size: 2288498 + checksum: sha256:4fb5e184af8ca9f33354c078275033b266b2e9c9a8001004e7579d4d755c4ebb name: openssl-libs - evr: 1:3.5.1-7.el9_7 - sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.aarch64.rpm + evr: 1:3.5.5-2.el9_8 + sourcerpm: openssl-3.5.5-2.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 523171 - checksum: sha256:b35f44babbb425e5626f21a21eb40017d2e671daf5d0848799a39070f630e7ba + size: 582494 + checksum: sha256:5c8fe4b19ea7a76bc2213087ee91679143217fbc33162103e60dd60735504f36 name: p11-kit - evr: 0.25.3-3.el9_5 - sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/p11-kit-trust-0.25.3-3.el9_5.aarch64.rpm + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 145428 - checksum: sha256:56a9bf7685f57d1dacf248d25309a8f8bdd6f919908748d7a9b93258a00fc37d + size: 158801 + checksum: sha256:713b79a7f12829d98bad68dd2d661f3ef30969fdffbbbb5de4dc7aec6cfdd030 name: p11-kit-trust - evr: 0.25.3-3.el9_5 - sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/pcre-8.44-4.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 187289 @@ -333,6 +459,20 @@ arches: name: pcre evr: 8.44-4.el9 sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/pcre2-10.40-6.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 224938 + checksum: sha256:29285f81cef68f73b4f8ff81ee8fdf4ceaa007933302119ed1615e4aa1091613 + name: pcre2 + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 147926 + checksum: sha256:d386b5e9b3a4b077b2ba143882e605750855dd3354f13c55fa12ed26908cb442 + name: pcre2-syntax + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/popt-1.18-8.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 70067 @@ -354,48 +494,76 @@ arches: name: readline evr: 8.1-4.el9 sourcerpm: readline-8.1-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/r/rpm-4.16.1.3-39.el9.aarch64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 544141 - checksum: sha256:804800eb678ecfb03d1c4abdbfebb96520cfd80138cee5534472d0c5af5e33cb + size: 61683 + checksum: sha256:fa7f1d93927c7f8c6f6563a8d221af659074f026e4b12cd74d456b0db1878164 + name: redhat-release + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/r/redhat-release-eula-9.8-1.0.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 18336 + checksum: sha256:7d74896ddd0d19cef1533d212b9e44efbcd8eb0d173f4b67261c08028421b881 + name: redhat-release-eula + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/r/rpm-4.16.1.3-40.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 546367 + checksum: sha256:29c03d6824a78ea747a1bfd2c9832807a049f8276c9647981a4be40f08225d76 name: rpm - evr: 4.16.1.3-39.el9 - sourcerpm: rpm-4.16.1.3-39.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/r/rpm-libs-4.16.1.3-39.el9.aarch64.rpm + evr: 4.16.1.3-40.el9 + sourcerpm: rpm-4.16.1.3-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/r/rpm-libs-4.16.1.3-40.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 307199 - checksum: sha256:3a676cf7aa248b4840517977afcaec6e7f4b0f875626fc257d5af023467a20d0 + size: 307940 + checksum: sha256:a6d053bde52dbc9c150a610afabd0c9437c65e0a9519c836b2d2223ac47b9c68 name: rpm-libs - evr: 4.16.1.3-39.el9 - sourcerpm: rpm-4.16.1.3-39.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/sed-4.8-9.el9.aarch64.rpm + evr: 4.16.1.3-40.el9 + sourcerpm: rpm-4.16.1.3-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/sed-4.8-10.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 314254 - checksum: sha256:c67205a62c1ef2ad5689382d9f1d1ddc84ca4eada797209d7561e16fa049fde1 + size: 315893 + checksum: sha256:b73d314a8ef322a690bb69c49cb0dbd9a5ff18d2ba6b2973e18d2c076a52b62a name: sed - evr: 4.8-9.el9 - sourcerpm: sed-4.8-9.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/shadow-utils-4.9-15.el9.aarch64.rpm + evr: 4.8-10.el9 + sourcerpm: sed-4.8-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 153791 + checksum: sha256:0891d395ce067121c28932534237ad1ce231f2bfa987411ad62e73a12d11eb6a + name: setup + evr: 2.13.7-10.el9 + sourcerpm: setup-2.13.7-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 1241888 - checksum: sha256:93e53d8bf8f4bf2a3acf0f4f82967598570e24cb4bc2633cb3022a3c70217a74 + size: 1244527 + checksum: sha256:ccc46a8ea5f30d071e075ad53b5d39d191cfca4614090435528f2d2f944f88a2 name: shadow-utils - evr: 2:4.9-15.el9 - sourcerpm: shadow-utils-4.9-15.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/sqlite-libs-3.34.1-9.el9_7.aarch64.rpm + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 651362 - checksum: sha256:0536dc96331c04f3be530ad58e42cf32c8685242856ece0864f5bbfffc17dc59 + size: 660260 + checksum: sha256:dda4c59309d47d73d64291c53078cce330b8d5a9d95c903e133d9f37ec0e0a68 name: sqlite-libs - evr: 3.34.1-9.el9_7 - sourcerpm: sqlite-3.34.1-9.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/t/tar-1.34-9.el9_7.aarch64.rpm + evr: 3.34.1-10.el9_8 + sourcerpm: sqlite-3.34.1-10.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/t/tar-1.34-11.el9.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms - size: 898317 - checksum: sha256:2d0bd44116c3f5c229d25fdc6458f6ce24a7ad4fdb463767eea48dcab78c5062 + size: 904777 + checksum: sha256:62f985a87e048caa3ef883966d6176448398abc42df00ebff07e7311ff5f425d name: tar - evr: 2:1.34-9.el9_7 - sourcerpm: tar-1.34-9.el9_7.src.rpm + evr: 2:1.34-11.el9 + sourcerpm: tar-1.34-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 933841 + checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + name: tzdata + evr: 2026b-1.el9 + sourcerpm: tzdata-2026b-1.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 235798 @@ -418,24 +586,48 @@ arches: evr: 1.2.11-40.el9 sourcerpm: zlib-1.2.11-40.el9.src.rpm source: - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/a/acl-2.3.1-4.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 535332 + checksum: sha256:cb449bc6c85e0b50fa0bb98c969ff8481fee40517d8ebec5e28b72e5360fbe1e + name: acl + evr: 2.3.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/a/attr-2.5.1-3.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 1268651 - checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb + size: 482234 + checksum: sha256:5171534e7de11df197f3c5e08658544983198288e04624c739b5c3d9db07b59c + name: attr + evr: 2.5.1-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/a/audit-3.1.5-8.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1275064 + checksum: sha256:e0a3e72c863512032e0ba95337db076fa5af9368d9a80529a9624afc8877401c name: audit - evr: 3.1.5-7.el9 + evr: 3.1.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/b/basesystem-11-13.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 9884 + checksum: sha256:5a4ed0779fc06f08115d6e06aa95486f1e1e251f8f9ddb6c7e14e811bb2e24ef + name: basesystem + evr: 11-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/b/bash-5.1.8-9.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 10512850 + checksum: sha256:5d7bbbf2538361be1a11846602862c3a56809b3ea43b69b86bcf407538e9e260 + name: bash + evr: 5.1.8-9.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/b/brotli-1.0.9-9.el9_7.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 517498 checksum: sha256:814868e0bec831c79d3e12ff76d31e06e5e62c462a1a4b6607b1f3cab7014438 name: brotli evr: 1.0.9-9.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-11.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 824335 - checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 + size: 828199 + checksum: sha256:ba58283fc4ef85911f20a8e45ffa00497775858102d48f2a32ebf1010a1abefc name: bzip2 - evr: 1.0.8-10.el9_5 + evr: 1.0.8-11.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 711648 @@ -448,18 +640,24 @@ arches: checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc name: chkconfig evr: 1.24-2.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/coreutils-8.32-40.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 107074 - checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa + size: 5695125 + checksum: sha256:476f7d40d45ca0dc019a28966e410bb7dc9cba3dd7c58b744b2042b84435bf5a + name: coreutils + evr: 8.32-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 112905 + checksum: sha256:775d926429179caeade6af8dc7dea15a0bea49102c2592d5b712f996a329ec38 name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/curl-7.76.1-35.el9_7.3.src.rpm + evr: 20260224-1.gitea0f072.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/curl-7.76.1-40.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 2564300 - checksum: sha256:670afd4496d5eec73b99528af258cf87be65cf4567c9e7c76a3c7508af3e6687 + size: 2572192 + checksum: sha256:c062dd3816ec11062751eb0ad352104340c18c2f01587e7c4a4c8145211ff65d name: curl - evr: 7.76.1-35.el9_7.3 + evr: 7.76.1-40.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/cyrus-sasl-2.1.27-22.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 4025677 @@ -472,6 +670,12 @@ arches: checksum: sha256:5c613445f928889a52a0a82f4ed866502e82c99b0c983024ab97421391abd061 name: e2fsprogs evr: 1.46.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/f/filesystem-3.16-5.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 20486 + checksum: sha256:c795690df30c46e521372e2f649c995a2abc159b76c8ef6cd5da8a713ea17937 + name: filesystem + evr: 3.16-5.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 2010585 @@ -484,12 +688,24 @@ arches: checksum: sha256:37571947707e835d36ceb5641b187aba13ef8f5f605a6762ce72aeea3e745b8d name: gawk evr: 5.1.0-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/gcc-11.5.0-14.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 81978017 + checksum: sha256:19dec462f2880508570ca42a82c2f76fbd95fcad8d3e3ff812e9ca50cdeb2d8f + name: gcc + evr: 11.5.0-14.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/gdbm-1.23-1.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 1130147 checksum: sha256:ad42264274c2a792220395a4dbe736a1de6100c4e14611707ec1dd447583271f name: gdbm evr: 1:1.23-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/glibc-2.34-270.el9_8.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 20414318 + checksum: sha256:ac1dbcb022ceae7c6c59f7ea64f7f5e696f193158d10123ad7a9bf9344a7fa9b + name: glibc + evr: 2.34-270.el9_8 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/gmp-6.2.0-13.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 2503825 @@ -514,12 +730,12 @@ arches: checksum: sha256:6afa567438acd0d3a6a66bc6a3c68ec2f4ae5ed9c7230c3f0478d2281a092688 name: keyutils evr: 1.6.3-1.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/k/krb5-1.21.1-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/k/krb5-1.21.1-10.el9_8.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 8950679 - checksum: sha256:060d98c68b453970fcb516ba38eb5b797e6f4e20e173e3b237c2ca36cc23a411 + size: 8964976 + checksum: sha256:b22a66515c98c14a4969a403d5419b9f9bab50015553863de866d3f45fd6d922 name: krb5 - evr: 1.21.1-9.el9_7 + evr: 1.21.1-10.el9_8 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/less-590-6.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 382338 @@ -532,6 +748,12 @@ arches: checksum: sha256:69ee18f9881f3768c7b01d03185f3fba9637c0477e585a113fd3641c7dcd3d41 name: libarchive evr: 3.5.3-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libcap-2.48-10.el9_8.1.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 208035 + checksum: sha256:7f96d98c99f190b840985b3589183a3f1dc444e0932f256491b24d28c5031de3 + name: libcap + evr: 2.48-10.el9_8.1 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 470599 @@ -562,24 +784,36 @@ arches: checksum: sha256:0325329a882e68a2f817bac959abe49abc67d3dac9381a5a02c006916a86f17c name: libpsl evr: 0.21.1-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libselinux-3.6-3.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 271153 + checksum: sha256:a08a84389665ef614eb6d9b06a53128eab89b650c799c0558f3ae04df97c4b13 + name: libselinux + evr: 3.6-3.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 223978 checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 name: libsemanage evr: 3.6-5.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libsepol-3.6-3.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 543960 + checksum: sha256:2dacf2f1c1f61562ccc5ad082939158745e5a4a572d135d4f8ff00f75e1e94df + name: libsepol + evr: 3.6-3.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 473267 checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 name: libsigsegv evr: 2.13-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libssh-0.10.4-17.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libssh-0.10.4-18.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 666751 - checksum: sha256:b6704bba8787776c03b828b5b1de4e499f68818852e7b1aa08f5270724d5b832 + size: 707007 + checksum: sha256:e012994887f4f4c4367bce98f2eb5589bfa5c7926d65471cefeee12bee636b1d name: libssh - evr: 0.10.4-17.el9_7 + evr: 0.10.4-18.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-9.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 1895591 @@ -628,48 +862,60 @@ arches: checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 name: lz4 evr: 1.9.3-5.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-10.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 1556195 - checksum: sha256:1a6f60487d5ebb8998718c8246a49baf182e27318aa16e6a80b1ba7600b74e13 + size: 1560595 + checksum: sha256:c812e3c35d5bd5c3e33c65cdcf39d434acfd538aaa68ac04e3a5a9cc60556d50 name: mpfr - evr: 4.1.0-7.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/n/nghttp2-1.43.0-6.el9_7.1.src.rpm + evr: 4.1.0-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/n/ncurses-6.2-12.20210508.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 4003759 - checksum: sha256:6a1a3c8ee5ed3ebd826d16e9432102657903fbc833002b61e26d251f903b7a6a + size: 3586993 + checksum: sha256:cdb59ed3771a3a4f00e2ffca853f2de4aa887e3d5c3655317f2e2c03f461103f + name: ncurses + evr: 6.2-12.20210508.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/n/nghttp2-1.43.0-6.el9_8.1.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 4003756 + checksum: sha256:8b25596d58db32cf06c747c764ffc8ae328a9b7efb579d2ba2a302e887b3cf50 name: nghttp2 - evr: 1.43.0-6.el9_7.1 + evr: 1.43.0-6.el9_8.1 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/o/openldap-2.6.8-4.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 6548889 checksum: sha256:0d21c12c55d40d1fc2f006c8ec187b5fcc799b794cfd31ed2d98434189c62800 name: openldap evr: 2.6.8-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/o/openssl-3.5.5-2.el9_8.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 53417882 - checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb + size: 53322598 + checksum: sha256:34f88c3cc68ddb83e85ce6f581c19d08232696c15ad7d828a5d53f26ebc539dc name: openssl - evr: 1:3.5.1-7.el9_7 + evr: 1:3.5.5-2.el9_8 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 89979766 checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 name: openssl-fips-provider evr: 3.0.7-8.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/p11-kit-0.26.2-1.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 1027881 - checksum: sha256:de598a2e1ca170df85cd69d6cc406402407a244988506f53f8736a7546135260 + size: 1108578 + checksum: sha256:b33c02489d0d7b599498f04f09da5a3f6c0b6962c462bcc0ad8accbb4d41ea6c name: p11-kit - evr: 0.25.3-3.el9_5 + evr: 0.26.2-1.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 1624356 checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 name: pcre evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/pcre2-10.40-6.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1789790 + checksum: sha256:a570f7192be555222aa3704882b9199fb013a84ad4d7dcf40a93d8de2ecf6e0a + name: pcre2 + evr: 10.40-6.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/popt-1.18-8.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 595630 @@ -688,36 +934,54 @@ arches: checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 name: readline evr: 8.1-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/r/rpm-4.16.1.3-39.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/r/redhat-release-9.8-1.0.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 85364 + checksum: sha256:6c3f4a1287fb76e05e49217a15a33b9c228a56fc06e96376afb37201bfbe32da + name: redhat-release + evr: 9.8-1.0.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/r/rpm-4.16.1.3-40.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 4498489 - checksum: sha256:07d62b4b303a48f60845d4bae4d269bee8b2fc372e470cecc486d09a9685139f + size: 4502326 + checksum: sha256:311266f11a616acecfdcfca63214f91dc3ea88409098cf2ffec6c5e9cfc686ef name: rpm - evr: 4.16.1.3-39.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm + evr: 4.16.1.3-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/sed-4.8-10.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 1424192 - checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 + size: 1428416 + checksum: sha256:981073f2c251395b5ae42b7ff929f743260eea9738187fbb207042f11eae7ea7 name: sed - evr: 4.8-9.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm + evr: 4.8-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/setup-2.13.7-10.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 1712227 - checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 + size: 195940 + checksum: sha256:3acdbbd63bd77dd8b18210b9d597bd59ddf455ff728067638c54194ac3a8a32b + name: setup + evr: 2.13.7-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-16.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1713058 + checksum: sha256:771a5ed07cdb690c75cd428a8113e2ee471270044e6cb8025d92c54e32c180ff name: shadow-utils - evr: 2:4.9-15.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-9.el9_7.src.rpm + evr: 2:4.9-16.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-10.el9_8.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 25109403 - checksum: sha256:1d89566fe2e33bbd86fe1d024e3dbb7e800aef138f8d8d99ab65b15a6f6c2c5a + size: 25116090 + checksum: sha256:4387ae8d5a5a0b972b7a8612dca277499a43e7991163c7519e8a0ced2e57c90a name: sqlite - evr: 3.34.1-9.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm + evr: 3.34.1-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/t/tar-1.34-11.el9.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms - size: 2282680 - checksum: sha256:9b84935c6072500fa28674521fe13816a8be44c50bb8eaf5ec73994782161250 + size: 2294162 + checksum: sha256:13204f7499944b3fe773cbdf0b9bb2de31eaa9a4c69f31830fb9e54506bcb9b6 name: tar - evr: 2:1.34-9.el9_7 + evr: 2:1.34-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/t/tzdata-2026b-1.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 929993 + checksum: sha256:d549fc081c8cb2eec6c8273acfdd1b24023897c09fff24117fe2c2532d4bf085 + name: tzdata + evr: 2026b-1.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm repoid: rhel-9-for-aarch64-baseos-source-rpms size: 1168293 @@ -746,20 +1010,34 @@ arches: name: alternatives evr: 1.24-2.el9 sourcerpm: chkconfig-1.24-2.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.ppc64le.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 140704 - checksum: sha256:7d4c990831f2f92403ad7f59f5fadcaffef98442b951f34dd648a0b69b2b9a18 + size: 149393 + checksum: sha256:217118e6574a40a18ce9a3b46ab68ffbb62b65f2cffb3b8ec7da442e800be170 name: audit-libs - evr: 3.1.5-7.el9 - sourcerpm: audit-3.1.5-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.ppc64le.rpm + evr: 3.1.5-8.el9 + sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 47605 - checksum: sha256:f1b07f02b34fe8d8ba24eed9afd874ced25f4da14eb1b0c804e47de1281fce49 + size: 8229 + checksum: sha256:f498b0813fa1a825d550e8e3a9e42255eabfa18e6fc96adfc6cc8fa7e16dd513 + name: basesystem + evr: 11-13.el9 + sourcerpm: basesystem-11-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/b/bash-5.1.8-9.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1818376 + checksum: sha256:4ea13d08a909851376ff25b706c942eb3b66b0205e980aa4f9176e28ee1bae37 + name: bash + evr: 5.1.8-9.el9 + sourcerpm: bash-5.1.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 51183 + checksum: sha256:e6238a5785f9158154e4e267f7650b00d80f54c1479ef669ed7c26edee017fc2 name: bzip2-libs - evr: 1.0.8-10.el9_5 - sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm + evr: 1.0.8-11.el9 + sourcerpm: bzip2-1.0.8-11.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 1072208 @@ -767,20 +1045,34 @@ arches: name: ca-certificates evr: 2025.2.80_v9.0.305-91.el9 sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/coreutils-8.32-40.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1260238 + checksum: sha256:7ce7a3c81486a57c9ae5691a0a626dbe115fc7984675bf13cfd7e6b2b82b405b + name: coreutils + evr: 8.32-40.el9 + sourcerpm: coreutils-8.32-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/coreutils-common-8.32-40.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 92511 - checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 + size: 2115656 + checksum: sha256:a45bc3aa0cd59398688210573c2c2b617ca9232d33df792f755a9e6caff742ff + name: coreutils-common + evr: 8.32-40.el9 + sourcerpm: coreutils-8.32-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 98707 + checksum: sha256:a9ad86b8df75a7c9c29c6f6dd4b8f78cfa1f42b492eff0d11b82c457d37a7f9f name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/curl-7.76.1-35.el9_7.3.ppc64le.rpm + evr: 20260224-1.gitea0f072.el9_8 + sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/curl-7.76.1-40.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 302683 - checksum: sha256:089b35068610a9c120fcb60e0043efb776f16e1146a433cd9acc01cc8c910420 + size: 310002 + checksum: sha256:2c86a5ed7f7e7ce14a8aaacafafff421576f8093b539d3cf0d7acbed0bb25c1b name: curl - evr: 7.76.1-35.el9_7.3 - sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 876118 @@ -788,6 +1080,13 @@ arches: name: cyrus-sasl-lib evr: 2.1.27-22.el9 sourcerpm: cyrus-sasl-2.1.27-22.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/f/filesystem-3.16-5.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 5003944 + checksum: sha256:e7d0bd8df20dfb2b499634c34ec966e1bd477a5d15f98373f56089ed0f387aca + name: filesystem + evr: 3.16-5.el9 + sourcerpm: filesystem-3.16-5.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/f/findutils-4.8.0-7.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 603076 @@ -809,6 +1108,34 @@ arches: name: gdbm-libs evr: 1:1.23-1.el9 sourcerpm: gdbm-1.23-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/glibc-2.34-270.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 2911722 + checksum: sha256:5c23883112e39d4d3fe62d6d0d6f6c5b9729fe94b62bb551ceaa868a48d880ce + name: glibc + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/glibc-common-2.34-270.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 340448 + checksum: sha256:e97f806a6d88f05c0556dbe7b079647a85dea5428897ca29ed8d2c962d3e1f0c + name: glibc-common + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/glibc-gconv-extra-2.34-270.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1833932 + checksum: sha256:7f2dd81016e098191741fd68f6a1f48de20a7049d23332887429b8f66dd47b3e + name: glibc-gconv-extra + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/glibc-minimal-langpack-2.34-270.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 31837 + checksum: sha256:af0afca474195ac93e468d61fa316b6dcc5b9d0270a13655fac38298bee320cf + name: glibc-minimal-langpack + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/gmp-6.2.0-13.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 312805 @@ -837,13 +1164,13 @@ arches: name: keyutils-libs evr: 1.6.3-1.el9 sourcerpm: keyutils-1.6.3-1.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/k/krb5-libs-1.21.1-9.el9_7.ppc64le.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 872282 - checksum: sha256:feaf53dec0358504c62e7d7528269226431953daab7592eda1bc3ab8f0630fa0 + size: 872744 + checksum: sha256:29c5c7dbdd6ab6b3a72a229dccb60dc2596fb121ac7ddc5f8e37c3bf0b51f528 name: krb5-libs - evr: 1.21.1-9.el9_7 - sourcerpm: krb5-1.21.1-9.el9_7.src.rpm + evr: 1.21.1-10.el9_8 + sourcerpm: krb5-1.21.1-10.el9_8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/less-590-6.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 177816 @@ -851,6 +1178,13 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libacl-2.3.1-4.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 26589 + checksum: sha256:3612c4b0b3abab058e19ff290b96147ccbbd8179317a8d51f9ed78958d982b4a + name: libacl + evr: 2.3.1-4.el9 + sourcerpm: acl-2.3.1-4.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 470833 @@ -858,6 +1192,13 @@ arches: name: libarchive evr: 3.5.3-9.el9_7 sourcerpm: libarchive-3.5.3-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libattr-2.5.1-3.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 21501 + checksum: sha256:a2398158adad2016fca3d0d2c272e027b8279020992a349664caf6a2299ec50b + name: libattr + evr: 2.5.1-3.el9 + sourcerpm: attr-2.5.1-3.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 349508 @@ -865,6 +1206,13 @@ arches: name: libbrotli evr: 1.0.9-9.el9_7 sourcerpm: brotli-1.0.9-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 82771 + checksum: sha256:a623e466f4e510ab474b45e306b85d5864b81a15325bf652c94caa7f171848c4 + name: libcap + evr: 2.48-10.el9_8.1 + sourcerpm: libcap-2.48-10.el9_8.1.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 37600 @@ -879,13 +1227,13 @@ arches: name: libcom_err evr: 1.46.5-8.el9 sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libcurl-7.76.1-35.el9_7.3.ppc64le.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libcurl-7.76.1-40.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 321185 - checksum: sha256:4fe25624bf8d64e84154fbb95d64567dc6d50d841ebf41d78fdc3445b84f25b6 + size: 328257 + checksum: sha256:b23aab9d17501c04bb804a17f03bae178a302d0f9b65a41fbd6c1da62a76e799 name: libcurl - evr: 7.76.1-35.el9_7.3 - sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 287857 @@ -900,6 +1248,13 @@ arches: name: libffi evr: 3.4.2-8.el9 sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libgcc-11.5.0-14.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 75967 + checksum: sha256:0b6c9442a91dd807a0bedfbaacca463657b8cafc69b238a3536a1d15e26e8af0 + name: libgcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libidn2-2.3.0-7.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 110270 @@ -907,13 +1262,13 @@ arches: name: libidn2 evr: 2.3.0-7.el9 sourcerpm: libidn2-2.3.0-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_7.1.ppc64le.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 89545 - checksum: sha256:9d85c546efc693de263ef885d1bd79d00717a8a64dfeb7c7baa967401f757160 + size: 89569 + checksum: sha256:9ccc82dcb8133177672ea54e25a031d25b4064ee4062e835f1225318a900d15e name: libnghttp2 - evr: 1.43.0-6.el9_7.1 - sourcerpm: nghttp2-1.43.0-6.el9_7.1.src.rpm + evr: 1.43.0-6.el9_8.1 + sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libpsl-0.21.1-5.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 69346 @@ -921,6 +1276,13 @@ arches: name: libpsl evr: 0.21.1-5.el9 sourcerpm: libpsl-0.21.1-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libselinux-3.6-3.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 102114 + checksum: sha256:ca29ae2f3e2ed004aafca74bd18a97b5e987688bac061f573a9ad9903d2ce23a + name: libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 136617 @@ -928,6 +1290,13 @@ arches: name: libsemanage evr: 3.6-5.el9_6 sourcerpm: libsemanage-3.6-5.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libsepol-3.6-3.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 375249 + checksum: sha256:97e9b7c8e631f7c9e2ee2968f797302d854c0e7b15b5ea46675bdebc19bd5609 + name: libsepol + evr: 3.6-3.el9 + sourcerpm: libsepol-3.6-3.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libsigsegv-2.13-4.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 31522 @@ -935,20 +1304,20 @@ arches: name: libsigsegv evr: 2.13-4.el9 sourcerpm: libsigsegv-2.13-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libssh-0.10.4-17.el9_7.ppc64le.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libssh-0.10.4-18.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 243596 - checksum: sha256:cf9bcbd36e0d333f87fca58187a49ac3b179f31025437acaa97ff4fac61fe902 + size: 250594 + checksum: sha256:15cff94afc4645b00c917abd7780a6a3ee1b476dff3eaccaaed93b88298a2ca1 name: libssh - evr: 0.10.4-17.el9_7 - sourcerpm: libssh-0.10.4-17.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libssh-config-0.10.4-17.el9_7.noarch.rpm + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 8268 - checksum: sha256:9815db066478c3b1bdd5367de09e0aedf465127716358a8877990736589c6078 + size: 14685 + checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb name: libssh-config - evr: 0.10.4-17.el9_7 - sourcerpm: libssh-0.10.4-17.el9_7.src.rpm + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 84469 @@ -1012,13 +1381,27 @@ arches: name: lz4-libs evr: 1.9.3-5.el9 sourcerpm: lz4-1.9.3-5.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/m/mpfr-4.1.0-7.el9.ppc64le.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/m/mpfr-4.1.0-10.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 331631 - checksum: sha256:2b26e39f0eb248620c4ad20dff1690502c1912374b8ca7158d6d7eab33c27209 + size: 330392 + checksum: sha256:bf425d261cce15e7c529466472df78fc7fc094dd386c6804a9472e77ff5df3a3 name: mpfr - evr: 4.1.0-7.el9 - sourcerpm: mpfr-4.1.0-7.el9.src.rpm + evr: 4.1.0-10.el9 + sourcerpm: mpfr-4.1.0-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 97840 + checksum: sha256:d62dfd41f9688efa2cf1ceedb96084c63e297fbdcfd1e72bc6757c730092b60c + name: ncurses-base + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 379141 + checksum: sha256:f18294157d19ce7c86c07483b5c1262be4c899dd63b4297e4af15c63b91fd9cf + name: ncurses-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openldap-2.6.8-4.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 329998 @@ -1026,6 +1409,13 @@ arches: name: openldap evr: 2.6.8-4.el9 sourcerpm: openldap-2.6.8-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-3.5.5-2.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1565590 + checksum: sha256:c95fdc9cde7431d1478944463c72150b04fa11eb32973584dc72882e58b6d95e + name: openssl + evr: 1:3.5.5-2.el9_8 + sourcerpm: openssl-3.5.5-2.el9_8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 9390 @@ -1040,27 +1430,27 @@ arches: name: openssl-fips-provider-so evr: 3.0.7-8.el9 sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.ppc64le.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-libs-3.5.5-2.el9_8.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 2550625 - checksum: sha256:99dac7eb92b2cf3e4e2f512378397f59d206795e89bef3bb6891062e334fa65c + size: 2551776 + checksum: sha256:746395aaca9be069c910089811e1286c711c5f7bab8b2ef96b8005fb6ea502e7 name: openssl-libs - evr: 1:3.5.1-7.el9_7 - sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.ppc64le.rpm + evr: 1:3.5.5-2.el9_8 + sourcerpm: openssl-3.5.5-2.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 547598 - checksum: sha256:fd4240aac85927fc57c6cc5bc689149b3bf1b92b676064bfb23a6107a343310c + size: 612881 + checksum: sha256:b78c695d8d1e6ff929e298d5b03d55910999c15a2537ac4b03ae5e003a8922f8 name: p11-kit - evr: 0.25.3-3.el9_5 - sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/p11-kit-trust-0.25.3-3.el9_5.ppc64le.rpm + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 161121 - checksum: sha256:b42303b7d5d10b6303e8abaccbaa302df0bca5fdd9949e043aaf1c5b2a53254d + size: 176360 + checksum: sha256:a44c731c9028bcaff8674aaff78d5f499c7aa5b3e6e8319cb784e5e98dfcd476 name: p11-kit-trust - evr: 0.25.3-3.el9_5 - sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/pcre-8.44-4.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 208333 @@ -1068,6 +1458,20 @@ arches: name: pcre evr: 8.44-4.el9 sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/pcre2-10.40-6.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 243057 + checksum: sha256:fcccf3d6981333ac0ac747ee143dae975381e02025ad2bc53e6aa7e0dc5fafb7 + name: pcre2 + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 147926 + checksum: sha256:d386b5e9b3a4b077b2ba143882e605750855dd3354f13c55fa12ed26908cb442 + name: pcre2-syntax + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/popt-1.18-8.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 74761 @@ -1089,48 +1493,76 @@ arches: name: readline evr: 8.1-4.el9 sourcerpm: readline-8.1-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/r/rpm-4.16.1.3-39.el9.ppc64le.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 546629 - checksum: sha256:2f55ea9c1fa47d8b45f61d231aebfebb2e8c399e3edfa1b20d2fe1b20b8c74a0 + size: 61713 + checksum: sha256:57066fdf4b83b468f3c729819c10b5380ac897c35967ba1559ba170f43510b6d + name: redhat-release + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/r/redhat-release-eula-9.8-1.0.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 18353 + checksum: sha256:b4ff8ec5fad8b6960e7cfda7e2a26cfb57e9652ea4173a795540b77d40f1a072 + name: redhat-release-eula + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/r/rpm-4.16.1.3-40.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 546862 + checksum: sha256:3f7a841343ef8430c9b2f3d9586cea08a051f8b738858048ba693a1ff14507d7 name: rpm - evr: 4.16.1.3-39.el9 - sourcerpm: rpm-4.16.1.3-39.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/r/rpm-libs-4.16.1.3-39.el9.ppc64le.rpm + evr: 4.16.1.3-40.el9 + sourcerpm: rpm-4.16.1.3-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/r/rpm-libs-4.16.1.3-40.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 359163 - checksum: sha256:e94030abfe242b8e8b35292754f0505e3f195ec03fe46d2e19ce8a0825e0afb6 + size: 359632 + checksum: sha256:525eeb47661bd5727ffda906897c51929a3bedfaaccbce7df51a79d5ac9bc327 name: rpm-libs - evr: 4.16.1.3-39.el9 - sourcerpm: rpm-4.16.1.3-39.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/sed-4.8-9.el9.ppc64le.rpm + evr: 4.16.1.3-40.el9 + sourcerpm: rpm-4.16.1.3-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/sed-4.8-10.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 322393 - checksum: sha256:afa65fcc13e68755b67a318737603ed72f9569669c51b858f3c04e99a9272c89 + size: 323929 + checksum: sha256:6a0be5fe8b4968e28c487cf41e824907b48a8af4260fa734bc597982a12cd72d name: sed - evr: 4.8-9.el9 - sourcerpm: sed-4.8-9.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/shadow-utils-4.9-15.el9.ppc64le.rpm + evr: 4.8-10.el9 + sourcerpm: sed-4.8-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 153791 + checksum: sha256:0891d395ce067121c28932534237ad1ce231f2bfa987411ad62e73a12d11eb6a + name: setup + evr: 2.13.7-10.el9 + sourcerpm: setup-2.13.7-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/shadow-utils-4.9-16.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 1272062 - checksum: sha256:306514b0e1eff64bbcf43b53cd73f952e48cd4221c3d215dfe7b1908354f07ca + size: 1272229 + checksum: sha256:819ad6d1fc2127bc867b0c0bb569b62fc2894bde75e304d90e3145c7b05a810c name: shadow-utils - evr: 2:4.9-15.el9 - sourcerpm: shadow-utils-4.9-15.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/sqlite-libs-3.34.1-9.el9_7.ppc64le.rpm + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 748982 - checksum: sha256:f1f8905dd84e19aed6c4a91654006f52387c233662afb719a46b223e806354a1 + size: 758081 + checksum: sha256:6eac353037fe537e4639455a4ce8595b6b8c345913f84868b2a3288c6b54000a name: sqlite-libs - evr: 3.34.1-9.el9_7 - sourcerpm: sqlite-3.34.1-9.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/t/tar-1.34-9.el9_7.ppc64le.rpm + evr: 3.34.1-10.el9_8 + sourcerpm: sqlite-3.34.1-10.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/t/tar-1.34-11.el9.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms - size: 938310 - checksum: sha256:6b32b0c5b960f836c91fae329c0d2786d932a44b9e44711639646b5e55146c8b + size: 945887 + checksum: sha256:cb2fe4ca6c89e1a9fff648629cc7b9b7f33a7853a8ae74c10baa1d5b731d2447 name: tar - evr: 2:1.34-9.el9_7 - sourcerpm: tar-1.34-9.el9_7.src.rpm + evr: 2:1.34-11.el9 + sourcerpm: tar-1.34-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 933841 + checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + name: tzdata + evr: 2026b-1.el9 + sourcerpm: tzdata-2026b-1.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/x/xz-5.2.5-8.el9_0.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 243215 @@ -1153,24 +1585,48 @@ arches: evr: 1.2.11-40.el9 sourcerpm: zlib-1.2.11-40.el9.src.rpm source: - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/a/acl-2.3.1-4.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 535332 + checksum: sha256:cb449bc6c85e0b50fa0bb98c969ff8481fee40517d8ebec5e28b72e5360fbe1e + name: acl + evr: 2.3.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/a/attr-2.5.1-3.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 1268651 - checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb + size: 482234 + checksum: sha256:5171534e7de11df197f3c5e08658544983198288e04624c739b5c3d9db07b59c + name: attr + evr: 2.5.1-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/a/audit-3.1.5-8.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1275064 + checksum: sha256:e0a3e72c863512032e0ba95337db076fa5af9368d9a80529a9624afc8877401c name: audit - evr: 3.1.5-7.el9 + evr: 3.1.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/b/basesystem-11-13.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 9884 + checksum: sha256:5a4ed0779fc06f08115d6e06aa95486f1e1e251f8f9ddb6c7e14e811bb2e24ef + name: basesystem + evr: 11-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/b/bash-5.1.8-9.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 10512850 + checksum: sha256:5d7bbbf2538361be1a11846602862c3a56809b3ea43b69b86bcf407538e9e260 + name: bash + evr: 5.1.8-9.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/b/brotli-1.0.9-9.el9_7.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 517498 checksum: sha256:814868e0bec831c79d3e12ff76d31e06e5e62c462a1a4b6607b1f3cab7014438 name: brotli evr: 1.0.9-9.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-11.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 824335 - checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 + size: 828199 + checksum: sha256:ba58283fc4ef85911f20a8e45ffa00497775858102d48f2a32ebf1010a1abefc name: bzip2 - evr: 1.0.8-10.el9_5 + evr: 1.0.8-11.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 711648 @@ -1183,18 +1639,24 @@ arches: checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc name: chkconfig evr: 1.24-2.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/coreutils-8.32-40.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 107074 - checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa + size: 5695125 + checksum: sha256:476f7d40d45ca0dc019a28966e410bb7dc9cba3dd7c58b744b2042b84435bf5a + name: coreutils + evr: 8.32-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 112905 + checksum: sha256:775d926429179caeade6af8dc7dea15a0bea49102c2592d5b712f996a329ec38 name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/curl-7.76.1-35.el9_7.3.src.rpm + evr: 20260224-1.gitea0f072.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/curl-7.76.1-40.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 2564300 - checksum: sha256:670afd4496d5eec73b99528af258cf87be65cf4567c9e7c76a3c7508af3e6687 + size: 2572192 + checksum: sha256:c062dd3816ec11062751eb0ad352104340c18c2f01587e7c4a4c8145211ff65d name: curl - evr: 7.76.1-35.el9_7.3 + evr: 7.76.1-40.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/cyrus-sasl-2.1.27-22.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 4025677 @@ -1207,6 +1669,12 @@ arches: checksum: sha256:5c613445f928889a52a0a82f4ed866502e82c99b0c983024ab97421391abd061 name: e2fsprogs evr: 1.46.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/f/filesystem-3.16-5.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 20486 + checksum: sha256:c795690df30c46e521372e2f649c995a2abc159b76c8ef6cd5da8a713ea17937 + name: filesystem + evr: 3.16-5.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 2010585 @@ -1219,12 +1687,24 @@ arches: checksum: sha256:37571947707e835d36ceb5641b187aba13ef8f5f605a6762ce72aeea3e745b8d name: gawk evr: 5.1.0-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/gcc-11.5.0-14.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 81978017 + checksum: sha256:19dec462f2880508570ca42a82c2f76fbd95fcad8d3e3ff812e9ca50cdeb2d8f + name: gcc + evr: 11.5.0-14.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/gdbm-1.23-1.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 1130147 checksum: sha256:ad42264274c2a792220395a4dbe736a1de6100c4e14611707ec1dd447583271f name: gdbm evr: 1:1.23-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/glibc-2.34-270.el9_8.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 20414318 + checksum: sha256:ac1dbcb022ceae7c6c59f7ea64f7f5e696f193158d10123ad7a9bf9344a7fa9b + name: glibc + evr: 2.34-270.el9_8 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/gmp-6.2.0-13.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 2503825 @@ -1249,12 +1729,12 @@ arches: checksum: sha256:6afa567438acd0d3a6a66bc6a3c68ec2f4ae5ed9c7230c3f0478d2281a092688 name: keyutils evr: 1.6.3-1.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/k/krb5-1.21.1-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/k/krb5-1.21.1-10.el9_8.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 8950679 - checksum: sha256:060d98c68b453970fcb516ba38eb5b797e6f4e20e173e3b237c2ca36cc23a411 + size: 8964976 + checksum: sha256:b22a66515c98c14a4969a403d5419b9f9bab50015553863de866d3f45fd6d922 name: krb5 - evr: 1.21.1-9.el9_7 + evr: 1.21.1-10.el9_8 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/less-590-6.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 382338 @@ -1267,6 +1747,12 @@ arches: checksum: sha256:69ee18f9881f3768c7b01d03185f3fba9637c0477e585a113fd3641c7dcd3d41 name: libarchive evr: 3.5.3-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libcap-2.48-10.el9_8.1.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 208035 + checksum: sha256:7f96d98c99f190b840985b3589183a3f1dc444e0932f256491b24d28c5031de3 + name: libcap + evr: 2.48-10.el9_8.1 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 470599 @@ -1297,24 +1783,36 @@ arches: checksum: sha256:0325329a882e68a2f817bac959abe49abc67d3dac9381a5a02c006916a86f17c name: libpsl evr: 0.21.1-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libselinux-3.6-3.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 271153 + checksum: sha256:a08a84389665ef614eb6d9b06a53128eab89b650c799c0558f3ae04df97c4b13 + name: libselinux + evr: 3.6-3.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 223978 checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 name: libsemanage evr: 3.6-5.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libsepol-3.6-3.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 543960 + checksum: sha256:2dacf2f1c1f61562ccc5ad082939158745e5a4a572d135d4f8ff00f75e1e94df + name: libsepol + evr: 3.6-3.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 473267 checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 name: libsigsegv evr: 2.13-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libssh-0.10.4-17.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libssh-0.10.4-18.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 666751 - checksum: sha256:b6704bba8787776c03b828b5b1de4e499f68818852e7b1aa08f5270724d5b832 + size: 707007 + checksum: sha256:e012994887f4f4c4367bce98f2eb5589bfa5c7926d65471cefeee12bee636b1d name: libssh - evr: 0.10.4-17.el9_7 + evr: 0.10.4-18.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-9.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 1895591 @@ -1363,48 +1861,60 @@ arches: checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 name: lz4 evr: 1.9.3-5.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-10.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 1556195 - checksum: sha256:1a6f60487d5ebb8998718c8246a49baf182e27318aa16e6a80b1ba7600b74e13 + size: 1560595 + checksum: sha256:c812e3c35d5bd5c3e33c65cdcf39d434acfd538aaa68ac04e3a5a9cc60556d50 name: mpfr - evr: 4.1.0-7.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/n/nghttp2-1.43.0-6.el9_7.1.src.rpm + evr: 4.1.0-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/n/ncurses-6.2-12.20210508.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 4003759 - checksum: sha256:6a1a3c8ee5ed3ebd826d16e9432102657903fbc833002b61e26d251f903b7a6a + size: 3586993 + checksum: sha256:cdb59ed3771a3a4f00e2ffca853f2de4aa887e3d5c3655317f2e2c03f461103f + name: ncurses + evr: 6.2-12.20210508.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/n/nghttp2-1.43.0-6.el9_8.1.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 4003756 + checksum: sha256:8b25596d58db32cf06c747c764ffc8ae328a9b7efb579d2ba2a302e887b3cf50 name: nghttp2 - evr: 1.43.0-6.el9_7.1 + evr: 1.43.0-6.el9_8.1 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/o/openldap-2.6.8-4.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 6548889 checksum: sha256:0d21c12c55d40d1fc2f006c8ec187b5fcc799b794cfd31ed2d98434189c62800 name: openldap evr: 2.6.8-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/o/openssl-3.5.5-2.el9_8.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 53417882 - checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb + size: 53322598 + checksum: sha256:34f88c3cc68ddb83e85ce6f581c19d08232696c15ad7d828a5d53f26ebc539dc name: openssl - evr: 1:3.5.1-7.el9_7 + evr: 1:3.5.5-2.el9_8 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 89979766 checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 name: openssl-fips-provider evr: 3.0.7-8.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/p11-kit-0.26.2-1.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 1027881 - checksum: sha256:de598a2e1ca170df85cd69d6cc406402407a244988506f53f8736a7546135260 + size: 1108578 + checksum: sha256:b33c02489d0d7b599498f04f09da5a3f6c0b6962c462bcc0ad8accbb4d41ea6c name: p11-kit - evr: 0.25.3-3.el9_5 + evr: 0.26.2-1.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 1624356 checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 name: pcre evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/pcre2-10.40-6.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1789790 + checksum: sha256:a570f7192be555222aa3704882b9199fb013a84ad4d7dcf40a93d8de2ecf6e0a + name: pcre2 + evr: 10.40-6.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/popt-1.18-8.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 595630 @@ -1423,36 +1933,54 @@ arches: checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 name: readline evr: 8.1-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/r/rpm-4.16.1.3-39.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/r/redhat-release-9.8-1.0.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 85364 + checksum: sha256:6c3f4a1287fb76e05e49217a15a33b9c228a56fc06e96376afb37201bfbe32da + name: redhat-release + evr: 9.8-1.0.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/r/rpm-4.16.1.3-40.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 4498489 - checksum: sha256:07d62b4b303a48f60845d4bae4d269bee8b2fc372e470cecc486d09a9685139f + size: 4502326 + checksum: sha256:311266f11a616acecfdcfca63214f91dc3ea88409098cf2ffec6c5e9cfc686ef name: rpm - evr: 4.16.1.3-39.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm + evr: 4.16.1.3-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/sed-4.8-10.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 1424192 - checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 + size: 1428416 + checksum: sha256:981073f2c251395b5ae42b7ff929f743260eea9738187fbb207042f11eae7ea7 name: sed - evr: 4.8-9.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm + evr: 4.8-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/setup-2.13.7-10.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 1712227 - checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 + size: 195940 + checksum: sha256:3acdbbd63bd77dd8b18210b9d597bd59ddf455ff728067638c54194ac3a8a32b + name: setup + evr: 2.13.7-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-16.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1713058 + checksum: sha256:771a5ed07cdb690c75cd428a8113e2ee471270044e6cb8025d92c54e32c180ff name: shadow-utils - evr: 2:4.9-15.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-9.el9_7.src.rpm + evr: 2:4.9-16.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-10.el9_8.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 25109403 - checksum: sha256:1d89566fe2e33bbd86fe1d024e3dbb7e800aef138f8d8d99ab65b15a6f6c2c5a + size: 25116090 + checksum: sha256:4387ae8d5a5a0b972b7a8612dca277499a43e7991163c7519e8a0ced2e57c90a name: sqlite - evr: 3.34.1-9.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm + evr: 3.34.1-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/t/tar-1.34-11.el9.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms - size: 2282680 - checksum: sha256:9b84935c6072500fa28674521fe13816a8be44c50bb8eaf5ec73994782161250 + size: 2294162 + checksum: sha256:13204f7499944b3fe773cbdf0b9bb2de31eaa9a4c69f31830fb9e54506bcb9b6 name: tar - evr: 2:1.34-9.el9_7 + evr: 2:1.34-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/t/tzdata-2026b-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 929993 + checksum: sha256:d549fc081c8cb2eec6c8273acfdd1b24023897c09fff24117fe2c2532d4bf085 + name: tzdata + evr: 2026b-1.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm repoid: rhel-9-for-ppc64le-baseos-source-rpms size: 1168293 @@ -1481,20 +2009,34 @@ arches: name: alternatives evr: 1.24-2.el9 sourcerpm: chkconfig-1.24-2.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.s390x.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 119512 - checksum: sha256:d511b2237d2487a68d30e13140cd203661fbe271b14f9ffa9b69263c148826c0 + size: 128177 + checksum: sha256:83d49abc58cded44c1246d3d6729c9021187334ea46fbbb52792564212702e38 name: audit-libs - evr: 3.1.5-7.el9 - sourcerpm: audit-3.1.5-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.s390x.rpm + evr: 3.1.5-8.el9 + sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 43993 - checksum: sha256:1543fd23b32a7964ef5a570515a1905100122cc6a044d5959dbea65c51c93719 + size: 8229 + checksum: sha256:f498b0813fa1a825d550e8e3a9e42255eabfa18e6fc96adfc6cc8fa7e16dd513 + name: basesystem + evr: 11-13.el9 + sourcerpm: basesystem-11-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/b/bash-5.1.8-9.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1757781 + checksum: sha256:18754c45f7586239508e9c6160ff42999eb326314d3e3adc5d54cc3661912da3 + name: bash + evr: 5.1.8-9.el9 + sourcerpm: bash-5.1.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 47690 + checksum: sha256:5edd9b911134037a29164d87fa9f27b82a1abf79c81c755df93e4ca97537e4fa name: bzip2-libs - evr: 1.0.8-10.el9_5 - sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm + evr: 1.0.8-11.el9 + sourcerpm: bzip2-1.0.8-11.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 1072208 @@ -1502,20 +2044,34 @@ arches: name: ca-certificates evr: 2025.2.80_v9.0.305-91.el9 sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/coreutils-8.32-40.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1207374 + checksum: sha256:61db6b87befd268d72874317b62762c51a858ca0ed743145a2c02d2600f04f7c + name: coreutils + evr: 8.32-40.el9 + sourcerpm: coreutils-8.32-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/coreutils-common-8.32-40.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 92511 - checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 + size: 2117324 + checksum: sha256:626c6728881d0d6f516ea6b07c01b2e8d49d09f2262c8971d68ec752cfa1149e + name: coreutils-common + evr: 8.32-40.el9 + sourcerpm: coreutils-8.32-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 98707 + checksum: sha256:a9ad86b8df75a7c9c29c6f6dd4b8f78cfa1f42b492eff0d11b82c457d37a7f9f name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/curl-7.76.1-35.el9_7.3.s390x.rpm + evr: 20260224-1.gitea0f072.el9_8 + sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/curl-7.76.1-40.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 297640 - checksum: sha256:28d114798ac0f43619f12602109f10d187e91935affa4c7a30ebd92c0c3e1920 + size: 304744 + checksum: sha256:c23fc2f7f609a64899eca1b9b930f92441bd437c6d8827e9a092f887e4aa3362 name: curl - evr: 7.76.1-35.el9_7.3 - sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 763345 @@ -1523,6 +2079,13 @@ arches: name: cyrus-sasl-lib evr: 2.1.27-22.el9 sourcerpm: cyrus-sasl-2.1.27-22.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/f/filesystem-3.16-5.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 5003897 + checksum: sha256:80e6764c9041b5abfb955f5b86b6c73f0305eb54b92ac7a11537729047470167 + name: filesystem + evr: 3.16-5.el9 + sourcerpm: filesystem-3.16-5.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/f/findutils-4.8.0-7.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 562344 @@ -1544,6 +2107,34 @@ arches: name: gdbm-libs evr: 1:1.23-1.el9 sourcerpm: gdbm-1.23-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/glibc-2.34-270.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1792788 + checksum: sha256:05e5212d1e2d60dddd0fb1d9977667ce81efd1720903096222cd2dc00e3d7b1d + name: glibc + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/glibc-common-2.34-270.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 326626 + checksum: sha256:229c6ee57b67b984aba4885e3cc88eb5f465e2e7771e2c3a09e13dec4498e101 + name: glibc-common + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/glibc-gconv-extra-2.34-270.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1754366 + checksum: sha256:f8a3107461f8ce0fbbdf181e73d4a558d13479cf09814b2b6d0182819bd2d757 + name: glibc-gconv-extra + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/glibc-minimal-langpack-2.34-270.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 31817 + checksum: sha256:88417d0b76b8fa116ccac46a1b9c522056108fec319c659d540dbe5f8fb56b6f + name: glibc-minimal-langpack + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/gmp-6.2.0-13.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 296399 @@ -1572,13 +2163,13 @@ arches: name: keyutils-libs evr: 1.6.3-1.el9 sourcerpm: keyutils-1.6.3-1.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/k/krb5-libs-1.21.1-9.el9_7.s390x.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 772268 - checksum: sha256:9e19a808237465db85c4c074a488d01b4de034c89100cedae5ee049a74b28408 + size: 772565 + checksum: sha256:cb487b335eeba5bad4d090a56bed7d0d173392fd6aab85a5471792a01eb3c4ef name: krb5-libs - evr: 1.21.1-9.el9_7 - sourcerpm: krb5-1.21.1-9.el9_7.src.rpm + evr: 1.21.1-10.el9_8 + sourcerpm: krb5-1.21.1-10.el9_8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/less-590-6.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 166698 @@ -1586,6 +2177,13 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libacl-2.3.1-4.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 24699 + checksum: sha256:f60b315d07f772b787b49e01a0ea12cbcdb635125fbc554eb7b9dc0d7e86f462 + name: libacl + evr: 2.3.1-4.el9 + sourcerpm: acl-2.3.1-4.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 400907 @@ -1593,6 +2191,13 @@ arches: name: libarchive evr: 3.5.3-9.el9_7 sourcerpm: libarchive-3.5.3-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libattr-2.5.1-3.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 20575 + checksum: sha256:4013df08b49661a8592c2c57428f8040f8e2397379dfc02fa9a125cbf8de44c6 + name: libattr + evr: 2.5.1-3.el9 + sourcerpm: attr-2.5.1-3.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 329308 @@ -1600,6 +2205,13 @@ arches: name: libbrotli evr: 1.0.9-9.el9_7 sourcerpm: brotli-1.0.9-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 77818 + checksum: sha256:81145d3e7f8b833994c16e56a3693dac4f0f11505fc85129964c3cfd20a36d45 + name: libcap + evr: 2.48-10.el9_8.1 + sourcerpm: libcap-2.48-10.el9_8.1.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 36348 @@ -1614,13 +2226,13 @@ arches: name: libcom_err evr: 1.46.5-8.el9 sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libcurl-7.76.1-35.el9_7.3.s390x.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libcurl-7.76.1-40.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 284311 - checksum: sha256:8c27ace08b127c9ade5acfc6e6039482f96d6df1ea387e29170114129cc37798 + size: 290979 + checksum: sha256:dd1f17e0adff14cc28fb642e6d0e2fef7cf0bb5a300f10730175f16d917d65e2 name: libcurl - evr: 7.76.1-35.el9_7.3 - sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 264391 @@ -1635,6 +2247,13 @@ arches: name: libffi evr: 3.4.2-8.el9 sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libgcc-11.5.0-14.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 69161 + checksum: sha256:c6dc3253a262d7cc09489fd6b2c2c00af5af0a545efdd45d55a8ebcf6c4d5e36 + name: libgcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libidn2-2.3.0-7.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 107023 @@ -1642,13 +2261,13 @@ arches: name: libidn2 evr: 2.3.0-7.el9 sourcerpm: libidn2-2.3.0-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_7.1.s390x.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 78113 - checksum: sha256:106eb532962c17f6ece718221898c6b251a8b363334ab14acac2d779bb0a3bf0 + size: 78119 + checksum: sha256:939da4b85d2834fb6cf4c60ebaf0e6539c3ad444ba31a22fccda5299a357a50c name: libnghttp2 - evr: 1.43.0-6.el9_7.1 - sourcerpm: nghttp2-1.43.0-6.el9_7.1.src.rpm + evr: 1.43.0-6.el9_8.1 + sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libpsl-0.21.1-5.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 67494 @@ -1656,6 +2275,13 @@ arches: name: libpsl evr: 0.21.1-5.el9 sourcerpm: libpsl-0.21.1-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libselinux-3.6-3.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 89763 + checksum: sha256:7c69021bdd032f8b86ea6428b7c92350b2e0e20b4be4953784d986b2f269be21 + name: libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 120733 @@ -1663,6 +2289,13 @@ arches: name: libsemanage evr: 3.6-5.el9_6 sourcerpm: libsemanage-3.6-5.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libsepol-3.6-3.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 319973 + checksum: sha256:e07481ed626cb2c83c24c9cbf10299e1a2e23e07c198c509cb98a03609b3b745 + name: libsepol + evr: 3.6-3.el9 + sourcerpm: libsepol-3.6-3.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libsigsegv-2.13-4.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 30531 @@ -1670,20 +2303,20 @@ arches: name: libsigsegv evr: 2.13-4.el9 sourcerpm: libsigsegv-2.13-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libssh-0.10.4-17.el9_7.s390x.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libssh-0.10.4-18.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 205726 - checksum: sha256:8dde249ae04dafa3fbd656472eef30b80173f95bea445fc36919c0f797837469 + size: 212889 + checksum: sha256:363b892f5c1a3b50916f93cbc942cb1526d08bace674b9499fe7aeab00637a4c name: libssh - evr: 0.10.4-17.el9_7 - sourcerpm: libssh-0.10.4-17.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libssh-config-0.10.4-17.el9_7.noarch.rpm + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 8268 - checksum: sha256:9815db066478c3b1bdd5367de09e0aedf465127716358a8877990736589c6078 + size: 14685 + checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb name: libssh-config - evr: 0.10.4-17.el9_7 - sourcerpm: libssh-0.10.4-17.el9_7.src.rpm + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 78514 @@ -1747,13 +2380,27 @@ arches: name: lz4-libs evr: 1.9.3-5.el9 sourcerpm: lz4-1.9.3-5.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/m/mpfr-4.1.0-7.el9.s390x.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/m/mpfr-4.1.0-10.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 261260 - checksum: sha256:fad3617d5fb5bb5213df4251eb36b1a41ddd570a79f225e8e7cb7b6c2e8ccb58 + size: 262427 + checksum: sha256:9c3a1a78261c65e7f9fb629464a9a7637cde27ff0015d622510f2754f5ef5f0d name: mpfr - evr: 4.1.0-7.el9 - sourcerpm: mpfr-4.1.0-7.el9.src.rpm + evr: 4.1.0-10.el9 + sourcerpm: mpfr-4.1.0-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 97840 + checksum: sha256:d62dfd41f9688efa2cf1ceedb96084c63e297fbdcfd1e72bc6757c730092b60c + name: ncurses-base + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 328527 + checksum: sha256:605ca8c9bd97831468dc77e14a6256e04284ec3df0cd7c1da114bfa8336a5e03 + name: ncurses-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openldap-2.6.8-4.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 291034 @@ -1761,6 +2408,13 @@ arches: name: openldap evr: 2.6.8-4.el9 sourcerpm: openldap-2.6.8-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-3.5.5-2.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1548597 + checksum: sha256:b89aa1ed984651749996e99aa7025f097bfc2898ba9457c9d6fe559f1011615b + name: openssl + evr: 1:3.5.5-2.el9_8 + sourcerpm: openssl-3.5.5-2.el9_8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 9381 @@ -1775,27 +2429,27 @@ arches: name: openssl-fips-provider-so evr: 3.0.7-8.el9 sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.s390x.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-libs-3.5.5-2.el9_8.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 2038064 - checksum: sha256:51f30f99a5529a3413f13d5a2ddf41be7c06fc4528b842d320e6f68bb82e4b20 + size: 2030148 + checksum: sha256:12ae5e480cbe722b1d10d553b5f7521978da1a268d6e2c8807b9832654918bdd name: openssl-libs - evr: 1:3.5.1-7.el9_7 - sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.s390x.rpm + evr: 1:3.5.5-2.el9_8 + sourcerpm: openssl-3.5.5-2.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 554452 - checksum: sha256:dcafe04fdfa4d78bc1805091bb70d74062aaea4c8ce12209a3c8cd72fd1b23de + size: 621949 + checksum: sha256:a1834007eda45150d6d3e49efdd5ace430a148005365ae00affe4e6a09b8bef4 name: p11-kit - evr: 0.25.3-3.el9_5 - sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/p11-kit-trust-0.25.3-3.el9_5.s390x.rpm + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 141508 - checksum: sha256:e2a10e7696c23c6ec41416defee0a9598754b7fdfbe2bc56c7e080802d74bda0 + size: 156700 + checksum: sha256:de6e5b8084f32d5ee4256cc510e64306e1c8a55dd8d245625723740c61f66149 name: p11-kit-trust - evr: 0.25.3-3.el9_5 - sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/pcre-8.44-4.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 121477 @@ -1803,6 +2457,20 @@ arches: name: pcre evr: 8.44-4.el9 sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/pcre2-10.40-6.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 224385 + checksum: sha256:b7166437e0179c46304403ddb126fd8a3d6c15d29b33a395b951e54b67697559 + name: pcre2 + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 147926 + checksum: sha256:d386b5e9b3a4b077b2ba143882e605750855dd3354f13c55fa12ed26908cb442 + name: pcre2-syntax + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/popt-1.18-8.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 71507 @@ -1824,48 +2492,76 @@ arches: name: readline evr: 8.1-4.el9 sourcerpm: readline-8.1-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/r/rpm-4.16.1.3-39.el9.s390x.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 545413 - checksum: sha256:b5cd01c30e5b4ee80c3d4e0de7c13e7d4395fffc34eb4402fa01e5fb0a42059c + size: 61670 + checksum: sha256:7d77e822b296f6c46773b121e209971765f3c42199bc1cb0bf7d7986e9deb8eb + name: redhat-release + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/r/redhat-release-eula-9.8-1.0.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 18345 + checksum: sha256:eae1fdd2373b8d8dc45a1a69e03392bc01726d257ad9d0e4be24905705b1b0eb + name: redhat-release-eula + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/r/rpm-4.16.1.3-40.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 545623 + checksum: sha256:7ad77d0cdc31069378d9aa733d5707fc2623cccbf58bc152e471ca6978532f27 name: rpm - evr: 4.16.1.3-39.el9 - sourcerpm: rpm-4.16.1.3-39.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/r/rpm-libs-4.16.1.3-39.el9.s390x.rpm + evr: 4.16.1.3-40.el9 + sourcerpm: rpm-4.16.1.3-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/r/rpm-libs-4.16.1.3-40.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 311459 - checksum: sha256:5651c9b94bec1f3dc84b2b0b1e8292925d27a04cc4a7434418f1e1b58376547b + size: 311340 + checksum: sha256:ec949b5ecd3d46b7e548195eeaa4359beb05b4fb5ba7a7a153b9e45dcfe273d1 name: rpm-libs - evr: 4.16.1.3-39.el9 - sourcerpm: rpm-4.16.1.3-39.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/sed-4.8-9.el9.s390x.rpm + evr: 4.16.1.3-40.el9 + sourcerpm: rpm-4.16.1.3-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/sed-4.8-10.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 316228 - checksum: sha256:7b168d834543330cf1c55693aea8c11f4bd87d25ce6369ce8b5ab0673678566a + size: 317430 + checksum: sha256:f878122e6b29fdc633e1d2c068ff0e481bb252f227a29068254ec111427ca242 name: sed - evr: 4.8-9.el9 - sourcerpm: sed-4.8-9.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/shadow-utils-4.9-15.el9.s390x.rpm + evr: 4.8-10.el9 + sourcerpm: sed-4.8-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 153791 + checksum: sha256:0891d395ce067121c28932534237ad1ce231f2bfa987411ad62e73a12d11eb6a + name: setup + evr: 2.13.7-10.el9 + sourcerpm: setup-2.13.7-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/shadow-utils-4.9-16.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 1242982 - checksum: sha256:2eb4f76ccae0aa1a7c3c558a574ee7dae2541fc65004122035e5348dbd50a51a + size: 1242705 + checksum: sha256:9e7bed9b9581ee639d57f0eb48644aed6834c70120ffc0c5e7308ebd0c1c93e1 name: shadow-utils - evr: 2:4.9-15.el9 - sourcerpm: shadow-utils-4.9-15.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/sqlite-libs-3.34.1-9.el9_7.s390x.rpm + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 646041 - checksum: sha256:7cca5b2433ae78c47ae88971f1e3cd5332d606c17200d785fe0d712e1abcbfdf + size: 652115 + checksum: sha256:d773b3c1eac55a53efd669c87906804b31cf065a8f9885e6370b739c8f213f9d name: sqlite-libs - evr: 3.34.1-9.el9_7 - sourcerpm: sqlite-3.34.1-9.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/t/tar-1.34-9.el9_7.s390x.rpm + evr: 3.34.1-10.el9_8 + sourcerpm: sqlite-3.34.1-10.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/t/tar-1.34-11.el9.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms - size: 900131 - checksum: sha256:ae335ed3e594cdb4123c6732c5dd9d4250050e96117e2593b31f8c4ee4ee2b8f + size: 907745 + checksum: sha256:2eee88e1c470b033bd44432f4ed5b1a41ffc7132ebe51f8ce12fa9268314e841 name: tar - evr: 2:1.34-9.el9_7 - sourcerpm: tar-1.34-9.el9_7.src.rpm + evr: 2:1.34-11.el9 + sourcerpm: tar-1.34-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 933841 + checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + name: tzdata + evr: 2026b-1.el9 + sourcerpm: tzdata-2026b-1.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/x/xz-5.2.5-8.el9_0.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 234632 @@ -1888,24 +2584,48 @@ arches: evr: 1.2.11-40.el9 sourcerpm: zlib-1.2.11-40.el9.src.rpm source: - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/a/acl-2.3.1-4.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 535332 + checksum: sha256:cb449bc6c85e0b50fa0bb98c969ff8481fee40517d8ebec5e28b72e5360fbe1e + name: acl + evr: 2.3.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/a/attr-2.5.1-3.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms - size: 1268651 - checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb + size: 482234 + checksum: sha256:5171534e7de11df197f3c5e08658544983198288e04624c739b5c3d9db07b59c + name: attr + evr: 2.5.1-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/a/audit-3.1.5-8.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1275064 + checksum: sha256:e0a3e72c863512032e0ba95337db076fa5af9368d9a80529a9624afc8877401c name: audit - evr: 3.1.5-7.el9 + evr: 3.1.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/b/basesystem-11-13.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 9884 + checksum: sha256:5a4ed0779fc06f08115d6e06aa95486f1e1e251f8f9ddb6c7e14e811bb2e24ef + name: basesystem + evr: 11-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/b/bash-5.1.8-9.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 10512850 + checksum: sha256:5d7bbbf2538361be1a11846602862c3a56809b3ea43b69b86bcf407538e9e260 + name: bash + evr: 5.1.8-9.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/b/brotli-1.0.9-9.el9_7.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 517498 checksum: sha256:814868e0bec831c79d3e12ff76d31e06e5e62c462a1a4b6607b1f3cab7014438 name: brotli evr: 1.0.9-9.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-11.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms - size: 824335 - checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 + size: 828199 + checksum: sha256:ba58283fc4ef85911f20a8e45ffa00497775858102d48f2a32ebf1010a1abefc name: bzip2 - evr: 1.0.8-10.el9_5 + evr: 1.0.8-11.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 711648 @@ -1918,18 +2638,24 @@ arches: checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc name: chkconfig evr: 1.24-2.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/coreutils-8.32-40.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms - size: 107074 - checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa + size: 5695125 + checksum: sha256:476f7d40d45ca0dc019a28966e410bb7dc9cba3dd7c58b744b2042b84435bf5a + name: coreutils + evr: 8.32-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 112905 + checksum: sha256:775d926429179caeade6af8dc7dea15a0bea49102c2592d5b712f996a329ec38 name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/curl-7.76.1-35.el9_7.3.src.rpm + evr: 20260224-1.gitea0f072.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/curl-7.76.1-40.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms - size: 2564300 - checksum: sha256:670afd4496d5eec73b99528af258cf87be65cf4567c9e7c76a3c7508af3e6687 + size: 2572192 + checksum: sha256:c062dd3816ec11062751eb0ad352104340c18c2f01587e7c4a4c8145211ff65d name: curl - evr: 7.76.1-35.el9_7.3 + evr: 7.76.1-40.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/cyrus-sasl-2.1.27-22.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 4025677 @@ -1942,6 +2668,12 @@ arches: checksum: sha256:5c613445f928889a52a0a82f4ed866502e82c99b0c983024ab97421391abd061 name: e2fsprogs evr: 1.46.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/f/filesystem-3.16-5.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 20486 + checksum: sha256:c795690df30c46e521372e2f649c995a2abc159b76c8ef6cd5da8a713ea17937 + name: filesystem + evr: 3.16-5.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 2010585 @@ -1954,12 +2686,24 @@ arches: checksum: sha256:37571947707e835d36ceb5641b187aba13ef8f5f605a6762ce72aeea3e745b8d name: gawk evr: 5.1.0-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/gcc-11.5.0-14.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 81978017 + checksum: sha256:19dec462f2880508570ca42a82c2f76fbd95fcad8d3e3ff812e9ca50cdeb2d8f + name: gcc + evr: 11.5.0-14.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/gdbm-1.23-1.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 1130147 checksum: sha256:ad42264274c2a792220395a4dbe736a1de6100c4e14611707ec1dd447583271f name: gdbm evr: 1:1.23-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/glibc-2.34-270.el9_8.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 20414318 + checksum: sha256:ac1dbcb022ceae7c6c59f7ea64f7f5e696f193158d10123ad7a9bf9344a7fa9b + name: glibc + evr: 2.34-270.el9_8 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/gmp-6.2.0-13.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 2503825 @@ -1984,12 +2728,12 @@ arches: checksum: sha256:6afa567438acd0d3a6a66bc6a3c68ec2f4ae5ed9c7230c3f0478d2281a092688 name: keyutils evr: 1.6.3-1.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/k/krb5-1.21.1-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/k/krb5-1.21.1-10.el9_8.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms - size: 8950679 - checksum: sha256:060d98c68b453970fcb516ba38eb5b797e6f4e20e173e3b237c2ca36cc23a411 + size: 8964976 + checksum: sha256:b22a66515c98c14a4969a403d5419b9f9bab50015553863de866d3f45fd6d922 name: krb5 - evr: 1.21.1-9.el9_7 + evr: 1.21.1-10.el9_8 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/less-590-6.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 382338 @@ -2002,6 +2746,12 @@ arches: checksum: sha256:69ee18f9881f3768c7b01d03185f3fba9637c0477e585a113fd3641c7dcd3d41 name: libarchive evr: 3.5.3-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libcap-2.48-10.el9_8.1.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 208035 + checksum: sha256:7f96d98c99f190b840985b3589183a3f1dc444e0932f256491b24d28c5031de3 + name: libcap + evr: 2.48-10.el9_8.1 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 470599 @@ -2032,24 +2782,36 @@ arches: checksum: sha256:0325329a882e68a2f817bac959abe49abc67d3dac9381a5a02c006916a86f17c name: libpsl evr: 0.21.1-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libselinux-3.6-3.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 271153 + checksum: sha256:a08a84389665ef614eb6d9b06a53128eab89b650c799c0558f3ae04df97c4b13 + name: libselinux + evr: 3.6-3.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 223978 checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 name: libsemanage evr: 3.6-5.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libsepol-3.6-3.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 543960 + checksum: sha256:2dacf2f1c1f61562ccc5ad082939158745e5a4a572d135d4f8ff00f75e1e94df + name: libsepol + evr: 3.6-3.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 473267 checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 name: libsigsegv evr: 2.13-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libssh-0.10.4-17.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libssh-0.10.4-18.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms - size: 666751 - checksum: sha256:b6704bba8787776c03b828b5b1de4e499f68818852e7b1aa08f5270724d5b832 + size: 707007 + checksum: sha256:e012994887f4f4c4367bce98f2eb5589bfa5c7926d65471cefeee12bee636b1d name: libssh - evr: 0.10.4-17.el9_7 + evr: 0.10.4-18.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-9.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 1895591 @@ -2098,48 +2860,60 @@ arches: checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 name: lz4 evr: 1.9.3-5.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-10.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms - size: 1556195 - checksum: sha256:1a6f60487d5ebb8998718c8246a49baf182e27318aa16e6a80b1ba7600b74e13 + size: 1560595 + checksum: sha256:c812e3c35d5bd5c3e33c65cdcf39d434acfd538aaa68ac04e3a5a9cc60556d50 name: mpfr - evr: 4.1.0-7.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/n/nghttp2-1.43.0-6.el9_7.1.src.rpm + evr: 4.1.0-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/n/ncurses-6.2-12.20210508.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms - size: 4003759 - checksum: sha256:6a1a3c8ee5ed3ebd826d16e9432102657903fbc833002b61e26d251f903b7a6a + size: 3586993 + checksum: sha256:cdb59ed3771a3a4f00e2ffca853f2de4aa887e3d5c3655317f2e2c03f461103f + name: ncurses + evr: 6.2-12.20210508.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/n/nghttp2-1.43.0-6.el9_8.1.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 4003756 + checksum: sha256:8b25596d58db32cf06c747c764ffc8ae328a9b7efb579d2ba2a302e887b3cf50 name: nghttp2 - evr: 1.43.0-6.el9_7.1 + evr: 1.43.0-6.el9_8.1 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/o/openldap-2.6.8-4.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 6548889 checksum: sha256:0d21c12c55d40d1fc2f006c8ec187b5fcc799b794cfd31ed2d98434189c62800 name: openldap evr: 2.6.8-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/o/openssl-3.5.5-2.el9_8.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms - size: 53417882 - checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb + size: 53322598 + checksum: sha256:34f88c3cc68ddb83e85ce6f581c19d08232696c15ad7d828a5d53f26ebc539dc name: openssl - evr: 1:3.5.1-7.el9_7 + evr: 1:3.5.5-2.el9_8 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 89979766 checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 name: openssl-fips-provider evr: 3.0.7-8.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/p11-kit-0.26.2-1.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms - size: 1027881 - checksum: sha256:de598a2e1ca170df85cd69d6cc406402407a244988506f53f8736a7546135260 + size: 1108578 + checksum: sha256:b33c02489d0d7b599498f04f09da5a3f6c0b6962c462bcc0ad8accbb4d41ea6c name: p11-kit - evr: 0.25.3-3.el9_5 + evr: 0.26.2-1.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 1624356 checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 name: pcre evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/pcre2-10.40-6.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1789790 + checksum: sha256:a570f7192be555222aa3704882b9199fb013a84ad4d7dcf40a93d8de2ecf6e0a + name: pcre2 + evr: 10.40-6.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/popt-1.18-8.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 595630 @@ -2158,36 +2932,54 @@ arches: checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 name: readline evr: 8.1-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/r/rpm-4.16.1.3-39.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/r/redhat-release-9.8-1.0.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 85364 + checksum: sha256:6c3f4a1287fb76e05e49217a15a33b9c228a56fc06e96376afb37201bfbe32da + name: redhat-release + evr: 9.8-1.0.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/r/rpm-4.16.1.3-40.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms - size: 4498489 - checksum: sha256:07d62b4b303a48f60845d4bae4d269bee8b2fc372e470cecc486d09a9685139f + size: 4502326 + checksum: sha256:311266f11a616acecfdcfca63214f91dc3ea88409098cf2ffec6c5e9cfc686ef name: rpm - evr: 4.16.1.3-39.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm + evr: 4.16.1.3-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/sed-4.8-10.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms - size: 1424192 - checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 + size: 1428416 + checksum: sha256:981073f2c251395b5ae42b7ff929f743260eea9738187fbb207042f11eae7ea7 name: sed - evr: 4.8-9.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm + evr: 4.8-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/setup-2.13.7-10.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms - size: 1712227 - checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 + size: 195940 + checksum: sha256:3acdbbd63bd77dd8b18210b9d597bd59ddf455ff728067638c54194ac3a8a32b + name: setup + evr: 2.13.7-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-16.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1713058 + checksum: sha256:771a5ed07cdb690c75cd428a8113e2ee471270044e6cb8025d92c54e32c180ff name: shadow-utils - evr: 2:4.9-15.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-9.el9_7.src.rpm + evr: 2:4.9-16.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-10.el9_8.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms - size: 25109403 - checksum: sha256:1d89566fe2e33bbd86fe1d024e3dbb7e800aef138f8d8d99ab65b15a6f6c2c5a + size: 25116090 + checksum: sha256:4387ae8d5a5a0b972b7a8612dca277499a43e7991163c7519e8a0ced2e57c90a name: sqlite - evr: 3.34.1-9.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm + evr: 3.34.1-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/t/tar-1.34-11.el9.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms - size: 2282680 - checksum: sha256:9b84935c6072500fa28674521fe13816a8be44c50bb8eaf5ec73994782161250 + size: 2294162 + checksum: sha256:13204f7499944b3fe773cbdf0b9bb2de31eaa9a4c69f31830fb9e54506bcb9b6 name: tar - evr: 2:1.34-9.el9_7 + evr: 2:1.34-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/t/tzdata-2026b-1.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 929993 + checksum: sha256:d549fc081c8cb2eec6c8273acfdd1b24023897c09fff24117fe2c2532d4bf085 + name: tzdata + evr: 2026b-1.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm repoid: rhel-9-for-s390x-baseos-source-rpms size: 1168293 @@ -2216,20 +3008,34 @@ arches: name: alternatives evr: 1.24-2.el9 sourcerpm: chkconfig-1.24-2.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/a/audit-libs-3.1.5-7.el9.x86_64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 121610 - checksum: sha256:3a2fa9a5bcb190840b9928f1ce18b5b5a11b5628abe412ef7d130f3584af12d2 + size: 130600 + checksum: sha256:637ac2995ce1a6c222772b60f6bc6e6f2829355d2c88dfb1262fb76146d985ae name: audit-libs - evr: 3.1.5-7.el9 - sourcerpm: audit-3.1.5-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/b/bzip2-libs-1.0.8-10.el9_5.x86_64.rpm + evr: 3.1.5-8.el9 + sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 42618 - checksum: sha256:5058aca2a4c5ac3356fb42e6e423e4101bc29199e0ae80d79d3fc564ba9d7c84 + size: 8229 + checksum: sha256:f498b0813fa1a825d550e8e3a9e42255eabfa18e6fc96adfc6cc8fa7e16dd513 + name: basesystem + evr: 11-13.el9 + sourcerpm: basesystem-11-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/b/bash-5.1.8-9.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 1769540 + checksum: sha256:d3adf8b09aa0bf935c67aa12444e0ee02f70a82c2682bfb2b02bda0a989bb806 + name: bash + evr: 5.1.8-9.el9 + sourcerpm: bash-5.1.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 46333 + checksum: sha256:948f763ed17672b8dd83356541e27a53ce97c6df38339c4416a188d452ca4d1e name: bzip2-libs - evr: 1.0.8-10.el9_5 - sourcerpm: bzip2-1.0.8-10.el9_5.src.rpm + evr: 1.0.8-11.el9 + sourcerpm: bzip2-1.0.8-11.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 1072208 @@ -2237,20 +3043,34 @@ arches: name: ca-certificates evr: 2025.2.80_v9.0.305-91.el9 sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.noarch.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/coreutils-8.32-40.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 1223184 + checksum: sha256:506252b4d9569a738189c8592f6a9fa0f934b7700e019f3cb5748ba5badd7fbd + name: coreutils + evr: 8.32-40.el9 + sourcerpm: coreutils-8.32-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/coreutils-common-8.32-40.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 92511 - checksum: sha256:38078d704d7be136211a17da34692e9e669fd59a43ec2e82b22082e280c6f290 + size: 2112892 + checksum: sha256:1b901fc27ee96272908a3fbc16998f57eec143e5762db2d8d64ce1d8d488601f + name: coreutils-common + evr: 8.32-40.el9 + sourcerpm: coreutils-8.32-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 98707 + checksum: sha256:a9ad86b8df75a7c9c29c6f6dd4b8f78cfa1f42b492eff0d11b82c457d37a7f9f name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - sourcerpm: crypto-policies-20250905-1.git377cc42.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/curl-7.76.1-35.el9_7.3.x86_64.rpm + evr: 20260224-1.gitea0f072.el9_8 + sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/curl-7.76.1-40.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 299410 - checksum: sha256:5b01bc58d38b77f3ff9a8c88a512b9a35c5a7fbecb6e3f734212008ea3bdc30b + size: 306411 + checksum: sha256:dffe60e96ea6473d6fd99f2ca688914d8342bc20819018ebe23d5d43ddb958ad name: curl - evr: 7.76.1-35.el9_7.3 - sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 786202 @@ -2258,6 +3078,13 @@ arches: name: cyrus-sasl-lib evr: 2.1.27-22.el9 sourcerpm: cyrus-sasl-2.1.27-22.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/f/filesystem-3.16-5.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 5003807 + checksum: sha256:9567592e6e32a9ebd45584cc4feb5d00812f143fcb2d8cd8b1d95108f4f66a2d + name: filesystem + evr: 3.16-5.el9 + sourcerpm: filesystem-3.16-5.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/f/findutils-4.8.0-7.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 563531 @@ -2279,6 +3106,34 @@ arches: name: gdbm-libs evr: 1:1.23-1.el9 sourcerpm: gdbm-1.23-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/glibc-2.34-270.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 2084453 + checksum: sha256:39e15c1eb3181970e467e4baeaf31673120890b7bb9dd97b311f1c1128b76d16 + name: glibc + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/glibc-common-2.34-270.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 322519 + checksum: sha256:f63ee066c0942641ea683e499087a0e9b4fa80645387871ebef264bd51640567 + name: glibc-common + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/glibc-gconv-extra-2.34-270.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 1765629 + checksum: sha256:8efaf43e7d522733399caa5df7cdaca13a3549c56ea918053b11fb3d898c0bab + name: glibc-gconv-extra + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-270.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 31845 + checksum: sha256:1ea08534d2eafe91a9d549277ab1682913f0407c1c4e3e0d89626975aca35fc8 + name: glibc-minimal-langpack + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/gmp-6.2.0-13.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 326840 @@ -2307,13 +3162,13 @@ arches: name: keyutils-libs evr: 1.6.3-1.el9 sourcerpm: keyutils-1.6.3-1.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/k/krb5-libs-1.21.1-9.el9_7.x86_64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 790457 - checksum: sha256:ed93cda537e6778606b009b12d10c7fb06a1ed3caee74cf2c9a4b4808e569b4a + size: 790743 + checksum: sha256:8906be9f2d414c5f4e1218db0c94955c2b3394b43a04b7dbcc2ef66c4340ebc6 name: krb5-libs - evr: 1.21.1-9.el9_7 - sourcerpm: krb5-1.21.1-9.el9_7.src.rpm + evr: 1.21.1-10.el9_8 + sourcerpm: krb5-1.21.1-10.el9_8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/less-590-6.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 166025 @@ -2321,6 +3176,13 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libacl-2.3.1-4.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 24627 + checksum: sha256:dc50fd67447efd6367395b3e1517bfc1fa958652a75ce7619358812a8f6c80aa + name: libacl + evr: 2.3.1-4.el9 + sourcerpm: acl-2.3.1-4.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 402750 @@ -2328,6 +3190,13 @@ arches: name: libarchive evr: 3.5.3-9.el9_7 sourcerpm: libarchive-3.5.3-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libattr-2.5.1-3.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 20786 + checksum: sha256:6519f028915fbd7ee0474f0bf4e98e35f04b5d0cf7be9f66c0cb9eafac0b8c5a + name: libattr + evr: 2.5.1-3.el9 + sourcerpm: attr-2.5.1-3.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 326278 @@ -2335,6 +3204,13 @@ arches: name: libbrotli evr: 1.0.9-9.el9_7 sourcerpm: brotli-1.0.9-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 78928 + checksum: sha256:d4805439b10fa551b7535cf30ca28d4d5862132c9c429b2b31221bea7f43263a + name: libcap + evr: 2.48-10.el9_8.1 + sourcerpm: libcap-2.48-10.el9_8.1.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 36752 @@ -2349,13 +3225,13 @@ arches: name: libcom_err evr: 1.46.5-8.el9 sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-35.el9_7.3.x86_64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 289642 - checksum: sha256:76a6cc994c5b63968854eed67230e73c8fd70b9f59c9f274c3042a85fcbe490f + size: 296527 + checksum: sha256:d89db646d90f8342e097cf03c7979d0da1c2df45bcb4e2b9fe7437b7895a7df5 name: libcurl - evr: 7.76.1-35.el9_7.3 - sourcerpm: curl-7.76.1-35.el9_7.3.src.rpm + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 272588 @@ -2370,6 +3246,13 @@ arches: name: libffi evr: 3.4.2-8.el9 sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 87280 + checksum: sha256:77c66827ffc14df2f43612b26128b1fd58d5c9597d4d4e564aa239b161272872 + name: libgcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 107099 @@ -2377,13 +3260,13 @@ arches: name: libidn2 evr: 2.3.0-7.el9 sourcerpm: libidn2-2.3.0-7.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_7.1.x86_64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 80370 - checksum: sha256:a3df6142080db5d53d1a50cdc64ab7fef0b3cf6bfeb7100a6ffee10d1b9664da + size: 80371 + checksum: sha256:3e99ec9ac85e7b1bf8348a503b14eb8d41e6df788c181202484a8cbc399f630a name: libnghttp2 - evr: 1.43.0-6.el9_7.1 - sourcerpm: nghttp2-1.43.0-6.el9_7.1.src.rpm + evr: 1.43.0-6.el9_8.1 + sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 67454 @@ -2391,6 +3274,13 @@ arches: name: libpsl evr: 0.21.1-5.el9 sourcerpm: libpsl-0.21.1-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libselinux-3.6-3.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 89722 + checksum: sha256:ce1cc63a7212c39f5f2a35f719ee38d6418cf081ea78c9317f388d9f41e4a627 + name: libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 123449 @@ -2398,6 +3288,13 @@ arches: name: libsemanage evr: 3.6-5.el9_6 sourcerpm: libsemanage-3.6-5.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libsepol-3.6-3.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 338766 + checksum: sha256:b98984b2bf42203964cc979ac157df090c63b89a0f5c6560ede01965531c8ffd + name: libsepol + evr: 3.6-3.el9 + sourcerpm: libsepol-3.6-3.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 30681 @@ -2405,20 +3302,20 @@ arches: name: libsigsegv evr: 2.13-4.el9 sourcerpm: libsigsegv-2.13-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-17.el9_7.x86_64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-18.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 218882 - checksum: sha256:470f7067968489f9ec3df43266032241563d3cfa577ce2a5b7375a0660833005 + size: 225119 + checksum: sha256:4a3ec8a0cc0d4f693a876c522d3e4bc2296180b9ec05f958f6a0aa8658702458 name: libssh - evr: 0.10.4-17.el9_7 - sourcerpm: libssh-0.10.4-17.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-17.el9_7.noarch.rpm + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 8268 - checksum: sha256:9815db066478c3b1bdd5367de09e0aedf465127716358a8877990736589c6078 + size: 14685 + checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb name: libssh-config - evr: 0.10.4-17.el9_7 - sourcerpm: libssh-0.10.4-17.el9_7.src.rpm + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libtasn1-4.16.0-9.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 78596 @@ -2482,13 +3379,27 @@ arches: name: lz4-libs evr: 1.9.3-5.el9 sourcerpm: lz4-1.9.3-5.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/m/mpfr-4.1.0-7.el9.x86_64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 337166 - checksum: sha256:cf60adcc7a5f0cb469e6f066a1bdc62ae9af7c06305c76c15884b59df7f93274 + size: 338130 + checksum: sha256:4adb12cda3b0e537ba5b22e7615288df751720d2e738bd182675d529cf1ead0c name: mpfr - evr: 4.1.0-7.el9 - sourcerpm: mpfr-4.1.0-7.el9.src.rpm + evr: 4.1.0-10.el9 + sourcerpm: mpfr-4.1.0-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 97840 + checksum: sha256:d62dfd41f9688efa2cf1ceedb96084c63e297fbdcfd1e72bc6757c730092b60c + name: ncurses-base + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 336270 + checksum: sha256:f3e1f8e59c7116278aa19b6705a1443f6307d4d6fbdde75a23d2f5d60636cb16 + name: ncurses-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openldap-2.6.8-4.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 296805 @@ -2496,6 +3407,13 @@ arches: name: openldap evr: 2.6.8-4.el9 sourcerpm: openldap-2.6.8-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-3.5.5-2.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 1563757 + checksum: sha256:26055bafcbb940413352fefaf53c3944b95f9420474bf33670be625a01b7b70e + name: openssl + evr: 1:3.5.5-2.el9_8 + sourcerpm: openssl-3.5.5-2.el9_8.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-8.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 9402 @@ -2510,27 +3428,27 @@ arches: name: openssl-fips-provider-so evr: 3.0.7-8.el9 sourcerpm: openssl-fips-provider-3.0.7-8.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-libs-3.5.1-7.el9_7.x86_64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-libs-3.5.5-2.el9_8.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 2422039 - checksum: sha256:150962b6c8dbde0e36d11f5e7601130a2d4a9e40aa5e35cd5baa606e9d3f18b7 + size: 2424631 + checksum: sha256:7d7b72a2767cf95d7de49c1b17bad32e974970c947b1d6b5f133918088379fed name: openssl-libs - evr: 1:3.5.1-7.el9_7 - sourcerpm: openssl-3.5.1-7.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/p11-kit-0.25.3-3.el9_5.x86_64.rpm + evr: 1:3.5.5-2.el9_8 + sourcerpm: openssl-3.5.5-2.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 548533 - checksum: sha256:e5a99495f837953c90ae46d0226fec22ae972ff57074b31f9a5a1dd9c562065f + size: 624045 + checksum: sha256:3bc31959dd99d0c3103866296664c02c219c0a7c8b906c96ecc5ec3dda57c864 name: p11-kit - evr: 0.25.3-3.el9_5 - sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/p11-kit-trust-0.25.3-3.el9_5.x86_64.rpm + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 147809 - checksum: sha256:16a699351e080fceea5b3aec2dc53a290cad960b8c94cf88832107843e452fc2 + size: 165124 + checksum: sha256:715fd8181525f3d6869d5086f36a15ea47a0e96297ccf5920c37d3a0cb36c409 name: p11-kit-trust - evr: 0.25.3-3.el9_5 - sourcerpm: p11-kit-0.25.3-3.el9_5.src.rpm + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/pcre-8.44-4.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 205261 @@ -2538,6 +3456,20 @@ arches: name: pcre evr: 8.44-4.el9 sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/pcre2-10.40-6.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 241900 + checksum: sha256:75db1e5a50e7b1794d7ba18212d95cd2684559da9e7c52eee46490302c7f24dd + name: pcre2 + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 147926 + checksum: sha256:d386b5e9b3a4b077b2ba143882e605750855dd3354f13c55fa12ed26908cb442 + name: pcre2-syntax + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/popt-1.18-8.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 70397 @@ -2559,48 +3491,76 @@ arches: name: readline evr: 8.1-4.el9 sourcerpm: readline-8.1-4.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/r/rpm-4.16.1.3-39.el9.x86_64.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 547965 - checksum: sha256:45d0c44a93c45dbf6c0915ca5652d7d62a5a2a14cfc9d03136b730999caef451 + size: 61742 + checksum: sha256:8157ed988fc34dcfeb6429272959471edd5bde4ac212f26611fd54c180391758 + name: redhat-release + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/r/redhat-release-eula-9.8-1.0.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 18368 + checksum: sha256:bc40b4d1f550b7c55711bf86a8ff3f5629f6b52af5f71307efd3bf3888b80351 + name: redhat-release-eula + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/r/rpm-4.16.1.3-40.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 548393 + checksum: sha256:53d336d105469fae4b3e4d2c9386c2fe89bc3af64d65b272f05a3e63d62289e8 name: rpm - evr: 4.16.1.3-39.el9 - sourcerpm: rpm-4.16.1.3-39.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/r/rpm-libs-4.16.1.3-39.el9.x86_64.rpm + evr: 4.16.1.3-40.el9 + sourcerpm: rpm-4.16.1.3-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/r/rpm-libs-4.16.1.3-40.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 314790 - checksum: sha256:6a4c641361b72c7769b6422b06b638d73bb1c45a921f75e638fa7025d5151bc6 + size: 314878 + checksum: sha256:21beeb1c25934cdf549a90d02a87a42e7d0caf91ba1482aa15ff65396171eba0 name: rpm-libs - evr: 4.16.1.3-39.el9 - sourcerpm: rpm-4.16.1.3-39.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/sed-4.8-9.el9.x86_64.rpm + evr: 4.16.1.3-40.el9 + sourcerpm: rpm-4.16.1.3-40.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/sed-4.8-10.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 316395 - checksum: sha256:bf3baf444e49eba4189e57d562a7522ab714132d2960db87ef9b99f1b46a3cc4 + size: 317456 + checksum: sha256:45e246453dc9eb1bad6a71c6f349aad1b1b2e1bf3ec645b80f0ed04fe69c960e name: sed - evr: 4.8-9.el9 - sourcerpm: sed-4.8-9.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/shadow-utils-4.9-15.el9.x86_64.rpm + evr: 4.8-10.el9 + sourcerpm: sed-4.8-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 153791 + checksum: sha256:0891d395ce067121c28932534237ad1ce231f2bfa987411ad62e73a12d11eb6a + name: setup + evr: 2.13.7-10.el9 + sourcerpm: setup-2.13.7-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 1250789 - checksum: sha256:297d8d9785fb98fd8e0c13eec05ee2da08db24e4e6099730b18f6a820b851c51 + size: 1250179 + checksum: sha256:17294ee3fbc09c1b5cfc4114d3815cbd92584d6d70a6288e1dce2fda0a62dc59 name: shadow-utils - evr: 2:4.9-15.el9 - sourcerpm: shadow-utils-4.9-15.el9.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/sqlite-libs-3.34.1-9.el9_7.x86_64.rpm + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 657343 - checksum: sha256:ad9870b2abc325496c80fa3a7497315d91632e583ff22c9d8cfc556119a77f8a + size: 664960 + checksum: sha256:7dc2202e08184890c851dcb2218a9abce14da150f12dfb8663ca306416e1d8d4 name: sqlite-libs - evr: 3.34.1-9.el9_7 - sourcerpm: sqlite-3.34.1-9.el9_7.src.rpm - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/t/tar-1.34-9.el9_7.x86_64.rpm + evr: 3.34.1-10.el9_8 + sourcerpm: sqlite-3.34.1-10.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/t/tar-1.34-11.el9.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms - size: 906521 - checksum: sha256:4c0beb933074a5254c297e8968b3f41ec5a02b23056997ddcf526fe7e6166482 + size: 913256 + checksum: sha256:58b622ab7bc225731a2473e677f16c9eb51b1ed218a86a7aa039a6fed665f245 name: tar - evr: 2:1.34-9.el9_7 - sourcerpm: tar-1.34-9.el9_7.src.rpm + evr: 2:1.34-11.el9 + sourcerpm: tar-1.34-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 933841 + checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + name: tzdata + evr: 2026b-1.el9 + sourcerpm: tzdata-2026b-1.el9.src.rpm - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 235693 @@ -2623,24 +3583,48 @@ arches: evr: 1.2.11-40.el9 sourcerpm: zlib-1.2.11-40.el9.src.rpm source: - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/a/audit-3.1.5-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/a/acl-2.3.1-4.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 535332 + checksum: sha256:cb449bc6c85e0b50fa0bb98c969ff8481fee40517d8ebec5e28b72e5360fbe1e + name: acl + evr: 2.3.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/a/attr-2.5.1-3.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 1268651 - checksum: sha256:b5faebe90480d09aa5809ab566f518afd4a2b2b221a65bcf5f782d03527b86eb + size: 482234 + checksum: sha256:5171534e7de11df197f3c5e08658544983198288e04624c739b5c3d9db07b59c + name: attr + evr: 2.5.1-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/a/audit-3.1.5-8.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1275064 + checksum: sha256:e0a3e72c863512032e0ba95337db076fa5af9368d9a80529a9624afc8877401c name: audit - evr: 3.1.5-7.el9 + evr: 3.1.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/b/basesystem-11-13.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 9884 + checksum: sha256:5a4ed0779fc06f08115d6e06aa95486f1e1e251f8f9ddb6c7e14e811bb2e24ef + name: basesystem + evr: 11-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/b/bash-5.1.8-9.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 10512850 + checksum: sha256:5d7bbbf2538361be1a11846602862c3a56809b3ea43b69b86bcf407538e9e260 + name: bash + evr: 5.1.8-9.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/b/brotli-1.0.9-9.el9_7.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 517498 checksum: sha256:814868e0bec831c79d3e12ff76d31e06e5e62c462a1a4b6607b1f3cab7014438 name: brotli evr: 1.0.9-9.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-10.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-11.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 824335 - checksum: sha256:ed1556ca58615a5ca90b09f3cad8ddb8fe7b1885a4de49c40a31a39ca592bc25 + size: 828199 + checksum: sha256:ba58283fc4ef85911f20a8e45ffa00497775858102d48f2a32ebf1010a1abefc name: bzip2 - evr: 1.0.8-10.el9_5 + evr: 1.0.8-11.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 711648 @@ -2653,18 +3637,24 @@ arches: checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc name: chkconfig evr: 1.24-2.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/crypto-policies-20250905-1.git377cc42.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/coreutils-8.32-40.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 107074 - checksum: sha256:a8ccbe1e1a1b7263941b20d156594925a70017d6de72889dfa7618d8b02a33aa + size: 5695125 + checksum: sha256:476f7d40d45ca0dc019a28966e410bb7dc9cba3dd7c58b744b2042b84435bf5a + name: coreutils + evr: 8.32-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 112905 + checksum: sha256:775d926429179caeade6af8dc7dea15a0bea49102c2592d5b712f996a329ec38 name: crypto-policies - evr: 20250905-1.git377cc42.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/curl-7.76.1-35.el9_7.3.src.rpm + evr: 20260224-1.gitea0f072.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/curl-7.76.1-40.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 2564300 - checksum: sha256:670afd4496d5eec73b99528af258cf87be65cf4567c9e7c76a3c7508af3e6687 + size: 2572192 + checksum: sha256:c062dd3816ec11062751eb0ad352104340c18c2f01587e7c4a4c8145211ff65d name: curl - evr: 7.76.1-35.el9_7.3 + evr: 7.76.1-40.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/cyrus-sasl-2.1.27-22.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 4025677 @@ -2677,6 +3667,12 @@ arches: checksum: sha256:5c613445f928889a52a0a82f4ed866502e82c99b0c983024ab97421391abd061 name: e2fsprogs evr: 1.46.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/f/filesystem-3.16-5.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 20486 + checksum: sha256:c795690df30c46e521372e2f649c995a2abc159b76c8ef6cd5da8a713ea17937 + name: filesystem + evr: 3.16-5.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 2010585 @@ -2689,12 +3685,24 @@ arches: checksum: sha256:37571947707e835d36ceb5641b187aba13ef8f5f605a6762ce72aeea3e745b8d name: gawk evr: 5.1.0-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/gcc-11.5.0-14.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 81978017 + checksum: sha256:19dec462f2880508570ca42a82c2f76fbd95fcad8d3e3ff812e9ca50cdeb2d8f + name: gcc + evr: 11.5.0-14.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/gdbm-1.23-1.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 1130147 checksum: sha256:ad42264274c2a792220395a4dbe736a1de6100c4e14611707ec1dd447583271f name: gdbm evr: 1:1.23-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/glibc-2.34-270.el9_8.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 20414318 + checksum: sha256:ac1dbcb022ceae7c6c59f7ea64f7f5e696f193158d10123ad7a9bf9344a7fa9b + name: glibc + evr: 2.34-270.el9_8 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/gmp-6.2.0-13.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 2503825 @@ -2719,12 +3727,12 @@ arches: checksum: sha256:6afa567438acd0d3a6a66bc6a3c68ec2f4ae5ed9c7230c3f0478d2281a092688 name: keyutils evr: 1.6.3-1.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/k/krb5-1.21.1-9.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/k/krb5-1.21.1-10.el9_8.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 8950679 - checksum: sha256:060d98c68b453970fcb516ba38eb5b797e6f4e20e173e3b237c2ca36cc23a411 + size: 8964976 + checksum: sha256:b22a66515c98c14a4969a403d5419b9f9bab50015553863de866d3f45fd6d922 name: krb5 - evr: 1.21.1-9.el9_7 + evr: 1.21.1-10.el9_8 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/less-590-6.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 382338 @@ -2737,6 +3745,12 @@ arches: checksum: sha256:69ee18f9881f3768c7b01d03185f3fba9637c0477e585a113fd3641c7dcd3d41 name: libarchive evr: 3.5.3-9.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libcap-2.48-10.el9_8.1.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 208035 + checksum: sha256:7f96d98c99f190b840985b3589183a3f1dc444e0932f256491b24d28c5031de3 + name: libcap + evr: 2.48-10.el9_8.1 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 470599 @@ -2767,24 +3781,36 @@ arches: checksum: sha256:0325329a882e68a2f817bac959abe49abc67d3dac9381a5a02c006916a86f17c name: libpsl evr: 0.21.1-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libselinux-3.6-3.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 271153 + checksum: sha256:a08a84389665ef614eb6d9b06a53128eab89b650c799c0558f3ae04df97c4b13 + name: libselinux + evr: 3.6-3.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 223978 checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 name: libsemanage evr: 3.6-5.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libsepol-3.6-3.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 543960 + checksum: sha256:2dacf2f1c1f61562ccc5ad082939158745e5a4a572d135d4f8ff00f75e1e94df + name: libsepol + evr: 3.6-3.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 473267 checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 name: libsigsegv evr: 2.13-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libssh-0.10.4-17.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libssh-0.10.4-18.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 666751 - checksum: sha256:b6704bba8787776c03b828b5b1de4e499f68818852e7b1aa08f5270724d5b832 + size: 707007 + checksum: sha256:e012994887f4f4c4367bce98f2eb5589bfa5c7926d65471cefeee12bee636b1d name: libssh - evr: 0.10.4-17.el9_7 + evr: 0.10.4-18.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-9.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 1895591 @@ -2833,48 +3859,60 @@ arches: checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 name: lz4 evr: 1.9.3-5.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-10.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 1556195 - checksum: sha256:1a6f60487d5ebb8998718c8246a49baf182e27318aa16e6a80b1ba7600b74e13 + size: 1560595 + checksum: sha256:c812e3c35d5bd5c3e33c65cdcf39d434acfd538aaa68ac04e3a5a9cc60556d50 name: mpfr - evr: 4.1.0-7.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/n/nghttp2-1.43.0-6.el9_7.1.src.rpm + evr: 4.1.0-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/n/ncurses-6.2-12.20210508.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 4003759 - checksum: sha256:6a1a3c8ee5ed3ebd826d16e9432102657903fbc833002b61e26d251f903b7a6a + size: 3586993 + checksum: sha256:cdb59ed3771a3a4f00e2ffca853f2de4aa887e3d5c3655317f2e2c03f461103f + name: ncurses + evr: 6.2-12.20210508.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/n/nghttp2-1.43.0-6.el9_8.1.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 4003756 + checksum: sha256:8b25596d58db32cf06c747c764ffc8ae328a9b7efb579d2ba2a302e887b3cf50 name: nghttp2 - evr: 1.43.0-6.el9_7.1 + evr: 1.43.0-6.el9_8.1 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/o/openldap-2.6.8-4.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 6548889 checksum: sha256:0d21c12c55d40d1fc2f006c8ec187b5fcc799b794cfd31ed2d98434189c62800 name: openldap evr: 2.6.8-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/o/openssl-3.5.1-7.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/o/openssl-3.5.5-2.el9_8.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 53417882 - checksum: sha256:6c9d66a1a6fe1b461d6e030f7b1f286555b83bdafcd14f90cd9d77f17f7177eb + size: 53322598 + checksum: sha256:34f88c3cc68ddb83e85ce6f581c19d08232696c15ad7d828a5d53f26ebc539dc name: openssl - evr: 1:3.5.1-7.el9_7 + evr: 1:3.5.5-2.el9_8 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-8.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 89979766 checksum: sha256:f6e518e04053c5ff00bea751cd9bad3bd7a2be0eb8259b9d45b3cf1a80438bb9 name: openssl-fips-provider evr: 3.0.7-8.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/p11-kit-0.25.3-3.el9_5.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/p11-kit-0.26.2-1.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 1027881 - checksum: sha256:de598a2e1ca170df85cd69d6cc406402407a244988506f53f8736a7546135260 + size: 1108578 + checksum: sha256:b33c02489d0d7b599498f04f09da5a3f6c0b6962c462bcc0ad8accbb4d41ea6c name: p11-kit - evr: 0.25.3-3.el9_5 + evr: 0.26.2-1.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 1624356 checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 name: pcre evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/pcre2-10.40-6.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1789790 + checksum: sha256:a570f7192be555222aa3704882b9199fb013a84ad4d7dcf40a93d8de2ecf6e0a + name: pcre2 + evr: 10.40-6.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/popt-1.18-8.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 595630 @@ -2893,36 +3931,54 @@ arches: checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 name: readline evr: 8.1-4.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/r/rpm-4.16.1.3-39.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/r/redhat-release-9.8-1.0.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 85364 + checksum: sha256:6c3f4a1287fb76e05e49217a15a33b9c228a56fc06e96376afb37201bfbe32da + name: redhat-release + evr: 9.8-1.0.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/r/rpm-4.16.1.3-40.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 4498489 - checksum: sha256:07d62b4b303a48f60845d4bae4d269bee8b2fc372e470cecc486d09a9685139f + size: 4502326 + checksum: sha256:311266f11a616acecfdcfca63214f91dc3ea88409098cf2ffec6c5e9cfc686ef name: rpm - evr: 4.16.1.3-39.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/sed-4.8-9.el9.src.rpm + evr: 4.16.1.3-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/sed-4.8-10.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 1424192 - checksum: sha256:0590550f0cbdce0a26f98a73c756f663a7f220486d10f9c16d1ce0c8c4d14378 + size: 1428416 + checksum: sha256:981073f2c251395b5ae42b7ff929f743260eea9738187fbb207042f11eae7ea7 name: sed - evr: 4.8-9.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-15.el9.src.rpm + evr: 4.8-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/setup-2.13.7-10.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 1712227 - checksum: sha256:c6feefc65a20ec4203979e0cde4d4a6d86981ac7c836e55148273bd9fc2b57b2 + size: 195940 + checksum: sha256:3acdbbd63bd77dd8b18210b9d597bd59ddf455ff728067638c54194ac3a8a32b + name: setup + evr: 2.13.7-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-16.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1713058 + checksum: sha256:771a5ed07cdb690c75cd428a8113e2ee471270044e6cb8025d92c54e32c180ff name: shadow-utils - evr: 2:4.9-15.el9 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-9.el9_7.src.rpm + evr: 2:4.9-16.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-10.el9_8.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 25109403 - checksum: sha256:1d89566fe2e33bbd86fe1d024e3dbb7e800aef138f8d8d99ab65b15a6f6c2c5a + size: 25116090 + checksum: sha256:4387ae8d5a5a0b972b7a8612dca277499a43e7991163c7519e8a0ced2e57c90a name: sqlite - evr: 3.34.1-9.el9_7 - - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/t/tar-1.34-9.el9_7.src.rpm + evr: 3.34.1-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/t/tar-1.34-11.el9.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms - size: 2282680 - checksum: sha256:9b84935c6072500fa28674521fe13816a8be44c50bb8eaf5ec73994782161250 + size: 2294162 + checksum: sha256:13204f7499944b3fe773cbdf0b9bb2de31eaa9a4c69f31830fb9e54506bcb9b6 name: tar - evr: 2:1.34-9.el9_7 + evr: 2:1.34-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/t/tzdata-2026b-1.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 929993 + checksum: sha256:d549fc081c8cb2eec6c8273acfdd1b24023897c09fff24117fe2c2532d4bf085 + name: tzdata + evr: 2026b-1.el9 - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm repoid: rhel-9-for-x86_64-baseos-source-rpms size: 1168293 From cf772debe613b3d10b3d45df6cf745518b7f241d Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Tue, 9 Jun 2026 13:44:05 +0200 Subject: [PATCH 36/37] Apply suggestions from code review Co-authored-by: Tomasz Janiszewski --- image/scanner/rhel/Dockerfile | 3 +-- image/scanner/rhel/Dockerfile.slim | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/image/scanner/rhel/Dockerfile b/image/scanner/rhel/Dockerfile index d95807075..26ef83acc 100644 --- a/image/scanner/rhel/Dockerfile +++ b/image/scanner/rhel/Dockerfile @@ -21,8 +21,7 @@ RUN dnf install -y \ xz \ gzip \ less \ - tar \ - openssl && \ + tar && \ # curl is a transitive dependency of rpm but not needed in the scanner image rpm --root=/out -e --nodeps curl && \ dnf clean all --installroot=/out/ && \ diff --git a/image/scanner/rhel/Dockerfile.slim b/image/scanner/rhel/Dockerfile.slim index edacb2566..2efdc3242 100644 --- a/image/scanner/rhel/Dockerfile.slim +++ b/image/scanner/rhel/Dockerfile.slim @@ -21,8 +21,7 @@ RUN dnf install -y \ xz \ gzip \ less \ - tar \ - openssl && \ + tar && \ # curl is a transitive dependency of rpm but not needed in the scanner image rpm --root=/out -e --nodeps curl && \ dnf clean all --installroot=/out/ && \ From fba0264e6c915734e8f9fa2a410a7b039910f7b9 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Wed, 10 Jun 2026 11:25:36 +0200 Subject: [PATCH 37/37] remove ACTIVATION_KEY Co-authored-by: Tomasz Janiszewski --- .tekton/scanner-build.yaml | 2 -- .tekton/scanner-slim-build.yaml | 2 -- 2 files changed, 4 deletions(-) diff --git a/.tekton/scanner-build.yaml b/.tekton/scanner-build.yaml index 12546a4e1..a9808ba6a 100644 --- a/.tekton/scanner-build.yaml +++ b/.tekton/scanner-build.yaml @@ -58,8 +58,6 @@ spec: value: # X.Y in the cpe label must be adjusted for every version stream. - "cpe=cpe:/a:redhat:advanced_cluster_security:X.Y::el9" - - name: ACTIVATION_KEY - value: subscription-manager-activation-key-prod workspaces: - name: git-auth diff --git a/.tekton/scanner-slim-build.yaml b/.tekton/scanner-slim-build.yaml index b8a8fbe81..ecdc4e37f 100644 --- a/.tekton/scanner-slim-build.yaml +++ b/.tekton/scanner-slim-build.yaml @@ -58,8 +58,6 @@ spec: value: # X.Y in the cpe label must be adjusted for every version stream. - "cpe=cpe:/a:redhat:advanced_cluster_security:X.Y::el9" - - name: ACTIVATION_KEY - value: subscription-manager-activation-key-prod workspaces: - name: git-auth