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/19] 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/19] 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/19] 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/19] 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/19] 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/19] 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/19] 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/19] 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/19] 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/19] 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/19] 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/19] 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/19] 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/19] 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/19] 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/19] 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/19] 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/19] 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/19] 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