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..0bae33d8f 100644 --- a/image/db/rhel/Dockerfile +++ b/image/db/rhel/Dockerfile @@ -1,7 +1,4 @@ -ARG RPMS_REGISTRY=registry.access.redhat.com -ARG RPMS_BASE_IMAGE=ubi9 -ARG RPMS_BASE_TAG=latest - +ARG PG_VERSION=15 ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi9-minimal ARG BASE_TAG=latest @@ -12,12 +9,9 @@ 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 quay.io/sclorg/postgresql-${PG_VERSION}-c9s:latest -FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS base +USER root ARG LABEL_VERSION ARG LABEL_RELEASE @@ -32,47 +26,23 @@ 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" +ENV LANG="en_US.utf8" -COPY signatures/PGDG-RPM-GPG-KEY-RHEL / COPY scripts/docker-entrypoint.sh /usr/local/bin/ COPY --from=extracted_bundle /bundle/etc/postgresql.conf /bundle/etc/pg_hba.conf /etc/ -COPY --from=postgres_rpms /rpms/postgres.rpm /rpms/postgres-libs.rpm /rpms/postgres-server.rpm /rpms/postgres-contrib.rpm /tmp/ -RUN 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 && \ +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. diff --git a/image/db/rhel/Dockerfile.slim b/image/db/rhel/Dockerfile.slim index 8e3bb7d34..90bccac19 100644 --- a/image/db/rhel/Dockerfile.slim +++ b/image/db/rhel/Dockerfile.slim @@ -1,23 +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}/${BASE_IMAGE}:${BASE_TAG} AS extracted_bundle -COPY bundle.tar.gz / - -WORKDIR /bundle -RUN microdnf install -y tar gzip && tar -zxf /bundle.tar.gz - -FROM ${RPMS_REGISTRY}/${RPMS_BASE_IMAGE}:${RPMS_BASE_TAG} AS postgres_rpms - -COPY scripts/download.sh /download.sh -RUN /download.sh - -FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} AS base +USER root ARG LABEL_VERSION ARG LABEL_RELEASE @@ -32,54 +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" +ENV LANG="en_US.utf8" +ENV ROX_SLIM_MODE="true" -COPY signatures/PGDG-RPM-GPG-KEY-RHEL / COPY scripts/docker-entrypoint.sh /usr/local/bin/ -COPY --from=extracted_bundle /bundle/etc/postgresql.conf /bundle/etc/pg_hba.conf /etc/ -COPY --from=postgres_rpms /rpms/postgres.rpm /rpms/postgres-libs.rpm /rpms/postgres-server.rpm /rpms/postgres-contrib.rpm /tmp/ +COPY postgresql.conf pg_hba.conf /etc/ -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 && \ +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/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 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----- diff --git a/image/scanner/rhel/Dockerfile b/image/scanner/rhel/Dockerfile index 9310a1f6e..a8e34c101 100644 --- a/image/scanner/rhel/Dockerfile +++ b/image/scanner/rhel/Dockerfile @@ -2,13 +2,34 @@ 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 \ + findutils \ + ca-certificates \ + rpm \ + 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 +46,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..0de60a0b3 100644 --- a/image/scanner/rhel/Dockerfile.slim +++ b/image/scanner/rhel/Dockerfile.slim @@ -2,13 +2,34 @@ 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 \ + findutils \ + ca-certificates \ + rpm \ + 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 +46,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..797bfa7c5 100644 --- a/image/scanner/rhel/konflux.Dockerfile +++ b/image/scanner/rhel/konflux.Dockerfile @@ -27,8 +27,30 @@ 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 \ + findutils \ + ca-certificates \ + rpm \ + 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 +74,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 +83,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/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/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..2117567c8 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 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 +- 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..831d10e4c 100644 --- a/rpms.lock.yaml +++ b/rpms.lock.yaml @@ -4,6 +4,398 @@ 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/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 + 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/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 + 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/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 + 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/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 + 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/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 + 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/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 + 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/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 + 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/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/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 + 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/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 + 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/x/xz-5.2.5-8.el9_0.aarch64.rpm repoid: rhel-9-for-aarch64-baseos-rpms size: 235798 @@ -11,16 +403,734 @@ 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/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 + 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/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 + 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/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 + 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/pcre-8.44-4.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1624356 + checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 + name: pcre + evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/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 + 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/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/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 + 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/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 + 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/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 + 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/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 + 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/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 + 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/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 + 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/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 + 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/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/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 + 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/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 + 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/x/xz-5.2.5-8.el9_0.ppc64le.rpm repoid: rhel-9-for-ppc64le-baseos-rpms size: 243215 @@ -28,16 +1138,734 @@ 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/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 + 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/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 + 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/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 + 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/pcre-8.44-4.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1624356 + checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 + name: pcre + evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/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 + 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/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/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 + 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/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 + 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/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 + 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/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 + 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/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 + 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/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 + 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/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 + 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/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/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 + 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/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 + 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/x/xz-5.2.5-8.el9_0.s390x.rpm repoid: rhel-9-for-s390x-baseos-rpms size: 234632 @@ -45,16 +1873,734 @@ 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/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 + 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/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 + 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/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 + 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/pcre-8.44-4.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1624356 + checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 + name: pcre + evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/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 + 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/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/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 + 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/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 + 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/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 + 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/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 + 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/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 + 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/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 + 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/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 + 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/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/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 + 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/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 + 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/x/xz-5.2.5-8.el9_0.x86_64.rpm repoid: rhel-9-for-x86_64-baseos-rpms size: 235693 @@ -62,11 +2608,337 @@ 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/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 + 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/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 + 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/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 + 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/pcre-8.44-4.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1624356 + checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 + name: pcre + evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/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 + 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/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: [] 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