From 85d0780f3bc9ed9a8676d3beba3d8514e6d83e1d Mon Sep 17 00:00:00 2001 From: Andre Lustosa Date: Tue, 28 Jul 2026 08:07:19 -0400 Subject: [PATCH 01/24] CARRY: Add Konflux hermetic build Dockerfiles for gateway and supervisor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Multi-stage UBI9 Dockerfiles that compile gateway and supervisor from source for Konflux hermetic builds. Gateway uses RPM rust + gcc-toolset-14 (C++20 for bundled Z3). Supervisor builds musl from source for static linking and installs Rust toolchain from prefetched tarballs. Both images are multi-arch (x86_64 + aarch64) with SHA-pinned base images, RPM lockfiles, and generic fetcher configs for all external artifacts. Includes build-local.sh for local hermetic testing via Hermeto. Co-authored-by: Martin Prpič Signed-off-by: Andre Lustosa --- .gitignore | 3 + deploy/docker/Dockerfile.konflux.gateway | 74 ++ deploy/docker/Dockerfile.konflux.supervisor | 113 +++ deploy/konflux/build-local.sh | 120 +++ deploy/konflux/gateway/generic-fetcher.yaml | 12 + deploy/konflux/gateway/rpms.in.yaml | 29 + deploy/konflux/gateway/rpms.lock.yaml | 893 ++++++++++++++++++ .../konflux/supervisor/generic-fetcher.yaml | 32 + deploy/konflux/supervisor/rpms.in.yaml | 29 + deploy/konflux/supervisor/rpms.lock.yaml | 717 ++++++++++++++ 10 files changed, 2022 insertions(+) create mode 100644 deploy/docker/Dockerfile.konflux.gateway create mode 100644 deploy/docker/Dockerfile.konflux.supervisor create mode 100755 deploy/konflux/build-local.sh create mode 100644 deploy/konflux/gateway/generic-fetcher.yaml create mode 100644 deploy/konflux/gateway/rpms.in.yaml create mode 100644 deploy/konflux/gateway/rpms.lock.yaml create mode 100644 deploy/konflux/supervisor/generic-fetcher.yaml create mode 100644 deploy/konflux/supervisor/rpms.in.yaml create mode 100644 deploy/konflux/supervisor/rpms.lock.yaml diff --git a/.gitignore b/.gitignore index 342e604478..cd8d2258b1 100644 --- a/.gitignore +++ b/.gitignore @@ -227,6 +227,9 @@ rfc.md # Markdown/mermaid lint tooling deps scripts/lint-mermaid/node_modules/ +# Hermeto prefetch output +/hermeto-output/ + # Nix /result /result-* diff --git a/deploy/docker/Dockerfile.konflux.gateway b/deploy/docker/Dockerfile.konflux.gateway new file mode 100644 index 0000000000..1e6dae1176 --- /dev/null +++ b/deploy/docker/Dockerfile.konflux.gateway @@ -0,0 +1,74 @@ +# syntax=docker/dockerfile:1.4 + +# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +# Gateway image for RHEL/Konflux (hermetic build). +# +# Multi-stage build that compiles openshell-gateway from source on UBI9. +# Requires prefetched dependencies via Hermeto (cargo, rpm, generic). +# See deploy/konflux/ for prefetch configs. +# +# Local build: ./deploy/konflux/build-local.sh gateway + +# --------------------------------------------------------------------------- +# Build +# --------------------------------------------------------------------------- +FROM registry.access.redhat.com/ubi9/ubi:9.6@sha256:dec374e05cc13ebbc0975c9f521f3db6942d27f8ccdf06b180160490eef8bdbc AS builder + +RUN dnf install -y --nodocs \ + rust cargo \ + gcc gcc-c++ make cmake \ + openssl-devel git-core clang-devel \ + gcc-toolset-14 gcc-toolset-14-gcc-c++ \ + && dnf clean all + +# gcc-toolset-14 provides C++20 header required by bundled Z3. +# Same pattern as ~/git/builder (AIPCC-10154). +ENV PATH=/opt/rh/gcc-toolset-14/root/usr/bin:${PATH} \ + LD_LIBRARY_PATH=/opt/rh/gcc-toolset-14/root/usr/lib64:/opt/rh/gcc-toolset-14/root/usr/lib \ + CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse + +WORKDIR /build +COPY Cargo.toml Cargo.lock ./ +COPY .cargo/ .cargo/ +COPY crates/ crates/ +COPY proto/ proto/ +COPY providers/ providers/ + +# z3-sys bundled build needs prefetched Z3 source. +ARG Z3_VERSION=4.16.0 +RUN mkdir -p /tmp/z3-src \ + && tar xzf /cachi2/deps/generic/z3-${Z3_VERSION}.tar.gz -C /tmp/z3-src --strip-components=1 \ + && Z3_SYS_BUNDLED_DIR_OVERRIDE=/tmp/z3-src \ + cargo build --release \ + --package openshell-server \ + --features bundled-z3 + +# --------------------------------------------------------------------------- +# Runtime +# --------------------------------------------------------------------------- +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.6@sha256:34880b64c07f28f64d95737f82f891516de9a3b43583f39970f7bf8e4cfa48b7 + +RUN microdnf install -y --nodocs ca-certificates \ + && microdnf clean all + +COPY --from=builder --chmod=0555 \ + /build/target/release/openshell-gateway \ + /usr/local/bin/openshell-gateway + +LABEL com.redhat.component="odh-openshell-gateway-container" \ + description="gRPC/HTTP control-plane server for OpenShell sandboxed AI agent runtimes" \ + summary="gRPC/HTTP control-plane server for OpenShell sandboxed AI agent runtimes" \ + name="rhoai/odh-openshell-gateway-rhel9" \ + maintainer="['managed-open-data-hub@redhat.com']" \ + io.openshift.expose-services="8080:http" \ + io.k8s.display-name="odh-openshell-gateway" \ + io.k8s.description="odh-openshell-gateway" \ + com.redhat.license_terms="https://www.redhat.com/licenses/Red_Hat_Standard_EULA_20191108.pdf" + +USER 1000:1000 +EXPOSE 8080 + +ENTRYPOINT ["/usr/local/bin/openshell-gateway"] +CMD ["--bind-address", "0.0.0.0", "--port", "8080"] diff --git a/deploy/docker/Dockerfile.konflux.supervisor b/deploy/docker/Dockerfile.konflux.supervisor new file mode 100644 index 0000000000..79cb7d417b --- /dev/null +++ b/deploy/docker/Dockerfile.konflux.supervisor @@ -0,0 +1,113 @@ +# syntax=docker/dockerfile:1.4 + +# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +# Supervisor image for RHEL/Konflux (hermetic build). +# +# The supervisor binary is extracted and injected into arbitrary user +# containers (Alpine, Debian, distroless, UBI) so it MUST be a fully-static +# musl binary. musl libc is built from source since UBI9 does not ship it. +# +# Requires prefetched dependencies via Hermeto (cargo, rpm, generic). +# See deploy/konflux/ for prefetch configs. +# +# Local build: ./deploy/konflux/build-local.sh supervisor + +ARG RUST_VERSION=1.92.0 +ARG MUSL_VERSION=1.2.5 + +# --------------------------------------------------------------------------- +# Stage 1: build musl libc from source +# --------------------------------------------------------------------------- +FROM registry.access.redhat.com/ubi9/ubi:9.6@sha256:dec374e05cc13ebbc0975c9f521f3db6942d27f8ccdf06b180160490eef8bdbc AS musl-toolchain + +ARG MUSL_VERSION + +RUN dnf install -y --nodocs gcc make tar gzip \ + && dnf clean all + +WORKDIR /tmp/musl-build + +RUN tar xzf /cachi2/deps/generic/musl-${MUSL_VERSION}.tar.gz --strip-components=1 \ + && ./configure --prefix=/usr/local/musl --disable-shared \ + && make -j"$(nproc)" \ + && make install + +# --------------------------------------------------------------------------- +# Stage 2: compile supervisor (static musl binary) +# --------------------------------------------------------------------------- +FROM registry.access.redhat.com/ubi9/ubi:9.6@sha256:dec374e05cc13ebbc0975c9f521f3db6942d27f8ccdf06b180160490eef8bdbc AS builder + +ARG RUST_VERSION +ARG TARGETARCH + +RUN dnf install -y --nodocs \ + gcc gcc-c++ make cmake \ + openssl-devel git-core xz \ + && dnf clean all + +# Map TARGETARCH (amd64/arm64) to Rust triple components +RUN RUST_ARCH=$(case "${TARGETARCH}" in amd64) echo x86_64;; arm64) echo aarch64;; *) echo "${TARGETARCH}";; esac) && \ + RUST_TRIPLE="${RUST_ARCH}-unknown-linux-gnu" && \ + MUSL_TRIPLE="${RUST_ARCH}-unknown-linux-musl" && \ + mkdir -p /tmp/rust-toolchain && \ + tar xJf /cachi2/deps/generic/rust-${RUST_VERSION}-${RUST_TRIPLE}.tar.xz -C /tmp/rust-toolchain --strip-components=1 && \ + /tmp/rust-toolchain/install.sh --prefix=/usr/local && \ + rm -rf /tmp/rust-toolchain && \ + mkdir -p /tmp/musl-std && \ + tar xJf /cachi2/deps/generic/rust-std-${RUST_VERSION}-${MUSL_TRIPLE}.tar.xz -C /tmp/musl-std --strip-components=1 && \ + /tmp/musl-std/install.sh --prefix=/usr/local && \ + rm -rf /tmp/musl-std + +COPY --from=musl-toolchain /usr/local/musl /usr/local/musl + +# CC and target vars use the native arch musl triple +RUN RUST_ARCH=$(case "${TARGETARCH}" in amd64) echo x86_64;; arm64) echo aarch64;; *) echo "${TARGETARCH}";; esac) && \ + echo "MUSL_TARGET=${RUST_ARCH}-unknown-linux-musl" > /tmp/build-env +ENV PATH="/usr/local/musl/bin:${PATH}" \ + CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse + +WORKDIR /build +COPY Cargo.toml Cargo.lock ./ +COPY .cargo/ .cargo/ +COPY crates/ crates/ +COPY proto/ proto/ + +RUN . /tmp/build-env && \ + export CC_${MUSL_TARGET//-/_}=musl-gcc && \ + cargo build --release \ + --target "${MUSL_TARGET}" \ + --package openshell-sandbox && \ + mkdir -p /build/output && \ + cp /build/target/${MUSL_TARGET}/release/openshell-sandbox /build/output/ + +# --------------------------------------------------------------------------- +# Runtime +# --------------------------------------------------------------------------- +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.6@sha256:34880b64c07f28f64d95737f82f891516de9a3b43583f39970f7bf8e4cfa48b7 + +ARG TARGETARCH + +RUN microdnf install -y --nodocs \ + nftables \ + iptables-nft \ + iproute \ + util-linux-core \ + && microdnf clean all + +# Copy the static binary from the arch-specific target directory. +# Builder writes the target to /tmp/build-env; we resolve it here. +COPY --from=builder --chmod=0555 /build/output/openshell-sandbox /openshell-sandbox + +LABEL com.redhat.component="odh-openshell-supervisor-container" \ + description="Static musl-linked sandbox supervisor for OpenShell, injected into arbitrary user containers" \ + summary="Static musl-linked sandbox supervisor for OpenShell, injected into arbitrary user containers" \ + name="rhoai/odh-openshell-supervisor-rhel9" \ + maintainer="['managed-open-data-hub@redhat.com']" \ + io.openshift.expose-services="" \ + io.k8s.display-name="odh-openshell-supervisor" \ + io.k8s.description="odh-openshell-supervisor" \ + com.redhat.license_terms="https://www.redhat.com/licenses/Red_Hat_Standard_EULA_20191108.pdf" + +ENTRYPOINT ["/openshell-sandbox"] diff --git a/deploy/konflux/build-local.sh b/deploy/konflux/build-local.sh new file mode 100755 index 0000000000..b4cf542a45 --- /dev/null +++ b/deploy/konflux/build-local.sh @@ -0,0 +1,120 @@ +#!/usr/bin/env bash +# Build Konflux images locally using Hermeto prefetched dependencies. +# Replicates the Konflux hermetic build pipeline (--network none). +# +# Prerequisites: +# - hermeto (pip install git+https://github.com/hermetoproject/hermeto.git) +# - podman +# - createrepo_c +# - Red Hat CDN CA trusted (sudo cp /etc/rhsm/ca/redhat-uep.pem /etc/pki/ca-trust/source/anchors/ && sudo update-ca-trust) +# +# Usage: +# ./deploy/konflux/build-local.sh gateway +# ./deploy/konflux/build-local.sh supervisor +# ./deploy/konflux/build-local.sh all +# +# Override architecture (default: host arch via uname -m): +# PLATFORM=linux/arm64 ./deploy/konflux/build-local.sh supervisor +set -euo pipefail + +REPO_ROOT="$(cd "$(dirname "$0")/../.." && pwd)" +OUTPUT_DIR="${REPO_ROOT}/hermeto-output" + +# Detect or override platform +HOST_ARCH=$(uname -m) +case "${HOST_ARCH}" in + x86_64) DEFAULT_PLATFORM="linux/amd64" ;; + aarch64) DEFAULT_PLATFORM="linux/arm64" ;; + *) DEFAULT_PLATFORM="linux/${HOST_ARCH}" ;; +esac +PLATFORM="${PLATFORM:-${DEFAULT_PLATFORM}}" + +CLEANUP_PATHS=() +cleanup() { + for p in "${CLEANUP_PATHS[@]}"; do + rm -rf "$p" + done + git -C "${REPO_ROOT}" checkout .cargo/config.toml 2>/dev/null || true +} +trap cleanup EXIT + +build_image() { + local component="$1" + local dockerfile konfig_dir output_dir repos_dir + + case "$component" in + gateway) + dockerfile="deploy/docker/Dockerfile.konflux.gateway" + konfig_dir="deploy/konflux/gateway" + ;; + supervisor) + dockerfile="deploy/docker/Dockerfile.konflux.supervisor" + konfig_dir="deploy/konflux/supervisor" + ;; + *) + echo "Unknown component: $component" >&2 + exit 1 + ;; + esac + + output_dir="${OUTPUT_DIR}/${component}" + repos_dir=$(mktemp -d) + CLEANUP_PATHS+=("${repos_dir}") + + echo "=== Prefetching ${component} dependencies ===" + rm -rf "${output_dir}" + hermeto fetch-deps \ + --source "${REPO_ROOT}" \ + --output "${output_dir}" \ + "[ + {\"path\": \".\", \"type\": \"cargo\"}, + {\"path\": \"${konfig_dir}\", \"type\": \"rpm\"}, + {\"path\": \"${konfig_dir}\", \"type\": \"generic\", \"lockfile\": \"generic-fetcher.yaml\"} + ]" + + echo "=== Injecting files ===" + hermeto inject-files "${output_dir}" --for-output-dir /cachi2 + hermeto generate-env "${output_dir}" \ + --format env --for-output-dir /cachi2 \ + --output "${output_dir}/cachi2.env" + + echo "=== Preparing RPM repos ===" + find "${output_dir}" -name "hermeto.repo" -execdir cp {} cachi2.repo \; + local rpm_arch + rpm_arch=$(uname -m) + cp "${output_dir}/deps/rpm/${rpm_arch}/repos.d/cachi2.repo" "${repos_dir}/" + chmod -R go+rX "${repos_dir}" + + echo "=== Building ${component} (--network none, platform ${PLATFORM}) ===" + local hermetic_dockerfile + hermetic_dockerfile=$(mktemp) + CLEANUP_PATHS+=("${hermetic_dockerfile}") + cp "${REPO_ROOT}/${dockerfile}" "${hermetic_dockerfile}" + sed -i 's|^\s*RUN |RUN . /cachi2/cachi2.env \&\& \\\n |i' "${hermetic_dockerfile}" + + podman build \ + -f "${hermetic_dockerfile}" \ + --platform "${PLATFORM}" \ + --volume "$(realpath "${output_dir}"):/cachi2:Z" \ + --volume "$(realpath "${repos_dir}"):/etc/yum.repos.d:Z" \ + --network none \ + -t "openshell-${component}-konflux" \ + "${REPO_ROOT}" + + echo "=== ${component} built successfully ===" + podman run --rm --platform "${PLATFORM}" "openshell-${component}-konflux" --help 2>&1 | head -3 + echo "" +} + +if [[ $# -eq 0 ]]; then + echo "Usage: $0 {gateway|supervisor|all}" >&2 + exit 1 +fi + +target="$1" +if [[ "$target" == "all" ]]; then + build_image gateway + build_image supervisor +else + build_image "$target" +fi diff --git a/deploy/konflux/gateway/generic-fetcher.yaml b/deploy/konflux/gateway/generic-fetcher.yaml new file mode 100644 index 0000000000..8e712cf741 --- /dev/null +++ b/deploy/konflux/gateway/generic-fetcher.yaml @@ -0,0 +1,12 @@ +# Generic fetcher artifacts for Dockerfile.konflux.gateway +# These are prefetched by Hermeto and mounted at /cachi2/deps/generic/ +# Include in prefetch-input alongside cargo and rpm types. +# +# To update hashes: curl -sL | sha256sum +metadata: + version: "1.0" +artifacts: + # Z3 source (z3-sys bundled build downloads from GitHub at build time) + - download_url: https://github.com/Z3Prover/z3/archive/refs/tags/z3-4.16.0.tar.gz + checksum: "sha256:c68c3e5e4810b16126b8cb4c47eee85c1ac3e24a81914c8e371b40de9dd33ac7" + filename: z3-4.16.0.tar.gz diff --git a/deploy/konflux/gateway/rpms.in.yaml b/deploy/konflux/gateway/rpms.in.yaml new file mode 100644 index 0000000000..a380a15f8a --- /dev/null +++ b/deploy/konflux/gateway/rpms.in.yaml @@ -0,0 +1,29 @@ +# RPM dependencies for Dockerfile.konflux.gateway +# Build + runtime stages combined. Generate lockfile with: +# rpm-lockfile-prototype --image registry.access.redhat.com/ubi9/ubi:9.6 \ +# --arch x86_64 \ +# --outfile deploy/konflux/gateway/rpms.lock.yaml \ +# deploy/konflux/gateway/rpms.in.yaml +# +contentOrigin: + repofiles: + - /etc/yum.repos.d/ubi.repo +packages: + # Build stage: Rust toolchain + - rust + - cargo + # Build stage: C/C++ toolchain + - gcc + - gcc-c++ + - make + - cmake + # Build stage: gcc-toolset-14 for C++20 (required by bundled Z3) + - gcc-toolset-14 + - gcc-toolset-14-gcc-c++ + # Build stage: z3-sys bindgen needs libclang + - clang-devel + # Build stage: other + - openssl-devel + - git-core + # Runtime stage + - ca-certificates diff --git a/deploy/konflux/gateway/rpms.lock.yaml b/deploy/konflux/gateway/rpms.lock.yaml new file mode 100644 index 0000000000..0766f4e1b9 --- /dev/null +++ b/deploy/konflux/gateway/rpms.lock.yaml @@ -0,0 +1,893 @@ +arches: +- arch: x86_64 + packages: + - evra: 2.4.0-1.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/acl-2.4.0-1.el9_8.x86_64.rpm + - evra: 1.24-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/alternatives-1.24-2.el9.x86_64.rpm + - evra: 3.1.5-8.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.x86_64.rpm + - evra: 11-13.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm + - evra: 5.1.8-9.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/bash-5.1.8-9.el9.x86_64.rpm + - evra: 2.35.2-72.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-2.35.2-72.el9.x86_64.rpm + - evra: 2.35.2-72.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-gold-2.35.2-72.el9.x86_64.rpm + - evra: 1.0.8-11.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.x86_64.rpm + - evra: 2025.2.80_v9.0.305-91.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + - evra: 3.6-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/checkpolicy-3.6-1.el9.x86_64.rpm + - evra: 21.1.8-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-21.1.8-2.el9.x86_64.rpm + - evra: 21.1.8-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-libs-21.1.8-2.el9.x86_64.rpm + - evra: 21.1.8-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-resource-filesystem-21.1.8-2.el9.x86_64.rpm + - evra: 21.1.8-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-tools-extra-21.1.8-2.el9.x86_64.rpm + - evra: 3.31.8-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-3.31.8-3.el9.x86_64.rpm + - evra: 3.31.8-3.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-data-3.31.8-3.el9.noarch.rpm + - evra: 3.31.8-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-filesystem-3.31.8-3.el9.x86_64.rpm + - evra: 3.31.8-3.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-rpm-macros-3.31.8-3.el9.noarch.rpm + - evra: 8.32-41.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.x86_64.rpm + - evra: 8.32-41.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.x86_64.rpm + - evra: 8.32-41.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-single-8.32-41.el9_8.x86_64.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cpp-11.5.0-14.el9.x86_64.rpm + - evra: 2.9.6-28.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.x86_64.rpm + - evra: 2.9.6-28.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cracklib-dicts-2.9.6-28.el9.x86_64.rpm + - evra: 20260224-1.gitea0f072.el9_8.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + - evra: 2.8.1-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cryptsetup-libs-2.8.1-3.el9.x86_64.rpm + - evra: 7.76.1-40.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/curl-7.76.1-40.el9.x86_64.rpm + - evra: 7.76.1-40.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/curl-minimal-7.76.1-40.el9.x86_64.rpm + - evra: 2.1.27-22.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.x86_64.rpm + - evra: 1.12.20-8.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-1.12.20-8.el9.x86_64.rpm + - evra: 28-7.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-broker-28-7.el9.x86_64.rpm + - evra: 1.12.20-8.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm + - evra: 1.02.207-4.el9_8.1.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/device-mapper-1.02.207-4.el9_8.1.x86_64.rpm + - evra: 1.02.207-4.el9_8.1.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/device-mapper-libs-1.02.207-4.el9_8.1.x86_64.rpm + - evra: 3.7-12.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/diffutils-3.7-12.el9.x86_64.rpm + - evra: 0.194-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.x86_64.rpm + - evra: 0.194-1.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm + - evra: 0.194-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.x86_64.rpm + - evra: 0.194-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-libs-0.194-1.el9.x86_64.rpm + - evra: 27.2-18.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/e/emacs-filesystem-27.2-18.el9.noarch.rpm + - evra: 5.3.0-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/environment-modules-5.3.0-2.el9.x86_64.rpm + - evra: 2.5.0-6.el9_8.1.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/expat-2.5.0-6.el9_8.1.x86_64.rpm + - evra: 3.16-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/f/filesystem-3.16-5.el9.x86_64.rpm + - evra: 4.8.0-7.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/f/findutils-4.8.0-7.el9.x86_64.rpm + - evra: 1.2.0-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/f/fips-provider-next-1.2.0-5.el9.x86_64.rpm + - evra: 5.1.0-6.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gawk-5.1.0-6.el9.x86_64.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-11.5.0-14.el9.x86_64.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-c++-11.5.0-14.el9.x86_64.rpm + - evra: 12.88-1.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-annobin-docs-12.88-1.el9.noarch.rpm + - evra: 12.88-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-annobin-plugin-gcc-12.88-1.el9.x86_64.rpm + - evra: 2.41-6.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-binutils-2.41-6.el9.x86_64.rpm + - evra: 0.14-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-dwz-0.14-1.el9.x86_64.rpm + - evra: 14.2.1-13.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-gcc-14.2.1-13.el9.x86_64.rpm + - evra: 14.2.1-13.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-gcc-c++-14.2.1-13.el9.x86_64.rpm + - evra: 14.2.1-13.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-gcc-gfortran-14.2.1-13.el9.x86_64.rpm + - evra: 14.2.1-13.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-libquadmath-devel-14.2.1-13.el9.x86_64.rpm + - evra: 14.2.1-13.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-libstdc++-devel-14.2.1-13.el9.x86_64.rpm + - evra: 14.0-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-runtime-14.0-2.el9.x86_64.rpm + - evra: 2.44-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-binutils-2.44-5.el9.x86_64.rpm + - evra: 15.2.1-7.1.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-gcc-15.2.1-7.1.el9_8.x86_64.rpm + - evra: 15.2.1-7.1.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-gcc-c++-15.2.1-7.1.el9_8.x86_64.rpm + - evra: 15.2.1-7.1.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-libstdc++-devel-15.2.1-7.1.el9_8.x86_64.rpm + - evra: 15.0-9.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-runtime-15.0-9.el9.x86_64.rpm + - evra: 1.23-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-2.34-274.el9_8.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-all-langpacks-2.34-274.el9_8.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-gconv-extra-2.34-274.el9_8.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-headers-2.34-274.el9_8.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.x86_64.rpm + - evra: 6.2.0-13.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gmp-6.2.0-13.el9.x86_64.rpm + - evra: 3.6-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/grep-3.6-5.el9.x86_64.rpm + - evra: 1.22.4-10.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/groff-base-1.22.4-10.el9.x86_64.rpm + - evra: 1.12-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-1.el9.x86_64.rpm + - evra: 6.7-15.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/info-6.7-15.el9.x86_64.rpm + - evra: 2.14-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/jansson-2.14-1.el9.x86_64.rpm + - evra: 0.14-11.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/json-c-0.14-11.el9.x86_64.rpm + - evra: 2.4.0-11.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kbd-2.4.0-11.el9.x86_64.rpm + - evra: 2.4.0-11.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kbd-legacy-2.4.0-11.el9.noarch.rpm + - evra: 2.4.0-11.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kbd-misc-2.4.0-11.el9.noarch.rpm + - evra: 5.14.0-687.30.1.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.30.1.el9_8.x86_64.rpm + - evra: 1.6.3-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.x86_64.rpm + - evra: 28-11.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kmod-28-11.el9.x86_64.rpm + - evra: 28-11.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kmod-libs-28-11.el9.x86_64.rpm + - evra: 1.21.1-10.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.x86_64.rpm + - evra: 590-6.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/less-590-6.el9.x86_64.rpm + - evra: 2.4.0-1.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libacl-2.4.0-1.el9_8.x86_64.rpm + - evra: 3.5.3-9.el9_7.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.x86_64.rpm + - evra: 2.5.1-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libattr-2.5.1-3.el9.x86_64.rpm + - evra: 2.37.4-25.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.x86_64.rpm + - evra: 1.0.9-9.el9_7.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.x86_64.rpm + - evra: 2.48-10.el9_8.1.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.x86_64.rpm + - evra: 0.8.2-7.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.x86_64.rpm + - evra: 0.7.0-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.x86_64.rpm + - evra: 1.46.5-8.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.x86_64.rpm + - evra: 7.76.1-40.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.x86_64.rpm + - evra: 7.76.1-40.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-minimal-7.76.1-40.el9.x86_64.rpm + - evra: 5.3.28-57.el9_6.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.x86_64.rpm + - evra: 0.4.1-7.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libeconf-0.4.1-7.el9_8.x86_64.rpm + - evra: 3.1-39.20210216cvs.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.x86_64.rpm + - evra: 3.1-39.20210216cvs.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libedit-devel-3.1-39.20210216cvs.el9.x86_64.rpm + - evra: 2.1.12-8.el9_4.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.x86_64.rpm + - evra: 2.37.4-25.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.x86_64.rpm + - evra: 3.4.2-8.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libffi-3.4.2-8.el9.x86_64.rpm + - evra: 1.13.0-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.x86_64.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.x86_64.rpm + - evra: 1.10.0-11.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.x86_64.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgfortran-11.5.0-14.el9.x86_64.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.x86_64.rpm + - evra: 1.42-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.x86_64.rpm + - evra: 2.3.0-7.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.x86_64.rpm + - evra: 2.37.4-25.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libmount-2.37.4-25.el9.x86_64.rpm + - evra: 1.2.1-4.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.x86_64.rpm + - evra: 1.43.0-6.el9_8.1.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.x86_64.rpm + - evra: 1.5.3-4.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpipeline-1.5.3-4.el9.x86_64.rpm + - evra: 1.7.3-10.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.x86_64.rpm + - evra: 0.21.1-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.x86_64.rpm + - evra: 1.4.4-8.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.x86_64.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libquadmath-11.5.0-14.el9.x86_64.rpm + - evra: 2.5.2-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.x86_64.rpm + - evra: 3.6-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libselinux-3.6-3.el9.x86_64.rpm + - evra: 3.6-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libselinux-utils-3.6-3.el9.x86_64.rpm + - evra: 3.6-5.el9_6.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.x86_64.rpm + - evra: 3.6-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsepol-3.6-3.el9.x86_64.rpm + - evra: 2.13-4.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.x86_64.rpm + - evra: 2.37.4-25.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.x86_64.rpm + - evra: 0.10.4-18.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-18.el9.x86_64.rpm + - evra: 0.10.4-18.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.x86_64.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.x86_64.rpm + - evra: 4.16.0-10.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.x86_64.rpm + - evra: 2.4.6-46.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libtool-ltdl-2.4.6-46.el9.x86_64.rpm + - evra: 0.9.10-15.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.x86_64.rpm + - evra: 1.2.1-6.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.x86_64.rpm + - evra: 2.37.4-25.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.x86_64.rpm + - evra: 1.42.0-2.el9_4.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.x86_64.rpm + - evra: 0.3.2-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libverto-0.3.2-3.el9.x86_64.rpm + - evra: 4.4.18-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.x86_64.rpm + - evra: 4.4.18-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libxcrypt-devel-4.4.18-3.el9.x86_64.rpm + - evra: 2.9.13-14.el9_8.2.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.x86_64.rpm + - evra: 1.5.5-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm + - evra: 1.5.5-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libzstd-devel-1.5.5-1.el9.x86_64.rpm + - evra: 21.1.8-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-21.1.8-2.el9.x86_64.rpm + - evra: 21.1.8-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-devel-21.1.8-2.el9.x86_64.rpm + - evra: 21.1.8-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-filesystem-21.1.8-2.el9.x86_64.rpm + - evra: 21.1.8-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-googletest-21.1.8-2.el9.x86_64.rpm + - evra: 21.1.8-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-libs-21.1.8-2.el9.x86_64.rpm + - evra: 21.1.8-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-static-21.1.8-2.el9.x86_64.rpm + - evra: 21.1.8-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-test-21.1.8-2.el9.x86_64.rpm + - evra: 5.4.4-4.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/lua-libs-5.4.4-4.el9.x86_64.rpm + - evra: 1.9.3-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.x86_64.rpm + - evra: 4.3-8.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/make-4.3-8.el9.x86_64.rpm + - evra: 2.9.3-9.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/man-db-2.9.3-9.el9.x86_64.rpm + - evra: 4.1.0-10.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.x86_64.rpm + - evra: 6.2-12.20210508.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + - evra: 6.2-12.20210508.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/n/ncurses-c++-libs-6.2-12.20210508.el9.x86_64.rpm + - evra: 6.2-12.20210508.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/n/ncurses-devel-6.2-12.20210508.el9.x86_64.rpm + - evra: 6.2-12.20210508.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.x86_64.rpm + - evra: 2.6.8-4.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openldap-2.6.8-4.el9.x86_64.rpm + - evra: 9.9p1-7.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.x86_64.rpm + - evra: 9.9p1-7.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.x86_64.rpm + - evra: 3.5.5-5.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-3.5.5-5.el9_8.x86_64.rpm + - evra: 3.5.5-5.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/o/openssl-devel-3.5.5-5.el9_8.x86_64.rpm + - evra: 3.0.7-11.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.x86_64.rpm + - evra: 3.0.7-11.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.x86_64.rpm + - evra: 3.5.5-5.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-libs-3.5.5-5.el9_8.x86_64.rpm + - evra: 0.26.2-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.x86_64.rpm + - evra: 0.26.2-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.x86_64.rpm + - evra: 1.5.1-28.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pam-1.5.1-28.el9.x86_64.rpm + - evra: 8.44-4.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre-8.44-4.el9.x86_64.rpm + - evra: 10.40-6.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre2-10.40-6.el9.x86_64.rpm + - evra: 10.40-6.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + - evra: 1.7.3-10.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.x86_64.rpm + - evra: 1.7.3-10.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-m4-1.7.3-10.el9.noarch.rpm + - evra: 1.7.3-10.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-pkg-config-1.7.3-10.el9.x86_64.rpm + - evra: 3.6-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/policycoreutils-3.6-5.el9.x86_64.rpm + - evra: 3.6-5.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/policycoreutils-python-utils-3.6-5.el9.noarch.rpm + - evra: 1.18-8.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/popt-1.18-8.el9.x86_64.rpm + - evra: 3.3.17-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/procps-ng-3.3.17-14.el9.x86_64.rpm + - evra: 20210518-3.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm + - evra: 3.9.25-7.el9_8.2.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-3.9.25-7.el9_8.2.x86_64.rpm + - evra: 3.1.5-8.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-audit-3.1.5-8.el9.x86_64.rpm + - evra: 1.5.0-7.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-distro-1.5.0-7.el9.noarch.rpm + - evra: 3.9.25-7.el9_8.2.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-libs-3.9.25-7.el9_8.2.x86_64.rpm + - evra: 3.6-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-libselinux-3.6-3.el9.x86_64.rpm + - evra: 3.6-5.el9_6.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-libsemanage-3.6-5.el9_6.x86_64.rpm + - evra: 21.3.1-2.el9_8.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-pip-wheel-21.3.1-2.el9_8.noarch.rpm + - evra: 3.6-5.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-policycoreutils-3.6-5.el9.noarch.rpm + - evra: 4.4.4-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-setools-4.4.4-1.el9.x86_64.rpm + - evra: 53.0.0-15.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-setuptools-53.0.0-15.el9.noarch.rpm + - evra: 53.0.0-15.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm + - evra: 8.1-4.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/readline-8.1-4.el9.x86_64.rpm + - evra: 9.8-1.0.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.x86_64.rpm + - evra: 4.16.1.3-40.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/rpm-4.16.1.3-40.el9.x86_64.rpm + - evra: 4.16.1.3-40.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/rpm-libs-4.16.1.3-40.el9.x86_64.rpm + - evra: 1.92.0-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/r/rust-1.92.0-1.el9.x86_64.rpm + - evra: 1.92.0-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/r/rust-std-static-1.92.0-1.el9.x86_64.rpm + - evra: 2.0.3-4.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/s/scl-utils-2.0.3-4.el9.x86_64.rpm + - evra: 4.8-10.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/sed-4.8-10.el9.x86_64.rpm + - evra: 2.13.7-10.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + - evra: 4.9-16.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.x86_64.rpm + - evra: 3.34.1-10.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.x86_64.rpm + - evra: 252-67.el9_8.4.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-252-67.el9_8.4.x86_64.rpm + - evra: 252-67.el9_8.4.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.x86_64.rpm + - evra: 252-67.el9_8.4.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-pam-252-67.el9_8.4.x86_64.rpm + - evra: 252-67.el9_8.4.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-rpm-macros-252-67.el9_8.4.noarch.rpm + - evra: 252-67.el9_8.4.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-udev-252-67.el9_8.4.x86_64.rpm + - evra: 8.6.10-7.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tcl-8.6.10-7.el9.x86_64.rpm + - evra: 3.2.3-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tpm2-tss-3.2.3-1.el9.x86_64.rpm + - evra: 2026b-1.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + - evra: 2.37.4-25.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.x86_64.rpm + - evra: 2.37.4-25.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-core-2.37.4-25.el9.x86_64.rpm + - evra: 8.2.2637-26.el9_8.10.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm + - evra: 5.2.5-8.el9_0.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.x86_64.rpm + - evra: 1.2.11-40.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/z/zlib-1.2.11-40.el9.x86_64.rpm + - evra: 1.92.0-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cargo-1.92.0-1.el9.x86_64.rpm + - evra: 21.1.8-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-devel-21.1.8-2.el9.x86_64.rpm + - evra: 14.0-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-14.0-2.el9.x86_64.rpm + - evra: 2.52.0-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/git-core-2.52.0-1.el9.x86_64.rpm + source: [] +- arch: aarch64 + packages: + - evra: 2.4.0-1.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/acl-2.4.0-1.el9_8.aarch64.rpm + - evra: 1.24-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/alternatives-1.24-2.el9.aarch64.rpm + - evra: 3.1.5-8.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.aarch64.rpm + - evra: 11-13.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm + - evra: 5.1.8-9.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/bash-5.1.8-9.el9.aarch64.rpm + - evra: 2.35.2-72.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-2.35.2-72.el9.aarch64.rpm + - evra: 2.35.2-72.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-gold-2.35.2-72.el9.aarch64.rpm + - evra: 1.0.8-11.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.aarch64.rpm + - evra: 2025.2.80_v9.0.305-91.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + - evra: 3.6-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/checkpolicy-3.6-1.el9.aarch64.rpm + - evra: 21.1.8-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/clang-21.1.8-2.el9.aarch64.rpm + - evra: 21.1.8-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/clang-libs-21.1.8-2.el9.aarch64.rpm + - evra: 21.1.8-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/clang-resource-filesystem-21.1.8-2.el9.aarch64.rpm + - evra: 21.1.8-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/clang-tools-extra-21.1.8-2.el9.aarch64.rpm + - evra: 3.31.8-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-3.31.8-3.el9.aarch64.rpm + - evra: 3.31.8-3.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-data-3.31.8-3.el9.noarch.rpm + - evra: 3.31.8-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-filesystem-3.31.8-3.el9.aarch64.rpm + - evra: 3.31.8-3.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-rpm-macros-3.31.8-3.el9.noarch.rpm + - evra: 8.32-41.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.aarch64.rpm + - evra: 8.32-41.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.aarch64.rpm + - evra: 8.32-41.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-single-8.32-41.el9_8.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cpp-11.5.0-14.el9.aarch64.rpm + - evra: 2.9.6-28.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.aarch64.rpm + - evra: 2.9.6-28.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cracklib-dicts-2.9.6-28.el9.aarch64.rpm + - evra: 20260224-1.gitea0f072.el9_8.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + - evra: 2.8.1-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cryptsetup-libs-2.8.1-3.el9.aarch64.rpm + - evra: 7.76.1-40.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/curl-7.76.1-40.el9.aarch64.rpm + - evra: 7.76.1-40.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/curl-minimal-7.76.1-40.el9.aarch64.rpm + - evra: 2.1.27-22.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.aarch64.rpm + - evra: 1.12.20-8.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-1.12.20-8.el9.aarch64.rpm + - evra: 28-7.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-broker-28-7.el9.aarch64.rpm + - evra: 1.12.20-8.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm + - evra: 1.02.207-4.el9_8.1.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/device-mapper-1.02.207-4.el9_8.1.aarch64.rpm + - evra: 1.02.207-4.el9_8.1.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/device-mapper-libs-1.02.207-4.el9_8.1.aarch64.rpm + - evra: 3.7-12.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/diffutils-3.7-12.el9.aarch64.rpm + - evra: 0.194-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.aarch64.rpm + - evra: 0.194-1.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm + - evra: 0.194-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.aarch64.rpm + - evra: 0.194-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-libs-0.194-1.el9.aarch64.rpm + - evra: 27.2-18.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/e/emacs-filesystem-27.2-18.el9.noarch.rpm + - evra: 5.3.0-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/environment-modules-5.3.0-2.el9.aarch64.rpm + - evra: 2.5.0-6.el9_8.1.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/expat-2.5.0-6.el9_8.1.aarch64.rpm + - evra: 3.16-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/f/filesystem-3.16-5.el9.aarch64.rpm + - evra: 4.8.0-7.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/f/findutils-4.8.0-7.el9.aarch64.rpm + - evra: 1.2.0-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/f/fips-provider-next-1.2.0-5.el9.aarch64.rpm + - evra: 5.1.0-6.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gawk-5.1.0-6.el9.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-11.5.0-14.el9.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-c++-11.5.0-14.el9.aarch64.rpm + - evra: 12.88-1.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-annobin-docs-12.88-1.el9.noarch.rpm + - evra: 12.88-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-annobin-plugin-gcc-12.88-1.el9.aarch64.rpm + - evra: 2.41-6.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-binutils-2.41-6.el9.aarch64.rpm + - evra: 0.14-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-dwz-0.14-1.el9.aarch64.rpm + - evra: 14.2.1-13.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-gcc-14.2.1-13.el9.aarch64.rpm + - evra: 14.2.1-13.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-gcc-c++-14.2.1-13.el9.aarch64.rpm + - evra: 14.2.1-13.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-gcc-gfortran-14.2.1-13.el9.aarch64.rpm + - evra: 14.2.1-13.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-libstdc++-devel-14.2.1-13.el9.aarch64.rpm + - evra: 14.0-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-runtime-14.0-2.el9.aarch64.rpm + - evra: 2.44-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-binutils-2.44-5.el9.aarch64.rpm + - evra: 15.2.1-7.1.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-gcc-15.2.1-7.1.el9_8.aarch64.rpm + - evra: 15.2.1-7.1.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-gcc-c++-15.2.1-7.1.el9_8.aarch64.rpm + - evra: 15.2.1-7.1.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-libstdc++-devel-15.2.1-7.1.el9_8.aarch64.rpm + - evra: 15.0-9.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-runtime-15.0-9.el9.aarch64.rpm + - evra: 1.23-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.aarch64.rpm + - evra: 2.34-274.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-2.34-274.el9_8.aarch64.rpm + - evra: 2.34-274.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-all-langpacks-2.34-274.el9_8.aarch64.rpm + - evra: 2.34-274.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.aarch64.rpm + - evra: 2.34-274.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.aarch64.rpm + - evra: 2.34-274.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-gconv-extra-2.34-274.el9_8.aarch64.rpm + - evra: 2.34-274.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.aarch64.rpm + - evra: 2.34-274.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.aarch64.rpm + - evra: 6.2.0-13.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gmp-6.2.0-13.el9.aarch64.rpm + - evra: 3.6-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/grep-3.6-5.el9.aarch64.rpm + - evra: 1.22.4-10.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/groff-base-1.22.4-10.el9.aarch64.rpm + - evra: 1.12-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-1.el9.aarch64.rpm + - evra: 6.7-15.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/info-6.7-15.el9.aarch64.rpm + - evra: 2.14-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/j/jansson-2.14-1.el9.aarch64.rpm + - evra: 0.14-11.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/j/json-c-0.14-11.el9.aarch64.rpm + - evra: 2.4.0-11.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kbd-2.4.0-11.el9.aarch64.rpm + - evra: 2.4.0-11.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kbd-legacy-2.4.0-11.el9.noarch.rpm + - evra: 2.4.0-11.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kbd-misc-2.4.0-11.el9.noarch.rpm + - evra: 5.14.0-687.31.1.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.31.1.el9_8.aarch64.rpm + - evra: 1.6.3-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.aarch64.rpm + - evra: 28-11.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kmod-28-11.el9.aarch64.rpm + - evra: 28-11.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kmod-libs-28-11.el9.aarch64.rpm + - evra: 1.21.1-10.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.aarch64.rpm + - evra: 590-6.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/less-590-6.el9.aarch64.rpm + - evra: 2.4.0-1.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libacl-2.4.0-1.el9_8.aarch64.rpm + - evra: 3.5.3-9.el9_7.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libasan-11.5.0-14.el9.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libatomic-11.5.0-14.el9.aarch64.rpm + - evra: 2.5.1-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libattr-2.5.1-3.el9.aarch64.rpm + - evra: 2.37.4-25.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.aarch64.rpm + - evra: 1.0.9-9.el9_7.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.aarch64.rpm + - evra: 2.48-10.el9_8.1.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.aarch64.rpm + - evra: 0.8.2-7.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.aarch64.rpm + - evra: 0.7.0-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.aarch64.rpm + - evra: 1.46.5-8.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.aarch64.rpm + - evra: 7.76.1-40.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.aarch64.rpm + - evra: 7.76.1-40.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-minimal-7.76.1-40.el9.aarch64.rpm + - evra: 5.3.28-57.el9_6.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.aarch64.rpm + - evra: 0.4.1-7.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libeconf-0.4.1-7.el9_8.aarch64.rpm + - evra: 3.1-39.20210216cvs.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.aarch64.rpm + - evra: 3.1-39.20210216cvs.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libedit-devel-3.1-39.20210216cvs.el9.aarch64.rpm + - evra: 2.1.12-8.el9_4.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.aarch64.rpm + - evra: 2.37.4-25.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.aarch64.rpm + - evra: 3.4.2-8.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libffi-3.4.2-8.el9.aarch64.rpm + - evra: 1.13.0-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.aarch64.rpm + - evra: 1.10.0-11.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgfortran-11.5.0-14.el9.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.aarch64.rpm + - evra: 1.42-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.aarch64.rpm + - evra: 2.3.0-7.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.aarch64.rpm + - evra: 2.37.4-25.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libmount-2.37.4-25.el9.aarch64.rpm + - evra: 1.2.1-4.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.aarch64.rpm + - evra: 1.43.0-6.el9_8.1.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.aarch64.rpm + - evra: 1.5.3-4.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpipeline-1.5.3-4.el9.aarch64.rpm + - evra: 1.7.3-10.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.aarch64.rpm + - evra: 0.21.1-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.aarch64.rpm + - evra: 1.4.4-8.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.aarch64.rpm + - evra: 2.5.2-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.aarch64.rpm + - evra: 3.6-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libselinux-3.6-3.el9.aarch64.rpm + - evra: 3.6-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libselinux-utils-3.6-3.el9.aarch64.rpm + - evra: 3.6-5.el9_6.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.aarch64.rpm + - evra: 3.6-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsepol-3.6-3.el9.aarch64.rpm + - evra: 2.13-4.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.aarch64.rpm + - evra: 2.37.4-25.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.aarch64.rpm + - evra: 0.10.4-18.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-18.el9.aarch64.rpm + - evra: 0.10.4-18.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.aarch64.rpm + - evra: 4.16.0-10.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.aarch64.rpm + - evra: 2.4.6-46.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libtool-ltdl-2.4.6-46.el9.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libubsan-11.5.0-14.el9.aarch64.rpm + - evra: 0.9.10-15.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.aarch64.rpm + - evra: 1.2.1-6.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.aarch64.rpm + - evra: 2.37.4-25.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.aarch64.rpm + - evra: 1.42.0-2.el9_4.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.aarch64.rpm + - evra: 0.3.2-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libverto-0.3.2-3.el9.aarch64.rpm + - evra: 4.4.18-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.aarch64.rpm + - evra: 4.4.18-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libxcrypt-devel-4.4.18-3.el9.aarch64.rpm + - evra: 2.9.13-14.el9_8.2.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.aarch64.rpm + - evra: 1.5.5-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm + - evra: 1.5.5-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libzstd-devel-1.5.5-1.el9.aarch64.rpm + - evra: 21.1.8-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-21.1.8-2.el9.aarch64.rpm + - evra: 21.1.8-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-devel-21.1.8-2.el9.aarch64.rpm + - evra: 21.1.8-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-filesystem-21.1.8-2.el9.aarch64.rpm + - evra: 21.1.8-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-googletest-21.1.8-2.el9.aarch64.rpm + - evra: 21.1.8-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-libs-21.1.8-2.el9.aarch64.rpm + - evra: 21.1.8-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-static-21.1.8-2.el9.aarch64.rpm + - evra: 21.1.8-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-test-21.1.8-2.el9.aarch64.rpm + - evra: 5.4.4-4.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/lua-libs-5.4.4-4.el9.aarch64.rpm + - evra: 1.9.3-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.aarch64.rpm + - evra: 4.3-8.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/make-4.3-8.el9.aarch64.rpm + - evra: 2.9.3-9.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/man-db-2.9.3-9.el9.aarch64.rpm + - evra: 4.1.0-10.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.aarch64.rpm + - evra: 6.2-12.20210508.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + - evra: 6.2-12.20210508.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/n/ncurses-c++-libs-6.2-12.20210508.el9.aarch64.rpm + - evra: 6.2-12.20210508.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/n/ncurses-devel-6.2-12.20210508.el9.aarch64.rpm + - evra: 6.2-12.20210508.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.aarch64.rpm + - evra: 2.6.8-4.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openldap-2.6.8-4.el9.aarch64.rpm + - evra: 9.9p1-7.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.aarch64.rpm + - evra: 9.9p1-7.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.aarch64.rpm + - evra: 3.5.5-6.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-3.5.5-6.el9_8.aarch64.rpm + - evra: 3.5.5-6.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/o/openssl-devel-3.5.5-6.el9_8.aarch64.rpm + - evra: 3.0.7-11.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.aarch64.rpm + - evra: 3.0.7-11.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.aarch64.rpm + - evra: 3.5.5-6.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-libs-3.5.5-6.el9_8.aarch64.rpm + - evra: 0.26.2-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.aarch64.rpm + - evra: 0.26.2-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.aarch64.rpm + - evra: 1.5.1-28.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pam-1.5.1-28.el9.aarch64.rpm + - evra: 8.44-4.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre-8.44-4.el9.aarch64.rpm + - evra: 10.40-6.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre2-10.40-6.el9.aarch64.rpm + - evra: 10.40-6.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + - evra: 1.7.3-10.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.aarch64.rpm + - evra: 1.7.3-10.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-m4-1.7.3-10.el9.noarch.rpm + - evra: 1.7.3-10.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-pkg-config-1.7.3-10.el9.aarch64.rpm + - evra: 3.6-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/policycoreutils-3.6-5.el9.aarch64.rpm + - evra: 3.6-5.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/policycoreutils-python-utils-3.6-5.el9.noarch.rpm + - evra: 1.18-8.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/popt-1.18-8.el9.aarch64.rpm + - evra: 3.3.17-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/procps-ng-3.3.17-14.el9.aarch64.rpm + - evra: 20210518-3.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm + - evra: 3.9.25-7.el9_8.2.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-3.9.25-7.el9_8.2.aarch64.rpm + - evra: 3.1.5-8.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/python3-audit-3.1.5-8.el9.aarch64.rpm + - evra: 1.5.0-7.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/python3-distro-1.5.0-7.el9.noarch.rpm + - evra: 3.9.25-7.el9_8.2.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-libs-3.9.25-7.el9_8.2.aarch64.rpm + - evra: 3.6-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/python3-libselinux-3.6-3.el9.aarch64.rpm + - evra: 3.6-5.el9_6.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/python3-libsemanage-3.6-5.el9_6.aarch64.rpm + - evra: 21.3.1-2.el9_8.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-pip-wheel-21.3.1-2.el9_8.noarch.rpm + - evra: 3.6-5.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/python3-policycoreutils-3.6-5.el9.noarch.rpm + - evra: 4.4.4-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-setools-4.4.4-1.el9.aarch64.rpm + - evra: 53.0.0-15.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-setuptools-53.0.0-15.el9.noarch.rpm + - evra: 53.0.0-15.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm + - evra: 8.1-4.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/readline-8.1-4.el9.aarch64.rpm + - evra: 9.8-1.0.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.aarch64.rpm + - evra: 4.16.1.3-40.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/rpm-4.16.1.3-40.el9.aarch64.rpm + - evra: 4.16.1.3-40.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/rpm-libs-4.16.1.3-40.el9.aarch64.rpm + - evra: 1.92.0-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/r/rust-1.92.0-1.el9.aarch64.rpm + - evra: 1.92.0-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/r/rust-std-static-1.92.0-1.el9.aarch64.rpm + - evra: 2.0.3-4.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/s/scl-utils-2.0.3-4.el9.aarch64.rpm + - evra: 4.8-10.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/sed-4.8-10.el9.aarch64.rpm + - evra: 2.13.7-10.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + - evra: 4.9-16.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.aarch64.rpm + - evra: 3.34.1-10.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.aarch64.rpm + - evra: 252-67.el9_8.4.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-252-67.el9_8.4.aarch64.rpm + - evra: 252-67.el9_8.4.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.aarch64.rpm + - evra: 252-67.el9_8.4.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-pam-252-67.el9_8.4.aarch64.rpm + - evra: 252-67.el9_8.4.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-rpm-macros-252-67.el9_8.4.noarch.rpm + - evra: 252-67.el9_8.4.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-udev-252-67.el9_8.4.aarch64.rpm + - evra: 8.6.10-7.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tcl-8.6.10-7.el9.aarch64.rpm + - evra: 3.2.3-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tpm2-tss-3.2.3-1.el9.aarch64.rpm + - evra: 2026b-1.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + - evra: 2.37.4-25.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.aarch64.rpm + - evra: 2.37.4-25.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-core-2.37.4-25.el9.aarch64.rpm + - evra: 8.2.2637-26.el9_8.10.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm + - evra: 5.2.5-8.el9_0.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.aarch64.rpm + - evra: 1.2.11-40.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/z/zlib-1.2.11-40.el9.aarch64.rpm + - evra: 1.92.0-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cargo-1.92.0-1.el9.aarch64.rpm + - evra: 21.1.8-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/clang-devel-21.1.8-2.el9.aarch64.rpm + - evra: 14.0-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-14.0-2.el9.aarch64.rpm + - evra: 2.52.0-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/git-core-2.52.0-1.el9.aarch64.rpm + source: [] +lockfileVendor: redhat +lockfileVersion: 1 diff --git a/deploy/konflux/supervisor/generic-fetcher.yaml b/deploy/konflux/supervisor/generic-fetcher.yaml new file mode 100644 index 0000000000..6fb22f0cde --- /dev/null +++ b/deploy/konflux/supervisor/generic-fetcher.yaml @@ -0,0 +1,32 @@ +# Generic fetcher artifacts for Dockerfile.konflux.supervisor +# These are prefetched by Hermeto and mounted at /cachi2/deps/generic/ +# Include in prefetch-input alongside cargo and rpm types. +# +# To update hashes: curl -sL | sha256sum +metadata: + version: "1.0" +artifacts: + # musl libc source (arch-independent, built from source in Dockerfile) + - download_url: https://musl.libc.org/releases/musl-1.2.5.tar.gz + checksum: "sha256:a9a118bbe84d8764da0ea0d28b3ab3fae8477fc7e4085d90102b8596fc7c75e4" + filename: musl-1.2.5.tar.gz + + # Rust toolchain x86_64 + - download_url: https://static.rust-lang.org/dist/rust-1.92.0-x86_64-unknown-linux-gnu.tar.xz + checksum: "sha256:d2ccef59dd9f7439f2c694948069f789a044dc1addcc0803613232af8f88ee0c" + filename: rust-1.92.0-x86_64-unknown-linux-gnu.tar.xz + + # Rust toolchain aarch64 + - download_url: https://static.rust-lang.org/dist/rust-1.92.0-aarch64-unknown-linux-gnu.tar.xz + checksum: "sha256:3e383f8b4fca710d0600d0c1de97b78281672be2cda6575ecbe1c183a12e3822" + filename: rust-1.92.0-aarch64-unknown-linux-gnu.tar.xz + + # rust-std for musl target x86_64 + - download_url: https://static.rust-lang.org/dist/rust-std-1.92.0-x86_64-unknown-linux-musl.tar.xz + checksum: "sha256:11f0b7efccdb5e7972e3c0fc23693a487abc28b624675c08161d055a016d527e" + filename: rust-std-1.92.0-x86_64-unknown-linux-musl.tar.xz + + # rust-std for musl target aarch64 + - download_url: https://static.rust-lang.org/dist/rust-std-1.92.0-aarch64-unknown-linux-musl.tar.xz + checksum: "sha256:94b9f84f21d29825c55a27fbb6b4b9fb9296a4a841aa54d85b95c42445623363" + filename: rust-std-1.92.0-aarch64-unknown-linux-musl.tar.xz diff --git a/deploy/konflux/supervisor/rpms.in.yaml b/deploy/konflux/supervisor/rpms.in.yaml new file mode 100644 index 0000000000..7ace27b3f5 --- /dev/null +++ b/deploy/konflux/supervisor/rpms.in.yaml @@ -0,0 +1,29 @@ +# RPM dependencies for Dockerfile.konflux.supervisor +# Build + runtime stages combined. Generate lockfile with: +# rpm-lockfile-prototype --containerfile deploy/docker/Dockerfile.konflux.supervisor \ +# --arch x86_64 \ +# --outfile deploy/konflux/supervisor/rpms.lock.yaml \ +# deploy/konflux/supervisor/rpms.in.yaml +# +contentOrigin: + repofiles: + - /etc/yum.repos.d/ubi.repo +packages: + # Build stage: musl toolchain build + - gcc + - make + - tar + - gzip + - xz + # Build stage: Rust compilation (rustup provides rust/cargo) + - gcc-c++ + - cmake + - openssl-devel + - git-core + # Runtime stage: network enforcement + - nftables + - iptables-nft + # Runtime stage: network namespace setup + - iproute + # Runtime stage: namespace entry + - util-linux-core diff --git a/deploy/konflux/supervisor/rpms.lock.yaml b/deploy/konflux/supervisor/rpms.lock.yaml new file mode 100644 index 0000000000..f06d1f7793 --- /dev/null +++ b/deploy/konflux/supervisor/rpms.lock.yaml @@ -0,0 +1,717 @@ +arches: +- arch: x86_64 + packages: + - evra: 2.4.0-1.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/acl-2.4.0-1.el9_8.x86_64.rpm + - evra: 1.24-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/alternatives-1.24-2.el9.x86_64.rpm + - evra: 3.1.5-8.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.x86_64.rpm + - evra: 11-13.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm + - evra: 5.1.8-9.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/bash-5.1.8-9.el9.x86_64.rpm + - evra: 2.35.2-72.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-2.35.2-72.el9.x86_64.rpm + - evra: 2.35.2-72.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-gold-2.35.2-72.el9.x86_64.rpm + - evra: 1.0.8-11.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.x86_64.rpm + - evra: 2025.2.80_v9.0.305-91.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + - evra: 3.31.8-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-3.31.8-3.el9.x86_64.rpm + - evra: 3.31.8-3.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-data-3.31.8-3.el9.noarch.rpm + - evra: 3.31.8-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-filesystem-3.31.8-3.el9.x86_64.rpm + - evra: 3.31.8-3.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-rpm-macros-3.31.8-3.el9.noarch.rpm + - evra: 8.32-41.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.x86_64.rpm + - evra: 8.32-41.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.x86_64.rpm + - evra: 8.32-41.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-single-8.32-41.el9_8.x86_64.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cpp-11.5.0-14.el9.x86_64.rpm + - evra: 2.9.6-28.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.x86_64.rpm + - evra: 2.9.6-28.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cracklib-dicts-2.9.6-28.el9.x86_64.rpm + - evra: 20260224-1.gitea0f072.el9_8.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + - evra: 2.8.1-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cryptsetup-libs-2.8.1-3.el9.x86_64.rpm + - evra: 7.76.1-40.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/curl-7.76.1-40.el9.x86_64.rpm + - evra: 7.76.1-40.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/curl-minimal-7.76.1-40.el9.x86_64.rpm + - evra: 2.1.27-22.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.x86_64.rpm + - evra: 1.12.20-8.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-1.12.20-8.el9.x86_64.rpm + - evra: 28-7.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-broker-28-7.el9.x86_64.rpm + - evra: 1.12.20-8.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm + - evra: 1.02.207-4.el9_8.1.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/device-mapper-1.02.207-4.el9_8.1.x86_64.rpm + - evra: 1.02.207-4.el9_8.1.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/device-mapper-libs-1.02.207-4.el9_8.1.x86_64.rpm + - evra: 0.194-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.x86_64.rpm + - evra: 0.194-1.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm + - evra: 0.194-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.x86_64.rpm + - evra: 0.194-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-libs-0.194-1.el9.x86_64.rpm + - evra: 27.2-18.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/e/emacs-filesystem-27.2-18.el9.noarch.rpm + - evra: 2.5.0-6.el9_8.1.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/expat-2.5.0-6.el9_8.1.x86_64.rpm + - evra: 3.16-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/f/filesystem-3.16-5.el9.x86_64.rpm + - evra: 4.8.0-7.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/f/findutils-4.8.0-7.el9.x86_64.rpm + - evra: 1.2.0-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/f/fips-provider-next-1.2.0-5.el9.x86_64.rpm + - evra: 5.1.0-6.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gawk-5.1.0-6.el9.x86_64.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-11.5.0-14.el9.x86_64.rpm + - evra: 1.23-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-2.34-274.el9_8.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-all-langpacks-2.34-274.el9_8.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-gconv-extra-2.34-274.el9_8.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-headers-2.34-274.el9_8.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.x86_64.rpm + - evra: 2.34-274.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.x86_64.rpm + - evra: 6.2.0-13.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gmp-6.2.0-13.el9.x86_64.rpm + - evra: 3.6-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/grep-3.6-5.el9.x86_64.rpm + - evra: 1.12-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-1.el9.x86_64.rpm + - evra: 1.8.10-11.el9_5.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/iptables-libs-1.8.10-11.el9_5.x86_64.rpm + - evra: 2.14-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/jansson-2.14-1.el9.x86_64.rpm + - evra: 0.14-11.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/json-c-0.14-11.el9.x86_64.rpm + - evra: 2.4.0-11.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kbd-2.4.0-11.el9.x86_64.rpm + - evra: 2.4.0-11.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kbd-legacy-2.4.0-11.el9.noarch.rpm + - evra: 2.4.0-11.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kbd-misc-2.4.0-11.el9.noarch.rpm + - evra: 5.14.0-687.30.1.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.30.1.el9_8.x86_64.rpm + - evra: 1.6.3-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.x86_64.rpm + - evra: 28-11.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kmod-28-11.el9.x86_64.rpm + - evra: 28-11.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kmod-libs-28-11.el9.x86_64.rpm + - evra: 1.21.1-10.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.x86_64.rpm + - evra: 590-6.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/less-590-6.el9.x86_64.rpm + - evra: 2.4.0-1.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libacl-2.4.0-1.el9_8.x86_64.rpm + - evra: 3.5.3-9.el9_7.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.x86_64.rpm + - evra: 2.5.1-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libattr-2.5.1-3.el9.x86_64.rpm + - evra: 2.37.4-25.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.x86_64.rpm + - evra: 1.5.0-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libbpf-1.5.0-3.el9.x86_64.rpm + - evra: 1.0.9-9.el9_7.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.x86_64.rpm + - evra: 2.48-10.el9_8.1.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.x86_64.rpm + - evra: 0.8.2-7.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.x86_64.rpm + - evra: 0.7.0-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.x86_64.rpm + - evra: 1.46.5-8.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.x86_64.rpm + - evra: 7.76.1-40.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.x86_64.rpm + - evra: 7.76.1-40.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-minimal-7.76.1-40.el9.x86_64.rpm + - evra: 5.3.28-57.el9_6.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.x86_64.rpm + - evra: 0.4.1-7.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libeconf-0.4.1-7.el9_8.x86_64.rpm + - evra: 3.1-39.20210216cvs.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.x86_64.rpm + - evra: 2.1.12-8.el9_4.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.x86_64.rpm + - evra: 2.37.4-25.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.x86_64.rpm + - evra: 3.4.2-8.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libffi-3.4.2-8.el9.x86_64.rpm + - evra: 1.13.0-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.x86_64.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.x86_64.rpm + - evra: 1.10.0-11.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.x86_64.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.x86_64.rpm + - evra: 1.42-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.x86_64.rpm + - evra: 2.3.0-7.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.x86_64.rpm + - evra: 1.0.4-16.el9_4.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libmnl-1.0.4-16.el9_4.x86_64.rpm + - evra: 2.37.4-25.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libmount-2.37.4-25.el9.x86_64.rpm + - evra: 1.2.1-4.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.x86_64.rpm + - evra: 1.0.9-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnetfilter_conntrack-1.0.9-1.el9.x86_64.rpm + - evra: 1.0.1-23.el9_5.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnfnetlink-1.0.1-23.el9_5.x86_64.rpm + - evra: 1.2.6-4.el9_4.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnftnl-1.2.6-4.el9_4.x86_64.rpm + - evra: 1.43.0-6.el9_8.1.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.x86_64.rpm + - evra: 1.7.3-10.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.x86_64.rpm + - evra: 0.21.1-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.x86_64.rpm + - evra: 1.4.4-8.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.x86_64.rpm + - evra: 2.5.2-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.x86_64.rpm + - evra: 3.6-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libselinux-3.6-3.el9.x86_64.rpm + - evra: 3.6-5.el9_6.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.x86_64.rpm + - evra: 3.6-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsepol-3.6-3.el9.x86_64.rpm + - evra: 2.13-4.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.x86_64.rpm + - evra: 2.37.4-25.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.x86_64.rpm + - evra: 0.10.4-18.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-18.el9.x86_64.rpm + - evra: 0.10.4-18.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.x86_64.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.x86_64.rpm + - evra: 4.16.0-10.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.x86_64.rpm + - evra: 2.4.6-46.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libtool-ltdl-2.4.6-46.el9.x86_64.rpm + - evra: 0.9.10-15.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.x86_64.rpm + - evra: 1.2.1-6.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.x86_64.rpm + - evra: 2.37.4-25.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.x86_64.rpm + - evra: 1.42.0-2.el9_4.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.x86_64.rpm + - evra: 0.3.2-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libverto-0.3.2-3.el9.x86_64.rpm + - evra: 4.4.18-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.x86_64.rpm + - evra: 4.4.18-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libxcrypt-devel-4.4.18-3.el9.x86_64.rpm + - evra: 2.9.13-14.el9_8.2.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.x86_64.rpm + - evra: 1.5.5-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm + - evra: 5.4.4-4.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/lua-libs-5.4.4-4.el9.x86_64.rpm + - evra: 1.9.3-5.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.x86_64.rpm + - evra: 4.3-8.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/make-4.3-8.el9.x86_64.rpm + - evra: 4.1.0-10.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.x86_64.rpm + - evra: 6.2-12.20210508.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + - evra: 6.2-12.20210508.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.x86_64.rpm + - evra: 2.6.8-4.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openldap-2.6.8-4.el9.x86_64.rpm + - evra: 9.9p1-7.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.x86_64.rpm + - evra: 9.9p1-7.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.x86_64.rpm + - evra: 3.5.5-5.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-3.5.5-5.el9_8.x86_64.rpm + - evra: 3.5.5-5.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/o/openssl-devel-3.5.5-5.el9_8.x86_64.rpm + - evra: 3.0.7-11.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.x86_64.rpm + - evra: 3.0.7-11.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.x86_64.rpm + - evra: 3.5.5-5.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-libs-3.5.5-5.el9_8.x86_64.rpm + - evra: 0.26.2-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.x86_64.rpm + - evra: 0.26.2-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.x86_64.rpm + - evra: 1.5.1-28.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pam-1.5.1-28.el9.x86_64.rpm + - evra: 8.44-4.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre-8.44-4.el9.x86_64.rpm + - evra: 10.40-6.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre2-10.40-6.el9.x86_64.rpm + - evra: 10.40-6.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + - evra: 1.7.3-10.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.x86_64.rpm + - evra: 1.7.3-10.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-m4-1.7.3-10.el9.noarch.rpm + - evra: 1.7.3-10.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-pkg-config-1.7.3-10.el9.x86_64.rpm + - evra: 1.18-8.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/popt-1.18-8.el9.x86_64.rpm + - evra: 23.4-3.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/psmisc-23.4-3.el9.x86_64.rpm + - evra: 20210518-3.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm + - evra: 3.9.25-7.el9_8.2.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-3.9.25-7.el9_8.2.x86_64.rpm + - evra: 3.9.25-7.el9_8.2.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-libs-3.9.25-7.el9_8.2.x86_64.rpm + - evra: 21.3.1-2.el9_8.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-pip-wheel-21.3.1-2.el9_8.noarch.rpm + - evra: 53.0.0-15.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm + - evra: 8.1-4.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/readline-8.1-4.el9.x86_64.rpm + - evra: 9.8-1.0.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.x86_64.rpm + - evra: 4.16.1.3-40.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/rpm-4.16.1.3-40.el9.x86_64.rpm + - evra: 4.16.1.3-40.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/rpm-libs-4.16.1.3-40.el9.x86_64.rpm + - evra: 4.8-10.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/sed-4.8-10.el9.x86_64.rpm + - evra: 2.13.7-10.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + - evra: 4.9-16.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.x86_64.rpm + - evra: 3.34.1-10.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.x86_64.rpm + - evra: 252-67.el9_8.4.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-252-67.el9_8.4.x86_64.rpm + - evra: 252-67.el9_8.4.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.x86_64.rpm + - evra: 252-67.el9_8.4.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-pam-252-67.el9_8.4.x86_64.rpm + - evra: 252-67.el9_8.4.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-rpm-macros-252-67.el9_8.4.noarch.rpm + - evra: 252-67.el9_8.4.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-udev-252-67.el9_8.4.x86_64.rpm + - evra: 3.2.3-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tpm2-tss-3.2.3-1.el9.x86_64.rpm + - evra: 2026b-1.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + - evra: 2.37.4-25.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.x86_64.rpm + - evra: 2.37.4-25.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-core-2.37.4-25.el9.x86_64.rpm + - evra: 8.2.2637-26.el9_8.10.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm + - evra: 5.2.5-8.el9_0.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.x86_64.rpm + - evra: 1.2.11-40.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/z/zlib-1.2.11-40.el9.x86_64.rpm + - evra: 11.5.0-14.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-c++-11.5.0-14.el9.x86_64.rpm + - evra: 2.52.0-1.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/git-core-2.52.0-1.el9.x86_64.rpm + - evra: 6.17.0-2.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/iproute-6.17.0-2.el9.x86_64.rpm + - evra: 1.8.10-11.el9_5.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/iptables-nft-1.8.10-11.el9_5.x86_64.rpm + - evra: 1.0.9-7.el9_8.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/nftables-1.0.9-7.el9_8.x86_64.rpm + - evra: 1.34-11.el9.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tar-1.34-11.el9.x86_64.rpm + - evra: 5.2.5-8.el9_0.x86_64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.x86_64.rpm + source: [] +- arch: aarch64 + packages: + - evra: 2.4.0-1.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/acl-2.4.0-1.el9_8.aarch64.rpm + - evra: 1.24-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/alternatives-1.24-2.el9.aarch64.rpm + - evra: 3.1.5-8.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.aarch64.rpm + - evra: 11-13.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm + - evra: 5.1.8-9.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/bash-5.1.8-9.el9.aarch64.rpm + - evra: 2.35.2-72.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-2.35.2-72.el9.aarch64.rpm + - evra: 2.35.2-72.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-gold-2.35.2-72.el9.aarch64.rpm + - evra: 1.0.8-11.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.aarch64.rpm + - evra: 2025.2.80_v9.0.305-91.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + - evra: 3.31.8-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-3.31.8-3.el9.aarch64.rpm + - evra: 3.31.8-3.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-data-3.31.8-3.el9.noarch.rpm + - evra: 3.31.8-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-filesystem-3.31.8-3.el9.aarch64.rpm + - evra: 3.31.8-3.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-rpm-macros-3.31.8-3.el9.noarch.rpm + - evra: 8.32-41.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.aarch64.rpm + - evra: 8.32-41.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.aarch64.rpm + - evra: 8.32-41.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-single-8.32-41.el9_8.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cpp-11.5.0-14.el9.aarch64.rpm + - evra: 2.9.6-28.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.aarch64.rpm + - evra: 2.9.6-28.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cracklib-dicts-2.9.6-28.el9.aarch64.rpm + - evra: 20260224-1.gitea0f072.el9_8.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + - evra: 2.8.1-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cryptsetup-libs-2.8.1-3.el9.aarch64.rpm + - evra: 7.76.1-40.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/curl-7.76.1-40.el9.aarch64.rpm + - evra: 7.76.1-40.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/curl-minimal-7.76.1-40.el9.aarch64.rpm + - evra: 2.1.27-22.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.aarch64.rpm + - evra: 1.12.20-8.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-1.12.20-8.el9.aarch64.rpm + - evra: 28-7.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-broker-28-7.el9.aarch64.rpm + - evra: 1.12.20-8.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm + - evra: 1.02.207-4.el9_8.1.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/device-mapper-1.02.207-4.el9_8.1.aarch64.rpm + - evra: 1.02.207-4.el9_8.1.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/device-mapper-libs-1.02.207-4.el9_8.1.aarch64.rpm + - evra: 0.194-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.aarch64.rpm + - evra: 0.194-1.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm + - evra: 0.194-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.aarch64.rpm + - evra: 0.194-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-libs-0.194-1.el9.aarch64.rpm + - evra: 27.2-18.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/e/emacs-filesystem-27.2-18.el9.noarch.rpm + - evra: 2.5.0-6.el9_8.1.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/expat-2.5.0-6.el9_8.1.aarch64.rpm + - evra: 3.16-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/f/filesystem-3.16-5.el9.aarch64.rpm + - evra: 4.8.0-7.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/f/findutils-4.8.0-7.el9.aarch64.rpm + - evra: 1.2.0-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/f/fips-provider-next-1.2.0-5.el9.aarch64.rpm + - evra: 5.1.0-6.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gawk-5.1.0-6.el9.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-11.5.0-14.el9.aarch64.rpm + - evra: 1.23-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.aarch64.rpm + - evra: 2.34-274.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-2.34-274.el9_8.aarch64.rpm + - evra: 2.34-274.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-all-langpacks-2.34-274.el9_8.aarch64.rpm + - evra: 2.34-274.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.aarch64.rpm + - evra: 2.34-274.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.aarch64.rpm + - evra: 2.34-274.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-gconv-extra-2.34-274.el9_8.aarch64.rpm + - evra: 2.34-274.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.aarch64.rpm + - evra: 2.34-274.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.aarch64.rpm + - evra: 6.2.0-13.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gmp-6.2.0-13.el9.aarch64.rpm + - evra: 3.6-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/grep-3.6-5.el9.aarch64.rpm + - evra: 1.12-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-1.el9.aarch64.rpm + - evra: 1.8.10-11.el9_5.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/iptables-libs-1.8.10-11.el9_5.aarch64.rpm + - evra: 2.14-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/j/jansson-2.14-1.el9.aarch64.rpm + - evra: 0.14-11.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/j/json-c-0.14-11.el9.aarch64.rpm + - evra: 2.4.0-11.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kbd-2.4.0-11.el9.aarch64.rpm + - evra: 2.4.0-11.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kbd-legacy-2.4.0-11.el9.noarch.rpm + - evra: 2.4.0-11.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kbd-misc-2.4.0-11.el9.noarch.rpm + - evra: 5.14.0-687.31.1.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.31.1.el9_8.aarch64.rpm + - evra: 1.6.3-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.aarch64.rpm + - evra: 28-11.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kmod-28-11.el9.aarch64.rpm + - evra: 28-11.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kmod-libs-28-11.el9.aarch64.rpm + - evra: 1.21.1-10.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.aarch64.rpm + - evra: 590-6.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/less-590-6.el9.aarch64.rpm + - evra: 2.4.0-1.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libacl-2.4.0-1.el9_8.aarch64.rpm + - evra: 3.5.3-9.el9_7.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libasan-11.5.0-14.el9.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libatomic-11.5.0-14.el9.aarch64.rpm + - evra: 2.5.1-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libattr-2.5.1-3.el9.aarch64.rpm + - evra: 2.37.4-25.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.aarch64.rpm + - evra: 1.5.0-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libbpf-1.5.0-3.el9.aarch64.rpm + - evra: 1.0.9-9.el9_7.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.aarch64.rpm + - evra: 2.48-10.el9_8.1.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.aarch64.rpm + - evra: 0.8.2-7.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.aarch64.rpm + - evra: 0.7.0-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.aarch64.rpm + - evra: 1.46.5-8.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.aarch64.rpm + - evra: 7.76.1-40.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.aarch64.rpm + - evra: 7.76.1-40.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-minimal-7.76.1-40.el9.aarch64.rpm + - evra: 5.3.28-57.el9_6.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.aarch64.rpm + - evra: 0.4.1-7.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libeconf-0.4.1-7.el9_8.aarch64.rpm + - evra: 3.1-39.20210216cvs.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.aarch64.rpm + - evra: 2.1.12-8.el9_4.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.aarch64.rpm + - evra: 2.37.4-25.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.aarch64.rpm + - evra: 3.4.2-8.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libffi-3.4.2-8.el9.aarch64.rpm + - evra: 1.13.0-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.aarch64.rpm + - evra: 1.10.0-11.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.aarch64.rpm + - evra: 1.42-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.aarch64.rpm + - evra: 2.3.0-7.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.aarch64.rpm + - evra: 1.0.4-16.el9_4.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libmnl-1.0.4-16.el9_4.aarch64.rpm + - evra: 2.37.4-25.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libmount-2.37.4-25.el9.aarch64.rpm + - evra: 1.2.1-4.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.aarch64.rpm + - evra: 1.0.9-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnetfilter_conntrack-1.0.9-1.el9.aarch64.rpm + - evra: 1.0.1-23.el9_5.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnfnetlink-1.0.1-23.el9_5.aarch64.rpm + - evra: 1.2.6-4.el9_4.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnftnl-1.2.6-4.el9_4.aarch64.rpm + - evra: 1.43.0-6.el9_8.1.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.aarch64.rpm + - evra: 1.7.3-10.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.aarch64.rpm + - evra: 0.21.1-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.aarch64.rpm + - evra: 1.4.4-8.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.aarch64.rpm + - evra: 2.5.2-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.aarch64.rpm + - evra: 3.6-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libselinux-3.6-3.el9.aarch64.rpm + - evra: 3.6-5.el9_6.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.aarch64.rpm + - evra: 3.6-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsepol-3.6-3.el9.aarch64.rpm + - evra: 2.13-4.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.aarch64.rpm + - evra: 2.37.4-25.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.aarch64.rpm + - evra: 0.10.4-18.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-18.el9.aarch64.rpm + - evra: 0.10.4-18.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.aarch64.rpm + - evra: 4.16.0-10.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.aarch64.rpm + - evra: 2.4.6-46.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libtool-ltdl-2.4.6-46.el9.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libubsan-11.5.0-14.el9.aarch64.rpm + - evra: 0.9.10-15.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.aarch64.rpm + - evra: 1.2.1-6.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.aarch64.rpm + - evra: 2.37.4-25.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.aarch64.rpm + - evra: 1.42.0-2.el9_4.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.aarch64.rpm + - evra: 0.3.2-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libverto-0.3.2-3.el9.aarch64.rpm + - evra: 4.4.18-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.aarch64.rpm + - evra: 4.4.18-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libxcrypt-devel-4.4.18-3.el9.aarch64.rpm + - evra: 2.9.13-14.el9_8.2.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.aarch64.rpm + - evra: 1.5.5-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm + - evra: 5.4.4-4.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/lua-libs-5.4.4-4.el9.aarch64.rpm + - evra: 1.9.3-5.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.aarch64.rpm + - evra: 4.3-8.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/make-4.3-8.el9.aarch64.rpm + - evra: 4.1.0-10.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.aarch64.rpm + - evra: 6.2-12.20210508.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + - evra: 6.2-12.20210508.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.aarch64.rpm + - evra: 2.6.8-4.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openldap-2.6.8-4.el9.aarch64.rpm + - evra: 9.9p1-7.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.aarch64.rpm + - evra: 9.9p1-7.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.aarch64.rpm + - evra: 3.5.5-6.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-3.5.5-6.el9_8.aarch64.rpm + - evra: 3.5.5-6.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/o/openssl-devel-3.5.5-6.el9_8.aarch64.rpm + - evra: 3.0.7-11.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.aarch64.rpm + - evra: 3.0.7-11.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.aarch64.rpm + - evra: 3.5.5-6.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-libs-3.5.5-6.el9_8.aarch64.rpm + - evra: 0.26.2-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.aarch64.rpm + - evra: 0.26.2-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.aarch64.rpm + - evra: 1.5.1-28.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pam-1.5.1-28.el9.aarch64.rpm + - evra: 8.44-4.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre-8.44-4.el9.aarch64.rpm + - evra: 10.40-6.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre2-10.40-6.el9.aarch64.rpm + - evra: 10.40-6.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + - evra: 1.7.3-10.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.aarch64.rpm + - evra: 1.7.3-10.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-m4-1.7.3-10.el9.noarch.rpm + - evra: 1.7.3-10.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-pkg-config-1.7.3-10.el9.aarch64.rpm + - evra: 1.18-8.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/popt-1.18-8.el9.aarch64.rpm + - evra: 23.4-3.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/psmisc-23.4-3.el9.aarch64.rpm + - evra: 20210518-3.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm + - evra: 3.9.25-7.el9_8.2.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-3.9.25-7.el9_8.2.aarch64.rpm + - evra: 3.9.25-7.el9_8.2.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-libs-3.9.25-7.el9_8.2.aarch64.rpm + - evra: 21.3.1-2.el9_8.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-pip-wheel-21.3.1-2.el9_8.noarch.rpm + - evra: 53.0.0-15.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm + - evra: 8.1-4.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/readline-8.1-4.el9.aarch64.rpm + - evra: 9.8-1.0.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.aarch64.rpm + - evra: 4.16.1.3-40.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/rpm-4.16.1.3-40.el9.aarch64.rpm + - evra: 4.16.1.3-40.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/rpm-libs-4.16.1.3-40.el9.aarch64.rpm + - evra: 4.8-10.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/sed-4.8-10.el9.aarch64.rpm + - evra: 2.13.7-10.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + - evra: 4.9-16.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.aarch64.rpm + - evra: 3.34.1-10.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.aarch64.rpm + - evra: 252-67.el9_8.4.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-252-67.el9_8.4.aarch64.rpm + - evra: 252-67.el9_8.4.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.aarch64.rpm + - evra: 252-67.el9_8.4.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-pam-252-67.el9_8.4.aarch64.rpm + - evra: 252-67.el9_8.4.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-rpm-macros-252-67.el9_8.4.noarch.rpm + - evra: 252-67.el9_8.4.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-udev-252-67.el9_8.4.aarch64.rpm + - evra: 3.2.3-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tpm2-tss-3.2.3-1.el9.aarch64.rpm + - evra: 2026b-1.el9.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + - evra: 2.37.4-25.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.aarch64.rpm + - evra: 2.37.4-25.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-core-2.37.4-25.el9.aarch64.rpm + - evra: 8.2.2637-26.el9_8.10.noarch + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm + - evra: 5.2.5-8.el9_0.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.aarch64.rpm + - evra: 1.2.11-40.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/z/zlib-1.2.11-40.el9.aarch64.rpm + - evra: 11.5.0-14.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-c++-11.5.0-14.el9.aarch64.rpm + - evra: 2.52.0-1.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/git-core-2.52.0-1.el9.aarch64.rpm + - evra: 6.17.0-2.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/iproute-6.17.0-2.el9.aarch64.rpm + - evra: 1.8.10-11.el9_5.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/iptables-nft-1.8.10-11.el9_5.aarch64.rpm + - evra: 1.0.9-7.el9_8.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/nftables-1.0.9-7.el9_8.aarch64.rpm + - evra: 1.34-11.el9.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tar-1.34-11.el9.aarch64.rpm + - evra: 5.2.5-8.el9_0.aarch64 + url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.aarch64.rpm + source: [] +lockfileVendor: redhat +lockfileVersion: 1 From 3b91cbfe70a51e17939d88ec5822da9f22e372a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Prpi=C4=8D?= Date: Tue, 28 Jul 2026 13:17:45 -0400 Subject: [PATCH 02/24] CARRY: regenerate RPM lockfiles from public UBI repos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Regenerate both rpms.lock.yaml files using an unregistered UBI9 container so all URLs use cdn-ubi.redhat.com (public, no auth) instead of cdn.redhat.com (requires Red Hat CDN CA certificate). Both x86_64 and aarch64 arches are included, generated via QEMU emulation in a podman --arch arm64 container. Remove createrepo_c and Red Hat CDN CA prerequisites from the build-local.sh script since they are no longer needed. Signed-off-by: Martin Prpič --- deploy/konflux/build-local.sh | 2 - deploy/konflux/gateway/rpms.lock.yaml | 2414 ++++++++++++++-------- deploy/konflux/supervisor/rpms.lock.yaml | 1762 +++++++++------- 3 files changed, 2576 insertions(+), 1602 deletions(-) diff --git a/deploy/konflux/build-local.sh b/deploy/konflux/build-local.sh index b4cf542a45..869f2a60a7 100755 --- a/deploy/konflux/build-local.sh +++ b/deploy/konflux/build-local.sh @@ -5,8 +5,6 @@ # Prerequisites: # - hermeto (pip install git+https://github.com/hermetoproject/hermeto.git) # - podman -# - createrepo_c -# - Red Hat CDN CA trusted (sudo cp /etc/rhsm/ca/redhat-uep.pem /etc/pki/ca-trust/source/anchors/ && sudo update-ca-trust) # # Usage: # ./deploy/konflux/build-local.sh gateway diff --git a/deploy/konflux/gateway/rpms.lock.yaml b/deploy/konflux/gateway/rpms.lock.yaml index 0766f4e1b9..316b4ef21e 100644 --- a/deploy/konflux/gateway/rpms.lock.yaml +++ b/deploy/konflux/gateway/rpms.lock.yaml @@ -1,893 +1,1531 @@ +--- +lockfileVersion: 1 +lockfileVendor: redhat arches: -- arch: x86_64 +- arch: aarch64 packages: - - evra: 2.4.0-1.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/acl-2.4.0-1.el9_8.x86_64.rpm - - evra: 1.24-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/alternatives-1.24-2.el9.x86_64.rpm - - evra: 3.1.5-8.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.x86_64.rpm - - evra: 11-13.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm - - evra: 5.1.8-9.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/bash-5.1.8-9.el9.x86_64.rpm - - evra: 2.35.2-72.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-2.35.2-72.el9.x86_64.rpm - - evra: 2.35.2-72.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-gold-2.35.2-72.el9.x86_64.rpm - - evra: 1.0.8-11.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.x86_64.rpm - - evra: 2025.2.80_v9.0.305-91.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm - - evra: 3.6-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/checkpolicy-3.6-1.el9.x86_64.rpm - - evra: 21.1.8-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-21.1.8-2.el9.x86_64.rpm - - evra: 21.1.8-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-libs-21.1.8-2.el9.x86_64.rpm - - evra: 21.1.8-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-resource-filesystem-21.1.8-2.el9.x86_64.rpm - - evra: 21.1.8-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-tools-extra-21.1.8-2.el9.x86_64.rpm - - evra: 3.31.8-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-3.31.8-3.el9.x86_64.rpm - - evra: 3.31.8-3.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-data-3.31.8-3.el9.noarch.rpm - - evra: 3.31.8-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-filesystem-3.31.8-3.el9.x86_64.rpm - - evra: 3.31.8-3.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-rpm-macros-3.31.8-3.el9.noarch.rpm - - evra: 8.32-41.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.x86_64.rpm - - evra: 8.32-41.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.x86_64.rpm - - evra: 8.32-41.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-single-8.32-41.el9_8.x86_64.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cpp-11.5.0-14.el9.x86_64.rpm - - evra: 2.9.6-28.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.x86_64.rpm - - evra: 2.9.6-28.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cracklib-dicts-2.9.6-28.el9.x86_64.rpm - - evra: 20260224-1.gitea0f072.el9_8.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm - - evra: 2.8.1-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cryptsetup-libs-2.8.1-3.el9.x86_64.rpm - - evra: 7.76.1-40.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/curl-7.76.1-40.el9.x86_64.rpm - - evra: 7.76.1-40.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/curl-minimal-7.76.1-40.el9.x86_64.rpm - - evra: 2.1.27-22.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.x86_64.rpm - - evra: 1.12.20-8.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-1.12.20-8.el9.x86_64.rpm - - evra: 28-7.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-broker-28-7.el9.x86_64.rpm - - evra: 1.12.20-8.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm - - evra: 1.02.207-4.el9_8.1.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/device-mapper-1.02.207-4.el9_8.1.x86_64.rpm - - evra: 1.02.207-4.el9_8.1.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/device-mapper-libs-1.02.207-4.el9_8.1.x86_64.rpm - - evra: 3.7-12.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/diffutils-3.7-12.el9.x86_64.rpm - - evra: 0.194-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.x86_64.rpm - - evra: 0.194-1.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm - - evra: 0.194-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.x86_64.rpm - - evra: 0.194-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-libs-0.194-1.el9.x86_64.rpm - - evra: 27.2-18.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/e/emacs-filesystem-27.2-18.el9.noarch.rpm - - evra: 5.3.0-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/environment-modules-5.3.0-2.el9.x86_64.rpm - - evra: 2.5.0-6.el9_8.1.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/expat-2.5.0-6.el9_8.1.x86_64.rpm - - evra: 3.16-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/f/filesystem-3.16-5.el9.x86_64.rpm - - evra: 4.8.0-7.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/f/findutils-4.8.0-7.el9.x86_64.rpm - - evra: 1.2.0-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/f/fips-provider-next-1.2.0-5.el9.x86_64.rpm - - evra: 5.1.0-6.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gawk-5.1.0-6.el9.x86_64.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-11.5.0-14.el9.x86_64.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-c++-11.5.0-14.el9.x86_64.rpm - - evra: 12.88-1.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-annobin-docs-12.88-1.el9.noarch.rpm - - evra: 12.88-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-annobin-plugin-gcc-12.88-1.el9.x86_64.rpm - - evra: 2.41-6.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-binutils-2.41-6.el9.x86_64.rpm - - evra: 0.14-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-dwz-0.14-1.el9.x86_64.rpm - - evra: 14.2.1-13.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-gcc-14.2.1-13.el9.x86_64.rpm - - evra: 14.2.1-13.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-gcc-c++-14.2.1-13.el9.x86_64.rpm - - evra: 14.2.1-13.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-gcc-gfortran-14.2.1-13.el9.x86_64.rpm - - evra: 14.2.1-13.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-libquadmath-devel-14.2.1-13.el9.x86_64.rpm - - evra: 14.2.1-13.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-libstdc++-devel-14.2.1-13.el9.x86_64.rpm - - evra: 14.0-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-runtime-14.0-2.el9.x86_64.rpm - - evra: 2.44-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-binutils-2.44-5.el9.x86_64.rpm - - evra: 15.2.1-7.1.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-gcc-15.2.1-7.1.el9_8.x86_64.rpm - - evra: 15.2.1-7.1.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-gcc-c++-15.2.1-7.1.el9_8.x86_64.rpm - - evra: 15.2.1-7.1.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-libstdc++-devel-15.2.1-7.1.el9_8.x86_64.rpm - - evra: 15.0-9.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-runtime-15.0-9.el9.x86_64.rpm - - evra: 1.23-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-2.34-274.el9_8.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-all-langpacks-2.34-274.el9_8.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-gconv-extra-2.34-274.el9_8.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-headers-2.34-274.el9_8.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.x86_64.rpm - - evra: 6.2.0-13.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gmp-6.2.0-13.el9.x86_64.rpm - - evra: 3.6-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/grep-3.6-5.el9.x86_64.rpm - - evra: 1.22.4-10.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/groff-base-1.22.4-10.el9.x86_64.rpm - - evra: 1.12-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-1.el9.x86_64.rpm - - evra: 6.7-15.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/info-6.7-15.el9.x86_64.rpm - - evra: 2.14-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/jansson-2.14-1.el9.x86_64.rpm - - evra: 0.14-11.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/json-c-0.14-11.el9.x86_64.rpm - - evra: 2.4.0-11.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kbd-2.4.0-11.el9.x86_64.rpm - - evra: 2.4.0-11.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kbd-legacy-2.4.0-11.el9.noarch.rpm - - evra: 2.4.0-11.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kbd-misc-2.4.0-11.el9.noarch.rpm - - evra: 5.14.0-687.30.1.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.30.1.el9_8.x86_64.rpm - - evra: 1.6.3-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.x86_64.rpm - - evra: 28-11.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kmod-28-11.el9.x86_64.rpm - - evra: 28-11.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kmod-libs-28-11.el9.x86_64.rpm - - evra: 1.21.1-10.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.x86_64.rpm - - evra: 590-6.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/less-590-6.el9.x86_64.rpm - - evra: 2.4.0-1.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libacl-2.4.0-1.el9_8.x86_64.rpm - - evra: 3.5.3-9.el9_7.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.x86_64.rpm - - evra: 2.5.1-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libattr-2.5.1-3.el9.x86_64.rpm - - evra: 2.37.4-25.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.x86_64.rpm - - evra: 1.0.9-9.el9_7.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.x86_64.rpm - - evra: 2.48-10.el9_8.1.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.x86_64.rpm - - evra: 0.8.2-7.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.x86_64.rpm - - evra: 0.7.0-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.x86_64.rpm - - evra: 1.46.5-8.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.x86_64.rpm - - evra: 7.76.1-40.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.x86_64.rpm - - evra: 7.76.1-40.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-minimal-7.76.1-40.el9.x86_64.rpm - - evra: 5.3.28-57.el9_6.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.x86_64.rpm - - evra: 0.4.1-7.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libeconf-0.4.1-7.el9_8.x86_64.rpm - - evra: 3.1-39.20210216cvs.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.x86_64.rpm - - evra: 3.1-39.20210216cvs.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libedit-devel-3.1-39.20210216cvs.el9.x86_64.rpm - - evra: 2.1.12-8.el9_4.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.x86_64.rpm - - evra: 2.37.4-25.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.x86_64.rpm - - evra: 3.4.2-8.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libffi-3.4.2-8.el9.x86_64.rpm - - evra: 1.13.0-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.x86_64.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.x86_64.rpm - - evra: 1.10.0-11.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.x86_64.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgfortran-11.5.0-14.el9.x86_64.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.x86_64.rpm - - evra: 1.42-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.x86_64.rpm - - evra: 2.3.0-7.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.x86_64.rpm - - evra: 2.37.4-25.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libmount-2.37.4-25.el9.x86_64.rpm - - evra: 1.2.1-4.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.x86_64.rpm - - evra: 1.43.0-6.el9_8.1.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.x86_64.rpm - - evra: 1.5.3-4.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpipeline-1.5.3-4.el9.x86_64.rpm - - evra: 1.7.3-10.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.x86_64.rpm - - evra: 0.21.1-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.x86_64.rpm - - evra: 1.4.4-8.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.x86_64.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libquadmath-11.5.0-14.el9.x86_64.rpm - - evra: 2.5.2-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.x86_64.rpm - - evra: 3.6-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libselinux-3.6-3.el9.x86_64.rpm - - evra: 3.6-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libselinux-utils-3.6-3.el9.x86_64.rpm - - evra: 3.6-5.el9_6.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.x86_64.rpm - - evra: 3.6-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsepol-3.6-3.el9.x86_64.rpm - - evra: 2.13-4.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.x86_64.rpm - - evra: 2.37.4-25.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.x86_64.rpm - - evra: 0.10.4-18.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-18.el9.x86_64.rpm - - evra: 0.10.4-18.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.x86_64.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.x86_64.rpm - - evra: 4.16.0-10.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.x86_64.rpm - - evra: 2.4.6-46.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libtool-ltdl-2.4.6-46.el9.x86_64.rpm - - evra: 0.9.10-15.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.x86_64.rpm - - evra: 1.2.1-6.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.x86_64.rpm - - evra: 2.37.4-25.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.x86_64.rpm - - evra: 1.42.0-2.el9_4.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.x86_64.rpm - - evra: 0.3.2-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libverto-0.3.2-3.el9.x86_64.rpm - - evra: 4.4.18-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.x86_64.rpm - - evra: 4.4.18-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libxcrypt-devel-4.4.18-3.el9.x86_64.rpm - - evra: 2.9.13-14.el9_8.2.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.x86_64.rpm - - evra: 1.5.5-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm - - evra: 1.5.5-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libzstd-devel-1.5.5-1.el9.x86_64.rpm - - evra: 21.1.8-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-21.1.8-2.el9.x86_64.rpm - - evra: 21.1.8-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-devel-21.1.8-2.el9.x86_64.rpm - - evra: 21.1.8-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-filesystem-21.1.8-2.el9.x86_64.rpm - - evra: 21.1.8-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-googletest-21.1.8-2.el9.x86_64.rpm - - evra: 21.1.8-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-libs-21.1.8-2.el9.x86_64.rpm - - evra: 21.1.8-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-static-21.1.8-2.el9.x86_64.rpm - - evra: 21.1.8-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-test-21.1.8-2.el9.x86_64.rpm - - evra: 5.4.4-4.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/lua-libs-5.4.4-4.el9.x86_64.rpm - - evra: 1.9.3-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.x86_64.rpm - - evra: 4.3-8.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/make-4.3-8.el9.x86_64.rpm - - evra: 2.9.3-9.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/man-db-2.9.3-9.el9.x86_64.rpm - - evra: 4.1.0-10.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.x86_64.rpm - - evra: 6.2-12.20210508.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm - - evra: 6.2-12.20210508.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/n/ncurses-c++-libs-6.2-12.20210508.el9.x86_64.rpm - - evra: 6.2-12.20210508.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/n/ncurses-devel-6.2-12.20210508.el9.x86_64.rpm - - evra: 6.2-12.20210508.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.x86_64.rpm - - evra: 2.6.8-4.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openldap-2.6.8-4.el9.x86_64.rpm - - evra: 9.9p1-7.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.x86_64.rpm - - evra: 9.9p1-7.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.x86_64.rpm - - evra: 3.5.5-5.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-3.5.5-5.el9_8.x86_64.rpm - - evra: 3.5.5-5.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/o/openssl-devel-3.5.5-5.el9_8.x86_64.rpm - - evra: 3.0.7-11.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.x86_64.rpm - - evra: 3.0.7-11.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.x86_64.rpm - - evra: 3.5.5-5.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-libs-3.5.5-5.el9_8.x86_64.rpm - - evra: 0.26.2-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.x86_64.rpm - - evra: 0.26.2-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.x86_64.rpm - - evra: 1.5.1-28.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pam-1.5.1-28.el9.x86_64.rpm - - evra: 8.44-4.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre-8.44-4.el9.x86_64.rpm - - evra: 10.40-6.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre2-10.40-6.el9.x86_64.rpm - - evra: 10.40-6.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm - - evra: 1.7.3-10.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.x86_64.rpm - - evra: 1.7.3-10.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-m4-1.7.3-10.el9.noarch.rpm - - evra: 1.7.3-10.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-pkg-config-1.7.3-10.el9.x86_64.rpm - - evra: 3.6-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/policycoreutils-3.6-5.el9.x86_64.rpm - - evra: 3.6-5.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/policycoreutils-python-utils-3.6-5.el9.noarch.rpm - - evra: 1.18-8.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/popt-1.18-8.el9.x86_64.rpm - - evra: 3.3.17-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/procps-ng-3.3.17-14.el9.x86_64.rpm - - evra: 20210518-3.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm - - evra: 3.9.25-7.el9_8.2.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-3.9.25-7.el9_8.2.x86_64.rpm - - evra: 3.1.5-8.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-audit-3.1.5-8.el9.x86_64.rpm - - evra: 1.5.0-7.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-distro-1.5.0-7.el9.noarch.rpm - - evra: 3.9.25-7.el9_8.2.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-libs-3.9.25-7.el9_8.2.x86_64.rpm - - evra: 3.6-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-libselinux-3.6-3.el9.x86_64.rpm - - evra: 3.6-5.el9_6.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-libsemanage-3.6-5.el9_6.x86_64.rpm - - evra: 21.3.1-2.el9_8.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-pip-wheel-21.3.1-2.el9_8.noarch.rpm - - evra: 3.6-5.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-policycoreutils-3.6-5.el9.noarch.rpm - - evra: 4.4.4-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-setools-4.4.4-1.el9.x86_64.rpm - - evra: 53.0.0-15.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-setuptools-53.0.0-15.el9.noarch.rpm - - evra: 53.0.0-15.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm - - evra: 8.1-4.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/readline-8.1-4.el9.x86_64.rpm - - evra: 9.8-1.0.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.x86_64.rpm - - evra: 4.16.1.3-40.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/rpm-4.16.1.3-40.el9.x86_64.rpm - - evra: 4.16.1.3-40.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/rpm-libs-4.16.1.3-40.el9.x86_64.rpm - - evra: 1.92.0-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/r/rust-1.92.0-1.el9.x86_64.rpm - - evra: 1.92.0-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/r/rust-std-static-1.92.0-1.el9.x86_64.rpm - - evra: 2.0.3-4.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/s/scl-utils-2.0.3-4.el9.x86_64.rpm - - evra: 4.8-10.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/sed-4.8-10.el9.x86_64.rpm - - evra: 2.13.7-10.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm - - evra: 4.9-16.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.x86_64.rpm - - evra: 3.34.1-10.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.x86_64.rpm - - evra: 252-67.el9_8.4.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-252-67.el9_8.4.x86_64.rpm - - evra: 252-67.el9_8.4.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.x86_64.rpm - - evra: 252-67.el9_8.4.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-pam-252-67.el9_8.4.x86_64.rpm - - evra: 252-67.el9_8.4.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-rpm-macros-252-67.el9_8.4.noarch.rpm - - evra: 252-67.el9_8.4.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-udev-252-67.el9_8.4.x86_64.rpm - - evra: 8.6.10-7.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tcl-8.6.10-7.el9.x86_64.rpm - - evra: 3.2.3-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tpm2-tss-3.2.3-1.el9.x86_64.rpm - - evra: 2026b-1.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm - - evra: 2.37.4-25.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.x86_64.rpm - - evra: 2.37.4-25.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-core-2.37.4-25.el9.x86_64.rpm - - evra: 8.2.2637-26.el9_8.10.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm - - evra: 5.2.5-8.el9_0.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.x86_64.rpm - - evra: 1.2.11-40.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/z/zlib-1.2.11-40.el9.x86_64.rpm - - evra: 1.92.0-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cargo-1.92.0-1.el9.x86_64.rpm - - evra: 21.1.8-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-devel-21.1.8-2.el9.x86_64.rpm - - evra: 14.0-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-14.0-2.el9.x86_64.rpm - - evra: 2.52.0-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/git-core-2.52.0-1.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cargo-1.92.0-1.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 8530651 + checksum: sha256:14ac2d264369b0ac4442d6b773224765413282ea996dac29cf576c176c8cdcba + name: cargo + evr: 1.92.0-1.el9 + sourcerpm: rust-1.92.0-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/checkpolicy-3.6-1.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 360096 + checksum: sha256:be68ea8774a5aa3b0220043aa21aa93213d4ec0e1cf0c1e9114369ed16ada37e + name: checkpolicy + evr: 3.6-1.el9 + sourcerpm: checkpolicy-3.6-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/clang-21.1.8-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 7554569 + checksum: sha256:cb1188aa89484232468c58a1296fa61de218744eb75b22e150b477d60d231f97 + name: clang + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/clang-devel-21.1.8-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 4494280 + checksum: sha256:06192b7daf820f880f8feb8842928e07d88df155cffbb3332f6ed4ce872a7c3a + name: clang-devel + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/clang-libs-21.1.8-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 31039242 + checksum: sha256:12caacb5a1ca774ad9a41179d74c721e8243a043a48c0d286ea720394c724a83 + name: clang-libs + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/clang-resource-filesystem-21.1.8-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 25797 + checksum: sha256:5087b19492047a7139b1f1144e40d5091dcee5c95f35fa354781039b5c756a0d + name: clang-resource-filesystem + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/clang-tools-extra-21.1.8-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 19364965 + checksum: sha256:8ba62cb3611971be4a01354c067b51b8c73787fb64958cafd2e77989db9e5d46 + name: clang-tools-extra + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-3.31.8-3.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 11655593 + checksum: sha256:2a77fe1c3784083dcdebdd548c16d823b3e4a5adb8d6c00e36841aa633eab53b + name: cmake + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-data-3.31.8-3.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 2829291 + checksum: sha256:1cdc2e88a996c575b750483c8f562674e4b50a6ab414c7bbe6f6b641c1db7bd9 + name: cmake-data + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-filesystem-3.31.8-3.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 19282 + checksum: sha256:69a498723354740357fc3f4b4cd235da38fadd98835da193bec0c0850f68f3ad + name: cmake-filesystem + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/compiler-rt-21.1.8-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 2377154 + checksum: sha256:2adf2397bd2231a95d85dc6db88e9eb539981f0411462fe518b741688ddde3c2 + name: compiler-rt + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cpp-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 10798392 + checksum: sha256:eb16ef369b981c0dca6149e971a63f74ea09c09f1c638086e3cda1e0591ac21b + name: cpp + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/e/emacs-filesystem-27.2-18.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 9495 + checksum: sha256:49d7b88a05a72c15b78191a987e6def04fda8e2e4ff75711f715d0c0ecadc60f + name: emacs-filesystem + evr: 1:27.2-18.el9 + sourcerpm: emacs-27.2-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 31291354 + checksum: sha256:542e635ac17b548cc03ab4347438d49f96837c1d91d12714b6b2764ec566156c + name: gcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-c++-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 12994215 + checksum: sha256:aabe892798a2272d65c269fd6aa14d3b3dfc782c98f92f8fda30c2a4fa33bf6d + name: gcc-c++ + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-14.0-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 10516 + checksum: sha256:176ce522a37ef114051b114969cc72bf3da8ecb697368a18260fcf58eeee4bb2 + name: gcc-toolset-14 + evr: 14.0-2.el9 + sourcerpm: gcc-toolset-14-14.0-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-annobin-docs-12.88-1.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 89636 + checksum: sha256:80d5c6c300561524fb2f855fce1867546d4452ea5c72cfb5d53f2117153e9805 + name: gcc-toolset-14-annobin-docs + evr: 12.88-1.el9 + sourcerpm: gcc-toolset-14-annobin-12.88-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-annobin-plugin-gcc-12.88-1.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 1001441 + checksum: sha256:1e671eaaa6265094d89aaed03dfef45bc780619e62de032dafd24f70146f1304 + name: gcc-toolset-14-annobin-plugin-gcc + evr: 12.88-1.el9 + sourcerpm: gcc-toolset-14-annobin-12.88-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-binutils-2.41-6.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 7357899 + checksum: sha256:e23944e5ba23c055df25efebe7c3fe848755225b2441923110c519165b543ecf + name: gcc-toolset-14-binutils + evr: 2.41-6.el9 + sourcerpm: gcc-toolset-14-binutils-2.41-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-dwz-0.14-1.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 128077 + checksum: sha256:f4bcee0025b49e9653dbb3d939140d4fc9b6b8734156ebca2fc7b3c70d5e89bd + name: gcc-toolset-14-dwz + evr: 0.14-1.el9 + sourcerpm: gcc-toolset-14-dwz-0.14-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-gcc-14.2.1-13.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 44178202 + checksum: sha256:759df2069e08b4725204c86e1c367316af41adb713233876c1c323f0e383e395 + name: gcc-toolset-14-gcc + evr: 14.2.1-13.el9 + sourcerpm: gcc-toolset-14-gcc-14.2.1-13.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-gcc-c++-14.2.1-13.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 13751718 + checksum: sha256:4c1232051eaefabe1258ca799a80837a696637e8ac5e3b1ca54ac0d5f3f36394 + name: gcc-toolset-14-gcc-c++ + evr: 14.2.1-13.el9 + sourcerpm: gcc-toolset-14-gcc-14.2.1-13.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-gcc-gfortran-14.2.1-13.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 13520354 + checksum: sha256:2a8e9ccfdde357bc2ecc47ae1d1631d3e07945b4cd44a9fb6b08e8d40795fd6f + name: gcc-toolset-14-gcc-gfortran + evr: 14.2.1-13.el9 + sourcerpm: gcc-toolset-14-gcc-14.2.1-13.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-libstdc++-devel-14.2.1-13.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 3783154 + checksum: sha256:50354426d57fa9c93b656a51f97c72a39fe662dd7e694ec6d2865c527186ae88 + name: gcc-toolset-14-libstdc++-devel + evr: 14.2.1-13.el9 + sourcerpm: gcc-toolset-14-gcc-14.2.1-13.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-runtime-14.0-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 58526 + checksum: sha256:afe549f07bbaf06f2619d47b18155eaa1f8416dadbff5cbeb99cf17033d7ac25 + name: gcc-toolset-14-runtime + evr: 14.0-2.el9 + sourcerpm: gcc-toolset-14-14.0-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-binutils-2.44-5.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 6565787 + checksum: sha256:80da34e7f0ab8f9239fc71e43f2f75f75e4cb9bcdc5d89b9a8b54b96bc04acee + name: gcc-toolset-15-binutils + evr: 2.44-5.el9 + sourcerpm: gcc-toolset-15-binutils-2.44-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-gcc-15.2.1-7.1.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 48931221 + checksum: sha256:a98dbc56b02c315701efab486373b361126e471fbb792729511da4b26ebd2340 + name: gcc-toolset-15-gcc + evr: 15.2.1-7.1.el9_8 + sourcerpm: gcc-toolset-15-gcc-15.2.1-7.1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-gcc-c++-15.2.1-7.1.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 15465405 + checksum: sha256:9b5c6d7dbe8d479062b4ae3847aa3e23add35ce496bafe7759b5678b91587211 + name: gcc-toolset-15-gcc-c++ + evr: 15.2.1-7.1.el9_8 + sourcerpm: gcc-toolset-15-gcc-15.2.1-7.1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-libatomic-devel-15.2.1-7.1.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 37805 + checksum: sha256:261d7bbe9e76fb8521d43f08cb8e78452ceb79ee0d302f90d4f26486a8b54551 + name: gcc-toolset-15-libatomic-devel + evr: 15.2.1-7.1.el9_8 + sourcerpm: gcc-toolset-15-gcc-15.2.1-7.1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-libstdc++-devel-15.2.1-7.1.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 3953483 + checksum: sha256:fef924530e3a52b2fb599efd4d88dd338e3c50ab8906af5677c9c0dc96fde128 + name: gcc-toolset-15-libstdc++-devel + evr: 15.2.1-7.1.el9_8 + sourcerpm: gcc-toolset-15-gcc-15.2.1-7.1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-runtime-15.0-9.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 54344 + checksum: sha256:4ea3558c3d09059ee9cefa2fca97fc7f127e8b479f30c64445a095c1cf5ce4fc + name: gcc-toolset-15-runtime + evr: 15.0-9.el9 + sourcerpm: gcc-toolset-15-15.0-9.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/git-core-2.52.0-1.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 5392428 + checksum: sha256:7082917982981bf611c089e7d9d53b63e969af61a37cfd65b5c4081d5b260a1c + name: git-core + evr: 2.52.0-1.el9 + sourcerpm: git-2.52.0-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 577056 + checksum: sha256:09cdfbba4c2517445ee2512c1c5c965b7d7ebdcf05665627dee83e0d824a5cff + name: glibc-devel + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.31.1.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 2861893 + checksum: sha256:c7bc9b3d12d85dafcf2c41d080338f4871289142b7c007ad121767a38d08b5ff + name: kernel-headers + evr: 5.14.0-687.31.1.el9_8 + sourcerpm: kernel-5.14.0-687.31.1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libasan-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 409047 + checksum: sha256:854a84e72d40c2a062d112b93f8a694044fd7dc5b3afe7a869a448a12844c3e6 + name: libasan + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libedit-devel-3.1-39.20210216cvs.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 54302 + checksum: sha256:7f13c7aa8cf52c8f64c0c4e64b821d119ca9e3c4844ed8b24b377cbd90a4db33 + name: libedit-devel + evr: 3.1-39.20210216cvs.el9 + sourcerpm: libedit-3.1-39.20210216cvs.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 67120 + checksum: sha256:3763354a5f45d886f9976eec20eb34f8afc2144c69ffba07de546f2820893c70 + name: libmpc + evr: 1.2.1-4.el9 + sourcerpm: libmpc-1.2.1-4.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libomp-21.1.8-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 813991 + checksum: sha256:04dfb9a02d03b62eacde6b2855c73a54bd3297e0c33a548472fb3396cc9797f1 + name: libomp + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libomp-devel-21.1.8-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 280491 + checksum: sha256:8c205694cd8f05c51684c03d6bd753f2492ba8326ca31f993502bfa55a795f7f + name: libomp-devel + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 2520018 + checksum: sha256:5a2474c2e817b008212e5a94770d8bfbaad17e9ebba2a38d734907e594ac2aac + name: libstdc++-devel + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libubsan-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 178996 + checksum: sha256:d0adfda8f1d8ddf05a46292228e31cf887d731e7999154603e148e3d70d1f182 + name: libubsan + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 150129 + checksum: sha256:4dc8a40da74e0f9823356460ee11f183c70f382953700fffef0c448198a677cc + name: libuv + evr: 1:1.42.0-2.el9_4 + sourcerpm: libuv-1.42.0-2.el9_4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libxcrypt-devel-4.4.18-3.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 33051 + checksum: sha256:9d621f33df35b9c274b8d65457d6c67fc1522b6c62cf7b2341a4a99f39a93507 + name: libxcrypt-devel + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libzstd-devel-1.5.5-1.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 53186 + checksum: sha256:4eb008a503fdb6437022c77acef155b2822c62622cb486551d3253c28dd00660 + name: libzstd-devel + evr: 1.5.5-1.el9 + sourcerpm: zstd-1.5.5-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-21.1.8-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 24409660 + checksum: sha256:cf84a4f681a81b75922b81f462a25c1eda2329c7512c844489691b37c8367816 + name: llvm + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-devel-21.1.8-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 6394014 + checksum: sha256:c64d836b57bada150c36de67a88aea4747685f21b8b23bd4d0d0922b56381d29 + name: llvm-devel + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-filesystem-21.1.8-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 20175 + checksum: sha256:87b55002280f29f59e8452cf184307ce0ffcf613a8967f726cb5b3438ecbc70a + name: llvm-filesystem + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-googletest-21.1.8-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 474811 + checksum: sha256:62528321de99e8ccf8b82deb55a6837fac3ae6575a5d0b4ab57c79c8a7b92906 + name: llvm-googletest + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-libs-21.1.8-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 31011258 + checksum: sha256:47a47b60c922d628f7e0fa6c7e58484cd416221d6fbcd2b4708f5c901d6aecb4 + name: llvm-libs + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-static-21.1.8-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 46022845 + checksum: sha256:27e1bd90729ad393e1abf9a3dd66c5500b06d55b611d87e9c6005f9a77c90f0d + name: llvm-static + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-test-21.1.8-2.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 759720 + checksum: sha256:37e49775e95417bf1be7e4e9bdd5034c03457a218a6c3c67853c613fa6376796 + name: llvm-test + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/n/ncurses-c++-libs-6.2-12.20210508.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 36630 + checksum: sha256:925b0aded13b838171c10781d54e71060de5f4db26eff1c05525ec7a89c6f54e + name: ncurses-c++-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/n/ncurses-devel-6.2-12.20210508.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 745479 + checksum: sha256:712408157ed0145b0b179b3abf69e458a28f0095c3906179fea1a0b396feb832 + name: ncurses-devel + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/o/openssl-devel-3.5.5-6.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 5028889 + checksum: sha256:c92e750163820a817ca5562935010872f8db5ca5712a517b01beafcb87221670 + name: openssl-devel + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/policycoreutils-python-utils-3.6-5.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 84137 + checksum: sha256:fae42a122e2848cfe99736012348f9c008c4d35e818e72e590e993e58d9858ad + name: policycoreutils-python-utils + evr: 3.6-5.el9 + sourcerpm: policycoreutils-3.6-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/python3-audit-3.1.5-8.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 91000 + checksum: sha256:4bc818f51fdd6846442e1e961b83e2ba777736e1fd28519e4ffdcc8e73c49154 + name: python3-audit + evr: 3.1.5-8.el9 + sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/python3-distro-1.5.0-7.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 41452 + checksum: sha256:5cf4276217a72649895226707d4c0e3edd6ea64b66702793fab3907177c73069 + name: python3-distro + evr: 1.5.0-7.el9 + sourcerpm: python-distro-1.5.0-7.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/python3-libselinux-3.6-3.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 191826 + checksum: sha256:dcc609ec4df45a30606ce85999c9cf45e819d4f8e8479662dfaf6bfb1b27dd2d + name: python3-libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/python3-libsemanage-3.6-5.el9_6.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 82350 + checksum: sha256:1a32b9c090a98ddffe5ef70e4485dae8c295d942d87e15753e1cb5f01e23bc97 + name: python3-libsemanage + evr: 3.6-5.el9_6 + sourcerpm: libsemanage-3.6-5.el9_6.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/python3-policycoreutils-3.6-5.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 2219410 + checksum: sha256:eb5d83e26cee47b23b4b802d98cae521f41d8d0d8451a9e5029cd9b5016dd00b + name: python3-policycoreutils + evr: 3.6-5.el9 + sourcerpm: policycoreutils-3.6-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/r/rust-1.92.0-1.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 29421295 + checksum: sha256:43a1b0f5168a39ceea3fd90d42b23bc05d006d639cd35cfdad82a4f94aa58453 + name: rust + evr: 1.92.0-1.el9 + sourcerpm: rust-1.92.0-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/r/rust-std-static-1.92.0-1.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 41493155 + checksum: sha256:3b3a70a8e11f53559c4b84927ebd0565a073052bac2c53edda6cb328bfb28090 + name: rust-std-static + evr: 1.92.0-1.el9 + sourcerpm: rust-1.92.0-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/s/scl-utils-2.0.3-4.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 42050 + checksum: sha256:b7c093e050e3d127b98bd1002e46dee9cfbbc6279978aee17d7fad30b42a41ec + name: scl-utils + evr: 1:2.0.3-4.el9 + sourcerpm: scl-utils-2.0.3-4.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 128901 + checksum: sha256:11880ec70b575841843cbee0853e03e50a0506321ea0a6f76c0c8145d79ae531 + name: audit-libs + evr: 3.1.5-8.el9 + sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-2.35.2-72.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 5021411 + checksum: sha256:72e9fd9c4976413060df02e37d358fca208ab144d78e321f448a488d50967155 + name: binutils + evr: 2.35.2-72.el9 + sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-gold-2.35.2-72.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 908723 + checksum: sha256:269bb24ded2f23dcdb74c04597b13281ce6ac47a87a14831ee639d985323bd04 + name: binutils-gold + evr: 2.35.2-72.el9 + sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/diffutils-3.7-12.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 405687 + checksum: sha256:524412f7ce56095508190116cb8ae141737857e4447979330c3cf75ca7017e6b + name: diffutils + evr: 3.7-12.el9 + sourcerpm: diffutils-3.7-12.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 42824 + checksum: sha256:bbcf05d0b46d42c85807d774788edc39528a6898bd880baf11fb77729f59272d + name: elfutils-debuginfod-client + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 203006 + checksum: sha256:04ff63b7b669b16827f3688baa0be4a2782f1405db3c6d3ee03c0e4cebc2cdf2 + name: elfutils-libelf + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-libs-0.194-1.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 271645 + checksum: sha256:b90a6ad3e465995538785a2536986ad705625daf606d6258bf23d1dd29aec208 + name: elfutils-libs + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/environment-modules-5.3.0-2.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 605165 + checksum: sha256:569419a5a9256714a4d0f665ff2bada6f565bcc104479115c584cdbe897cf6bf + name: environment-modules + evr: 5.3.0-2.el9 + sourcerpm: environment-modules-5.3.0-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-2.34-274.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1813548 + checksum: sha256:0d52ce006fc399127ea7da1f2acfeed702b48ba75f5d1567491be35e1d620b09 + name: glibc + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 312799 + checksum: sha256:86d8e468d28880e34bb92a6e99a82fa2d5946d56cf2cedbb6fd9ca0cd1f65755 + name: glibc-common + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 684496 + checksum: sha256:0883e1f9ac411a052c434f7339e6929c34cf4a47330a38e036a3c15c17322fa1 + name: glibc-langpack-en + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 30937 + checksum: sha256:33a17677cc85823259a2ddd3f24887117dc95d7a9ec0af64640df6ab26ddc094 + name: glibc-minimal-langpack + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/groff-base-1.22.4-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1088949 + checksum: sha256:452cfe5372c834bb174ef1f6eed4d0aa6179420fd572163467ac9036fc7a3a1d + name: groff-base + evr: 1.22.4-10.el9 + sourcerpm: groff-1.22.4-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/info-6.7-15.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 230301 + checksum: sha256:c5ae65876c73c6f4e240081431745f5ba0a91d10a4bfb8a5d162ca3d6f039202 + name: info + evr: 6.7-15.el9 + sourcerpm: texinfo-6.7-15.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/j/jansson-2.14-1.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 50251 + checksum: sha256:7c002eb9c81bad49b8a11d9790af6220cce5fb882be7ca11335882d079d1473f + name: jansson + evr: 2.14-1.el9 + sourcerpm: jansson-2.14-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/less-590-6.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 165028 + checksum: sha256:fa762484ba40e0b7eb1c25531a66a0b578b6141cabb6f73d865c13ccdf75c1c9 + name: less + evr: 590-6.el9 + sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libatomic-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 26108 + checksum: sha256:bebe2e8fd98c64d1667e3de1eb3751b7b641bf5d0cd870ed6445fea5c4526326 + name: libatomic + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 59368 + checksum: sha256:93a2f44044ab11225b1123bc9df4f4d09c0a5f3251818e7d144ca64fd12c0957 + name: libcbor + evr: 0.7.0-5.el9 + sourcerpm: libcbor-0.7.0-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 110092 + checksum: sha256:93964f8c06574404f4a5b44781b698f556fbc22f7ae3c82d4d540619772f6816 + name: libedit + evr: 3.1-39.20210216cvs.el9 + sourcerpm: libedit-3.1-39.20210216cvs.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 100573 + checksum: sha256:e56e963635b92f407471c7c5698d602135b135bda4515ecc75ac52dd1d38c7e4 + name: libfido2 + evr: 1.13.0-2.el9 + sourcerpm: libfido2-1.13.0-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 81211 + checksum: sha256:6923218fdef581189a4b51c7ba158083597f1c6df08cae021a1d90e9d61938a9 + name: libgcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgfortran-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 435007 + checksum: sha256:dffccd2856eae33a06d19180c60cf3d6944e9e6e08712b54cf83c49d77b21903 + name: libgfortran + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 262138 + checksum: sha256:c8b3788fee442304e4158c802ff413df27d394b82f19c0f34ff43b5d3760470c + name: libgomp + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpipeline-1.5.3-4.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 52161 + checksum: sha256:32d8aea6849a815e201cdce925fb3c6de2088cfcb7f6621e93495b605abe2f13 + name: libpipeline + evr: 1.5.3-4.el9 + sourcerpm: libpipeline-1.5.3-4.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 38310 + checksum: sha256:9bdfccf6b092e0683aa6984f7c6caa737b30c0b1495e16abb03b5d1a5f8e787a + name: libpkgconf + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libselinux-utils-3.6-3.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 197588 + checksum: sha256:63fc5e8f22ddff6ae1428b6802f7cfc4ef75c50199de107abecbff3937ad0c35 + name: libselinux-utils + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 723913 + checksum: sha256:ae00c5009a2ee4682ec732cde66d3f4fcfc1a7099ba7b3701767d1748a4f2683 + name: libstdc++ + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/make-4.3-8.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 550249 + checksum: sha256:351a22b0e6744bd329b1b0f22d9c3b69a6da970b575e6c76190cc84b0fe77450 + name: make + evr: 1:4.3-8.el9 + sourcerpm: make-4.3-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/man-db-2.9.3-9.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1233088 + checksum: sha256:44d2f613bd962c7ddd7202780d648dbdb1c9030965c36e57e72ad7b2e56fd6e2 + name: man-db + evr: 2.9.3-9.el9 + sourcerpm: man-db-2.9.3-9.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 97840 + checksum: sha256:d62dfd41f9688efa2cf1ceedb96084c63e297fbdcfd1e72bc6757c730092b60c + name: ncurses-base + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 324624 + checksum: sha256:b5dd452392d2f97bb050c9f5e5376998652c567dcbd8f035d26659b1b551b5c9 + name: ncurses-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 431979 + checksum: sha256:be18971dc20baa2fc820ec357d145bc5f9dbd88fd87e04b4016d8f77183525ae + name: openssh + evr: 9.9p1-7.el9_8 + sourcerpm: openssh-9.9p1-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 768861 + checksum: sha256:37ac77703fc47951b231cab696f52f00485f0811ed893d7c68a038eef81c9d8f + name: openssh-clients + evr: 9.9p1-7.el9_8 + sourcerpm: openssh-9.9p1-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-3.5.5-6.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1541002 + checksum: sha256:9f10be36d0d532c65a3f9a41f7d0cd3190b0b908f60850862cc24cab06cd1101 + name: openssl + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 14220 + checksum: sha256:158193d2f965db318148ec76e9347b530ac1f5379d849012c0a04d3c50cda478 + name: openssl-fips-provider + evr: 3.0.7-11.el9_8 + sourcerpm: openssl-fips-provider-3.0.7-11.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 529340 + checksum: sha256:22374a51f8a529dcfcf3b3ebbb2095103e0e811a28953535e5a62e26d1233301 + name: openssl-fips-provider-so + evr: 3.0.7-11.el9_8 + sourcerpm: openssl-fips-provider-3.0.7-11.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-libs-3.5.5-6.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 2290581 + checksum: sha256:9af799c6be853cb42999a1228a2768da20a21895b7dcac111dba3be13a397b67 + name: openssl-libs + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 45196 + checksum: sha256:aa38a3951a690d721a815ea8f9b01995a85f35a8540d8075205821011d0385e6 + name: pkgconf + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-m4-1.7.3-10.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 16054 + checksum: sha256:91bafd6e06099451f60288327b275cfcc651822f6145176a157c6b0fa5131e02 + name: pkgconf-m4 + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-pkg-config-1.7.3-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 12398 + checksum: sha256:47f1f744f96a2f3d360bc129837738dcebb1ee5032effc4472a891eea1d6a907 + name: pkgconf-pkg-config + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/policycoreutils-3.6-5.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 251069 + checksum: sha256:1c94341d45d675a1d583f86e16ff91eacf7fd4d6a89a987ba2c4c4c1783d35ce + name: policycoreutils + evr: 3.6-5.el9 + sourcerpm: policycoreutils-3.6-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/procps-ng-3.3.17-14.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 363344 + checksum: sha256:a8c7514beb4c3cafa6341f43bbe285319d863b2893a34d91159dc8e90f615dd2 + name: procps-ng + evr: 3.3.17-14.el9 + sourcerpm: procps-ng-3.3.17-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-setools-4.4.4-1.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 613411 + checksum: sha256:f8e347a37155ff1b805c7d7ed1ad98db8df8fdfcf3d04c13c819e796604c892f + name: python3-setools + evr: 4.4.4-1.el9 + sourcerpm: setools-4.4.4-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tcl-8.6.10-7.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1137015 + checksum: sha256:a7cf45af14e65509a7f4d33422499372f6fb869bb82695dd4e9004e5c2e4ac1a + name: tcl + evr: 1:8.6.10-7.el9 + sourcerpm: tcl-8.6.10-7.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 22399 + checksum: sha256:9fc9ef3ba0b22a599b2a7b34bd0b025afd5f2623e9132b4ead19e98f9c62e97d + name: vim-filesystem + evr: 2:8.2.2637-26.el9_8.10 + sourcerpm: vim-8.2.2637-26.el9_8.10.src.rpm source: [] -- arch: aarch64 + module_metadata: [] +- arch: x86_64 packages: - - evra: 2.4.0-1.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/acl-2.4.0-1.el9_8.aarch64.rpm - - evra: 1.24-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/alternatives-1.24-2.el9.aarch64.rpm - - evra: 3.1.5-8.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.aarch64.rpm - - evra: 11-13.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm - - evra: 5.1.8-9.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/bash-5.1.8-9.el9.aarch64.rpm - - evra: 2.35.2-72.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-2.35.2-72.el9.aarch64.rpm - - evra: 2.35.2-72.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-gold-2.35.2-72.el9.aarch64.rpm - - evra: 1.0.8-11.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.aarch64.rpm - - evra: 2025.2.80_v9.0.305-91.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm - - evra: 3.6-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/checkpolicy-3.6-1.el9.aarch64.rpm - - evra: 21.1.8-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/clang-21.1.8-2.el9.aarch64.rpm - - evra: 21.1.8-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/clang-libs-21.1.8-2.el9.aarch64.rpm - - evra: 21.1.8-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/clang-resource-filesystem-21.1.8-2.el9.aarch64.rpm - - evra: 21.1.8-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/clang-tools-extra-21.1.8-2.el9.aarch64.rpm - - evra: 3.31.8-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-3.31.8-3.el9.aarch64.rpm - - evra: 3.31.8-3.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-data-3.31.8-3.el9.noarch.rpm - - evra: 3.31.8-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-filesystem-3.31.8-3.el9.aarch64.rpm - - evra: 3.31.8-3.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-rpm-macros-3.31.8-3.el9.noarch.rpm - - evra: 8.32-41.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.aarch64.rpm - - evra: 8.32-41.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.aarch64.rpm - - evra: 8.32-41.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-single-8.32-41.el9_8.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cpp-11.5.0-14.el9.aarch64.rpm - - evra: 2.9.6-28.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.aarch64.rpm - - evra: 2.9.6-28.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cracklib-dicts-2.9.6-28.el9.aarch64.rpm - - evra: 20260224-1.gitea0f072.el9_8.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm - - evra: 2.8.1-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cryptsetup-libs-2.8.1-3.el9.aarch64.rpm - - evra: 7.76.1-40.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/curl-7.76.1-40.el9.aarch64.rpm - - evra: 7.76.1-40.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/curl-minimal-7.76.1-40.el9.aarch64.rpm - - evra: 2.1.27-22.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.aarch64.rpm - - evra: 1.12.20-8.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-1.12.20-8.el9.aarch64.rpm - - evra: 28-7.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-broker-28-7.el9.aarch64.rpm - - evra: 1.12.20-8.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm - - evra: 1.02.207-4.el9_8.1.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/device-mapper-1.02.207-4.el9_8.1.aarch64.rpm - - evra: 1.02.207-4.el9_8.1.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/device-mapper-libs-1.02.207-4.el9_8.1.aarch64.rpm - - evra: 3.7-12.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/diffutils-3.7-12.el9.aarch64.rpm - - evra: 0.194-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.aarch64.rpm - - evra: 0.194-1.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm - - evra: 0.194-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.aarch64.rpm - - evra: 0.194-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-libs-0.194-1.el9.aarch64.rpm - - evra: 27.2-18.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/e/emacs-filesystem-27.2-18.el9.noarch.rpm - - evra: 5.3.0-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/environment-modules-5.3.0-2.el9.aarch64.rpm - - evra: 2.5.0-6.el9_8.1.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/expat-2.5.0-6.el9_8.1.aarch64.rpm - - evra: 3.16-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/f/filesystem-3.16-5.el9.aarch64.rpm - - evra: 4.8.0-7.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/f/findutils-4.8.0-7.el9.aarch64.rpm - - evra: 1.2.0-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/f/fips-provider-next-1.2.0-5.el9.aarch64.rpm - - evra: 5.1.0-6.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gawk-5.1.0-6.el9.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-11.5.0-14.el9.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-c++-11.5.0-14.el9.aarch64.rpm - - evra: 12.88-1.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-annobin-docs-12.88-1.el9.noarch.rpm - - evra: 12.88-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-annobin-plugin-gcc-12.88-1.el9.aarch64.rpm - - evra: 2.41-6.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-binutils-2.41-6.el9.aarch64.rpm - - evra: 0.14-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-dwz-0.14-1.el9.aarch64.rpm - - evra: 14.2.1-13.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-gcc-14.2.1-13.el9.aarch64.rpm - - evra: 14.2.1-13.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-gcc-c++-14.2.1-13.el9.aarch64.rpm - - evra: 14.2.1-13.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-gcc-gfortran-14.2.1-13.el9.aarch64.rpm - - evra: 14.2.1-13.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-libstdc++-devel-14.2.1-13.el9.aarch64.rpm - - evra: 14.0-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-runtime-14.0-2.el9.aarch64.rpm - - evra: 2.44-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-binutils-2.44-5.el9.aarch64.rpm - - evra: 15.2.1-7.1.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-gcc-15.2.1-7.1.el9_8.aarch64.rpm - - evra: 15.2.1-7.1.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-gcc-c++-15.2.1-7.1.el9_8.aarch64.rpm - - evra: 15.2.1-7.1.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-libstdc++-devel-15.2.1-7.1.el9_8.aarch64.rpm - - evra: 15.0-9.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-runtime-15.0-9.el9.aarch64.rpm - - evra: 1.23-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.aarch64.rpm - - evra: 2.34-274.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-2.34-274.el9_8.aarch64.rpm - - evra: 2.34-274.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-all-langpacks-2.34-274.el9_8.aarch64.rpm - - evra: 2.34-274.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.aarch64.rpm - - evra: 2.34-274.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.aarch64.rpm - - evra: 2.34-274.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-gconv-extra-2.34-274.el9_8.aarch64.rpm - - evra: 2.34-274.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.aarch64.rpm - - evra: 2.34-274.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.aarch64.rpm - - evra: 6.2.0-13.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gmp-6.2.0-13.el9.aarch64.rpm - - evra: 3.6-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/grep-3.6-5.el9.aarch64.rpm - - evra: 1.22.4-10.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/groff-base-1.22.4-10.el9.aarch64.rpm - - evra: 1.12-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-1.el9.aarch64.rpm - - evra: 6.7-15.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/info-6.7-15.el9.aarch64.rpm - - evra: 2.14-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/j/jansson-2.14-1.el9.aarch64.rpm - - evra: 0.14-11.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/j/json-c-0.14-11.el9.aarch64.rpm - - evra: 2.4.0-11.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kbd-2.4.0-11.el9.aarch64.rpm - - evra: 2.4.0-11.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kbd-legacy-2.4.0-11.el9.noarch.rpm - - evra: 2.4.0-11.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kbd-misc-2.4.0-11.el9.noarch.rpm - - evra: 5.14.0-687.31.1.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.31.1.el9_8.aarch64.rpm - - evra: 1.6.3-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.aarch64.rpm - - evra: 28-11.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kmod-28-11.el9.aarch64.rpm - - evra: 28-11.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kmod-libs-28-11.el9.aarch64.rpm - - evra: 1.21.1-10.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.aarch64.rpm - - evra: 590-6.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/less-590-6.el9.aarch64.rpm - - evra: 2.4.0-1.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libacl-2.4.0-1.el9_8.aarch64.rpm - - evra: 3.5.3-9.el9_7.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libasan-11.5.0-14.el9.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libatomic-11.5.0-14.el9.aarch64.rpm - - evra: 2.5.1-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libattr-2.5.1-3.el9.aarch64.rpm - - evra: 2.37.4-25.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.aarch64.rpm - - evra: 1.0.9-9.el9_7.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.aarch64.rpm - - evra: 2.48-10.el9_8.1.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.aarch64.rpm - - evra: 0.8.2-7.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.aarch64.rpm - - evra: 0.7.0-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.aarch64.rpm - - evra: 1.46.5-8.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.aarch64.rpm - - evra: 7.76.1-40.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.aarch64.rpm - - evra: 7.76.1-40.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-minimal-7.76.1-40.el9.aarch64.rpm - - evra: 5.3.28-57.el9_6.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.aarch64.rpm - - evra: 0.4.1-7.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libeconf-0.4.1-7.el9_8.aarch64.rpm - - evra: 3.1-39.20210216cvs.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.aarch64.rpm - - evra: 3.1-39.20210216cvs.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libedit-devel-3.1-39.20210216cvs.el9.aarch64.rpm - - evra: 2.1.12-8.el9_4.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.aarch64.rpm - - evra: 2.37.4-25.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.aarch64.rpm - - evra: 3.4.2-8.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libffi-3.4.2-8.el9.aarch64.rpm - - evra: 1.13.0-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.aarch64.rpm - - evra: 1.10.0-11.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgfortran-11.5.0-14.el9.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.aarch64.rpm - - evra: 1.42-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.aarch64.rpm - - evra: 2.3.0-7.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.aarch64.rpm - - evra: 2.37.4-25.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libmount-2.37.4-25.el9.aarch64.rpm - - evra: 1.2.1-4.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.aarch64.rpm - - evra: 1.43.0-6.el9_8.1.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.aarch64.rpm - - evra: 1.5.3-4.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpipeline-1.5.3-4.el9.aarch64.rpm - - evra: 1.7.3-10.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.aarch64.rpm - - evra: 0.21.1-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.aarch64.rpm - - evra: 1.4.4-8.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.aarch64.rpm - - evra: 2.5.2-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.aarch64.rpm - - evra: 3.6-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libselinux-3.6-3.el9.aarch64.rpm - - evra: 3.6-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libselinux-utils-3.6-3.el9.aarch64.rpm - - evra: 3.6-5.el9_6.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.aarch64.rpm - - evra: 3.6-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsepol-3.6-3.el9.aarch64.rpm - - evra: 2.13-4.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.aarch64.rpm - - evra: 2.37.4-25.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.aarch64.rpm - - evra: 0.10.4-18.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-18.el9.aarch64.rpm - - evra: 0.10.4-18.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.aarch64.rpm - - evra: 4.16.0-10.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.aarch64.rpm - - evra: 2.4.6-46.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libtool-ltdl-2.4.6-46.el9.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libubsan-11.5.0-14.el9.aarch64.rpm - - evra: 0.9.10-15.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.aarch64.rpm - - evra: 1.2.1-6.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.aarch64.rpm - - evra: 2.37.4-25.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.aarch64.rpm - - evra: 1.42.0-2.el9_4.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.aarch64.rpm - - evra: 0.3.2-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libverto-0.3.2-3.el9.aarch64.rpm - - evra: 4.4.18-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.aarch64.rpm - - evra: 4.4.18-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libxcrypt-devel-4.4.18-3.el9.aarch64.rpm - - evra: 2.9.13-14.el9_8.2.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.aarch64.rpm - - evra: 1.5.5-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm - - evra: 1.5.5-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libzstd-devel-1.5.5-1.el9.aarch64.rpm - - evra: 21.1.8-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-21.1.8-2.el9.aarch64.rpm - - evra: 21.1.8-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-devel-21.1.8-2.el9.aarch64.rpm - - evra: 21.1.8-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-filesystem-21.1.8-2.el9.aarch64.rpm - - evra: 21.1.8-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-googletest-21.1.8-2.el9.aarch64.rpm - - evra: 21.1.8-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-libs-21.1.8-2.el9.aarch64.rpm - - evra: 21.1.8-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-static-21.1.8-2.el9.aarch64.rpm - - evra: 21.1.8-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/llvm-test-21.1.8-2.el9.aarch64.rpm - - evra: 5.4.4-4.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/lua-libs-5.4.4-4.el9.aarch64.rpm - - evra: 1.9.3-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.aarch64.rpm - - evra: 4.3-8.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/make-4.3-8.el9.aarch64.rpm - - evra: 2.9.3-9.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/man-db-2.9.3-9.el9.aarch64.rpm - - evra: 4.1.0-10.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.aarch64.rpm - - evra: 6.2-12.20210508.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm - - evra: 6.2-12.20210508.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/n/ncurses-c++-libs-6.2-12.20210508.el9.aarch64.rpm - - evra: 6.2-12.20210508.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/n/ncurses-devel-6.2-12.20210508.el9.aarch64.rpm - - evra: 6.2-12.20210508.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.aarch64.rpm - - evra: 2.6.8-4.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openldap-2.6.8-4.el9.aarch64.rpm - - evra: 9.9p1-7.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.aarch64.rpm - - evra: 9.9p1-7.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.aarch64.rpm - - evra: 3.5.5-6.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-3.5.5-6.el9_8.aarch64.rpm - - evra: 3.5.5-6.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/o/openssl-devel-3.5.5-6.el9_8.aarch64.rpm - - evra: 3.0.7-11.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.aarch64.rpm - - evra: 3.0.7-11.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.aarch64.rpm - - evra: 3.5.5-6.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-libs-3.5.5-6.el9_8.aarch64.rpm - - evra: 0.26.2-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.aarch64.rpm - - evra: 0.26.2-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.aarch64.rpm - - evra: 1.5.1-28.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pam-1.5.1-28.el9.aarch64.rpm - - evra: 8.44-4.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre-8.44-4.el9.aarch64.rpm - - evra: 10.40-6.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre2-10.40-6.el9.aarch64.rpm - - evra: 10.40-6.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm - - evra: 1.7.3-10.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.aarch64.rpm - - evra: 1.7.3-10.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-m4-1.7.3-10.el9.noarch.rpm - - evra: 1.7.3-10.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-pkg-config-1.7.3-10.el9.aarch64.rpm - - evra: 3.6-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/policycoreutils-3.6-5.el9.aarch64.rpm - - evra: 3.6-5.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/policycoreutils-python-utils-3.6-5.el9.noarch.rpm - - evra: 1.18-8.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/popt-1.18-8.el9.aarch64.rpm - - evra: 3.3.17-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/procps-ng-3.3.17-14.el9.aarch64.rpm - - evra: 20210518-3.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm - - evra: 3.9.25-7.el9_8.2.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-3.9.25-7.el9_8.2.aarch64.rpm - - evra: 3.1.5-8.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/python3-audit-3.1.5-8.el9.aarch64.rpm - - evra: 1.5.0-7.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/python3-distro-1.5.0-7.el9.noarch.rpm - - evra: 3.9.25-7.el9_8.2.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-libs-3.9.25-7.el9_8.2.aarch64.rpm - - evra: 3.6-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/python3-libselinux-3.6-3.el9.aarch64.rpm - - evra: 3.6-5.el9_6.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/python3-libsemanage-3.6-5.el9_6.aarch64.rpm - - evra: 21.3.1-2.el9_8.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-pip-wheel-21.3.1-2.el9_8.noarch.rpm - - evra: 3.6-5.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/p/python3-policycoreutils-3.6-5.el9.noarch.rpm - - evra: 4.4.4-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-setools-4.4.4-1.el9.aarch64.rpm - - evra: 53.0.0-15.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-setuptools-53.0.0-15.el9.noarch.rpm - - evra: 53.0.0-15.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm - - evra: 8.1-4.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/readline-8.1-4.el9.aarch64.rpm - - evra: 9.8-1.0.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.aarch64.rpm - - evra: 4.16.1.3-40.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/rpm-4.16.1.3-40.el9.aarch64.rpm - - evra: 4.16.1.3-40.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/rpm-libs-4.16.1.3-40.el9.aarch64.rpm - - evra: 1.92.0-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/r/rust-1.92.0-1.el9.aarch64.rpm - - evra: 1.92.0-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/r/rust-std-static-1.92.0-1.el9.aarch64.rpm - - evra: 2.0.3-4.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/s/scl-utils-2.0.3-4.el9.aarch64.rpm - - evra: 4.8-10.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/sed-4.8-10.el9.aarch64.rpm - - evra: 2.13.7-10.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm - - evra: 4.9-16.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.aarch64.rpm - - evra: 3.34.1-10.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.aarch64.rpm - - evra: 252-67.el9_8.4.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-252-67.el9_8.4.aarch64.rpm - - evra: 252-67.el9_8.4.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.aarch64.rpm - - evra: 252-67.el9_8.4.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-pam-252-67.el9_8.4.aarch64.rpm - - evra: 252-67.el9_8.4.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-rpm-macros-252-67.el9_8.4.noarch.rpm - - evra: 252-67.el9_8.4.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-udev-252-67.el9_8.4.aarch64.rpm - - evra: 8.6.10-7.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tcl-8.6.10-7.el9.aarch64.rpm - - evra: 3.2.3-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tpm2-tss-3.2.3-1.el9.aarch64.rpm - - evra: 2026b-1.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm - - evra: 2.37.4-25.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.aarch64.rpm - - evra: 2.37.4-25.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-core-2.37.4-25.el9.aarch64.rpm - - evra: 8.2.2637-26.el9_8.10.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm - - evra: 5.2.5-8.el9_0.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.aarch64.rpm - - evra: 1.2.11-40.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/z/zlib-1.2.11-40.el9.aarch64.rpm - - evra: 1.92.0-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cargo-1.92.0-1.el9.aarch64.rpm - - evra: 21.1.8-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/clang-devel-21.1.8-2.el9.aarch64.rpm - - evra: 14.0-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-14-14.0-2.el9.aarch64.rpm - - evra: 2.52.0-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/git-core-2.52.0-1.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cargo-1.92.0-1.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 9100626 + checksum: sha256:3c4afc2cb56734d01aaaaa8d0c317688f6fe143ad239079342f4fe9b631ded0f + name: cargo + evr: 1.92.0-1.el9 + sourcerpm: rust-1.92.0-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/checkpolicy-3.6-1.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 365931 + checksum: sha256:3d12bc7e21276434108c97561f75d1854283afb73d4fface3b836acee09f8d98 + name: checkpolicy + evr: 3.6-1.el9 + sourcerpm: checkpolicy-3.6-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-21.1.8-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 7531133 + checksum: sha256:d1d0a8e2c3c568a0fd4551ce982f6db5de0e0675e55e4083563df7d66324129b + name: clang + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-devel-21.1.8-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 4508426 + checksum: sha256:16e04e008dbc07e4dbb6bc34ef4bbf0dc6aae119103b35ac5bce86e2e4072395 + name: clang-devel + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-libs-21.1.8-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 32793031 + checksum: sha256:0d674d34e4ade76a3e2e273b3b967979dd8678870693b2b3d5670b48354c6673 + name: clang-libs + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-resource-filesystem-21.1.8-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 25845 + checksum: sha256:d5cd22de3ab8fd0ee362d1fc7d030efbfabd573e776164987b9e92b7e88d1926 + name: clang-resource-filesystem + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-tools-extra-21.1.8-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 19688837 + checksum: sha256:bf8f41f5f6e19c5e613c2a08552a09e5d73130fdd6e8163791731217286ab715 + name: clang-tools-extra + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-3.31.8-3.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 13989883 + checksum: sha256:e67ea7aef1edd470e4ec22982e97871655abcdc0990754d4e8f147d4e7de317a + name: cmake + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-data-3.31.8-3.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 2829291 + checksum: sha256:1cdc2e88a996c575b750483c8f562674e4b50a6ab414c7bbe6f6b641c1db7bd9 + name: cmake-data + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-filesystem-3.31.8-3.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 19309 + checksum: sha256:b5ea81385a9e4e6a1ae2bb1175cd774af82f9c570a37008cde873ead466ba5f7 + name: cmake-filesystem + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/compiler-rt-21.1.8-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 2887211 + checksum: sha256:29303ae9c424f796f2c82751bfd05ef273175a6850904956f13100f9dab90f3a + name: compiler-rt + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cpp-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 11226193 + checksum: sha256:3c0ee1cb8b72f3f5176f8945ab518eb733ccc9f950d317fb5d5ac327d0eb9c90 + name: cpp + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/e/emacs-filesystem-27.2-18.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 9495 + checksum: sha256:49d7b88a05a72c15b78191a987e6def04fda8e2e4ff75711f715d0c0ecadc60f + name: emacs-filesystem + evr: 1:27.2-18.el9 + sourcerpm: emacs-27.2-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 33982584 + checksum: sha256:2082784165bbb246b6e5ef5921ed823f0a9709cacdf5823aa60695fd6d4819a2 + name: gcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-c++-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 13474286 + checksum: sha256:b073d8965ad8eed7520a2a1c9b7c961232511ad9188dcc8c92356160a9d51e37 + name: gcc-c++ + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-14.0-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 10548 + checksum: sha256:fd91c081a55265fe32d33db984799fad71776a58b385d2fab5573c69b5b9bf90 + name: gcc-toolset-14 + evr: 14.0-2.el9 + sourcerpm: gcc-toolset-14-14.0-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-annobin-docs-12.88-1.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 89636 + checksum: sha256:80d5c6c300561524fb2f855fce1867546d4452ea5c72cfb5d53f2117153e9805 + name: gcc-toolset-14-annobin-docs + evr: 12.88-1.el9 + sourcerpm: gcc-toolset-14-annobin-12.88-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-annobin-plugin-gcc-12.88-1.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 1001848 + checksum: sha256:0e5d40903d0dbd89956f16c78ad40341dc8dd3da7fb55000cca7bb5f09333086 + name: gcc-toolset-14-annobin-plugin-gcc + evr: 12.88-1.el9 + sourcerpm: gcc-toolset-14-annobin-12.88-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-binutils-2.41-6.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 6901423 + checksum: sha256:5decfcda1ae0231cd9c13706c4c0d7d816d2e8c1bbe3a291721df29c5a81a832 + name: gcc-toolset-14-binutils + evr: 2.41-6.el9 + sourcerpm: gcc-toolset-14-binutils-2.41-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-dwz-0.14-1.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 130028 + checksum: sha256:401e7ffc147e0b640c54160ad884fa0ff8aaf2f853844efa4089449bee724593 + name: gcc-toolset-14-dwz + evr: 0.14-1.el9 + sourcerpm: gcc-toolset-14-dwz-0.14-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-gcc-14.2.1-13.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 49276047 + checksum: sha256:88394bf3285516aafeb46142137eef4cfcbaec6dea65069300fa83b1b9591212 + name: gcc-toolset-14-gcc + evr: 14.2.1-13.el9 + sourcerpm: gcc-toolset-14-gcc-14.2.1-13.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-gcc-c++-14.2.1-13.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 15461951 + checksum: sha256:58526a393176dfb8e09febeec740e83184cb516071789640544a016c38900dec + name: gcc-toolset-14-gcc-c++ + evr: 14.2.1-13.el9 + sourcerpm: gcc-toolset-14-gcc-14.2.1-13.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-gcc-gfortran-14.2.1-13.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 16316399 + checksum: sha256:cfe1f8d7b41dff526d0f4557d2a174a0ca3316f09b598af00e707318941ff3c6 + name: gcc-toolset-14-gcc-gfortran + evr: 14.2.1-13.el9 + sourcerpm: gcc-toolset-14-gcc-14.2.1-13.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-libquadmath-devel-14.2.1-13.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 199281 + checksum: sha256:b87c01a01aca2e966d43510928f6474a1cbb5d19cffab5932c36e1f184f428e2 + name: gcc-toolset-14-libquadmath-devel + evr: 14.2.1-13.el9 + sourcerpm: gcc-toolset-14-gcc-14.2.1-13.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-libstdc++-devel-14.2.1-13.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 3828722 + checksum: sha256:56127110cd31f460a4cc4b42477459ad546fba010a170b3c35ca6b0922595311 + name: gcc-toolset-14-libstdc++-devel + evr: 14.2.1-13.el9 + sourcerpm: gcc-toolset-14-gcc-14.2.1-13.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-14-runtime-14.0-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 58568 + checksum: sha256:fd93bde11241e6ed3c9dbfad9ce9a9683645b9242ab679a7c7daeb314fdc3367 + name: gcc-toolset-14-runtime + evr: 14.0-2.el9 + sourcerpm: gcc-toolset-14-14.0-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-binutils-2.44-5.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 6198721 + checksum: sha256:6d230ef471ed2995ea3cb5eed9780e7f17f4ba95988f41acff3756007978d89d + name: gcc-toolset-15-binutils + evr: 2.44-5.el9 + sourcerpm: gcc-toolset-15-binutils-2.44-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-gcc-15.2.1-7.1.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 54282132 + checksum: sha256:64fea64a38e095f75e929e0cf0e85a93bb978dc2afe0cd83f4af5415549fc259 + name: gcc-toolset-15-gcc + evr: 15.2.1-7.1.el9_8 + sourcerpm: gcc-toolset-15-gcc-15.2.1-7.1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-gcc-c++-15.2.1-7.1.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 17108710 + checksum: sha256:bc0a9ab7188a36a022047d1f83a3b80d5c6b29b8762250726391990a6cf47dba + name: gcc-toolset-15-gcc-c++ + evr: 15.2.1-7.1.el9_8 + sourcerpm: gcc-toolset-15-gcc-15.2.1-7.1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-libatomic-devel-15.2.1-7.1.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 37347 + checksum: sha256:ef7ccc962fd7219318a6b824614a4c77599cfa110724507c687b83a999b6a773 + name: gcc-toolset-15-libatomic-devel + evr: 15.2.1-7.1.el9_8 + sourcerpm: gcc-toolset-15-gcc-15.2.1-7.1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-libstdc++-devel-15.2.1-7.1.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 3994173 + checksum: sha256:ea2e288330c49cd34dde9c681957ee9deac567eb1c7d235f72abebee987d4569 + name: gcc-toolset-15-libstdc++-devel + evr: 15.2.1-7.1.el9_8 + sourcerpm: gcc-toolset-15-gcc-15.2.1-7.1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-runtime-15.0-9.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 54379 + checksum: sha256:61549a047ab9510897119b3d7191be6f1a2d4ddaa45163a08e82daa0e653c0bf + name: gcc-toolset-15-runtime + evr: 15.0-9.el9 + sourcerpm: gcc-toolset-15-15.0-9.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/git-core-2.52.0-1.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 5293286 + checksum: sha256:6264aa556d583604f34def3674f5830a70cfee0aac283719e4df295db38acb53 + name: git-core + evr: 2.52.0-1.el9 + sourcerpm: git-2.52.0-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 46571 + checksum: sha256:e6176ffaf004619a3c4c6d69fc3499a90697cfea221c46e014d605e452bb859d + name: glibc-devel + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-headers-2.34-274.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 567160 + checksum: sha256:98c8a2b2939f7decf299713dd4625c1ca1e8a3b536d6607db3cde04e32799bcd + name: glibc-headers + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.31.1.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 2901125 + checksum: sha256:f9c558adfc811feb7c1d2461c5a0a4646bbf1b77e5cc079eb66cee6992b3d88d + name: kernel-headers + evr: 5.14.0-687.31.1.el9_8 + sourcerpm: kernel-5.14.0-687.31.1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libedit-devel-3.1-39.20210216cvs.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 54318 + checksum: sha256:2ffb25f591c2df48d9c2b189c925cc1d2930e998239a8aa21fefad852d22a6a9 + name: libedit-devel + evr: 3.1-39.20210216cvs.el9 + sourcerpm: libedit-3.1-39.20210216cvs.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 66075 + checksum: sha256:b97b4e98c3c6f41dcfc2ceb4ffa1aba7a338b7cfd9e6c4f63e3160dd3cc033d3 + name: libmpc + evr: 1.2.1-4.el9 + sourcerpm: libmpc-1.2.1-4.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libomp-21.1.8-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 863958 + checksum: sha256:8953b4c466290476f82836fa204bccef5760d01fe1120c8691c8aa8f42d35642 + name: libomp + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libomp-devel-21.1.8-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 280569 + checksum: sha256:c488e65e6a3298ec444eba093b0a40b2173633ff3953ac5f25f7da8ef593e1da + name: libomp-devel + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 2524816 + checksum: sha256:2d031d05fe073adc74919b8372763ae322615d9df23f4a2c642050ab4b389ce5 + name: libstdc++-devel + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 154427 + checksum: sha256:e1fab39251239ccaad2fb4dbe6c55ec1ae60f76d4ae81582b06e6a58e30879b2 + name: libuv + evr: 1:1.42.0-2.el9_4 + sourcerpm: libuv-1.42.0-2.el9_4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libxcrypt-devel-4.4.18-3.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 33101 + checksum: sha256:c1d171391a7d2e043a6953efd3df3e01edc9b4c6cdb54517e1608d204a5fce18 + name: libxcrypt-devel + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libzstd-devel-1.5.5-1.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 53219 + checksum: sha256:5eff37e589fce787982840ace9bd4fa9a869287b186727be87d829e525e16624 + name: libzstd-devel + evr: 1.5.5-1.el9 + sourcerpm: zstd-1.5.5-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-21.1.8-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 25095576 + checksum: sha256:f8c20cee6bf4384b2e7f878c4497471f93f2335e07a31fc692e479ed72301a12 + name: llvm + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-devel-21.1.8-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 6395510 + checksum: sha256:e921941858f2e6cea6665bbb12c3856d1f6fec2cad215538dcd1ad3a6652c64b + name: llvm-devel + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-filesystem-21.1.8-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 20224 + checksum: sha256:b54fc55927e26da6954bbf9a396735a2a29383b15fe9e3d70b9d24cd90b1c500 + name: llvm-filesystem + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-googletest-21.1.8-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 472823 + checksum: sha256:67371a6df47643a3881eaeaf5ac490639953b14dd1b21b66fb73dc677e0f17df + name: llvm-googletest + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-libs-21.1.8-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 32586819 + checksum: sha256:6c71c84a680f89a551b312eac90c9ae2899c3bdfaacdc809e39d7da968657d5a + name: llvm-libs + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-static-21.1.8-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 47099677 + checksum: sha256:017f7ceabd6fd81e284b3506b220785b44928c852de13d0d1da1a07d6778d391 + name: llvm-static + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-test-21.1.8-2.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 774709 + checksum: sha256:e9461f6b89564ba94cc6bee94e480d6aeffd4bca4d913fea2f2a6d4e01677f5d + name: llvm-test + evr: 21.1.8-2.el9 + sourcerpm: llvm-21.1.8-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/n/ncurses-c++-libs-6.2-12.20210508.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 38116 + checksum: sha256:e9538f14a6430ca3a637ff753a421cb5ba6fae5594ad5178ce90b81d7be6a230 + name: ncurses-c++-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/n/ncurses-devel-6.2-12.20210508.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 745592 + checksum: sha256:c5edeb1aebfe38d19b91b493503efccbc8baebbef505023e114ee51547985a9d + name: ncurses-devel + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/o/openssl-devel-3.5.5-6.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 5029526 + checksum: sha256:84e54b3467ecfe70c75688f28dbc0e071e268d845db17b28a1f35a35d45640cd + name: openssl-devel + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/policycoreutils-python-utils-3.6-5.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 84137 + checksum: sha256:fae42a122e2848cfe99736012348f9c008c4d35e818e72e590e993e58d9858ad + name: policycoreutils-python-utils + evr: 3.6-5.el9 + sourcerpm: policycoreutils-3.6-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-audit-3.1.5-8.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 90891 + checksum: sha256:493229df98414e566fd0e16e06058e7902329f0b188ced24c8d434d2e097ec82 + name: python3-audit + evr: 3.1.5-8.el9 + sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-distro-1.5.0-7.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 41452 + checksum: sha256:5cf4276217a72649895226707d4c0e3edd6ea64b66702793fab3907177c73069 + name: python3-distro + evr: 1.5.0-7.el9 + sourcerpm: python-distro-1.5.0-7.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-libselinux-3.6-3.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 196472 + checksum: sha256:7af821a0ee7c7b56df79de25fe35cc2d0fd6f45df5c3bcec2c5e72d7378ba265 + name: python3-libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-libsemanage-3.6-5.el9_6.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 82730 + checksum: sha256:8a17df19f0ff5dbb98fe608999cb2370983d8565658df01d0993b3028cbf28d6 + name: python3-libsemanage + evr: 3.6-5.el9_6 + sourcerpm: libsemanage-3.6-5.el9_6.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-policycoreutils-3.6-5.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 2219410 + checksum: sha256:eb5d83e26cee47b23b4b802d98cae521f41d8d0d8451a9e5029cd9b5016dd00b + name: python3-policycoreutils + evr: 3.6-5.el9 + sourcerpm: policycoreutils-3.6-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/r/rust-1.92.0-1.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 31511504 + checksum: sha256:fbc70b11f38999206d70a104789d1f7f21ca9f9090c7a73d6db337bff4f5205b + name: rust + evr: 1.92.0-1.el9 + sourcerpm: rust-1.92.0-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/r/rust-std-static-1.92.0-1.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 42991765 + checksum: sha256:d286394aaa75a796a06db130d2a980bee8e6ab4cbaa38a3b84e12379fbae4671 + name: rust-std-static + evr: 1.92.0-1.el9 + sourcerpm: rust-1.92.0-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/s/scl-utils-2.0.3-4.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 42223 + checksum: sha256:164d245bec95c7dcbba881fd88ee567bc6d5859329c91ae05a6ad5429700bdbc + name: scl-utils + evr: 1:2.0.3-4.el9 + sourcerpm: scl-utils-2.0.3-4.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 130600 + checksum: sha256:637ac2995ce1a6c222772b60f6bc6e6f2829355d2c88dfb1262fb76146d985ae + name: audit-libs + evr: 3.1.5-8.el9 + sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-2.35.2-72.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 4821853 + checksum: sha256:bda706d43bf47267e31db8ac62fe3206122f97ff035daa6c93ce9cd5063a63ca + name: binutils + evr: 2.35.2-72.el9 + sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-gold-2.35.2-72.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 758393 + checksum: sha256:4d429d1030d8e1c610ba5aea83f8c63090033f440b2c8f788f0e0acd4a3c51b3 + name: binutils-gold + evr: 2.35.2-72.el9 + sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/diffutils-3.7-12.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 411559 + checksum: sha256:2d4c4fdfc10215af3c957c24995b79a26e27e6d76de4ed1f5198d25bf7ef9671 + name: diffutils + evr: 3.7-12.el9 + sourcerpm: diffutils-3.7-12.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 43826 + checksum: sha256:1635fd1ecaa9492fa925956dfd56d10063ca336619218f124ab45df0a38b41b0 + name: elfutils-debuginfod-client + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 205864 + checksum: sha256:00bbe4776149d8ccedcdf19dd6ceb08c3bb42ff41b98d744abe101af0b11a6c5 + name: elfutils-libelf + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-libs-0.194-1.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 274670 + checksum: sha256:ad4f6d425cbc975cead56a2c982e38b0146d00944cbd9b3072d3d1f1271237a5 + name: elfutils-libs + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/environment-modules-5.3.0-2.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 604214 + checksum: sha256:abee5229dce8c09f567626c0a6d741e8e3b30f8fd54d860365a25bec901cd680 + name: environment-modules + evr: 5.3.0-2.el9 + sourcerpm: environment-modules-5.3.0-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-2.34-274.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 2083155 + checksum: sha256:3a68581527ea2aa67a57610951bd9722019cc32db691cace00dc7478cab312ec + name: glibc + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 321676 + checksum: sha256:d741ab036ed8b97022052adb291a749a0ca1d5e492bd906aa7da95af9866bd2b + name: glibc-common + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 684459 + checksum: sha256:1491343a7653599e4fbea03780731c6777df85dc998bafb237658cde3728b663 + name: glibc-langpack-en + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 30969 + checksum: sha256:da6b677193283cedf470f17894638ef1a633c114e4b51464c49548a19166a68e + name: glibc-minimal-langpack + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/groff-base-1.22.4-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1133828 + checksum: sha256:4d8ff13569b3b231b3fb847e9e22615c6e08215d1f2c0c78eac2e345b9efd394 + name: groff-base + evr: 1.22.4-10.el9 + sourcerpm: groff-1.22.4-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/info-6.7-15.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 233806 + checksum: sha256:3643f98b45cc973073096608aaa45976d722fe284590ff7c1d5f93ad77ba0f8b + name: info + evr: 6.7-15.el9 + sourcerpm: texinfo-6.7-15.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/jansson-2.14-1.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 49137 + checksum: sha256:4e9aec51ee46d7265d6edd1245b5d5ab5e8336dc2a4ca17f2cace2ce8bae3761 + name: jansson + evr: 2.14-1.el9 + sourcerpm: jansson-2.14-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/less-590-6.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 166025 + checksum: sha256:5bd040f9dd813167935fc390d546c119d90e0a9c77447a3d9ed1ef69c6f5a32a + name: less + evr: 590-6.el9 + sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libatomic-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 23497 + checksum: sha256:737264639167a5806a10f2057d77f5a47f38931a83518218dc40f5d8392f1c2b + name: libatomic + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 60575 + checksum: sha256:588e8736af3376abfb3cdf372c10baef02c40d916a55958f3bee9767f9ad8526 + name: libcbor + evr: 0.7.0-5.el9 + sourcerpm: libcbor-0.7.0-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 112056 + checksum: sha256:65a730688dfea27934b75af3acf30150c6d254c89d8b68b63233ae7f8b6c9b94 + name: libedit + evr: 3.1-39.20210216cvs.el9 + sourcerpm: libedit-3.1-39.20210216cvs.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 102746 + checksum: sha256:6da940c0528f3e4453db84cb85b402c8f4293a197b1921158df9651edb4845e0 + name: libfido2 + evr: 1.13.0-2.el9 + sourcerpm: libfido2-1.13.0-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 87280 + checksum: sha256:77c66827ffc14df2f43612b26128b1fd58d5c9597d4d4e564aa239b161272872 + name: libgcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgfortran-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 813380 + checksum: sha256:11d2f1c6c2ca35bdf7e866e80615d17d10601bc512905c8ef4f74ff8b0a3015a + name: libgfortran + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 263723 + checksum: sha256:87b9a7316760374111290e6e4c76ee4d093566f08a7c7c91ad7827c5948afb69 + name: libgomp + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpipeline-1.5.3-4.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 52912 + checksum: sha256:c972030a8fbaa2d981f0e5fdfc42d6d5173dd047c94d86ab7732e3e53fc4e97a + name: libpipeline + evr: 1.5.3-4.el9 + sourcerpm: libpipeline-1.5.3-4.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 38387 + checksum: sha256:4feae5941b73640bd86b8d506a657cac5b770043db1464fbcd207721b2159dda + name: libpkgconf + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libquadmath-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 188925 + checksum: sha256:6fd5a850dc8e0a5b17c95089a8da0319beb8bf6ba68b633366d509458b332448 + name: libquadmath + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libselinux-utils-3.6-3.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 198410 + checksum: sha256:e5d79885864cd5b2a307065b43ba1af1523ec7ac26eace2717c70ede1b6e4c56 + name: libselinux-utils + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 763021 + checksum: sha256:513df35338962e053052b9d52429e8a5f3d60dfe6b1757cd9faaf61d6abda955 + name: libstdc++ + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/make-4.3-8.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 553896 + checksum: sha256:561f0c2251e9217c81a6c88de4d2d9231a039aaab37e8a0d2559d36ce9fa85fd + name: make + evr: 1:4.3-8.el9 + sourcerpm: make-4.3-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/man-db-2.9.3-9.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1239738 + checksum: sha256:e808c97dbacfb05e1d9096fb062e1851201307ac80b63f57b561c9234141f550 + name: man-db + evr: 2.9.3-9.el9 + sourcerpm: man-db-2.9.3-9.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 97840 + checksum: sha256:d62dfd41f9688efa2cf1ceedb96084c63e297fbdcfd1e72bc6757c730092b60c + name: ncurses-base + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 336270 + checksum: sha256:f3e1f8e59c7116278aa19b6705a1443f6307d4d6fbdde75a23d2f5d60636cb16 + name: ncurses-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 442163 + checksum: sha256:e699c3fd161d4741658320f10064bb82ab7530d07d3d34850142ccc102ce7c82 + name: openssh + evr: 9.9p1-7.el9_8 + sourcerpm: openssh-9.9p1-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 798466 + checksum: sha256:5663973f870ce57e55bb94e94b84ff020d6b24cbaabdca9fed99665f6513c847 + name: openssh-clients + evr: 9.9p1-7.el9_8 + sourcerpm: openssh-9.9p1-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-3.5.5-6.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1564334 + checksum: sha256:1c502507f42674119318b66b111448f618efe2767a55edde5fadddcecb47ac64 + name: openssl + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 14256 + checksum: sha256:c00860e9c5a1d90488aa2eb65fe41f62926b38c6b3669d331a8b97e4a60223ac + name: openssl-fips-provider + evr: 3.0.7-11.el9_8 + sourcerpm: openssl-fips-provider-3.0.7-11.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 595008 + checksum: sha256:60d36ad3a67d6b00e67bb0a19c0902fbb2ecdd873cf7f280a3039d04a092790c + name: openssl-fips-provider-so + evr: 3.0.7-11.el9_8 + sourcerpm: openssl-fips-provider-3.0.7-11.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-libs-3.5.5-6.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 2427181 + checksum: sha256:a289cdf4da547031cd39a4f31decd0bb22649bbcb5fe4f88b939d341a83708be + name: openssl-libs + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 45675 + checksum: sha256:bb47b4ecc499c308f41031a99e723827d152d5d750f59849d0c265d820944a26 + name: pkgconf + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-m4-1.7.3-10.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 16054 + checksum: sha256:91bafd6e06099451f60288327b275cfcc651822f6145176a157c6b0fa5131e02 + name: pkgconf-m4 + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-pkg-config-1.7.3-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 12438 + checksum: sha256:9a502d81d73d3303ceb53a06ad7ce525c97117ea64352174a33708bf3429283d + name: pkgconf-pkg-config + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/policycoreutils-3.6-5.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 250930 + checksum: sha256:fffd2206493e48409306c0494f53a549fb5e2944a7f53ad7377ed76a4b28f671 + name: policycoreutils + evr: 3.6-5.el9 + sourcerpm: policycoreutils-3.6-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/procps-ng-3.3.17-14.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 361526 + checksum: sha256:506ad778f63821e8d9647ca8e0a3ff21b8af9c1666060d5200f9b26ee718333c + name: procps-ng + evr: 3.3.17-14.el9 + sourcerpm: procps-ng-3.3.17-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-setools-4.4.4-1.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 623460 + checksum: sha256:91946d729d2b03b4abe1c43962f22d110468db0163241cda7b1d549c615d0261 + name: python3-setools + evr: 4.4.4-1.el9 + sourcerpm: setools-4.4.4-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tcl-8.6.10-7.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1152092 + checksum: sha256:2062dce4bed26d3684de4dad68f32307ebacf5c7d50d3aa7bf6470e66fb36df5 + name: tcl + evr: 1:8.6.10-7.el9 + sourcerpm: tcl-8.6.10-7.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 22399 + checksum: sha256:9fc9ef3ba0b22a599b2a7b34bd0b025afd5f2623e9132b4ead19e98f9c62e97d + name: vim-filesystem + evr: 2:8.2.2637-26.el9_8.10 + sourcerpm: vim-8.2.2637-26.el9_8.10.src.rpm source: [] -lockfileVendor: redhat -lockfileVersion: 1 + module_metadata: [] diff --git a/deploy/konflux/supervisor/rpms.lock.yaml b/deploy/konflux/supervisor/rpms.lock.yaml index f06d1f7793..99e5902c60 100644 --- a/deploy/konflux/supervisor/rpms.lock.yaml +++ b/deploy/konflux/supervisor/rpms.lock.yaml @@ -1,717 +1,1055 @@ +--- +lockfileVersion: 1 +lockfileVendor: redhat arches: -- arch: x86_64 +- arch: aarch64 packages: - - evra: 2.4.0-1.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/acl-2.4.0-1.el9_8.x86_64.rpm - - evra: 1.24-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/alternatives-1.24-2.el9.x86_64.rpm - - evra: 3.1.5-8.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.x86_64.rpm - - evra: 11-13.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm - - evra: 5.1.8-9.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/bash-5.1.8-9.el9.x86_64.rpm - - evra: 2.35.2-72.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-2.35.2-72.el9.x86_64.rpm - - evra: 2.35.2-72.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-gold-2.35.2-72.el9.x86_64.rpm - - evra: 1.0.8-11.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.x86_64.rpm - - evra: 2025.2.80_v9.0.305-91.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm - - evra: 3.31.8-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-3.31.8-3.el9.x86_64.rpm - - evra: 3.31.8-3.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-data-3.31.8-3.el9.noarch.rpm - - evra: 3.31.8-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-filesystem-3.31.8-3.el9.x86_64.rpm - - evra: 3.31.8-3.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-rpm-macros-3.31.8-3.el9.noarch.rpm - - evra: 8.32-41.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.x86_64.rpm - - evra: 8.32-41.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.x86_64.rpm - - evra: 8.32-41.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-single-8.32-41.el9_8.x86_64.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cpp-11.5.0-14.el9.x86_64.rpm - - evra: 2.9.6-28.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.x86_64.rpm - - evra: 2.9.6-28.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cracklib-dicts-2.9.6-28.el9.x86_64.rpm - - evra: 20260224-1.gitea0f072.el9_8.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm - - evra: 2.8.1-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cryptsetup-libs-2.8.1-3.el9.x86_64.rpm - - evra: 7.76.1-40.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/curl-7.76.1-40.el9.x86_64.rpm - - evra: 7.76.1-40.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/curl-minimal-7.76.1-40.el9.x86_64.rpm - - evra: 2.1.27-22.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.x86_64.rpm - - evra: 1.12.20-8.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-1.12.20-8.el9.x86_64.rpm - - evra: 28-7.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-broker-28-7.el9.x86_64.rpm - - evra: 1.12.20-8.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm - - evra: 1.02.207-4.el9_8.1.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/device-mapper-1.02.207-4.el9_8.1.x86_64.rpm - - evra: 1.02.207-4.el9_8.1.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/device-mapper-libs-1.02.207-4.el9_8.1.x86_64.rpm - - evra: 0.194-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.x86_64.rpm - - evra: 0.194-1.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm - - evra: 0.194-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.x86_64.rpm - - evra: 0.194-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-libs-0.194-1.el9.x86_64.rpm - - evra: 27.2-18.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/e/emacs-filesystem-27.2-18.el9.noarch.rpm - - evra: 2.5.0-6.el9_8.1.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/expat-2.5.0-6.el9_8.1.x86_64.rpm - - evra: 3.16-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/f/filesystem-3.16-5.el9.x86_64.rpm - - evra: 4.8.0-7.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/f/findutils-4.8.0-7.el9.x86_64.rpm - - evra: 1.2.0-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/f/fips-provider-next-1.2.0-5.el9.x86_64.rpm - - evra: 5.1.0-6.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gawk-5.1.0-6.el9.x86_64.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-11.5.0-14.el9.x86_64.rpm - - evra: 1.23-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-2.34-274.el9_8.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-all-langpacks-2.34-274.el9_8.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-gconv-extra-2.34-274.el9_8.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-headers-2.34-274.el9_8.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.x86_64.rpm - - evra: 2.34-274.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.x86_64.rpm - - evra: 6.2.0-13.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gmp-6.2.0-13.el9.x86_64.rpm - - evra: 3.6-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/grep-3.6-5.el9.x86_64.rpm - - evra: 1.12-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-1.el9.x86_64.rpm - - evra: 1.8.10-11.el9_5.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/iptables-libs-1.8.10-11.el9_5.x86_64.rpm - - evra: 2.14-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/jansson-2.14-1.el9.x86_64.rpm - - evra: 0.14-11.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/json-c-0.14-11.el9.x86_64.rpm - - evra: 2.4.0-11.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kbd-2.4.0-11.el9.x86_64.rpm - - evra: 2.4.0-11.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kbd-legacy-2.4.0-11.el9.noarch.rpm - - evra: 2.4.0-11.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kbd-misc-2.4.0-11.el9.noarch.rpm - - evra: 5.14.0-687.30.1.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.30.1.el9_8.x86_64.rpm - - evra: 1.6.3-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.x86_64.rpm - - evra: 28-11.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kmod-28-11.el9.x86_64.rpm - - evra: 28-11.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kmod-libs-28-11.el9.x86_64.rpm - - evra: 1.21.1-10.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.x86_64.rpm - - evra: 590-6.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/less-590-6.el9.x86_64.rpm - - evra: 2.4.0-1.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libacl-2.4.0-1.el9_8.x86_64.rpm - - evra: 3.5.3-9.el9_7.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.x86_64.rpm - - evra: 2.5.1-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libattr-2.5.1-3.el9.x86_64.rpm - - evra: 2.37.4-25.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.x86_64.rpm - - evra: 1.5.0-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libbpf-1.5.0-3.el9.x86_64.rpm - - evra: 1.0.9-9.el9_7.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.x86_64.rpm - - evra: 2.48-10.el9_8.1.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.x86_64.rpm - - evra: 0.8.2-7.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.x86_64.rpm - - evra: 0.7.0-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.x86_64.rpm - - evra: 1.46.5-8.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.x86_64.rpm - - evra: 7.76.1-40.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.x86_64.rpm - - evra: 7.76.1-40.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-minimal-7.76.1-40.el9.x86_64.rpm - - evra: 5.3.28-57.el9_6.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.x86_64.rpm - - evra: 0.4.1-7.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libeconf-0.4.1-7.el9_8.x86_64.rpm - - evra: 3.1-39.20210216cvs.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.x86_64.rpm - - evra: 2.1.12-8.el9_4.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.x86_64.rpm - - evra: 2.37.4-25.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.x86_64.rpm - - evra: 3.4.2-8.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libffi-3.4.2-8.el9.x86_64.rpm - - evra: 1.13.0-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.x86_64.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.x86_64.rpm - - evra: 1.10.0-11.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.x86_64.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.x86_64.rpm - - evra: 1.42-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.x86_64.rpm - - evra: 2.3.0-7.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.x86_64.rpm - - evra: 1.0.4-16.el9_4.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libmnl-1.0.4-16.el9_4.x86_64.rpm - - evra: 2.37.4-25.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libmount-2.37.4-25.el9.x86_64.rpm - - evra: 1.2.1-4.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.x86_64.rpm - - evra: 1.0.9-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnetfilter_conntrack-1.0.9-1.el9.x86_64.rpm - - evra: 1.0.1-23.el9_5.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnfnetlink-1.0.1-23.el9_5.x86_64.rpm - - evra: 1.2.6-4.el9_4.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnftnl-1.2.6-4.el9_4.x86_64.rpm - - evra: 1.43.0-6.el9_8.1.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.x86_64.rpm - - evra: 1.7.3-10.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.x86_64.rpm - - evra: 0.21.1-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.x86_64.rpm - - evra: 1.4.4-8.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.x86_64.rpm - - evra: 2.5.2-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.x86_64.rpm - - evra: 3.6-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libselinux-3.6-3.el9.x86_64.rpm - - evra: 3.6-5.el9_6.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.x86_64.rpm - - evra: 3.6-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsepol-3.6-3.el9.x86_64.rpm - - evra: 2.13-4.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.x86_64.rpm - - evra: 2.37.4-25.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.x86_64.rpm - - evra: 0.10.4-18.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-18.el9.x86_64.rpm - - evra: 0.10.4-18.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.x86_64.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.x86_64.rpm - - evra: 4.16.0-10.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.x86_64.rpm - - evra: 2.4.6-46.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libtool-ltdl-2.4.6-46.el9.x86_64.rpm - - evra: 0.9.10-15.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.x86_64.rpm - - evra: 1.2.1-6.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.x86_64.rpm - - evra: 2.37.4-25.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.x86_64.rpm - - evra: 1.42.0-2.el9_4.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.x86_64.rpm - - evra: 0.3.2-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libverto-0.3.2-3.el9.x86_64.rpm - - evra: 4.4.18-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.x86_64.rpm - - evra: 4.4.18-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libxcrypt-devel-4.4.18-3.el9.x86_64.rpm - - evra: 2.9.13-14.el9_8.2.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.x86_64.rpm - - evra: 1.5.5-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm - - evra: 5.4.4-4.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/lua-libs-5.4.4-4.el9.x86_64.rpm - - evra: 1.9.3-5.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.x86_64.rpm - - evra: 4.3-8.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/make-4.3-8.el9.x86_64.rpm - - evra: 4.1.0-10.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.x86_64.rpm - - evra: 6.2-12.20210508.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm - - evra: 6.2-12.20210508.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.x86_64.rpm - - evra: 2.6.8-4.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openldap-2.6.8-4.el9.x86_64.rpm - - evra: 9.9p1-7.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.x86_64.rpm - - evra: 9.9p1-7.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.x86_64.rpm - - evra: 3.5.5-5.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-3.5.5-5.el9_8.x86_64.rpm - - evra: 3.5.5-5.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/o/openssl-devel-3.5.5-5.el9_8.x86_64.rpm - - evra: 3.0.7-11.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.x86_64.rpm - - evra: 3.0.7-11.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.x86_64.rpm - - evra: 3.5.5-5.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-libs-3.5.5-5.el9_8.x86_64.rpm - - evra: 0.26.2-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.x86_64.rpm - - evra: 0.26.2-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.x86_64.rpm - - evra: 1.5.1-28.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pam-1.5.1-28.el9.x86_64.rpm - - evra: 8.44-4.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre-8.44-4.el9.x86_64.rpm - - evra: 10.40-6.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre2-10.40-6.el9.x86_64.rpm - - evra: 10.40-6.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm - - evra: 1.7.3-10.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.x86_64.rpm - - evra: 1.7.3-10.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-m4-1.7.3-10.el9.noarch.rpm - - evra: 1.7.3-10.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-pkg-config-1.7.3-10.el9.x86_64.rpm - - evra: 1.18-8.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/popt-1.18-8.el9.x86_64.rpm - - evra: 23.4-3.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/psmisc-23.4-3.el9.x86_64.rpm - - evra: 20210518-3.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm - - evra: 3.9.25-7.el9_8.2.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-3.9.25-7.el9_8.2.x86_64.rpm - - evra: 3.9.25-7.el9_8.2.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-libs-3.9.25-7.el9_8.2.x86_64.rpm - - evra: 21.3.1-2.el9_8.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-pip-wheel-21.3.1-2.el9_8.noarch.rpm - - evra: 53.0.0-15.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm - - evra: 8.1-4.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/readline-8.1-4.el9.x86_64.rpm - - evra: 9.8-1.0.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.x86_64.rpm - - evra: 4.16.1.3-40.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/rpm-4.16.1.3-40.el9.x86_64.rpm - - evra: 4.16.1.3-40.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/rpm-libs-4.16.1.3-40.el9.x86_64.rpm - - evra: 4.8-10.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/sed-4.8-10.el9.x86_64.rpm - - evra: 2.13.7-10.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm - - evra: 4.9-16.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.x86_64.rpm - - evra: 3.34.1-10.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.x86_64.rpm - - evra: 252-67.el9_8.4.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-252-67.el9_8.4.x86_64.rpm - - evra: 252-67.el9_8.4.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.x86_64.rpm - - evra: 252-67.el9_8.4.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-pam-252-67.el9_8.4.x86_64.rpm - - evra: 252-67.el9_8.4.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-rpm-macros-252-67.el9_8.4.noarch.rpm - - evra: 252-67.el9_8.4.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-udev-252-67.el9_8.4.x86_64.rpm - - evra: 3.2.3-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tpm2-tss-3.2.3-1.el9.x86_64.rpm - - evra: 2026b-1.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm - - evra: 2.37.4-25.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.x86_64.rpm - - evra: 2.37.4-25.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-core-2.37.4-25.el9.x86_64.rpm - - evra: 8.2.2637-26.el9_8.10.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm - - evra: 5.2.5-8.el9_0.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.x86_64.rpm - - evra: 1.2.11-40.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/z/zlib-1.2.11-40.el9.x86_64.rpm - - evra: 11.5.0-14.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-c++-11.5.0-14.el9.x86_64.rpm - - evra: 2.52.0-1.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/git-core-2.52.0-1.el9.x86_64.rpm - - evra: 6.17.0-2.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/iproute-6.17.0-2.el9.x86_64.rpm - - evra: 1.8.10-11.el9_5.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/iptables-nft-1.8.10-11.el9_5.x86_64.rpm - - evra: 1.0.9-7.el9_8.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/nftables-1.0.9-7.el9_8.x86_64.rpm - - evra: 1.34-11.el9.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tar-1.34-11.el9.x86_64.rpm - - evra: 5.2.5-8.el9_0.x86_64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-3.31.8-3.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 11655593 + checksum: sha256:2a77fe1c3784083dcdebdd548c16d823b3e4a5adb8d6c00e36841aa633eab53b + name: cmake + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-data-3.31.8-3.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 2829291 + checksum: sha256:1cdc2e88a996c575b750483c8f562674e4b50a6ab414c7bbe6f6b641c1db7bd9 + name: cmake-data + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-filesystem-3.31.8-3.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 19282 + checksum: sha256:69a498723354740357fc3f4b4cd235da38fadd98835da193bec0c0850f68f3ad + name: cmake-filesystem + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cpp-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 10798392 + checksum: sha256:eb16ef369b981c0dca6149e971a63f74ea09c09f1c638086e3cda1e0591ac21b + name: cpp + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/e/emacs-filesystem-27.2-18.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 9495 + checksum: sha256:49d7b88a05a72c15b78191a987e6def04fda8e2e4ff75711f715d0c0ecadc60f + name: emacs-filesystem + evr: 1:27.2-18.el9 + sourcerpm: emacs-27.2-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 31291354 + checksum: sha256:542e635ac17b548cc03ab4347438d49f96837c1d91d12714b6b2764ec566156c + name: gcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-c++-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 12994215 + checksum: sha256:aabe892798a2272d65c269fd6aa14d3b3dfc782c98f92f8fda30c2a4fa33bf6d + name: gcc-c++ + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/git-core-2.52.0-1.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 5392428 + checksum: sha256:7082917982981bf611c089e7d9d53b63e969af61a37cfd65b5c4081d5b260a1c + name: git-core + evr: 2.52.0-1.el9 + sourcerpm: git-2.52.0-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 577056 + checksum: sha256:09cdfbba4c2517445ee2512c1c5c965b7d7ebdcf05665627dee83e0d824a5cff + name: glibc-devel + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.31.1.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 2861893 + checksum: sha256:c7bc9b3d12d85dafcf2c41d080338f4871289142b7c007ad121767a38d08b5ff + name: kernel-headers + evr: 5.14.0-687.31.1.el9_8 + sourcerpm: kernel-5.14.0-687.31.1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libasan-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 409047 + checksum: sha256:854a84e72d40c2a062d112b93f8a694044fd7dc5b3afe7a869a448a12844c3e6 + name: libasan + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 67120 + checksum: sha256:3763354a5f45d886f9976eec20eb34f8afc2144c69ffba07de546f2820893c70 + name: libmpc + evr: 1.2.1-4.el9 + sourcerpm: libmpc-1.2.1-4.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 2520018 + checksum: sha256:5a2474c2e817b008212e5a94770d8bfbaad17e9ebba2a38d734907e594ac2aac + name: libstdc++-devel + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libubsan-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 178996 + checksum: sha256:d0adfda8f1d8ddf05a46292228e31cf887d731e7999154603e148e3d70d1f182 + name: libubsan + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 150129 + checksum: sha256:4dc8a40da74e0f9823356460ee11f183c70f382953700fffef0c448198a677cc + name: libuv + evr: 1:1.42.0-2.el9_4 + sourcerpm: libuv-1.42.0-2.el9_4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libxcrypt-devel-4.4.18-3.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 33051 + checksum: sha256:9d621f33df35b9c274b8d65457d6c67fc1522b6c62cf7b2341a4a99f39a93507 + name: libxcrypt-devel + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/o/openssl-devel-3.5.5-6.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 5028889 + checksum: sha256:c92e750163820a817ca5562935010872f8db5ca5712a517b01beafcb87221670 + name: openssl-devel + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-2.35.2-72.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 5021411 + checksum: sha256:72e9fd9c4976413060df02e37d358fca208ab144d78e321f448a488d50967155 + name: binutils + evr: 2.35.2-72.el9 + sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-gold-2.35.2-72.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 908723 + checksum: sha256:269bb24ded2f23dcdb74c04597b13281ce6ac47a87a14831ee639d985323bd04 + name: binutils-gold + evr: 2.35.2-72.el9 + sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 102026 + checksum: sha256:d85216b672a15e5dd8cc771b853e3b73e832034949ee23998d8403609fba00a2 + name: cracklib + evr: 2.9.6-28.el9 + sourcerpm: cracklib-2.9.6-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cracklib-dicts-2.9.6-28.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 3829400 + checksum: sha256:807345f95c448cb58d4db8d059f76e4c139ef029887d59b431efd20db934745a + name: cracklib-dicts + evr: 2.9.6-28.el9 + sourcerpm: cracklib-2.9.6-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 42824 + checksum: sha256:bbcf05d0b46d42c85807d774788edc39528a6898bd880baf11fb77729f59272d + name: elfutils-debuginfod-client + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 8949 + checksum: sha256:c473f42c0fec97e2830580110509e4522bc62d9b11761d062499354a0bf58959 + name: elfutils-default-yama-scope + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 203006 + checksum: sha256:04ff63b7b669b16827f3688baa0be4a2782f1405db3c6d3ee03c0e4cebc2cdf2 + name: elfutils-libelf + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-libs-0.194-1.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 271645 + checksum: sha256:b90a6ad3e465995538785a2536986ad705625daf606d6258bf23d1dd29aec208 + name: elfutils-libs + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/expat-2.5.0-6.el9_8.1.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 120882 + checksum: sha256:7cc4e533f63bdec0ead003d176cb262b8d4d2583dfd57b2e9cfeeed4ead13475 + name: expat + evr: 2.5.0-6.el9_8.1 + sourcerpm: expat-2.5.0-6.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-2.34-274.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1813548 + checksum: sha256:0d52ce006fc399127ea7da1f2acfeed702b48ba75f5d1567491be35e1d620b09 + name: glibc + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 312799 + checksum: sha256:86d8e468d28880e34bb92a6e99a82fa2d5946d56cf2cedbb6fd9ca0cd1f65755 + name: glibc-common + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 684496 + checksum: sha256:0883e1f9ac411a052c434f7339e6929c34cf4a47330a38e036a3c15c17322fa1 + name: glibc-langpack-en + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 30937 + checksum: sha256:33a17677cc85823259a2ddd3f24887117dc95d7a9ec0af64640df6ab26ddc094 + name: glibc-minimal-langpack + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-1.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/iproute-6.17.0-2.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 899705 + checksum: sha256:39b4f03d65fdcf8b5ea922b6d8de51c969f9c531af4264be4e56c2f13871064e + name: iproute + evr: 6.17.0-2.el9 + sourcerpm: iproute-6.17.0-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/iptables-libs-1.8.10-11.el9_5.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 477723 + checksum: sha256:73eadf9d16ea9ebb340664873522ef83ad0c28106751783d61c6315a8f0d466f + name: iptables-libs + evr: 1.8.10-11.el9_5 + sourcerpm: iptables-1.8.10-11.el9_5.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/iptables-nft-1.8.10-11.el9_5.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 212143 + checksum: sha256:5789f27966252aadd8bf0eae25d324defc2528312ff21b21c4ddb80d1c0b104d + name: iptables-nft + evr: 1.8.10-11.el9_5 + sourcerpm: iptables-1.8.10-11.el9_5.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/j/jansson-2.14-1.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 50251 + checksum: sha256:7c002eb9c81bad49b8a11d9790af6220cce5fb882be7ca11335882d079d1473f + name: jansson + evr: 2.14-1.el9 + sourcerpm: jansson-2.14-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/less-590-6.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 165028 + checksum: sha256:fa762484ba40e0b7eb1c25531a66a0b578b6141cabb6f73d865c13ccdf75c1c9 + name: less + evr: 590-6.el9 + sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 113931 + checksum: sha256:2c38ac06d3a267b62fc5ea4e149a25c4287c19157f4f18e0f7edea4787b27e15 + name: libblkid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libbpf-1.5.0-3.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 188694 + checksum: sha256:2a9b81f70ed90d0f711f9f47db6437124b30f89d1c4b009b2fa961684e2b3eb8 + name: libbpf + evr: 2:1.5.0-3.el9 + sourcerpm: libbpf-1.5.0-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 59368 + checksum: sha256:93a2f44044ab11225b1123bc9df4f4d09c0a5f3251818e7d144ca64fd12c0957 + name: libcbor + evr: 0.7.0-5.el9 + sourcerpm: libcbor-0.7.0-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 727417 + checksum: sha256:3a912b2a0a6226695a5773138ce5ce090c9fb155151dffe732b8d52e6dd22d63 + name: libdb + evr: 5.3.28-57.el9_6 + sourcerpm: libdb-5.3.28-57.el9_6.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libeconf-0.4.1-7.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 32324 + checksum: sha256:8a5e117c2690c82835c6013f1fbac37b026f3e953fbffbd84c2f5ef6cf8df571 + name: libeconf + evr: 0.4.1-7.el9_8 + sourcerpm: libeconf-0.4.1-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 110092 + checksum: sha256:93964f8c06574404f4a5b44781b698f556fbc22f7ae3c82d4d540619772f6816 + name: libedit + evr: 3.1-39.20210216cvs.el9 + sourcerpm: libedit-3.1-39.20210216cvs.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 156711 + checksum: sha256:af043918fc50ce5b3de50c48c3de0143140b692fbf639db6f259270c4211a776 + name: libfdisk + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 100573 + checksum: sha256:e56e963635b92f407471c7c5698d602135b135bda4515ecc75ac52dd1d38c7e4 + name: libfido2 + evr: 1.13.0-2.el9 + sourcerpm: libfido2-1.13.0-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 81211 + checksum: sha256:6923218fdef581189a4b51c7ba158083597f1c6df08cae021a1d90e9d61938a9 + name: libgcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 262138 + checksum: sha256:c8b3788fee442304e4158c802ff413df27d394b82f19c0f34ff43b5d3760470c + name: libgomp + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libmnl-1.0.4-16.el9_4.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 30479 + checksum: sha256:b07344f5116a1913e746042748b05f978d284833282d9633e29f3d595ab596e9 + name: libmnl + evr: 1.0.4-16.el9_4 + sourcerpm: libmnl-1.0.4-16.el9_4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libmount-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 140081 + checksum: sha256:152aee3abc8d97a37ff4ce2f5027d7e16e93ff2c77d25e900258da54e6fcc64e + name: libmount + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnetfilter_conntrack-1.0.9-1.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 61151 + checksum: sha256:28d0047c487c8d8bc6b9544fa0a6ac837a50c309641c689e834a4959d6f1ac01 + name: libnetfilter_conntrack + evr: 1.0.9-1.el9 + sourcerpm: libnetfilter_conntrack-1.0.9-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnfnetlink-1.0.1-23.el9_5.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 31790 + checksum: sha256:3bc75fd1a2cf80c51709901538ad65555406ffb0805a91fd59ce02f1a8ddd67c + name: libnfnetlink + evr: 1.0.1-23.el9_5 + sourcerpm: libnfnetlink-1.0.1-23.el9_5.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnftnl-1.2.6-4.el9_4.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 88780 + checksum: sha256:3e5aa1f38999f45d1720a28af8363a0989e41e8627d70cb18556f2c96841700f + name: libnftnl + evr: 1.2.6-4.el9_4 + sourcerpm: libnftnl-1.2.6-4.el9_4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 38310 + checksum: sha256:9bdfccf6b092e0683aa6984f7c6caa737b30c0b1495e16abb03b5d1a5f8e787a + name: libpkgconf + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 125712 + checksum: sha256:1657d94bbd79f93dc7a79d474316813bde681ce3a7f62f73314ec4d630e39349 + name: libpwquality + evr: 1.4.4-8.el9 + sourcerpm: libpwquality-1.4.4-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 67440 + checksum: sha256:1704e73a566c920796d877c7bc3e5a96ea0c0c4194109c7b085c1128c01856af + name: libsmartcols + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 723913 + checksum: sha256:ae00c5009a2ee4682ec732cde66d3f4fcfc1a7099ba7b3701767d1748a4f2683 + name: libstdc++ + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 30505 + checksum: sha256:d352371cbb7d5bd0c53fc699df953c8c1f184b056690b3c4571e57a6634015c5 + name: libutempter + evr: 1.2.1-6.el9 + sourcerpm: libutempter-1.2.1-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 32555 + checksum: sha256:4d7bb4144053a30067a82423fb6e88fd08c7a69bd256eb21b08c0e3f4dbbaee6 + name: libuuid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/make-4.3-8.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 550249 + checksum: sha256:351a22b0e6744bd329b1b0f22d9c3b69a6da970b575e6c76190cc84b0fe77450 + name: make + evr: 1:4.3-8.el9 + sourcerpm: make-4.3-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/nftables-1.0.9-7.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 431040 + checksum: sha256:a0af6ffaa225c77236875ff68230286b6559b8a857414e278af819f843a4fabb + name: nftables + evr: 1:1.0.9-7.el9_8 + sourcerpm: nftables-1.0.9-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 431979 + checksum: sha256:be18971dc20baa2fc820ec357d145bc5f9dbd88fd87e04b4016d8f77183525ae + name: openssh + evr: 9.9p1-7.el9_8 + sourcerpm: openssh-9.9p1-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 768861 + checksum: sha256:37ac77703fc47951b231cab696f52f00485f0811ed893d7c68a038eef81c9d8f + name: openssh-clients + evr: 9.9p1-7.el9_8 + sourcerpm: openssh-9.9p1-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-3.5.5-6.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1541002 + checksum: sha256:9f10be36d0d532c65a3f9a41f7d0cd3190b0b908f60850862cc24cab06cd1101 + name: openssl + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 14220 + checksum: sha256:158193d2f965db318148ec76e9347b530ac1f5379d849012c0a04d3c50cda478 + name: openssl-fips-provider + evr: 3.0.7-11.el9_8 + sourcerpm: openssl-fips-provider-3.0.7-11.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 529340 + checksum: sha256:22374a51f8a529dcfcf3b3ebbb2095103e0e811a28953535e5a62e26d1233301 + name: openssl-fips-provider-so + evr: 3.0.7-11.el9_8 + sourcerpm: openssl-fips-provider-3.0.7-11.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-libs-3.5.5-6.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 2290581 + checksum: sha256:9af799c6be853cb42999a1228a2768da20a21895b7dcac111dba3be13a397b67 + name: openssl-libs + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pam-1.5.1-28.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 635826 + checksum: sha256:eab9afe4a8ef70912d8c59c0d8c429c0474436e756d37bcd9ee0589f9a1c9311 + name: pam + evr: 1.5.1-28.el9 + sourcerpm: pam-1.5.1-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 45196 + checksum: sha256:aa38a3951a690d721a815ea8f9b01995a85f35a8540d8075205821011d0385e6 + name: pkgconf + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-m4-1.7.3-10.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 16054 + checksum: sha256:91bafd6e06099451f60288327b275cfcc651822f6145176a157c6b0fa5131e02 + name: pkgconf-m4 + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-pkg-config-1.7.3-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 12398 + checksum: sha256:47f1f744f96a2f3d360bc129837738dcebb1ee5032effc4472a891eea1d6a907 + name: pkgconf-pkg-config + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/psmisc-23.4-3.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 252522 + checksum: sha256:609ffc1ea49d733bf2fabf521851acf20e62cd873c3679f735bc7486b2434359 + name: psmisc + evr: 23.4-3.el9 + sourcerpm: psmisc-23.4-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tar-1.34-11.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 904777 + checksum: sha256:62f985a87e048caa3ef883966d6176448398abc42df00ebff07e7311ff5f425d + name: tar + evr: 2:1.34-11.el9 + sourcerpm: tar-1.34-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 2390152 + checksum: sha256:3681bbe37d46309673f366135787f5713f0ef575e3cd413cd221af2512e3634b + name: util-linux + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-core-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 472949 + checksum: sha256:de7ad826dd42b383d93f6dc6b720a26d4cd4815d00c0f093c2e28037a8881424 + name: util-linux-core + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 22399 + checksum: sha256:9fc9ef3ba0b22a599b2a7b34bd0b025afd5f2623e9132b4ead19e98f9c62e97d + name: vim-filesystem + evr: 2:8.2.2637-26.el9_8.10 + sourcerpm: vim-8.2.2637-26.el9_8.10.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 235798 + checksum: sha256:26ac21be6c1e396c7bcbaa9d4786e3275e996d9d78c01f75bbbc6962e6c9bef7 + name: xz + evr: 5.2.5-8.el9_0 + sourcerpm: xz-5.2.5-8.el9_0.src.rpm source: [] -- arch: aarch64 + module_metadata: [] +- arch: x86_64 packages: - - evra: 2.4.0-1.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/acl-2.4.0-1.el9_8.aarch64.rpm - - evra: 1.24-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/alternatives-1.24-2.el9.aarch64.rpm - - evra: 3.1.5-8.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.aarch64.rpm - - evra: 11-13.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm - - evra: 5.1.8-9.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/bash-5.1.8-9.el9.aarch64.rpm - - evra: 2.35.2-72.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-2.35.2-72.el9.aarch64.rpm - - evra: 2.35.2-72.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-gold-2.35.2-72.el9.aarch64.rpm - - evra: 1.0.8-11.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.aarch64.rpm - - evra: 2025.2.80_v9.0.305-91.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm - - evra: 3.31.8-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-3.31.8-3.el9.aarch64.rpm - - evra: 3.31.8-3.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-data-3.31.8-3.el9.noarch.rpm - - evra: 3.31.8-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-filesystem-3.31.8-3.el9.aarch64.rpm - - evra: 3.31.8-3.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-rpm-macros-3.31.8-3.el9.noarch.rpm - - evra: 8.32-41.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.aarch64.rpm - - evra: 8.32-41.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.aarch64.rpm - - evra: 8.32-41.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-single-8.32-41.el9_8.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cpp-11.5.0-14.el9.aarch64.rpm - - evra: 2.9.6-28.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.aarch64.rpm - - evra: 2.9.6-28.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cracklib-dicts-2.9.6-28.el9.aarch64.rpm - - evra: 20260224-1.gitea0f072.el9_8.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm - - evra: 2.8.1-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cryptsetup-libs-2.8.1-3.el9.aarch64.rpm - - evra: 7.76.1-40.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/curl-7.76.1-40.el9.aarch64.rpm - - evra: 7.76.1-40.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/curl-minimal-7.76.1-40.el9.aarch64.rpm - - evra: 2.1.27-22.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.aarch64.rpm - - evra: 1.12.20-8.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-1.12.20-8.el9.aarch64.rpm - - evra: 28-7.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-broker-28-7.el9.aarch64.rpm - - evra: 1.12.20-8.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm - - evra: 1.02.207-4.el9_8.1.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/device-mapper-1.02.207-4.el9_8.1.aarch64.rpm - - evra: 1.02.207-4.el9_8.1.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/device-mapper-libs-1.02.207-4.el9_8.1.aarch64.rpm - - evra: 0.194-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.aarch64.rpm - - evra: 0.194-1.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm - - evra: 0.194-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.aarch64.rpm - - evra: 0.194-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-libs-0.194-1.el9.aarch64.rpm - - evra: 27.2-18.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/e/emacs-filesystem-27.2-18.el9.noarch.rpm - - evra: 2.5.0-6.el9_8.1.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/expat-2.5.0-6.el9_8.1.aarch64.rpm - - evra: 3.16-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/f/filesystem-3.16-5.el9.aarch64.rpm - - evra: 4.8.0-7.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/f/findutils-4.8.0-7.el9.aarch64.rpm - - evra: 1.2.0-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/f/fips-provider-next-1.2.0-5.el9.aarch64.rpm - - evra: 5.1.0-6.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gawk-5.1.0-6.el9.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-11.5.0-14.el9.aarch64.rpm - - evra: 1.23-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.aarch64.rpm - - evra: 2.34-274.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-2.34-274.el9_8.aarch64.rpm - - evra: 2.34-274.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-all-langpacks-2.34-274.el9_8.aarch64.rpm - - evra: 2.34-274.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.aarch64.rpm - - evra: 2.34-274.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.aarch64.rpm - - evra: 2.34-274.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-gconv-extra-2.34-274.el9_8.aarch64.rpm - - evra: 2.34-274.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.aarch64.rpm - - evra: 2.34-274.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.aarch64.rpm - - evra: 6.2.0-13.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gmp-6.2.0-13.el9.aarch64.rpm - - evra: 3.6-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/grep-3.6-5.el9.aarch64.rpm - - evra: 1.12-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-1.el9.aarch64.rpm - - evra: 1.8.10-11.el9_5.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/iptables-libs-1.8.10-11.el9_5.aarch64.rpm - - evra: 2.14-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/j/jansson-2.14-1.el9.aarch64.rpm - - evra: 0.14-11.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/j/json-c-0.14-11.el9.aarch64.rpm - - evra: 2.4.0-11.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kbd-2.4.0-11.el9.aarch64.rpm - - evra: 2.4.0-11.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kbd-legacy-2.4.0-11.el9.noarch.rpm - - evra: 2.4.0-11.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kbd-misc-2.4.0-11.el9.noarch.rpm - - evra: 5.14.0-687.31.1.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.31.1.el9_8.aarch64.rpm - - evra: 1.6.3-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.aarch64.rpm - - evra: 28-11.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kmod-28-11.el9.aarch64.rpm - - evra: 28-11.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kmod-libs-28-11.el9.aarch64.rpm - - evra: 1.21.1-10.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.aarch64.rpm - - evra: 590-6.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/less-590-6.el9.aarch64.rpm - - evra: 2.4.0-1.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libacl-2.4.0-1.el9_8.aarch64.rpm - - evra: 3.5.3-9.el9_7.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libasan-11.5.0-14.el9.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libatomic-11.5.0-14.el9.aarch64.rpm - - evra: 2.5.1-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libattr-2.5.1-3.el9.aarch64.rpm - - evra: 2.37.4-25.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.aarch64.rpm - - evra: 1.5.0-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libbpf-1.5.0-3.el9.aarch64.rpm - - evra: 1.0.9-9.el9_7.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.aarch64.rpm - - evra: 2.48-10.el9_8.1.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.aarch64.rpm - - evra: 0.8.2-7.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.aarch64.rpm - - evra: 0.7.0-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.aarch64.rpm - - evra: 1.46.5-8.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.aarch64.rpm - - evra: 7.76.1-40.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.aarch64.rpm - - evra: 7.76.1-40.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-minimal-7.76.1-40.el9.aarch64.rpm - - evra: 5.3.28-57.el9_6.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.aarch64.rpm - - evra: 0.4.1-7.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libeconf-0.4.1-7.el9_8.aarch64.rpm - - evra: 3.1-39.20210216cvs.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.aarch64.rpm - - evra: 2.1.12-8.el9_4.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.aarch64.rpm - - evra: 2.37.4-25.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.aarch64.rpm - - evra: 3.4.2-8.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libffi-3.4.2-8.el9.aarch64.rpm - - evra: 1.13.0-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.aarch64.rpm - - evra: 1.10.0-11.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.aarch64.rpm - - evra: 1.42-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.aarch64.rpm - - evra: 2.3.0-7.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.aarch64.rpm - - evra: 1.0.4-16.el9_4.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libmnl-1.0.4-16.el9_4.aarch64.rpm - - evra: 2.37.4-25.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libmount-2.37.4-25.el9.aarch64.rpm - - evra: 1.2.1-4.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.aarch64.rpm - - evra: 1.0.9-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnetfilter_conntrack-1.0.9-1.el9.aarch64.rpm - - evra: 1.0.1-23.el9_5.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnfnetlink-1.0.1-23.el9_5.aarch64.rpm - - evra: 1.2.6-4.el9_4.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnftnl-1.2.6-4.el9_4.aarch64.rpm - - evra: 1.43.0-6.el9_8.1.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.aarch64.rpm - - evra: 1.7.3-10.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.aarch64.rpm - - evra: 0.21.1-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.aarch64.rpm - - evra: 1.4.4-8.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.aarch64.rpm - - evra: 2.5.2-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.aarch64.rpm - - evra: 3.6-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libselinux-3.6-3.el9.aarch64.rpm - - evra: 3.6-5.el9_6.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.aarch64.rpm - - evra: 3.6-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsepol-3.6-3.el9.aarch64.rpm - - evra: 2.13-4.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.aarch64.rpm - - evra: 2.37.4-25.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.aarch64.rpm - - evra: 0.10.4-18.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-18.el9.aarch64.rpm - - evra: 0.10.4-18.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.aarch64.rpm - - evra: 4.16.0-10.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.aarch64.rpm - - evra: 2.4.6-46.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libtool-ltdl-2.4.6-46.el9.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libubsan-11.5.0-14.el9.aarch64.rpm - - evra: 0.9.10-15.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.aarch64.rpm - - evra: 1.2.1-6.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.aarch64.rpm - - evra: 2.37.4-25.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.aarch64.rpm - - evra: 1.42.0-2.el9_4.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.aarch64.rpm - - evra: 0.3.2-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libverto-0.3.2-3.el9.aarch64.rpm - - evra: 4.4.18-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.aarch64.rpm - - evra: 4.4.18-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libxcrypt-devel-4.4.18-3.el9.aarch64.rpm - - evra: 2.9.13-14.el9_8.2.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.aarch64.rpm - - evra: 1.5.5-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm - - evra: 5.4.4-4.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/lua-libs-5.4.4-4.el9.aarch64.rpm - - evra: 1.9.3-5.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.aarch64.rpm - - evra: 4.3-8.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/make-4.3-8.el9.aarch64.rpm - - evra: 4.1.0-10.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.aarch64.rpm - - evra: 6.2-12.20210508.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm - - evra: 6.2-12.20210508.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.aarch64.rpm - - evra: 2.6.8-4.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openldap-2.6.8-4.el9.aarch64.rpm - - evra: 9.9p1-7.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.aarch64.rpm - - evra: 9.9p1-7.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.aarch64.rpm - - evra: 3.5.5-6.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-3.5.5-6.el9_8.aarch64.rpm - - evra: 3.5.5-6.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/o/openssl-devel-3.5.5-6.el9_8.aarch64.rpm - - evra: 3.0.7-11.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.aarch64.rpm - - evra: 3.0.7-11.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.aarch64.rpm - - evra: 3.5.5-6.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-libs-3.5.5-6.el9_8.aarch64.rpm - - evra: 0.26.2-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.aarch64.rpm - - evra: 0.26.2-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.aarch64.rpm - - evra: 1.5.1-28.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pam-1.5.1-28.el9.aarch64.rpm - - evra: 8.44-4.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre-8.44-4.el9.aarch64.rpm - - evra: 10.40-6.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre2-10.40-6.el9.aarch64.rpm - - evra: 10.40-6.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm - - evra: 1.7.3-10.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.aarch64.rpm - - evra: 1.7.3-10.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-m4-1.7.3-10.el9.noarch.rpm - - evra: 1.7.3-10.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-pkg-config-1.7.3-10.el9.aarch64.rpm - - evra: 1.18-8.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/popt-1.18-8.el9.aarch64.rpm - - evra: 23.4-3.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/psmisc-23.4-3.el9.aarch64.rpm - - evra: 20210518-3.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm - - evra: 3.9.25-7.el9_8.2.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-3.9.25-7.el9_8.2.aarch64.rpm - - evra: 3.9.25-7.el9_8.2.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-libs-3.9.25-7.el9_8.2.aarch64.rpm - - evra: 21.3.1-2.el9_8.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-pip-wheel-21.3.1-2.el9_8.noarch.rpm - - evra: 53.0.0-15.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm - - evra: 8.1-4.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/readline-8.1-4.el9.aarch64.rpm - - evra: 9.8-1.0.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.aarch64.rpm - - evra: 4.16.1.3-40.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/rpm-4.16.1.3-40.el9.aarch64.rpm - - evra: 4.16.1.3-40.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/rpm-libs-4.16.1.3-40.el9.aarch64.rpm - - evra: 4.8-10.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/sed-4.8-10.el9.aarch64.rpm - - evra: 2.13.7-10.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm - - evra: 4.9-16.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.aarch64.rpm - - evra: 3.34.1-10.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.aarch64.rpm - - evra: 252-67.el9_8.4.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-252-67.el9_8.4.aarch64.rpm - - evra: 252-67.el9_8.4.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.aarch64.rpm - - evra: 252-67.el9_8.4.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-pam-252-67.el9_8.4.aarch64.rpm - - evra: 252-67.el9_8.4.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-rpm-macros-252-67.el9_8.4.noarch.rpm - - evra: 252-67.el9_8.4.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-udev-252-67.el9_8.4.aarch64.rpm - - evra: 3.2.3-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tpm2-tss-3.2.3-1.el9.aarch64.rpm - - evra: 2026b-1.el9.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm - - evra: 2.37.4-25.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.aarch64.rpm - - evra: 2.37.4-25.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-core-2.37.4-25.el9.aarch64.rpm - - evra: 8.2.2637-26.el9_8.10.noarch - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm - - evra: 5.2.5-8.el9_0.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.aarch64.rpm - - evra: 1.2.11-40.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/z/zlib-1.2.11-40.el9.aarch64.rpm - - evra: 11.5.0-14.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-c++-11.5.0-14.el9.aarch64.rpm - - evra: 2.52.0-1.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/git-core-2.52.0-1.el9.aarch64.rpm - - evra: 6.17.0-2.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/iproute-6.17.0-2.el9.aarch64.rpm - - evra: 1.8.10-11.el9_5.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/iptables-nft-1.8.10-11.el9_5.aarch64.rpm - - evra: 1.0.9-7.el9_8.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/nftables-1.0.9-7.el9_8.aarch64.rpm - - evra: 1.34-11.el9.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tar-1.34-11.el9.aarch64.rpm - - evra: 5.2.5-8.el9_0.aarch64 - url: https://cdn.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-3.31.8-3.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 13989883 + checksum: sha256:e67ea7aef1edd470e4ec22982e97871655abcdc0990754d4e8f147d4e7de317a + name: cmake + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-data-3.31.8-3.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 2829291 + checksum: sha256:1cdc2e88a996c575b750483c8f562674e4b50a6ab414c7bbe6f6b641c1db7bd9 + name: cmake-data + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-filesystem-3.31.8-3.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 19309 + checksum: sha256:b5ea81385a9e4e6a1ae2bb1175cd774af82f9c570a37008cde873ead466ba5f7 + name: cmake-filesystem + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cpp-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 11226193 + checksum: sha256:3c0ee1cb8b72f3f5176f8945ab518eb733ccc9f950d317fb5d5ac327d0eb9c90 + name: cpp + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/e/emacs-filesystem-27.2-18.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 9495 + checksum: sha256:49d7b88a05a72c15b78191a987e6def04fda8e2e4ff75711f715d0c0ecadc60f + name: emacs-filesystem + evr: 1:27.2-18.el9 + sourcerpm: emacs-27.2-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 33982584 + checksum: sha256:2082784165bbb246b6e5ef5921ed823f0a9709cacdf5823aa60695fd6d4819a2 + name: gcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-c++-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 13474286 + checksum: sha256:b073d8965ad8eed7520a2a1c9b7c961232511ad9188dcc8c92356160a9d51e37 + name: gcc-c++ + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/git-core-2.52.0-1.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 5293286 + checksum: sha256:6264aa556d583604f34def3674f5830a70cfee0aac283719e4df295db38acb53 + name: git-core + evr: 2.52.0-1.el9 + sourcerpm: git-2.52.0-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 46571 + checksum: sha256:e6176ffaf004619a3c4c6d69fc3499a90697cfea221c46e014d605e452bb859d + name: glibc-devel + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-headers-2.34-274.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 567160 + checksum: sha256:98c8a2b2939f7decf299713dd4625c1ca1e8a3b536d6607db3cde04e32799bcd + name: glibc-headers + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.31.1.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 2901125 + checksum: sha256:f9c558adfc811feb7c1d2461c5a0a4646bbf1b77e5cc079eb66cee6992b3d88d + name: kernel-headers + evr: 5.14.0-687.31.1.el9_8 + sourcerpm: kernel-5.14.0-687.31.1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 66075 + checksum: sha256:b97b4e98c3c6f41dcfc2ceb4ffa1aba7a338b7cfd9e6c4f63e3160dd3cc033d3 + name: libmpc + evr: 1.2.1-4.el9 + sourcerpm: libmpc-1.2.1-4.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 2524816 + checksum: sha256:2d031d05fe073adc74919b8372763ae322615d9df23f4a2c642050ab4b389ce5 + name: libstdc++-devel + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 154427 + checksum: sha256:e1fab39251239ccaad2fb4dbe6c55ec1ae60f76d4ae81582b06e6a58e30879b2 + name: libuv + evr: 1:1.42.0-2.el9_4 + sourcerpm: libuv-1.42.0-2.el9_4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libxcrypt-devel-4.4.18-3.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 33101 + checksum: sha256:c1d171391a7d2e043a6953efd3df3e01edc9b4c6cdb54517e1608d204a5fce18 + name: libxcrypt-devel + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/o/openssl-devel-3.5.5-6.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 5029526 + checksum: sha256:84e54b3467ecfe70c75688f28dbc0e071e268d845db17b28a1f35a35d45640cd + name: openssl-devel + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-2.35.2-72.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 4821853 + checksum: sha256:bda706d43bf47267e31db8ac62fe3206122f97ff035daa6c93ce9cd5063a63ca + name: binutils + evr: 2.35.2-72.el9 + sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-gold-2.35.2-72.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 758393 + checksum: sha256:4d429d1030d8e1c610ba5aea83f8c63090033f440b2c8f788f0e0acd4a3c51b3 + name: binutils-gold + evr: 2.35.2-72.el9 + sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 102444 + checksum: sha256:3b415381d4bd307686268ec42f646c7770f6a815de73a40a88aab7a7061b30a9 + name: cracklib + evr: 2.9.6-28.el9 + sourcerpm: cracklib-2.9.6-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cracklib-dicts-2.9.6-28.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 3829431 + checksum: sha256:61c11d3c23b62016b9939f917bb7f7e03cba324eb4ad35b375387ce9f18e25a1 + name: cracklib-dicts + evr: 2.9.6-28.el9 + sourcerpm: cracklib-2.9.6-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 43826 + checksum: sha256:1635fd1ecaa9492fa925956dfd56d10063ca336619218f124ab45df0a38b41b0 + name: elfutils-debuginfod-client + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 8949 + checksum: sha256:c473f42c0fec97e2830580110509e4522bc62d9b11761d062499354a0bf58959 + name: elfutils-default-yama-scope + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 205864 + checksum: sha256:00bbe4776149d8ccedcdf19dd6ceb08c3bb42ff41b98d744abe101af0b11a6c5 + name: elfutils-libelf + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-libs-0.194-1.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 274670 + checksum: sha256:ad4f6d425cbc975cead56a2c982e38b0146d00944cbd9b3072d3d1f1271237a5 + name: elfutils-libs + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/expat-2.5.0-6.el9_8.1.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 126909 + checksum: sha256:6a0c98d67b643fe620297e4cd7e990f99a86ed6bc90a8295a952c626ecbb9f62 + name: expat + evr: 2.5.0-6.el9_8.1 + sourcerpm: expat-2.5.0-6.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-2.34-274.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 2083155 + checksum: sha256:3a68581527ea2aa67a57610951bd9722019cc32db691cace00dc7478cab312ec + name: glibc + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 321676 + checksum: sha256:d741ab036ed8b97022052adb291a749a0ca1d5e492bd906aa7da95af9866bd2b + name: glibc-common + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 684459 + checksum: sha256:1491343a7653599e4fbea03780731c6777df85dc998bafb237658cde3728b663 + name: glibc-langpack-en + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 30969 + checksum: sha256:da6b677193283cedf470f17894638ef1a633c114e4b51464c49548a19166a68e + name: glibc-minimal-langpack + evr: 2.34-274.el9_8 + sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-1.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/iproute-6.17.0-2.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 894459 + checksum: sha256:008c615c830a69009a560ce44d9eb5924a793ee89b977856a91f1b7099bad1d5 + name: iproute + evr: 6.17.0-2.el9 + sourcerpm: iproute-6.17.0-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/iptables-libs-1.8.10-11.el9_5.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 476678 + checksum: sha256:3e79ca4cc3d35c1f1e0ac6c9f05c5be56b7ab6dd1f8ae719a21ec1b9e3bfa018 + name: iptables-libs + evr: 1.8.10-11.el9_5 + sourcerpm: iptables-1.8.10-11.el9_5.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/iptables-nft-1.8.10-11.el9_5.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 214056 + checksum: sha256:54e031813637738af285ff4b1c2e4a20b913f2ea643a29940a07ccaf8bd197f5 + name: iptables-nft + evr: 1.8.10-11.el9_5 + sourcerpm: iptables-1.8.10-11.el9_5.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/jansson-2.14-1.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 49137 + checksum: sha256:4e9aec51ee46d7265d6edd1245b5d5ab5e8336dc2a4ca17f2cace2ce8bae3761 + name: jansson + evr: 2.14-1.el9 + sourcerpm: jansson-2.14-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/less-590-6.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 166025 + checksum: sha256:5bd040f9dd813167935fc390d546c119d90e0a9c77447a3d9ed1ef69c6f5a32a + name: less + evr: 590-6.el9 + sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 114192 + checksum: sha256:a858400abe83a7955ae509c920f835a950ea2cf1156916823c595a23ba46d536 + name: libblkid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libbpf-1.5.0-3.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 188749 + checksum: sha256:72673b289f5b720462aca02125411285b259139988be54dff7646d7639f7b26d + name: libbpf + evr: 2:1.5.0-3.el9 + sourcerpm: libbpf-1.5.0-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 60575 + checksum: sha256:588e8736af3376abfb3cdf372c10baef02c40d916a55958f3bee9767f9ad8526 + name: libcbor + evr: 0.7.0-5.el9 + sourcerpm: libcbor-0.7.0-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 755192 + checksum: sha256:3246e76f197e2b60eb470b9b55d3e0dda2301b029f295fed9c38ff70b87c5b6b + name: libdb + evr: 5.3.28-57.el9_6 + sourcerpm: libdb-5.3.28-57.el9_6.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libeconf-0.4.1-7.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 33179 + checksum: sha256:a570c5baaedeb1445bc2e4f3930b0a709411bbefbdbf463c3e006cbfc7018894 + name: libeconf + evr: 0.4.1-7.el9_8 + sourcerpm: libeconf-0.4.1-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 112056 + checksum: sha256:65a730688dfea27934b75af3acf30150c6d254c89d8b68b63233ae7f8b6c9b94 + name: libedit + evr: 3.1-39.20210216cvs.el9 + sourcerpm: libedit-3.1-39.20210216cvs.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 161769 + checksum: sha256:1b861f267752e718ce696a80dcc06ef1dde8e9aa73fa2abed3775626d719c124 + name: libfdisk + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 102746 + checksum: sha256:6da940c0528f3e4453db84cb85b402c8f4293a197b1921158df9651edb4845e0 + name: libfido2 + evr: 1.13.0-2.el9 + sourcerpm: libfido2-1.13.0-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 87280 + checksum: sha256:77c66827ffc14df2f43612b26128b1fd58d5c9597d4d4e564aa239b161272872 + name: libgcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 263723 + checksum: sha256:87b9a7316760374111290e6e4c76ee4d093566f08a7c7c91ad7827c5948afb69 + name: libgomp + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libmnl-1.0.4-16.el9_4.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 30949 + checksum: sha256:badfd4eb5b7cd3622da84168674002ec718ef810ce615a1113d3e19e265b777e + name: libmnl + evr: 1.0.4-16.el9_4 + sourcerpm: libmnl-1.0.4-16.el9_4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libmount-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 142467 + checksum: sha256:a9a2022eb9e39301bfcd3273573a108486b2b315c89247f147870016b2e9222c + name: libmount + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnetfilter_conntrack-1.0.9-1.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 62066 + checksum: sha256:beeb73e78390077c6afd9ed6177bad8bad278dbfaae9d90edf7243cdf6a44a3f + name: libnetfilter_conntrack + evr: 1.0.9-1.el9 + sourcerpm: libnetfilter_conntrack-1.0.9-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnfnetlink-1.0.1-23.el9_5.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 32236 + checksum: sha256:177882bfe48c9c9effc7b1bce6b58b2466988c53e400c07fb1ba2d3a4ebe6f40 + name: libnfnetlink + evr: 1.0.1-23.el9_5 + sourcerpm: libnfnetlink-1.0.1-23.el9_5.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnftnl-1.2.6-4.el9_4.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 91380 + checksum: sha256:e64d7b270be4be36af80ed220852cb760a1069e34667b1ba9eec7a02762a14bf + name: libnftnl + evr: 1.2.6-4.el9_4 + sourcerpm: libnftnl-1.2.6-4.el9_4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 38387 + checksum: sha256:4feae5941b73640bd86b8d506a657cac5b770043db1464fbcd207721b2159dda + name: libpkgconf + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 126104 + checksum: sha256:14b7ff2f7fdaf8ebec90261f4619ea7f7c3564c4de8483666de7ed4b1f49b66f + name: libpwquality + evr: 1.4.4-8.el9 + sourcerpm: libpwquality-1.4.4-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 68692 + checksum: sha256:c1da912799780b89cd44db4acc318ea4a83adba0d8d99aad1b877879f40dbd48 + name: libsmartcols + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 763021 + checksum: sha256:513df35338962e053052b9d52429e8a5f3d60dfe6b1757cd9faaf61d6abda955 + name: libstdc++ + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 30354 + checksum: sha256:0f1df5e0d48c2ac9914bfffa7ed569cd58e42b17ba96bb3f7cf74d1e80de2597 + name: libutempter + evr: 1.2.1-6.el9 + sourcerpm: libutempter-1.2.1-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 32757 + checksum: sha256:5694aafca42c707f85af66bba11d102f7636ee17f586466b3ff80254e995ed7b + name: libuuid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/make-4.3-8.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 553896 + checksum: sha256:561f0c2251e9217c81a6c88de4d2d9231a039aaab37e8a0d2559d36ce9fa85fd + name: make + evr: 1:4.3-8.el9 + sourcerpm: make-4.3-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/nftables-1.0.9-7.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 437853 + checksum: sha256:175e5a5110125df894ef6f7cf7cb657cf16a3c5cee2b2847cb6e285d56c79396 + name: nftables + evr: 1:1.0.9-7.el9_8 + sourcerpm: nftables-1.0.9-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 442163 + checksum: sha256:e699c3fd161d4741658320f10064bb82ab7530d07d3d34850142ccc102ce7c82 + name: openssh + evr: 9.9p1-7.el9_8 + sourcerpm: openssh-9.9p1-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 798466 + checksum: sha256:5663973f870ce57e55bb94e94b84ff020d6b24cbaabdca9fed99665f6513c847 + name: openssh-clients + evr: 9.9p1-7.el9_8 + sourcerpm: openssh-9.9p1-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-3.5.5-6.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1564334 + checksum: sha256:1c502507f42674119318b66b111448f618efe2767a55edde5fadddcecb47ac64 + name: openssl + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 14256 + checksum: sha256:c00860e9c5a1d90488aa2eb65fe41f62926b38c6b3669d331a8b97e4a60223ac + name: openssl-fips-provider + evr: 3.0.7-11.el9_8 + sourcerpm: openssl-fips-provider-3.0.7-11.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 595008 + checksum: sha256:60d36ad3a67d6b00e67bb0a19c0902fbb2ecdd873cf7f280a3039d04a092790c + name: openssl-fips-provider-so + evr: 3.0.7-11.el9_8 + sourcerpm: openssl-fips-provider-3.0.7-11.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-libs-3.5.5-6.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 2427181 + checksum: sha256:a289cdf4da547031cd39a4f31decd0bb22649bbcb5fe4f88b939d341a83708be + name: openssl-libs + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pam-1.5.1-28.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 637912 + checksum: sha256:15a0a5000af6f57f47c30682f7aacf3959903788e68255132b6a05bb4b713ab1 + name: pam + evr: 1.5.1-28.el9 + sourcerpm: pam-1.5.1-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 45675 + checksum: sha256:bb47b4ecc499c308f41031a99e723827d152d5d750f59849d0c265d820944a26 + name: pkgconf + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-m4-1.7.3-10.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 16054 + checksum: sha256:91bafd6e06099451f60288327b275cfcc651822f6145176a157c6b0fa5131e02 + name: pkgconf-m4 + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-pkg-config-1.7.3-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 12438 + checksum: sha256:9a502d81d73d3303ceb53a06ad7ce525c97117ea64352174a33708bf3429283d + name: pkgconf-pkg-config + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/psmisc-23.4-3.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 253357 + checksum: sha256:30ad5408417c7f06fb945dc321bef3ce31f813f25389707dd1efa7c1d337b806 + name: psmisc + evr: 23.4-3.el9 + sourcerpm: psmisc-23.4-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tar-1.34-11.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 913256 + checksum: sha256:58b622ab7bc225731a2473e677f16c9eb51b1ed218a86a7aa039a6fed665f245 + name: tar + evr: 2:1.34-11.el9 + sourcerpm: tar-1.34-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 2382511 + checksum: sha256:35e0b73e574a7d8e93af0adf54adb2303f03423fd5761e357df86288f59d7933 + name: util-linux + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-core-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 476811 + checksum: sha256:5575c8fc753d5a81022786dac33e172a6d1602ef41d247a58465754d3f952726 + name: util-linux-core + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 22399 + checksum: sha256:9fc9ef3ba0b22a599b2a7b34bd0b025afd5f2623e9132b4ead19e98f9c62e97d + name: vim-filesystem + evr: 2:8.2.2637-26.el9_8.10 + sourcerpm: vim-8.2.2637-26.el9_8.10.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 235693 + checksum: sha256:f16d17c26a241400586ddc3d734ce863e3f19d433881ec640a47bedf0dafd07b + name: xz + evr: 5.2.5-8.el9_0 + sourcerpm: xz-5.2.5-8.el9_0.src.rpm source: [] -lockfileVendor: redhat -lockfileVersion: 1 + module_metadata: [] From c8bf66aae1d7ec4d7447091bcdcf71b2aa103a4b Mon Sep 17 00:00:00 2001 From: Andre Lustosa Date: Tue, 28 Jul 2026 13:58:46 -0400 Subject: [PATCH 03/24] CARRY: Fix cachi2 output path for prefetched artifacts Konflux mounts prefetched content at /cachi2/output/deps/ not /cachi2/deps/. Update all generic artifact paths in both Dockerfiles. Fix build-local.sh to mount hermeto output at /cachi2/output to match Konflux layout, and disable subscription-manager DNF plugin under --network=none to prevent RHEL repo injection. Signed-off-by: Andre Lustosa --- deploy/docker/Dockerfile.konflux.gateway | 2 +- deploy/docker/Dockerfile.konflux.supervisor | 6 +++--- deploy/konflux/build-local.sh | 15 ++++++++++++--- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/deploy/docker/Dockerfile.konflux.gateway b/deploy/docker/Dockerfile.konflux.gateway index 1e6dae1176..a3c08ea26d 100644 --- a/deploy/docker/Dockerfile.konflux.gateway +++ b/deploy/docker/Dockerfile.konflux.gateway @@ -39,7 +39,7 @@ COPY providers/ providers/ # z3-sys bundled build needs prefetched Z3 source. ARG Z3_VERSION=4.16.0 RUN mkdir -p /tmp/z3-src \ - && tar xzf /cachi2/deps/generic/z3-${Z3_VERSION}.tar.gz -C /tmp/z3-src --strip-components=1 \ + && tar xzf /cachi2/output/deps/generic/z3-${Z3_VERSION}.tar.gz -C /tmp/z3-src --strip-components=1 \ && Z3_SYS_BUNDLED_DIR_OVERRIDE=/tmp/z3-src \ cargo build --release \ --package openshell-server \ diff --git a/deploy/docker/Dockerfile.konflux.supervisor b/deploy/docker/Dockerfile.konflux.supervisor index 79cb7d417b..2f1d37d21e 100644 --- a/deploy/docker/Dockerfile.konflux.supervisor +++ b/deploy/docker/Dockerfile.konflux.supervisor @@ -29,7 +29,7 @@ RUN dnf install -y --nodocs gcc make tar gzip \ WORKDIR /tmp/musl-build -RUN tar xzf /cachi2/deps/generic/musl-${MUSL_VERSION}.tar.gz --strip-components=1 \ +RUN tar xzf /cachi2/output/deps/generic/musl-${MUSL_VERSION}.tar.gz --strip-components=1 \ && ./configure --prefix=/usr/local/musl --disable-shared \ && make -j"$(nproc)" \ && make install @@ -52,11 +52,11 @@ RUN RUST_ARCH=$(case "${TARGETARCH}" in amd64) echo x86_64;; arm64) echo aarch64 RUST_TRIPLE="${RUST_ARCH}-unknown-linux-gnu" && \ MUSL_TRIPLE="${RUST_ARCH}-unknown-linux-musl" && \ mkdir -p /tmp/rust-toolchain && \ - tar xJf /cachi2/deps/generic/rust-${RUST_VERSION}-${RUST_TRIPLE}.tar.xz -C /tmp/rust-toolchain --strip-components=1 && \ + tar xJf /cachi2/output/deps/generic/rust-${RUST_VERSION}-${RUST_TRIPLE}.tar.xz -C /tmp/rust-toolchain --strip-components=1 && \ /tmp/rust-toolchain/install.sh --prefix=/usr/local && \ rm -rf /tmp/rust-toolchain && \ mkdir -p /tmp/musl-std && \ - tar xJf /cachi2/deps/generic/rust-std-${RUST_VERSION}-${MUSL_TRIPLE}.tar.xz -C /tmp/musl-std --strip-components=1 && \ + tar xJf /cachi2/output/deps/generic/rust-std-${RUST_VERSION}-${MUSL_TRIPLE}.tar.xz -C /tmp/musl-std --strip-components=1 && \ /tmp/musl-std/install.sh --prefix=/usr/local && \ rm -rf /tmp/musl-std diff --git a/deploy/konflux/build-local.sh b/deploy/konflux/build-local.sh index 869f2a60a7..4cc76a067e 100755 --- a/deploy/konflux/build-local.sh +++ b/deploy/konflux/build-local.sh @@ -71,9 +71,9 @@ build_image() { ]" echo "=== Injecting files ===" - hermeto inject-files "${output_dir}" --for-output-dir /cachi2 + hermeto inject-files "${output_dir}" --for-output-dir /cachi2/output hermeto generate-env "${output_dir}" \ - --format env --for-output-dir /cachi2 \ + --format env --for-output-dir /cachi2/output \ --output "${output_dir}/cachi2.env" echo "=== Preparing RPM repos ===" @@ -90,11 +90,20 @@ build_image() { cp "${REPO_ROOT}/${dockerfile}" "${hermetic_dockerfile}" sed -i 's|^\s*RUN |RUN . /cachi2/cachi2.env \&\& \\\n |i' "${hermetic_dockerfile}" + # Disable subscription-manager so it doesn't inject RHEL repos that fail + # DNS under --network=none. Same as Konflux Tekton script (unlink rhel secrets). + local sm_conf + sm_conf=$(mktemp) + CLEANUP_PATHS+=("${sm_conf}") + echo -e "[main]\nenabled=0" > "${sm_conf}" + podman build \ -f "${hermetic_dockerfile}" \ --platform "${PLATFORM}" \ - --volume "$(realpath "${output_dir}"):/cachi2:Z" \ + --volume "$(realpath "${output_dir}"):/cachi2/output:Z" \ + --volume "$(realpath "${output_dir}/cachi2.env"):/cachi2/cachi2.env:Z" \ --volume "$(realpath "${repos_dir}"):/etc/yum.repos.d:Z" \ + --volume "${sm_conf}:/etc/dnf/plugins/subscription-manager.conf:Z" \ --network none \ -t "openshell-${component}-konflux" \ "${REPO_ROOT}" From 09abc18e5cf2f651340520123f97a4a7163cd5f5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 28 Jul 2026 20:09:30 +0000 Subject: [PATCH 04/24] CI: update Tekton pipelines - Pull pipelines use odh-pr tag - Push pipelines use odh-stable tag - Target branch: main --- .../odh-openshell-gateway-pull-request.yaml | 64 +++++++++++++++++++ .tekton/odh-openshell-gateway-push.yaml | 60 +++++++++++++++++ ...odh-openshell-supervisor-pull-request.yaml | 60 +++++++++++++++++ .tekton/odh-openshell-supervisor-push.yaml | 56 ++++++++++++++++ 4 files changed, 240 insertions(+) create mode 100644 .tekton/odh-openshell-gateway-pull-request.yaml create mode 100644 .tekton/odh-openshell-gateway-push.yaml create mode 100644 .tekton/odh-openshell-supervisor-pull-request.yaml create mode 100644 .tekton/odh-openshell-supervisor-push.yaml diff --git a/.tekton/odh-openshell-gateway-pull-request.yaml b/.tekton/odh-openshell-gateway-pull-request.yaml new file mode 100644 index 0000000000..f9f6fa2acd --- /dev/null +++ b/.tekton/odh-openshell-gateway-pull-request.yaml @@ -0,0 +1,64 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://github.com/opendatahub-io/openshell?rev={{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: opendatahub-builds + appstudio.openshift.io/component: odh-openshell-gateway-ci + pipelines.appstudio.openshift.io/type: build + name: odh-openshell-gateway-on-pull-request + namespace: open-data-hub-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/opendatahub/odh-openshell-gateway:odh-pr + - name: dockerfile + value: deploy/docker/Dockerfile.konflux.gateway + - name: path-context + value: . + - name: hermetic + value: "true" + - name: build-platforms + value: + - linux-m2xlarge/amd64 + - linux-m2xlarge/arm64 + - name: prefetch-input + value: | + [ + {"type": "cargo", "path": "."}, + {"type": "rpm", "path": "deploy/konflux/gateway"}, + {"type": "generic", "path": "deploy/konflux/gateway", "lockfile": "generic-fetcher.yaml"} + ] + - name: additional-tags + value: + - 'odh-pr-{{revision}}' + - name: pipeline-type + value: pull-request + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/opendatahub-io/odh-konflux-central.git + - name: revision + value: main + - name: pathInRepo + value: pipeline/multi-arch-container-build.yaml + taskRunTemplate: + serviceAccountName: build-pipeline-odh-openshell-gateway-ci + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} diff --git a/.tekton/odh-openshell-gateway-push.yaml b/.tekton/odh-openshell-gateway-push.yaml new file mode 100644 index 0000000000..31de20b0c1 --- /dev/null +++ b/.tekton/odh-openshell-gateway-push.yaml @@ -0,0 +1,60 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +# +metadata: + annotations: + build.appstudio.openshift.io/repo: https://github.com/opendatahub-io/openshell?rev={{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: opendatahub-builds + appstudio.openshift.io/component: odh-openshell-gateway-ci + pipelines.appstudio.openshift.io/type: build + name: odh-openshell-gateway-on-push + namespace: open-data-hub-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/opendatahub/odh-openshell-gateway:odh-stable + - name: dockerfile + value: deploy/docker/Dockerfile.konflux.gateway + - name: path-context + value: . + - name: hermetic + value: "true" + - name: build-platforms + value: + - linux-m2xlarge/amd64 + - linux-m2xlarge/arm64 + - name: prefetch-input + value: | + [ + {"type": "cargo", "path": "."}, + {"type": "rpm", "path": "deploy/konflux/gateway"}, + {"type": "generic", "path": "deploy/konflux/gateway", "lockfile": "generic-fetcher.yaml"} + ] + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/opendatahub-io/odh-konflux-central.git + - name: revision + value: main + - name: pathInRepo + value: pipeline/multi-arch-container-build.yaml + taskRunTemplate: + serviceAccountName: build-pipeline-odh-openshell-gateway-ci + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} diff --git a/.tekton/odh-openshell-supervisor-pull-request.yaml b/.tekton/odh-openshell-supervisor-pull-request.yaml new file mode 100644 index 0000000000..d0ce9274ce --- /dev/null +++ b/.tekton/odh-openshell-supervisor-pull-request.yaml @@ -0,0 +1,60 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://github.com/opendatahub-io/openshell?rev={{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: opendatahub-builds + appstudio.openshift.io/component: odh-openshell-supervisor-ci + pipelines.appstudio.openshift.io/type: build + name: odh-openshell-supervisor-on-pull-request + namespace: open-data-hub-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/opendatahub/odh-openshell-supervisor:odh-pr + - name: dockerfile + value: deploy/docker/Dockerfile.konflux.supervisor + - name: path-context + value: . + - name: hermetic + value: "true" + - name: prefetch-input + value: | + [ + {"type": "cargo", "path": "."}, + {"type": "rpm", "path": "deploy/konflux/supervisor"}, + {"type": "generic", "path": "deploy/konflux/supervisor", "lockfile": "generic-fetcher.yaml"} + ] + - name: additional-tags + value: + - 'odh-pr-{{revision}}' + - name: pipeline-type + value: pull-request + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/opendatahub-io/odh-konflux-central.git + - name: revision + value: main + - name: pathInRepo + value: pipeline/multi-arch-container-build.yaml + taskRunTemplate: + serviceAccountName: build-pipeline-odh-openshell-supervisor-ci + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} diff --git a/.tekton/odh-openshell-supervisor-push.yaml b/.tekton/odh-openshell-supervisor-push.yaml new file mode 100644 index 0000000000..9a8ac31975 --- /dev/null +++ b/.tekton/odh-openshell-supervisor-push.yaml @@ -0,0 +1,56 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +# +metadata: + annotations: + build.appstudio.openshift.io/repo: https://github.com/opendatahub-io/openshell?rev={{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: opendatahub-builds + appstudio.openshift.io/component: odh-openshell-supervisor-ci + pipelines.appstudio.openshift.io/type: build + name: odh-openshell-supervisor-on-push + namespace: open-data-hub-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/opendatahub/odh-openshell-supervisor:odh-stable + - name: dockerfile + value: deploy/docker/Dockerfile.konflux.supervisor + - name: path-context + value: . + - name: hermetic + value: "true" + - name: prefetch-input + value: | + [ + {"type": "cargo", "path": "."}, + {"type": "rpm", "path": "deploy/konflux/supervisor"}, + {"type": "generic", "path": "deploy/konflux/supervisor", "lockfile": "generic-fetcher.yaml"} + ] + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/opendatahub-io/odh-konflux-central.git + - name: revision + value: main + - name: pathInRepo + value: pipeline/multi-arch-container-build.yaml + taskRunTemplate: + serviceAccountName: build-pipeline-odh-openshell-supervisor-ci + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} From a91aaac0128e52e3b4f1e9f5d22a2b2ee7f19fd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Prpi=C4=8D?= Date: Wed, 29 Jul 2026 12:38:59 -0400 Subject: [PATCH 05/24] CARRY: fix supervisor arm64 build and cross-arch local builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Regenerate supervisor rpms.lock.yaml using --bare mode so all packages and transitive deps are resolved regardless of what the base image has pre-installed. Fixes missing libatomic on aarch64 (transitive dep of gcc, not needed on x86_64) and ensures runtime deps like iproute and util-linux-core are always included even though they're pre-installed in ubi:9.6 but not in ubi-minimal. Fix build-local.sh to derive the RPM repo arch from the PLATFORM variable instead of uname -m, so cross-arch builds mount the correct arch-specific repo file. Signed-off-by: Martin Prpič --- deploy/konflux/build-local.sh | 6 +- deploy/konflux/supervisor/rpms.in.yaml | 4 +- deploy/konflux/supervisor/rpms.lock.yaml | 1101 +++++++++++++++++++++- 3 files changed, 1100 insertions(+), 11 deletions(-) diff --git a/deploy/konflux/build-local.sh b/deploy/konflux/build-local.sh index 4cc76a067e..6a528a7e19 100755 --- a/deploy/konflux/build-local.sh +++ b/deploy/konflux/build-local.sh @@ -79,7 +79,11 @@ build_image() { echo "=== Preparing RPM repos ===" find "${output_dir}" -name "hermeto.repo" -execdir cp {} cachi2.repo \; local rpm_arch - rpm_arch=$(uname -m) + case "${PLATFORM}" in + */amd64|*/x86_64) rpm_arch="x86_64" ;; + */arm64|*/aarch64) rpm_arch="aarch64" ;; + *) rpm_arch=$(uname -m) ;; + esac cp "${output_dir}/deps/rpm/${rpm_arch}/repos.d/cachi2.repo" "${repos_dir}/" chmod -R go+rX "${repos_dir}" diff --git a/deploy/konflux/supervisor/rpms.in.yaml b/deploy/konflux/supervisor/rpms.in.yaml index 7ace27b3f5..7c58ab5cd2 100644 --- a/deploy/konflux/supervisor/rpms.in.yaml +++ b/deploy/konflux/supervisor/rpms.in.yaml @@ -1,7 +1,7 @@ # RPM dependencies for Dockerfile.konflux.supervisor # Build + runtime stages combined. Generate lockfile with: -# rpm-lockfile-prototype --containerfile deploy/docker/Dockerfile.konflux.supervisor \ -# --arch x86_64 \ +# rpm-lockfile-prototype --bare \ +# --arch x86_64 --arch aarch64 \ # --outfile deploy/konflux/supervisor/rpms.lock.yaml \ # deploy/konflux/supervisor/rpms.in.yaml # diff --git a/deploy/konflux/supervisor/rpms.lock.yaml b/deploy/konflux/supervisor/rpms.lock.yaml index 99e5902c60..c79d87a2de 100644 --- a/deploy/konflux/supervisor/rpms.lock.yaml +++ b/deploy/konflux/supervisor/rpms.lock.yaml @@ -39,6 +39,13 @@ arches: name: emacs-filesystem evr: 1:27.2-18.el9 sourcerpm: emacs-27.2-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gawk-all-langpacks-5.1.0-6.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 216292 + checksum: sha256:3fd73bd271e9c04dc297eb08c3829d276faee372f77666aad29f4b676ea220f4 + name: gawk-all-langpacks + evr: 5.1.0-6.el9 + sourcerpm: gawk-5.1.0-6.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-appstream-rpms size: 31291354 @@ -95,6 +102,13 @@ arches: name: libstdc++-devel evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libtool-ltdl-2.4.6-46.el9.aarch64.rpm + repoid: ubi-9-appstream-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libubsan-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-appstream-rpms size: 178996 @@ -123,6 +137,41 @@ arches: name: openssl-devel evr: 1:3.5.5-6.el9_8 sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/acl-2.4.0-1.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 84537 + checksum: sha256:241864fdb68d73b5a63df6269ae0895aec7c08e723fb0506fe446c148c9dad3f + name: acl + evr: 2.4.0-1.el9_8 + sourcerpm: acl-2.4.0-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/alternatives-1.24-2.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 128901 + checksum: sha256:11880ec70b575841843cbee0853e03e50a0506321ea0a6f76c0c8145d79ae531 + name: audit-libs + evr: 3.1.5-8.el9 + sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 8229 + checksum: sha256:f498b0813fa1a825d550e8e3a9e42255eabfa18e6fc96adfc6cc8fa7e16dd513 + name: basesystem + evr: 11-13.el9 + sourcerpm: basesystem-11-13.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/bash-5.1.8-9.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1760045 + checksum: sha256:7dc1febec9c2fb184ed4407f8a188ab267b7e46b3534866f702c6266008ababa + name: bash + evr: 5.1.8-9.el9 + sourcerpm: bash-5.1.8-9.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-2.35.2-72.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 5021411 @@ -137,6 +186,34 @@ arches: name: binutils-gold evr: 2.35.2-72.el9 sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 47655 + checksum: sha256:8267a866b9289ac4e4a92cb4642adcdeff97c2ed816ddda87ed5d5e9d9431a2f + name: bzip2-libs + evr: 1.0.8-11.el9 + sourcerpm: bzip2-1.0.8-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1177900 + checksum: sha256:ee2de9f5fbc5e83bad920a353c45d3446997aa0e4023436528b2d6f817bd6f50 + name: coreutils + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 2114764 + checksum: sha256:cd79ca65bba152b9ccadcb9780ec78e3d06ce538b693078fd14459d038ab5c0c + name: coreutils-common + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 102026 @@ -151,6 +228,41 @@ arches: name: cracklib-dicts evr: 2.9.6-28.el9 sourcerpm: cracklib-2.9.6-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 98707 + checksum: sha256:a9ad86b8df75a7c9c29c6f6dd4b8f78cfa1f42b492eff0d11b82c457d37a7f9f + name: crypto-policies + evr: 20260224-1.gitea0f072.el9_8 + sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-1.12.20-8.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 8025 + checksum: sha256:5178f638660d1699fb06caeeac91f41c07da59b500e94adf2653df892f2cbdf8 + name: dbus + evr: 1:1.12.20-8.el9 + sourcerpm: dbus-1.12.20-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-broker-28-7.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 173303 + checksum: sha256:342af53fbf4254e34b5f19a6be6f22c67551c26dd0c49016edc93e806621b75d + name: dbus-broker + evr: 28-7.el9 + sourcerpm: dbus-broker-28-7.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 18551 + checksum: sha256:298f1cada3cbcef6713098b9925694a0e30e8566f7a5bdbd72384520cf6c8360 + name: dbus-common + evr: 1:1.12.20-8.el9 + sourcerpm: dbus-1.12.20-8.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 42824 @@ -186,6 +298,34 @@ arches: name: expat evr: 2.5.0-6.el9_8.1 sourcerpm: expat-2.5.0-6.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/f/filesystem-3.16-5.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 5003914 + checksum: sha256:484bc41109c49066cf350344150abe144e63263e0fafa0bf12c5a47f853e6a49 + name: filesystem + evr: 3.16-5.el9 + sourcerpm: filesystem-3.16-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/f/findutils-4.8.0-7.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gawk-5.1.0-6.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-2.34-274.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms size: 1813548 @@ -200,11 +340,11 @@ arches: name: glibc-common evr: 2.34-274.el9_8 sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-gconv-extra-2.34-274.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 684496 - checksum: sha256:0883e1f9ac411a052c434f7339e6929c34cf4a47330a38e036a3c15c17322fa1 - name: glibc-langpack-en + size: 1831242 + checksum: sha256:a205cf1cbd5e274fb8911d40d5ce2865abc64c6d3d93d69bcc78c7cecdd2798d + name: glibc-gconv-extra evr: 2.34-274.el9_8 sourcerpm: glibc-2.34-274.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.aarch64.rpm @@ -214,6 +354,20 @@ arches: name: glibc-minimal-langpack evr: 2.34-274.el9_8 sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gmp-6.2.0-13.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/grep-3.6-5.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-1.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 169809 @@ -249,6 +403,34 @@ arches: name: jansson evr: 2.14-1.el9 sourcerpm: jansson-2.14-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/j/json-c-0.14-11.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 45052 + checksum: sha256:fff625bf4f0753eb7323b8933d264f3cc5c992bfecba8b082b204849297149cc + name: json-c + evr: 0.14-11.el9 + sourcerpm: json-c-0.14-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kmod-libs-28-11.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 62168 + checksum: sha256:58526b701eb3a72de98062c58b56524c35916a7b1191bb1a846da33be5a5f709 + name: kmod-libs + evr: 28-11.el9 + sourcerpm: kmod-28-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 793489 + checksum: sha256:f8bbc9abe0da1ebe5bc028154bd54d465fe0682ddbb64c45882b84ff09f40e1d + name: krb5-libs + evr: 1.21.1-10.el9_8 + sourcerpm: krb5-1.21.1-10.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/less-590-6.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 165028 @@ -256,6 +438,34 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libacl-2.4.0-1.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 31468 + checksum: sha256:70ba010505e9805254f772c3dd9cd9e6176fc9e007e8c9be7204c44f85d8bbd2 + name: libacl + evr: 2.4.0-1.el9_8 + sourcerpm: acl-2.4.0-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libatomic-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 26108 + checksum: sha256:bebe2e8fd98c64d1667e3de1eb3751b7b641bf5d0cd870ed6445fea5c4526326 + name: libatomic + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libattr-2.5.1-3.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 20696 + checksum: sha256:b6a73c9da522df55690b886c0a9af39338571d34ee6f0d4d9b994c8289df3412 + name: libattr + evr: 2.5.1-3.el9 + sourcerpm: attr-2.5.1-3.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 113931 @@ -270,6 +480,27 @@ arches: name: libbpf evr: 2:1.5.0-3.el9 sourcerpm: libbpf-1.5.0-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 78021 + checksum: sha256:1ac3014c33b84d7a492b99d46d47940b096e034a3d5886e16ace7159724be012 + name: libcap + evr: 2.48-10.el9_8.1 + sourcerpm: libcap-2.48-10.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 59368 @@ -277,6 +508,20 @@ arches: name: libcbor evr: 0.7.0-5.el9 sourcerpm: libcbor-0.7.0-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 291404 + checksum: sha256:4d77a96282b20b10d8e221e1208f0be8ec21274c090ee44866f36646e7b7206a + name: libcurl + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.aarch64.rpm repoid: ubi-9-baseos-rpms size: 727417 @@ -298,6 +543,13 @@ arches: name: libedit evr: 3.1-39.20210216cvs.el9 sourcerpm: libedit-3.1-39.20210216cvs.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 156711 @@ -305,6 +557,13 @@ arches: name: libfdisk evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libffi-3.4.2-8.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 100573 @@ -319,6 +578,13 @@ arches: name: libgcc evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 468890 + checksum: sha256:3d2245f8566422e27f77d0ef4820bafe8d059b12612e74e5672d9c5959ff7ec3 + name: libgcrypt + evr: 1.10.0-11.el9 + sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 262138 @@ -326,6 +592,20 @@ arches: name: libgomp evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 222476 + checksum: sha256:aee968114aed0238eb26cff42ec9b0819ad32e2bac99aa8124d55b480806aca5 + name: libgpg-error + evr: 1.42-5.el9 + sourcerpm: libgpg-error-1.42-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libmnl-1.0.4-16.el9_4.aarch64.rpm repoid: ubi-9-baseos-rpms size: 30479 @@ -361,6 +641,13 @@ arches: name: libnftnl evr: 1.2.6-4.el9_4 sourcerpm: libnftnl-1.2.6-4.el9_4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 79620 + checksum: sha256:69ae21fe69981041b43d3420800b691b854a32df2a26e84ce367bcfe4a4cac69 + name: libnghttp2 + evr: 1.43.0-6.el9_8.1 + sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 38310 @@ -368,6 +655,13 @@ arches: name: libpkgconf evr: 1.7.3-10.el9 sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 125712 @@ -375,6 +669,41 @@ arches: name: libpwquality evr: 1.4.4-8.el9 sourcerpm: libpwquality-1.4.4-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 76024 + checksum: sha256:fc1d5e93483d166ca7f2acb50c04c181db2f3e7b89dba8edc6b1e5f2b0f10619 + name: libseccomp + evr: 2.5.2-2.el9 + sourcerpm: libseccomp-2.5.2-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libselinux-3.6-3.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 89531 + checksum: sha256:3d7249adbf19206e319cd24acc2e01b0da39975aa3e5af73bdb6c6d438108fac + name: libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsepol-3.6-3.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 326966 + checksum: sha256:496ed9e2d7fac9704afe764eab4c2c43b4a47e8c229c14498dd19786f98f80c0 + name: libsepol + evr: 3.6-3.el9 + sourcerpm: libsepol-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 67440 @@ -382,6 +711,20 @@ arches: name: libsmartcols evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-18.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 222382 + checksum: sha256:6d529b3f31dee553349277c9f72da4f14ae54a2d48d10aa3088b45fbe90f99c2 + name: libssh + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 14685 + checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + name: libssh-config + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 723913 @@ -389,6 +732,20 @@ arches: name: libstdc++ evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 80446 + checksum: sha256:322524934c9b1f0714d2299705dbd41ec93451078e8144babc88c51bd19f6e07 + name: libtasn1 + evr: 4.16.0-10.el9_8 + sourcerpm: libtasn1-4.16.0-10.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 30505 @@ -403,6 +760,41 @@ arches: name: libuuid evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libverto-0.3.2-3.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 754623 + checksum: sha256:e78f201e1cbab2bbce30991a1618f3b79d8afc9ef8bb9bf41046e314c5f30f0e + name: libxml2 + evr: 2.9.13-14.el9_8.2 + sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/make-4.3-8.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 550249 @@ -410,6 +802,27 @@ arches: name: make evr: 1:4.3-8.el9 sourcerpm: make-4.3-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 249973 + checksum: sha256:c238f7451d1fcc5431bef2904ba56a0bea51d28337ccb692f6d6a09286043a65 + name: mpfr + evr: 4.1.0-10.el9 + sourcerpm: mpfr-4.1.0-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 97840 + checksum: sha256:d62dfd41f9688efa2cf1ceedb96084c63e297fbdcfd1e72bc6757c730092b60c + name: ncurses-base + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 324624 + checksum: sha256:b5dd452392d2f97bb050c9f5e5376998652c567dcbd8f035d26659b1b551b5c9 + name: ncurses-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/nftables-1.0.9-7.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms size: 431040 @@ -417,6 +830,13 @@ arches: name: nftables evr: 1:1.0.9-7.el9_8 sourcerpm: nftables-1.0.9-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openldap-2.6.8-4.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms size: 431979 @@ -459,6 +879,20 @@ arches: name: openssl-libs evr: 1:3.5.5-6.el9_8 sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 582494 + checksum: sha256:5c8fe4b19ea7a76bc2213087ee91679143217fbc33162103e60dd60735504f36 + name: p11-kit + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 158801 + checksum: sha256:713b79a7f12829d98bad68dd2d661f3ef30969fdffbbbb5de4dc7aec6cfdd030 + name: p11-kit-trust + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pam-1.5.1-28.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 635826 @@ -466,6 +900,27 @@ arches: name: pam evr: 1.5.1-28.el9 sourcerpm: pam-1.5.1-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre-8.44-4.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre2-10.40-6.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 224938 + checksum: sha256:29285f81cef68f73b4f8ff81ee8fdf4ceaa007933302119ed1615e4aa1091613 + name: pcre2 + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 147926 + checksum: sha256:d386b5e9b3a4b077b2ba143882e605750855dd3354f13c55fa12ed26908cb442 + name: pcre2-syntax + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 45196 @@ -494,6 +949,76 @@ arches: name: psmisc evr: 23.4-3.el9 sourcerpm: psmisc-23.4-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/readline-8.1-4.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 61683 + checksum: sha256:fa7f1d93927c7f8c6f6563a8d221af659074f026e4b12cd74d456b0db1878164 + name: redhat-release + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/sed-4.8-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 315893 + checksum: sha256:b73d314a8ef322a690bb69c49cb0dbd9a5ff18d2ba6b2973e18d2c076a52b62a + name: sed + evr: 4.8-10.el9 + sourcerpm: sed-4.8-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 153791 + checksum: sha256:0891d395ce067121c28932534237ad1ce231f2bfa987411ad62e73a12d11eb6a + name: setup + evr: 2.13.7-10.el9 + sourcerpm: setup-2.13.7-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1244527 + checksum: sha256:ccc46a8ea5f30d071e075ad53b5d39d191cfca4614090435528f2d2f944f88a2 + name: shadow-utils + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-252-67.el9_8.4.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 4156431 + checksum: sha256:f49001c208ea0ec7776b2353800f133d3383e72bda8486132dc6822a803aef9f + name: systemd + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 647617 + checksum: sha256:78f8f784050b920675ce5d37d659213226265dd72de14ec10df291afae59d8b7 + name: systemd-libs + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-pam-252-67.el9_8.4.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 266579 + checksum: sha256:e85f1916e5fc35f483282c2de00cb4e1a9a40743e745c00bb66e30e383955d46 + name: systemd-pam + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-rpm-macros-252-67.el9_8.4.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 59475 + checksum: sha256:7d671ec39a7caeb7346be6d5fcb44212545844ced6f4974c4b409fef6a12a891 + name: systemd-rpm-macros + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tar-1.34-11.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 904777 @@ -501,6 +1026,13 @@ arches: name: tar evr: 2:1.34-11.el9 sourcerpm: tar-1.34-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 933841 + checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + name: tzdata + evr: 2026b-1.el9 + sourcerpm: tzdata-2026b-1.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 2390152 @@ -529,6 +1061,20 @@ arches: name: xz evr: 5.2.5-8.el9_0 sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/z/zlib-1.2.11-40.el9.aarch64.rpm + repoid: ubi-9-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: [] module_metadata: [] - arch: x86_64 @@ -568,6 +1114,13 @@ arches: name: emacs-filesystem evr: 1:27.2-18.el9 sourcerpm: emacs-27.2-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gawk-all-langpacks-5.1.0-6.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 216340 + checksum: sha256:c1fcc71c1cc1160d58ace4b60cc6733b68d6f6d406e5ec5ce24327787f452cd1 + name: gawk-all-langpacks + evr: 5.1.0-6.el9 + sourcerpm: gawk-5.1.0-6.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-appstream-rpms size: 33982584 @@ -624,6 +1177,13 @@ arches: name: libstdc++-devel evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libtool-ltdl-2.4.6-46.el9.x86_64.rpm + repoid: ubi-9-appstream-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.x86_64.rpm repoid: ubi-9-appstream-rpms size: 154427 @@ -645,6 +1205,41 @@ arches: name: openssl-devel evr: 1:3.5.5-6.el9_8 sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/acl-2.4.0-1.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 85269 + checksum: sha256:611da2c85401a2f26dba165c0be27b2e62fa71ceb5c392c8f5a9d30c31238d5b + name: acl + evr: 2.4.0-1.el9_8 + sourcerpm: acl-2.4.0-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/alternatives-1.24-2.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 130600 + checksum: sha256:637ac2995ce1a6c222772b60f6bc6e6f2829355d2c88dfb1262fb76146d985ae + name: audit-libs + evr: 3.1.5-8.el9 + sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 8229 + checksum: sha256:f498b0813fa1a825d550e8e3a9e42255eabfa18e6fc96adfc6cc8fa7e16dd513 + name: basesystem + evr: 11-13.el9 + sourcerpm: basesystem-11-13.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/bash-5.1.8-9.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1769540 + checksum: sha256:d3adf8b09aa0bf935c67aa12444e0ee02f70a82c2682bfb2b02bda0a989bb806 + name: bash + evr: 5.1.8-9.el9 + sourcerpm: bash-5.1.8-9.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-2.35.2-72.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 4821853 @@ -659,6 +1254,34 @@ arches: name: binutils-gold evr: 2.35.2-72.el9 sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 46333 + checksum: sha256:948f763ed17672b8dd83356541e27a53ce97c6df38339c4416a188d452ca4d1e + name: bzip2-libs + evr: 1.0.8-11.el9 + sourcerpm: bzip2-1.0.8-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1220715 + checksum: sha256:e53f0f831246c73ab03ae395054d261ae392faa1229e6c691c08d2321a824b75 + name: coreutils + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 2116611 + checksum: sha256:1d4010cdc4f0fb7a4be68bf1bf0f0cda84a11d7337bd15d8368ab0ff90ca0db4 + name: coreutils-common + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 102444 @@ -673,6 +1296,41 @@ arches: name: cracklib-dicts evr: 2.9.6-28.el9 sourcerpm: cracklib-2.9.6-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 98707 + checksum: sha256:a9ad86b8df75a7c9c29c6f6dd4b8f78cfa1f42b492eff0d11b82c457d37a7f9f + name: crypto-policies + evr: 20260224-1.gitea0f072.el9_8 + sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-1.12.20-8.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 8073 + checksum: sha256:96b1daa4de0a635ab760a8431fb005022bb7cb48d2d1d3ec9a8adb1798c0e10e + name: dbus + evr: 1:1.12.20-8.el9 + sourcerpm: dbus-1.12.20-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-broker-28-7.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 179634 + checksum: sha256:de9869c08df7f6952787d0335b9bf1a09b328bea920556a59af07c8e085dd3cb + name: dbus-broker + evr: 28-7.el9 + sourcerpm: dbus-broker-28-7.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 18551 + checksum: sha256:298f1cada3cbcef6713098b9925694a0e30e8566f7a5bdbd72384520cf6c8360 + name: dbus-common + evr: 1:1.12.20-8.el9 + sourcerpm: dbus-1.12.20-8.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 43826 @@ -708,6 +1366,34 @@ arches: name: expat evr: 2.5.0-6.el9_8.1 sourcerpm: expat-2.5.0-6.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/f/filesystem-3.16-5.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 5003807 + checksum: sha256:9567592e6e32a9ebd45584cc4feb5d00812f143fcb2d8cd8b1d95108f4f66a2d + name: filesystem + evr: 3.16-5.el9 + sourcerpm: filesystem-3.16-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/f/findutils-4.8.0-7.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gawk-5.1.0-6.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-2.34-274.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms size: 2083155 @@ -722,11 +1408,11 @@ arches: name: glibc-common evr: 2.34-274.el9_8 sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-gconv-extra-2.34-274.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 684459 - checksum: sha256:1491343a7653599e4fbea03780731c6777df85dc998bafb237658cde3728b663 - name: glibc-langpack-en + size: 1766939 + checksum: sha256:fc95653733ca0cf6b9fafc2485573f123b62831dc17f2fc1e8d7cd033a2f77d4 + name: glibc-gconv-extra evr: 2.34-274.el9_8 sourcerpm: glibc-2.34-274.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.x86_64.rpm @@ -736,6 +1422,20 @@ arches: name: glibc-minimal-langpack evr: 2.34-274.el9_8 sourcerpm: glibc-2.34-274.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gmp-6.2.0-13.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/grep-3.6-5.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-1.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 171206 @@ -771,6 +1471,34 @@ arches: name: jansson evr: 2.14-1.el9 sourcerpm: jansson-2.14-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/json-c-0.14-11.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 46136 + checksum: sha256:b9bde4162250023103d95908fbca44fff6636a46176f92cf1761c1c3a4580a2f + name: json-c + evr: 0.14-11.el9 + sourcerpm: json-c-0.14-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kmod-libs-28-11.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 63619 + checksum: sha256:f296bc24a1b8ba6c40ed73ba736be97ed78e4124b6dbdd8a0a25a9683d4ff1ce + name: kmod-libs + evr: 28-11.el9 + sourcerpm: kmod-28-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 790743 + checksum: sha256:8906be9f2d414c5f4e1218db0c94955c2b3394b43a04b7dbcc2ef66c4340ebc6 + name: krb5-libs + evr: 1.21.1-10.el9_8 + sourcerpm: krb5-1.21.1-10.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/less-590-6.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 166025 @@ -778,6 +1506,27 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libacl-2.4.0-1.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 31657 + checksum: sha256:a81fb7a4d7c946e9bd886ee3c471a4b5040dedbb8ffb2a388120b2094be93cc8 + name: libacl + evr: 2.4.0-1.el9_8 + sourcerpm: acl-2.4.0-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libattr-2.5.1-3.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 20786 + checksum: sha256:6519f028915fbd7ee0474f0bf4e98e35f04b5d0cf7be9f66c0cb9eafac0b8c5a + name: libattr + evr: 2.5.1-3.el9 + sourcerpm: attr-2.5.1-3.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 114192 @@ -792,6 +1541,27 @@ arches: name: libbpf evr: 2:1.5.0-3.el9 sourcerpm: libbpf-1.5.0-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 78928 + checksum: sha256:d4805439b10fa551b7535cf30ca28d4d5862132c9c429b2b31221bea7f43263a + name: libcap + evr: 2.48-10.el9_8.1 + sourcerpm: libcap-2.48-10.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 60575 @@ -799,6 +1569,20 @@ arches: name: libcbor evr: 0.7.0-5.el9 sourcerpm: libcbor-0.7.0-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 296527 + checksum: sha256:d89db646d90f8342e097cf03c7979d0da1c2df45bcb4e2b9fe7437b7895a7df5 + name: libcurl + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.x86_64.rpm repoid: ubi-9-baseos-rpms size: 755192 @@ -820,6 +1604,13 @@ arches: name: libedit evr: 3.1-39.20210216cvs.el9 sourcerpm: libedit-3.1-39.20210216cvs.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 161769 @@ -827,6 +1618,13 @@ arches: name: libfdisk evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libffi-3.4.2-8.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 102746 @@ -841,6 +1639,13 @@ arches: name: libgcc evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 522581 + checksum: sha256:9d5a5a4292a5a345143b632c2764ad8e7b095413f78f5693d29c2ea5e7d37119 + name: libgcrypt + evr: 1.10.0-11.el9 + sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 263723 @@ -848,6 +1653,20 @@ arches: name: libgomp evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 225603 + checksum: sha256:8248e20d7a253aa9c0dc7dc3d56b42e1def4fd5753ce8e8b9e980aa664fc9068 + name: libgpg-error + evr: 1.42-5.el9 + sourcerpm: libgpg-error-1.42-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libmnl-1.0.4-16.el9_4.x86_64.rpm repoid: ubi-9-baseos-rpms size: 30949 @@ -883,6 +1702,13 @@ arches: name: libnftnl evr: 1.2.6-4.el9_4 sourcerpm: libnftnl-1.2.6-4.el9_4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 80371 + checksum: sha256:3e99ec9ac85e7b1bf8348a503b14eb8d41e6df788c181202484a8cbc399f630a + name: libnghttp2 + evr: 1.43.0-6.el9_8.1 + sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 38387 @@ -890,6 +1716,13 @@ arches: name: libpkgconf evr: 1.7.3-10.el9 sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 126104 @@ -897,6 +1730,41 @@ arches: name: libpwquality evr: 1.4.4-8.el9 sourcerpm: libpwquality-1.4.4-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 76200 + checksum: sha256:e2015f60dbe784330d5df43f3f05c68c307694600a636a1706bf86527cc82e82 + name: libseccomp + evr: 2.5.2-2.el9 + sourcerpm: libseccomp-2.5.2-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libselinux-3.6-3.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 89722 + checksum: sha256:ce1cc63a7212c39f5f2a35f719ee38d6418cf081ea78c9317f388d9f41e4a627 + name: libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsepol-3.6-3.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 338766 + checksum: sha256:b98984b2bf42203964cc979ac157df090c63b89a0f5c6560ede01965531c8ffd + name: libsepol + evr: 3.6-3.el9 + sourcerpm: libsepol-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 68692 @@ -904,6 +1772,20 @@ arches: name: libsmartcols evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-18.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 225119 + checksum: sha256:4a3ec8a0cc0d4f693a876c522d3e4bc2296180b9ec05f958f6a0aa8658702458 + name: libssh + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 14685 + checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + name: libssh-config + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 763021 @@ -911,6 +1793,20 @@ arches: name: libstdc++ evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 81418 + checksum: sha256:f9473f322407f10205b0db98b89cf8f603e9c769e9977250734136df56cbb981 + name: libtasn1 + evr: 4.16.0-10.el9_8 + sourcerpm: libtasn1-4.16.0-10.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 30354 @@ -925,6 +1821,41 @@ arches: name: libuuid evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libverto-0.3.2-3.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 772164 + checksum: sha256:8bc57807fd307c504dd53a1d047215abb9892130943d29023765d2acd9af09a4 + name: libxml2 + evr: 2.9.13-14.el9_8.2 + sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/make-4.3-8.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 553896 @@ -932,6 +1863,27 @@ arches: name: make evr: 1:4.3-8.el9 sourcerpm: make-4.3-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 338130 + checksum: sha256:4adb12cda3b0e537ba5b22e7615288df751720d2e738bd182675d529cf1ead0c + name: mpfr + evr: 4.1.0-10.el9 + sourcerpm: mpfr-4.1.0-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 97840 + checksum: sha256:d62dfd41f9688efa2cf1ceedb96084c63e297fbdcfd1e72bc6757c730092b60c + name: ncurses-base + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 336270 + checksum: sha256:f3e1f8e59c7116278aa19b6705a1443f6307d4d6fbdde75a23d2f5d60636cb16 + name: ncurses-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/nftables-1.0.9-7.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms size: 437853 @@ -939,6 +1891,13 @@ arches: name: nftables evr: 1:1.0.9-7.el9_8 sourcerpm: nftables-1.0.9-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openldap-2.6.8-4.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms size: 442163 @@ -981,6 +1940,20 @@ arches: name: openssl-libs evr: 1:3.5.5-6.el9_8 sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 624045 + checksum: sha256:3bc31959dd99d0c3103866296664c02c219c0a7c8b906c96ecc5ec3dda57c864 + name: p11-kit + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 165124 + checksum: sha256:715fd8181525f3d6869d5086f36a15ea47a0e96297ccf5920c37d3a0cb36c409 + name: p11-kit-trust + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pam-1.5.1-28.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 637912 @@ -988,6 +1961,27 @@ arches: name: pam evr: 1.5.1-28.el9 sourcerpm: pam-1.5.1-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre-8.44-4.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre2-10.40-6.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 241900 + checksum: sha256:75db1e5a50e7b1794d7ba18212d95cd2684559da9e7c52eee46490302c7f24dd + name: pcre2 + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 147926 + checksum: sha256:d386b5e9b3a4b077b2ba143882e605750855dd3354f13c55fa12ed26908cb442 + name: pcre2-syntax + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 45675 @@ -1016,6 +2010,76 @@ arches: name: psmisc evr: 23.4-3.el9 sourcerpm: psmisc-23.4-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/readline-8.1-4.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 61742 + checksum: sha256:8157ed988fc34dcfeb6429272959471edd5bde4ac212f26611fd54c180391758 + name: redhat-release + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/sed-4.8-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 317456 + checksum: sha256:45e246453dc9eb1bad6a71c6f349aad1b1b2e1bf3ec645b80f0ed04fe69c960e + name: sed + evr: 4.8-10.el9 + sourcerpm: sed-4.8-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 153791 + checksum: sha256:0891d395ce067121c28932534237ad1ce231f2bfa987411ad62e73a12d11eb6a + name: setup + evr: 2.13.7-10.el9 + sourcerpm: setup-2.13.7-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1250179 + checksum: sha256:17294ee3fbc09c1b5cfc4114d3815cbd92584d6d70a6288e1dce2fda0a62dc59 + name: shadow-utils + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-252-67.el9_8.4.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 4401138 + checksum: sha256:e3cbe70aaa847f1b02bd4ea9470625434c26b25368cbfcb0e9a18de99e3bc1c7 + name: systemd + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 681056 + checksum: sha256:ca5a11f102b0e3a32fdddf017a4509984db83290d7364c9566d037d0ef7f1e66 + name: systemd-libs + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-pam-252-67.el9_8.4.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 276960 + checksum: sha256:de8408dbe8ee06afa99fbb914377384774e27b9b337cb3b491a37f84ccca7e9b + name: systemd-pam + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-rpm-macros-252-67.el9_8.4.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 59475 + checksum: sha256:7d671ec39a7caeb7346be6d5fcb44212545844ced6f4974c4b409fef6a12a891 + name: systemd-rpm-macros + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tar-1.34-11.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 913256 @@ -1023,6 +2087,13 @@ arches: name: tar evr: 2:1.34-11.el9 sourcerpm: tar-1.34-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 933841 + checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + name: tzdata + evr: 2026b-1.el9 + sourcerpm: tzdata-2026b-1.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 2382511 @@ -1051,5 +2122,19 @@ arches: name: xz evr: 5.2.5-8.el9_0 sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/z/zlib-1.2.11-40.el9.x86_64.rpm + repoid: ubi-9-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: [] module_metadata: [] From 83f4cb4cdf1097e52496dee4edaa7a828211a347 Mon Sep 17 00:00:00 2001 From: Andre Lustosa Date: Wed, 29 Jul 2026 11:49:24 -0400 Subject: [PATCH 06/24] CARRY: Add RHAIV auto-tag workflow Daily workflow that creates +rhaiv.N tags based on the latest upstream version tag. When upstream syncs a new vX.Y.Z, the next run creates +rhaiv.0. Subsequent runs increment N while no new upstream tag appears. Skips if no new commits since the last rhaiv tag. Signed-off-by: Andre Lustosa --- .github/workflows/rhaiv-auto-tag.yml | 98 ++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 .github/workflows/rhaiv-auto-tag.yml diff --git a/.github/workflows/rhaiv-auto-tag.yml b/.github/workflows/rhaiv-auto-tag.yml new file mode 100644 index 0000000000..b22f61ceb5 --- /dev/null +++ b/.github/workflows/rhaiv-auto-tag.yml @@ -0,0 +1,98 @@ +# RHAIV auto-tag workflow for the OpenShell midstream fork. +# Creates +rhaiv.N tags based on the latest upstream version tag. +# +# Logic: +# 1. Find the latest upstream-style tag (vX.Y.Z, no +rhaiv suffix) +# 2. If no vX.Y.Z+rhaiv.0 exists, create it +# 3. If vX.Y.Z+rhaiv.N exists, create vX.Y.Z+rhaiv.(N+1) +# 4. Skip if no new commits since the last +rhaiv.N tag +# +# When upstream syncs a new vX.Y.Z, the next run creates +rhaiv.0 for it. + +name: RHAIV Auto-Tag + +on: + workflow_dispatch: {} + schedule: + - cron: "30 14 * * 1-5" # 7:30 AM PDT, weekdays + +permissions: {} + +concurrency: + group: rhaiv-auto-tag + cancel-in-progress: false + +jobs: + create-tag: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + with: + ref: main + persist-credentials: false + fetch-depth: 0 + + - name: Determine next rhaiv tag + id: version + run: | + # Find the latest upstream tag (vX.Y.Z without +rhaiv suffix) + latest_upstream=$(git tag -l 'v*.*.*' --sort=-v:refname | grep -v '+rhaiv' | head -1) + if [ -z "$latest_upstream" ]; then + echo "::error::No upstream v*.*.* tags found" + exit 1 + fi + + # Validate tag is strict semver (vN.N.N, digits only) + if ! echo "$latest_upstream" | grep -qE '^v[0-9]+\.[0-9]+\.[0-9]+$'; then + echo "::error::Latest tag '$latest_upstream' is not valid semver" + exit 1 + fi + echo "Latest upstream tag: $latest_upstream" + + # Find the latest rhaiv tag for this upstream version + latest_rhaiv=$(git tag -l "${latest_upstream}+rhaiv.*" --sort=-v:refname | head -1) + + if [ -z "$latest_rhaiv" ]; then + next="${latest_upstream}+rhaiv.0" + compare_ref="$latest_upstream" + echo "No existing rhaiv tags for $latest_upstream" + else + current_n=$(echo "$latest_rhaiv" | grep -oP '\+rhaiv\.\K[0-9]+') + next_n=$((current_n + 1)) + next="${latest_upstream}+rhaiv.${next_n}" + compare_ref="$latest_rhaiv" + echo "Latest rhaiv tag: $latest_rhaiv (N=$current_n)" + fi + + # Validate generated tag format + if ! echo "$next" | grep -qE '^v[0-9]+\.[0-9]+\.[0-9]+\+rhaiv\.[0-9]+$'; then + echo "::error::Generated tag '$next' has unexpected format" + exit 1 + fi + + # Skip if no new commits since the last tag + commit_count=$(git rev-list "${compare_ref}..HEAD" --count) + echo "Commits since $compare_ref: $commit_count" + if [ "$commit_count" -eq 0 ]; then + echo "No new commits since $compare_ref -- skipping" + echo "skip=true" >> "$GITHUB_OUTPUT" + exit 0 + fi + + if git tag -l "$next" | grep -q .; then + echo "::error::Tag $next already exists" + exit 1 + fi + + echo "next=$next" >> "$GITHUB_OUTPUT" + echo "Next tag: $next" + + - name: Create and push tag + if: steps.version.outputs.skip != 'true' + env: + NEXT_TAG: ${{ steps.version.outputs.next }} + run: | + git tag "$NEXT_TAG" + git push origin "$NEXT_TAG" From b28f913605df3d80ab48b5c39d4ab129ad79164f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 29 Jul 2026 15:06:39 +0000 Subject: [PATCH 07/24] CI: update Tekton pipelines - Pull pipelines use odh-pr tag - Push pipelines use odh-stable tag - Target branch: main --- .tekton/odh-openshell-supervisor-pull-request.yaml | 4 ++++ .tekton/odh-openshell-supervisor-push.yaml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.tekton/odh-openshell-supervisor-pull-request.yaml b/.tekton/odh-openshell-supervisor-pull-request.yaml index d0ce9274ce..7410c5fb57 100644 --- a/.tekton/odh-openshell-supervisor-pull-request.yaml +++ b/.tekton/odh-openshell-supervisor-pull-request.yaml @@ -30,6 +30,10 @@ spec: value: . - name: hermetic value: "true" + - name: build-platforms + value: + - linux/x86_64 + - linux/arm64 - name: prefetch-input value: | [ diff --git a/.tekton/odh-openshell-supervisor-push.yaml b/.tekton/odh-openshell-supervisor-push.yaml index 9a8ac31975..c70591fef9 100644 --- a/.tekton/odh-openshell-supervisor-push.yaml +++ b/.tekton/odh-openshell-supervisor-push.yaml @@ -31,6 +31,10 @@ spec: value: . - name: hermetic value: "true" + - name: build-platforms + value: + - linux/x86_64 + - linux/arm64 - name: prefetch-input value: | [ From 956080d4e18ade2d4d1a07555293c820cec5f243 Mon Sep 17 00:00:00 2001 From: Andre Lustosa Date: Wed, 29 Jul 2026 16:48:24 -0400 Subject: [PATCH 08/24] CARRY: fix rhaiv-auto-tag to push by keeping checkout credentials The workflow failed because persist-credentials: false removed the GITHUB_TOKEN from the git config, blocking the tag push. Signed-off-by: Andre Lustosa --- .github/workflows/rhaiv-auto-tag.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/rhaiv-auto-tag.yml b/.github/workflows/rhaiv-auto-tag.yml index b22f61ceb5..69f7cc99c2 100644 --- a/.github/workflows/rhaiv-auto-tag.yml +++ b/.github/workflows/rhaiv-auto-tag.yml @@ -31,7 +31,6 @@ jobs: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: ref: main - persist-credentials: false fetch-depth: 0 - name: Determine next rhaiv tag From 485fad45f418770c5acde699d1614a4535c3d502 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Prpi=C4=8D?= Date: Thu, 30 Jul 2026 15:04:31 -0400 Subject: [PATCH 09/24] CARRY: create -rhaiv.N tags instead of +rhaiv.N MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch the RHAIV auto-tag workflow to produce dash-separated midstream tags (vX.Y.Z-rhaiv.N) instead of the plus form (vX.Y.Z+rhaiv.N). The '+' character is not permitted in container image tags, so dash tags let tag-triggered Konflux image builds use the git tag verbatim as the image tag. The '-' to '+' conversion for PEP 440 Python package versions is handled in the Python build infrastructure. The upstream-tag filter now excludes both the new -rhaiv form and the legacy +rhaiv form so any existing +rhaiv tags don't interfere with latest-upstream detection. Co-Authored-By: Claude Opus 4.8 Signed-off-by: Martin Prpič --- .github/workflows/rhaiv-auto-tag.yml | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/.github/workflows/rhaiv-auto-tag.yml b/.github/workflows/rhaiv-auto-tag.yml index 69f7cc99c2..9d2be46ee8 100644 --- a/.github/workflows/rhaiv-auto-tag.yml +++ b/.github/workflows/rhaiv-auto-tag.yml @@ -1,13 +1,13 @@ # RHAIV auto-tag workflow for the OpenShell midstream fork. -# Creates +rhaiv.N tags based on the latest upstream version tag. +# Creates -rhaiv.N tags based on the latest upstream version tag. # # Logic: -# 1. Find the latest upstream-style tag (vX.Y.Z, no +rhaiv suffix) -# 2. If no vX.Y.Z+rhaiv.0 exists, create it -# 3. If vX.Y.Z+rhaiv.N exists, create vX.Y.Z+rhaiv.(N+1) -# 4. Skip if no new commits since the last +rhaiv.N tag +# 1. Find the latest upstream-style tag (vX.Y.Z, no -rhaiv suffix) +# 2. If no vX.Y.Z-rhaiv.0 exists, create it +# 3. If vX.Y.Z-rhaiv.N exists, create vX.Y.Z-rhaiv.(N+1) +# 4. Skip if no new commits since the last -rhaiv.N tag # -# When upstream syncs a new vX.Y.Z, the next run creates +rhaiv.0 for it. +# When upstream syncs a new vX.Y.Z, the next run creates -rhaiv.0 for it. name: RHAIV Auto-Tag @@ -36,8 +36,9 @@ jobs: - name: Determine next rhaiv tag id: version run: | - # Find the latest upstream tag (vX.Y.Z without +rhaiv suffix) - latest_upstream=$(git tag -l 'v*.*.*' --sort=-v:refname | grep -v '+rhaiv' | head -1) + # Find the latest upstream tag (vX.Y.Z, no rhaiv suffix). + # Exclude both the current -rhaiv form and the legacy +rhaiv form. + latest_upstream=$(git tag -l 'v*.*.*' --sort=-v:refname | grep -v -- '[-+]rhaiv' | head -1) if [ -z "$latest_upstream" ]; then echo "::error::No upstream v*.*.* tags found" exit 1 @@ -51,22 +52,22 @@ jobs: echo "Latest upstream tag: $latest_upstream" # Find the latest rhaiv tag for this upstream version - latest_rhaiv=$(git tag -l "${latest_upstream}+rhaiv.*" --sort=-v:refname | head -1) + latest_rhaiv=$(git tag -l "${latest_upstream}-rhaiv.*" --sort=-v:refname | head -1) if [ -z "$latest_rhaiv" ]; then - next="${latest_upstream}+rhaiv.0" + next="${latest_upstream}-rhaiv.0" compare_ref="$latest_upstream" echo "No existing rhaiv tags for $latest_upstream" else - current_n=$(echo "$latest_rhaiv" | grep -oP '\+rhaiv\.\K[0-9]+') + current_n=$(echo "$latest_rhaiv" | grep -oP -- '-rhaiv\.\K[0-9]+') next_n=$((current_n + 1)) - next="${latest_upstream}+rhaiv.${next_n}" + next="${latest_upstream}-rhaiv.${next_n}" compare_ref="$latest_rhaiv" echo "Latest rhaiv tag: $latest_rhaiv (N=$current_n)" fi # Validate generated tag format - if ! echo "$next" | grep -qE '^v[0-9]+\.[0-9]+\.[0-9]+\+rhaiv\.[0-9]+$'; then + if ! echo "$next" | grep -qE '^v[0-9]+\.[0-9]+\.[0-9]+-rhaiv\.[0-9]+$'; then echo "::error::Generated tag '$next' has unexpected format" exit 1 fi From 04de8525b859d773bbe287f7e97cf297aab6270e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Prpi=C4=8D?= Date: Thu, 30 Jul 2026 16:02:42 -0400 Subject: [PATCH 10/24] CARRY: stamp rhaiv version into konflux binaries MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Konflux supervisor and gateway builds previously produced binaries reporting version 0.0.0: the Dockerfiles copy Cargo.toml (workspace version 0.0.0) without patching it, and .git is absent from the build context so build.rs cannot derive a version via git describe. Accept an OPENSHELL_VERSION build-arg, strip the leading "v", and export it as OPENSHELL_GIT_VERSION for the cargo build. openshell-core::VERSION prefers OPENSHELL_GIT_VERSION over CARGO_PKG_VERSION, and both the supervisor (openshell-sandbox) and gateway (openshell-server) binaries report that constant, so a tag build now stamps e.g. 0.0.93-rhaiv.0. The build-arg is empty by default, so push and pull-request builds are unaffected and continue to report the workspace Cargo version. The odh-konflux-central tag PipelineRuns pass OPENSHELL_VERSION={{git_tag}}. Co-Authored-By: Claude Opus 4.8 Signed-off-by: Martin Prpič --- deploy/docker/Dockerfile.konflux.gateway | 6 ++++++ deploy/docker/Dockerfile.konflux.supervisor | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/deploy/docker/Dockerfile.konflux.gateway b/deploy/docker/Dockerfile.konflux.gateway index a3c08ea26d..27545000f7 100644 --- a/deploy/docker/Dockerfile.konflux.gateway +++ b/deploy/docker/Dockerfile.konflux.gateway @@ -36,10 +36,16 @@ COPY crates/ crates/ COPY proto/ proto/ COPY providers/ providers/ +# Version stamped into the binary via openshell-core::VERSION; tag builds +# pass the git tag with the leading "v" stripped. Empty otherwise. +ARG OPENSHELL_VERSION="" + # z3-sys bundled build needs prefetched Z3 source. ARG Z3_VERSION=4.16.0 RUN mkdir -p /tmp/z3-src \ && tar xzf /cachi2/output/deps/generic/z3-${Z3_VERSION}.tar.gz -C /tmp/z3-src --strip-components=1 \ + && VER="${OPENSHELL_VERSION#v}" \ + && if [ -n "$VER" ]; then export OPENSHELL_GIT_VERSION="$VER"; fi \ && Z3_SYS_BUNDLED_DIR_OVERRIDE=/tmp/z3-src \ cargo build --release \ --package openshell-server \ diff --git a/deploy/docker/Dockerfile.konflux.supervisor b/deploy/docker/Dockerfile.konflux.supervisor index 2f1d37d21e..8a4237a4b9 100644 --- a/deploy/docker/Dockerfile.konflux.supervisor +++ b/deploy/docker/Dockerfile.konflux.supervisor @@ -74,8 +74,14 @@ COPY .cargo/ .cargo/ COPY crates/ crates/ COPY proto/ proto/ +# Version stamped into the binary via openshell-core::VERSION; tag builds +# pass the git tag with the leading "v" stripped. Empty otherwise. +ARG OPENSHELL_VERSION="" + RUN . /tmp/build-env && \ export CC_${MUSL_TARGET//-/_}=musl-gcc && \ + VER="${OPENSHELL_VERSION#v}" && \ + if [ -n "$VER" ]; then export OPENSHELL_GIT_VERSION="$VER"; fi && \ cargo build --release \ --target "${MUSL_TARGET}" \ --package openshell-sandbox && \ From 75a81b715d5e7546714c6c462789122d3d3e8316 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 31 Jul 2026 14:00:52 +0000 Subject: [PATCH 11/24] CI: update Tekton pipelines - Pull pipelines use odh-pr tag - Push pipelines use odh-stable tag - Target branch: main --- .tekton/odh-openshell-gateway-tag.yaml | 64 +++++++++++++++++++++++ .tekton/odh-openshell-supervisor-tag.yaml | 64 +++++++++++++++++++++++ 2 files changed, 128 insertions(+) create mode 100644 .tekton/odh-openshell-gateway-tag.yaml create mode 100644 .tekton/odh-openshell-supervisor-tag.yaml diff --git a/.tekton/odh-openshell-gateway-tag.yaml b/.tekton/odh-openshell-gateway-tag.yaml new file mode 100644 index 0000000000..7924e28962 --- /dev/null +++ b/.tekton/odh-openshell-gateway-tag.yaml @@ -0,0 +1,64 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +# +metadata: + annotations: + build.appstudio.openshift.io/repo: https://github.com/opendatahub-io/openshell?rev={{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + event == "push" + && target_branch.matches("^refs/tags/v[0-9]+\\.[0-9]+\\.[0-9]+-rhaiv\\.[0-9]+$") + creationTimestamp: null + labels: + appstudio.openshift.io/application: opendatahub-builds + appstudio.openshift.io/component: odh-openshell-gateway-ci + pipelines.appstudio.openshift.io/type: build + name: odh-openshell-gateway-on-tag + namespace: open-data-hub-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/opendatahub/odh-openshell-gateway:{{git_tag}} + - name: dockerfile + value: deploy/docker/Dockerfile.konflux.gateway + - name: path-context + value: . + - name: hermetic + value: "true" + - name: build-platforms + value: + - linux-m2xlarge/amd64 + - linux-m2xlarge/arm64 + - name: prefetch-input + value: | + [ + {"type": "cargo", "path": "."}, + {"type": "rpm", "path": "deploy/konflux/gateway"}, + {"type": "generic", "path": "deploy/konflux/gateway", "lockfile": "generic-fetcher.yaml"} + ] + - name: build-args + value: + - "OPENSHELL_VERSION={{git_tag}}" + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/opendatahub-io/odh-konflux-central.git + - name: revision + value: main + - name: pathInRepo + value: pipeline/multi-arch-container-build.yaml + taskRunTemplate: + serviceAccountName: build-pipeline-odh-openshell-gateway-ci + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} diff --git a/.tekton/odh-openshell-supervisor-tag.yaml b/.tekton/odh-openshell-supervisor-tag.yaml new file mode 100644 index 0000000000..d996246728 --- /dev/null +++ b/.tekton/odh-openshell-supervisor-tag.yaml @@ -0,0 +1,64 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +# +metadata: + annotations: + build.appstudio.openshift.io/repo: https://github.com/opendatahub-io/openshell?rev={{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + event == "push" + && target_branch.matches("^refs/tags/v[0-9]+\\.[0-9]+\\.[0-9]+-rhaiv\\.[0-9]+$") + creationTimestamp: null + labels: + appstudio.openshift.io/application: opendatahub-builds + appstudio.openshift.io/component: odh-openshell-supervisor-ci + pipelines.appstudio.openshift.io/type: build + name: odh-openshell-supervisor-on-tag + namespace: open-data-hub-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/opendatahub/odh-openshell-supervisor:{{git_tag}} + - name: dockerfile + value: deploy/docker/Dockerfile.konflux.supervisor + - name: path-context + value: . + - name: hermetic + value: "true" + - name: build-platforms + value: + - linux/x86_64 + - linux/arm64 + - name: prefetch-input + value: | + [ + {"type": "cargo", "path": "."}, + {"type": "rpm", "path": "deploy/konflux/supervisor"}, + {"type": "generic", "path": "deploy/konflux/supervisor", "lockfile": "generic-fetcher.yaml"} + ] + - name: build-args + value: + - "OPENSHELL_VERSION={{git_tag}}" + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/opendatahub-io/odh-konflux-central.git + - name: revision + value: main + - name: pathInRepo + value: pipeline/multi-arch-container-build.yaml + taskRunTemplate: + serviceAccountName: build-pipeline-odh-openshell-supervisor-ci + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} From 7a27b37e4ebc1a4c9793884cbade693ca4792645 Mon Sep 17 00:00:00 2001 From: Andre Lustosa Date: Mon, 3 Aug 2026 14:00:27 -0400 Subject: [PATCH 12/24] CARRY: always create initial -rhaiv.0 tag for new upstream versions Skip the commit-diff check when creating the first -rhaiv.0 tag from a new upstream vX.Y.Z. Only skip tagging when bumping between rhaiv tags (rhaiv.N to rhaiv.N+1) with no new commits in between. Signed-off-by: Andre Lustosa --- .github/workflows/rhaiv-auto-tag.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/rhaiv-auto-tag.yml b/.github/workflows/rhaiv-auto-tag.yml index 9d2be46ee8..9ec21b4883 100644 --- a/.github/workflows/rhaiv-auto-tag.yml +++ b/.github/workflows/rhaiv-auto-tag.yml @@ -5,7 +5,8 @@ # 1. Find the latest upstream-style tag (vX.Y.Z, no -rhaiv suffix) # 2. If no vX.Y.Z-rhaiv.0 exists, create it # 3. If vX.Y.Z-rhaiv.N exists, create vX.Y.Z-rhaiv.(N+1) -# 4. Skip if no new commits since the last -rhaiv.N tag +# 4. Always create -rhaiv.0 for a new upstream tag (no diff check) +# 5. Skip -rhaiv.N+1 only if no new commits since -rhaiv.N # # When upstream syncs a new vX.Y.Z, the next run creates -rhaiv.0 for it. @@ -56,14 +57,22 @@ jobs: if [ -z "$latest_rhaiv" ]; then next="${latest_upstream}-rhaiv.0" - compare_ref="$latest_upstream" - echo "No existing rhaiv tags for $latest_upstream" + echo "No existing rhaiv tags for $latest_upstream -- creating initial -rhaiv.0" else current_n=$(echo "$latest_rhaiv" | grep -oP -- '-rhaiv\.\K[0-9]+') next_n=$((current_n + 1)) next="${latest_upstream}-rhaiv.${next_n}" - compare_ref="$latest_rhaiv" echo "Latest rhaiv tag: $latest_rhaiv (N=$current_n)" + + # Only skip on zero commits when bumping between rhaiv tags. + # The initial -rhaiv.0 is always created for a new upstream tag. + commit_count=$(git rev-list "${latest_rhaiv}..HEAD" --count) + echo "Commits since $latest_rhaiv: $commit_count" + if [ "$commit_count" -eq 0 ]; then + echo "No new commits since $latest_rhaiv -- skipping" + echo "skip=true" >> "$GITHUB_OUTPUT" + exit 0 + fi fi # Validate generated tag format @@ -72,15 +81,6 @@ jobs: exit 1 fi - # Skip if no new commits since the last tag - commit_count=$(git rev-list "${compare_ref}..HEAD" --count) - echo "Commits since $compare_ref: $commit_count" - if [ "$commit_count" -eq 0 ]; then - echo "No new commits since $compare_ref -- skipping" - echo "skip=true" >> "$GITHUB_OUTPUT" - exit 0 - fi - if git tag -l "$next" | grep -q .; then echo "::error::Tag $next already exists" exit 1 From cdb39af24a088ad87060efefb2cdb9a3087dc873 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Prpi=C4=8D?= Date: Tue, 4 Aug 2026 08:53:38 -0400 Subject: [PATCH 13/24] CARRY: Configure MintMaker to refresh RPM lockfiles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a repo-root renovate.json enabling MintMaker's rpm-lockfile and tekton managers so the gateway and supervisor RPM lockfiles are kept current automatically. Make the rpms.in.yaml inputs self-contained so MintMaker can regenerate the lockfiles with no CLI flags: declare arches (x86_64, aarch64), inline the public UBI baseos/appstream repos (rpm-lockfile-prototype resolves versions from the CDN and cannot read /etc/yum.repos.d from the base image), and set context.bare so the full dependency closure is pinned across both the ubi build stage and the ubi-minimal runtime stage. Exclude weak dependencies (Recommends/Supplements) from the resolved closure via installWeakDeps: false, and disable them in the matching dnf/microdnf install commands with --setopt=install_weak_deps=0 so the build and the lockfiles stay aligned and independent of the host DNF default. Regenerate both lockfiles from the updated inputs. Signed-off-by: Martin Prpič --- deploy/docker/Dockerfile.konflux.gateway | 4 +- deploy/docker/Dockerfile.konflux.supervisor | 6 +- deploy/konflux/gateway/rpms.in.yaml | 34 +- deploy/konflux/gateway/rpms.lock.yaml | 1547 +++++++++++++++++-- deploy/konflux/supervisor/rpms.in.yaml | 34 +- deploy/konflux/supervisor/rpms.lock.yaml | 368 ++--- renovate.json | 4 + 7 files changed, 1551 insertions(+), 446 deletions(-) create mode 100644 renovate.json diff --git a/deploy/docker/Dockerfile.konflux.gateway b/deploy/docker/Dockerfile.konflux.gateway index 27545000f7..1ffe9a27e8 100644 --- a/deploy/docker/Dockerfile.konflux.gateway +++ b/deploy/docker/Dockerfile.konflux.gateway @@ -16,7 +16,7 @@ # --------------------------------------------------------------------------- FROM registry.access.redhat.com/ubi9/ubi:9.6@sha256:dec374e05cc13ebbc0975c9f521f3db6942d27f8ccdf06b180160490eef8bdbc AS builder -RUN dnf install -y --nodocs \ +RUN dnf install -y --nodocs --setopt=install_weak_deps=0 \ rust cargo \ gcc gcc-c++ make cmake \ openssl-devel git-core clang-devel \ @@ -56,7 +56,7 @@ RUN mkdir -p /tmp/z3-src \ # --------------------------------------------------------------------------- FROM registry.access.redhat.com/ubi9/ubi-minimal:9.6@sha256:34880b64c07f28f64d95737f82f891516de9a3b43583f39970f7bf8e4cfa48b7 -RUN microdnf install -y --nodocs ca-certificates \ +RUN microdnf install -y --nodocs --setopt=install_weak_deps=0 ca-certificates \ && microdnf clean all COPY --from=builder --chmod=0555 \ diff --git a/deploy/docker/Dockerfile.konflux.supervisor b/deploy/docker/Dockerfile.konflux.supervisor index 8a4237a4b9..0eb627597a 100644 --- a/deploy/docker/Dockerfile.konflux.supervisor +++ b/deploy/docker/Dockerfile.konflux.supervisor @@ -24,7 +24,7 @@ FROM registry.access.redhat.com/ubi9/ubi:9.6@sha256:dec374e05cc13ebbc0975c9f521f ARG MUSL_VERSION -RUN dnf install -y --nodocs gcc make tar gzip \ +RUN dnf install -y --nodocs --setopt=install_weak_deps=0 gcc make tar gzip \ && dnf clean all WORKDIR /tmp/musl-build @@ -42,7 +42,7 @@ FROM registry.access.redhat.com/ubi9/ubi:9.6@sha256:dec374e05cc13ebbc0975c9f521f ARG RUST_VERSION ARG TARGETARCH -RUN dnf install -y --nodocs \ +RUN dnf install -y --nodocs --setopt=install_weak_deps=0 \ gcc gcc-c++ make cmake \ openssl-devel git-core xz \ && dnf clean all @@ -95,7 +95,7 @@ FROM registry.access.redhat.com/ubi9/ubi-minimal:9.6@sha256:34880b64c07f28f64d95 ARG TARGETARCH -RUN microdnf install -y --nodocs \ +RUN microdnf install -y --nodocs --setopt=install_weak_deps=0 \ nftables \ iptables-nft \ iproute \ diff --git a/deploy/konflux/gateway/rpms.in.yaml b/deploy/konflux/gateway/rpms.in.yaml index a380a15f8a..06eb993039 100644 --- a/deploy/konflux/gateway/rpms.in.yaml +++ b/deploy/konflux/gateway/rpms.in.yaml @@ -1,13 +1,26 @@ # RPM dependencies for Dockerfile.konflux.gateway -# Build + runtime stages combined. Generate lockfile with: -# rpm-lockfile-prototype --image registry.access.redhat.com/ubi9/ubi:9.6 \ -# --arch x86_64 \ -# --outfile deploy/konflux/gateway/rpms.lock.yaml \ +# Build + runtime stages combined. +# +# Resolved with `context.bare: true` so the lockfile pins the full dependency +# closure. The image installs RPMs into two different bases (the ubi:9.6 build +# stage and the ubi-minimal runtime stage); bare guarantees every package is +# pinned and prefetched regardless of which base already provides it. +# +# Target arches and repos are declared in this file (not passed on the command +# line) so Konflux MintMaker can regenerate the lockfile with no CLI flags. +# Regenerate manually with: +# rpm-lockfile-prototype --outfile deploy/konflux/gateway/rpms.lock.yaml \ # deploy/konflux/gateway/rpms.in.yaml # +# UBI content is public, so repos are inlined here rather than copied from the +# image; rpm-lockfile-prototype resolves versions from the CDN and cannot read +# /etc/yum.repos.d from inside the base image. contentOrigin: - repofiles: - - /etc/yum.repos.d/ubi.repo + repos: + - repoid: ubi-9-baseos-rpms + baseurl: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/$basearch/baseos/os/ + - repoid: ubi-9-appstream-rpms + baseurl: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/$basearch/appstream/os/ packages: # Build stage: Rust toolchain - rust @@ -27,3 +40,12 @@ packages: - git-core # Runtime stage - ca-certificates +arches: + - x86_64 + - aarch64 +# Exclude weak dependencies (Recommends/Supplements) so the closure is minimal +# and deterministic regardless of the regenerating host's DNF default. Must stay +# in sync with the `--setopt=install_weak_deps=0` flags in the Dockerfile. +installWeakDeps: false +context: + bare: true diff --git a/deploy/konflux/gateway/rpms.lock.yaml b/deploy/konflux/gateway/rpms.lock.yaml index 316b4ef21e..c884e8a853 100644 --- a/deploy/konflux/gateway/rpms.lock.yaml +++ b/deploy/konflux/gateway/rpms.lock.yaml @@ -74,13 +74,6 @@ arches: name: cmake-filesystem evr: 3.31.8-3.el9 sourcerpm: cmake-3.31.8-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/compiler-rt-21.1.8-2.el9.aarch64.rpm - repoid: ubi-9-appstream-rpms - size: 2377154 - checksum: sha256:2adf2397bd2231a95d85dc6db88e9eb539981f0411462fe518b741688ddde3c2 - name: compiler-rt - evr: 21.1.8-2.el9 - sourcerpm: llvm-21.1.8-2.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cpp-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-appstream-rpms size: 10798392 @@ -200,13 +193,6 @@ arches: name: gcc-toolset-15-gcc-c++ evr: 15.2.1-7.1.el9_8 sourcerpm: gcc-toolset-15-gcc-15.2.1-7.1.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-libatomic-devel-15.2.1-7.1.el9_8.aarch64.rpm - repoid: ubi-9-appstream-rpms - size: 37805 - checksum: sha256:261d7bbe9e76fb8521d43f08cb8e78452ceb79ee0d302f90d4f26486a8b54551 - name: gcc-toolset-15-libatomic-devel - evr: 15.2.1-7.1.el9_8 - sourcerpm: gcc-toolset-15-gcc-15.2.1-7.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-toolset-15-libstdc++-devel-15.2.1-7.1.el9_8.aarch64.rpm repoid: ubi-9-appstream-rpms size: 3953483 @@ -228,20 +214,20 @@ arches: name: git-core evr: 2.52.0-1.el9 sourcerpm: git-2.52.0-1.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/glibc-devel-2.34-275.el9_8.aarch64.rpm repoid: ubi-9-appstream-rpms - size: 577056 - checksum: sha256:09cdfbba4c2517445ee2512c1c5c965b7d7ebdcf05665627dee83e0d824a5cff + size: 576947 + checksum: sha256:aef79b53955c2ec67efdc39cb91148b377f8719a8b68cf76c7ddcffbcb6b8bf0 name: glibc-devel - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.31.1.el9_8.aarch64.rpm + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.34.1.el9_8.aarch64.rpm repoid: ubi-9-appstream-rpms - size: 2861893 - checksum: sha256:c7bc9b3d12d85dafcf2c41d080338f4871289142b7c007ad121767a38d08b5ff + size: 2862625 + checksum: sha256:8a50db63167d4b6549d9d5c45579ef6c874c8a3c3e93e021ee7d55bd627a34f9 name: kernel-headers - evr: 5.14.0-687.31.1.el9_8 - sourcerpm: kernel-5.14.0-687.31.1.el9_8.src.rpm + evr: 5.14.0-687.34.1.el9_8 + sourcerpm: kernel-5.14.0-687.34.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libasan-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-appstream-rpms size: 409047 @@ -263,20 +249,6 @@ arches: name: libmpc evr: 1.2.1-4.el9 sourcerpm: libmpc-1.2.1-4.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libomp-21.1.8-2.el9.aarch64.rpm - repoid: ubi-9-appstream-rpms - size: 813991 - checksum: sha256:04dfb9a02d03b62eacde6b2855c73a54bd3297e0c33a548472fb3396cc9797f1 - name: libomp - evr: 21.1.8-2.el9 - sourcerpm: llvm-21.1.8-2.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libomp-devel-21.1.8-2.el9.aarch64.rpm - repoid: ubi-9-appstream-rpms - size: 280491 - checksum: sha256:8c205694cd8f05c51684c03d6bd753f2492ba8326ca31f993502bfa55a795f7f - name: libomp-devel - evr: 21.1.8-2.el9 - sourcerpm: llvm-21.1.8-2.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-appstream-rpms size: 2520018 @@ -284,6 +256,13 @@ arches: name: libstdc++-devel evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libtool-ltdl-2.4.6-46.el9.aarch64.rpm + repoid: ubi-9-appstream-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libubsan-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-appstream-rpms size: 178996 @@ -445,6 +424,13 @@ arches: name: scl-utils evr: 1:2.0.3-4.el9 sourcerpm: scl-utils-2.0.3-4.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/alternatives-1.24-2.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 128901 @@ -452,6 +438,20 @@ arches: name: audit-libs evr: 3.1.5-8.el9 sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 8229 + checksum: sha256:f498b0813fa1a825d550e8e3a9e42255eabfa18e6fc96adfc6cc8fa7e16dd513 + name: basesystem + evr: 11-13.el9 + sourcerpm: basesystem-11-13.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/bash-5.1.8-9.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1760045 + checksum: sha256:7dc1febec9c2fb184ed4407f8a188ab267b7e46b3534866f702c6266008ababa + name: bash + evr: 5.1.8-9.el9 + sourcerpm: bash-5.1.8-9.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-2.35.2-72.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 5021411 @@ -466,6 +466,69 @@ arches: name: binutils-gold evr: 2.35.2-72.el9 sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 47655 + checksum: sha256:8267a866b9289ac4e4a92cb4642adcdeff97c2ed816ddda87ed5d5e9d9431a2f + name: bzip2-libs + evr: 1.0.8-11.el9 + sourcerpm: bzip2-1.0.8-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1177900 + checksum: sha256:ee2de9f5fbc5e83bad920a353c45d3446997aa0e4023436528b2d6f817bd6f50 + name: coreutils + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 2114764 + checksum: sha256:cd79ca65bba152b9ccadcb9780ec78e3d06ce538b693078fd14459d038ab5c0c + name: coreutils-common + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 102026 + checksum: sha256:d85216b672a15e5dd8cc771b853e3b73e832034949ee23998d8403609fba00a2 + name: cracklib + evr: 2.9.6-28.el9 + sourcerpm: cracklib-2.9.6-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cracklib-dicts-2.9.6-28.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 3829400 + checksum: sha256:807345f95c448cb58d4db8d059f76e4c139ef029887d59b431efd20db934745a + name: cracklib-dicts + evr: 2.9.6-28.el9 + sourcerpm: cracklib-2.9.6-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 98707 + checksum: sha256:a9ad86b8df75a7c9c29c6f6dd4b8f78cfa1f42b492eff0d11b82c457d37a7f9f + name: crypto-policies + evr: 20260224-1.gitea0f072.el9_8 + sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/curl-7.76.1-40.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 303260 + checksum: sha256:5abd0d4ade384b6432882e095ee3f354700d66aeb3f655bd78c25427444a3875 + name: curl + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/diffutils-3.7-12.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 405687 @@ -480,6 +543,13 @@ arches: name: elfutils-debuginfod-client evr: 0.194-1.el9 sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 8949 + checksum: sha256:c473f42c0fec97e2830580110509e4522bc62d9b11761d062499354a0bf58959 + name: elfutils-default-yama-scope + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 203006 @@ -501,34 +571,76 @@ arches: name: environment-modules evr: 5.3.0-2.el9 sourcerpm: environment-modules-5.3.0-2.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-2.34-274.el9_8.aarch64.rpm - repoid: ubi-9-baseos-rpms - size: 1813548 - checksum: sha256:0d52ce006fc399127ea7da1f2acfeed702b48ba75f5d1567491be35e1d620b09 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/expat-2.5.0-6.el9_8.1.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 120882 + checksum: sha256:7cc4e533f63bdec0ead003d176cb262b8d4d2583dfd57b2e9cfeeed4ead13475 + name: expat + evr: 2.5.0-6.el9_8.1 + sourcerpm: expat-2.5.0-6.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/f/filesystem-3.16-5.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 5003914 + checksum: sha256:484bc41109c49066cf350344150abe144e63263e0fafa0bf12c5a47f853e6a49 + name: filesystem + evr: 3.16-5.el9 + sourcerpm: filesystem-3.16-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/f/findutils-4.8.0-7.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gawk-5.1.0-6.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-2.34-275.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1813928 + checksum: sha256:e40a78100f731b5f5a1b235880a0aaad5b08bb32e6521e90535b7f4a94c6e9e9 name: glibc - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.aarch64.rpm + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-common-2.34-275.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 312799 - checksum: sha256:86d8e468d28880e34bb92a6e99a82fa2d5946d56cf2cedbb6fd9ca0cd1f65755 + size: 312665 + checksum: sha256:24e1c7189d101531c526dd3cc1a42ab62d89f874824b54fb6b518ec24f190554 name: glibc-common - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.aarch64.rpm - repoid: ubi-9-baseos-rpms - size: 684496 - checksum: sha256:0883e1f9ac411a052c434f7339e6929c34cf4a47330a38e036a3c15c17322fa1 - name: glibc-langpack-en - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.aarch64.rpm - repoid: ubi-9-baseos-rpms - size: 30937 - checksum: sha256:33a17677cc85823259a2ddd3f24887117dc95d7a9ec0af64640df6ab26ddc094 + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-275.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 30881 + checksum: sha256:b1348c4c4fe3da979f342b0c27ff0d33a11688274a0b6708292d7750bbc8d853 name: glibc-minimal-langpack - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gmp-6.2.0-13.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/grep-3.6-5.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/groff-base-1.22.4-10.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 1088949 @@ -536,6 +648,13 @@ arches: name: groff-base evr: 1.22.4-10.el9 sourcerpm: groff-1.22.4-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-1.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/info-6.7-15.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 230301 @@ -550,6 +669,27 @@ arches: name: jansson evr: 2.14-1.el9 sourcerpm: jansson-2.14-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/j/json-c-0.14-11.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 45052 + checksum: sha256:fff625bf4f0753eb7323b8933d264f3cc5c992bfecba8b082b204849297149cc + name: json-c + evr: 0.14-11.el9 + sourcerpm: json-c-0.14-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 793489 + checksum: sha256:f8bbc9abe0da1ebe5bc028154bd54d465fe0682ddbb64c45882b84ff09f40e1d + name: krb5-libs + evr: 1.21.1-10.el9_8 + sourcerpm: krb5-1.21.1-10.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/less-590-6.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 165028 @@ -557,6 +697,20 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libacl-2.4.0-1.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 31468 + checksum: sha256:70ba010505e9805254f772c3dd9cd9e6176fc9e007e8c9be7204c44f85d8bbd2 + name: libacl + evr: 2.4.0-1.el9_8 + sourcerpm: acl-2.4.0-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libatomic-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 26108 @@ -564,6 +718,41 @@ arches: name: libatomic evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libattr-2.5.1-3.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 20696 + checksum: sha256:b6a73c9da522df55690b886c0a9af39338571d34ee6f0d4d9b994c8289df3412 + name: libattr + evr: 2.5.1-3.el9 + sourcerpm: attr-2.5.1-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 113931 + checksum: sha256:2c38ac06d3a267b62fc5ea4e149a25c4287c19157f4f18e0f7edea4787b27e15 + name: libblkid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 78021 + checksum: sha256:1ac3014c33b84d7a492b99d46d47940b096e034a3d5886e16ace7159724be012 + name: libcap + evr: 2.48-10.el9_8.1 + sourcerpm: libcap-2.48-10.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 59368 @@ -571,6 +760,34 @@ arches: name: libcbor evr: 0.7.0-5.el9 sourcerpm: libcbor-0.7.0-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 291404 + checksum: sha256:4d77a96282b20b10d8e221e1208f0be8ec21274c090ee44866f36646e7b7206a + name: libcurl + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 727417 + checksum: sha256:3a912b2a0a6226695a5773138ce5ce090c9fb155151dffe732b8d52e6dd22d63 + name: libdb + evr: 5.3.28-57.el9_6 + sourcerpm: libdb-5.3.28-57.el9_6.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libeconf-0.4.1-7.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 32324 + checksum: sha256:8a5e117c2690c82835c6013f1fbac37b026f3e953fbffbd84c2f5ef6cf8df571 + name: libeconf + evr: 0.4.1-7.el9_8 + sourcerpm: libeconf-0.4.1-7.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 110092 @@ -578,6 +795,27 @@ arches: name: libedit evr: 3.1-39.20210216cvs.el9 sourcerpm: libedit-3.1-39.20210216cvs.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 156711 + checksum: sha256:af043918fc50ce5b3de50c48c3de0143140b692fbf639db6f259270c4211a776 + name: libfdisk + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libffi-3.4.2-8.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 100573 @@ -592,6 +830,13 @@ arches: name: libgcc evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 468890 + checksum: sha256:3d2245f8566422e27f77d0ef4820bafe8d059b12612e74e5672d9c5959ff7ec3 + name: libgcrypt + evr: 1.10.0-11.el9 + sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgfortran-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 435007 @@ -606,6 +851,34 @@ arches: name: libgomp evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 222476 + checksum: sha256:aee968114aed0238eb26cff42ec9b0819ad32e2bac99aa8124d55b480806aca5 + name: libgpg-error + evr: 1.42-5.el9 + sourcerpm: libgpg-error-1.42-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libmount-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 140081 + checksum: sha256:152aee3abc8d97a37ff4ce2f5027d7e16e93ff2c77d25e900258da54e6fcc64e + name: libmount + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 79620 + checksum: sha256:69ae21fe69981041b43d3420800b691b854a32df2a26e84ce367bcfe4a4cac69 + name: libnghttp2 + evr: 1.43.0-6.el9_8.1 + sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpipeline-1.5.3-4.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 52161 @@ -620,6 +893,27 @@ arches: name: libpkgconf evr: 1.7.3-10.el9 sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 125712 + checksum: sha256:1657d94bbd79f93dc7a79d474316813bde681ce3a7f62f73314ec4d630e39349 + name: libpwquality + evr: 1.4.4-8.el9 + sourcerpm: libpwquality-1.4.4-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libselinux-3.6-3.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 89531 + checksum: sha256:3d7249adbf19206e319cd24acc2e01b0da39975aa3e5af73bdb6c6d438108fac + name: libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libselinux-utils-3.6-3.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 197588 @@ -627,6 +921,48 @@ arches: name: libselinux-utils evr: 3.6-3.el9 sourcerpm: libselinux-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsepol-3.6-3.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 326966 + checksum: sha256:496ed9e2d7fac9704afe764eab4c2c43b4a47e8c229c14498dd19786f98f80c0 + name: libsepol + evr: 3.6-3.el9 + sourcerpm: libsepol-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 67440 + checksum: sha256:1704e73a566c920796d877c7bc3e5a96ea0c0c4194109c7b085c1128c01856af + name: libsmartcols + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-18.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 222382 + checksum: sha256:6d529b3f31dee553349277c9f72da4f14ae54a2d48d10aa3088b45fbe90f99c2 + name: libssh + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 14685 + checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + name: libssh-config + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 723913 @@ -634,6 +970,76 @@ arches: name: libstdc++ evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 80446 + checksum: sha256:322524934c9b1f0714d2299705dbd41ec93451078e8144babc88c51bd19f6e07 + name: libtasn1 + evr: 4.16.0-10.el9_8 + sourcerpm: libtasn1-4.16.0-10.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 30505 + checksum: sha256:d352371cbb7d5bd0c53fc699df953c8c1f184b056690b3c4571e57a6634015c5 + name: libutempter + evr: 1.2.1-6.el9 + sourcerpm: libutempter-1.2.1-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 32555 + checksum: sha256:4d7bb4144053a30067a82423fb6e88fd08c7a69bd256eb21b08c0e3f4dbbaee6 + name: libuuid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libverto-0.3.2-3.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 754623 + checksum: sha256:e78f201e1cbab2bbce30991a1618f3b79d8afc9ef8bb9bf41046e314c5f30f0e + name: libxml2 + evr: 2.9.13-14.el9_8.2 + sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/lua-libs-5.4.4-4.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/make-4.3-8.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 550249 @@ -648,6 +1054,13 @@ arches: name: man-db evr: 2.9.3-9.el9 sourcerpm: man-db-2.9.3-9.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 249973 + checksum: sha256:c238f7451d1fcc5431bef2904ba56a0bea51d28337ccb692f6d6a09286043a65 + name: mpfr + evr: 4.1.0-10.el9 + sourcerpm: mpfr-4.1.0-10.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm repoid: ubi-9-baseos-rpms size: 97840 @@ -662,20 +1075,27 @@ arches: name: ncurses-libs evr: 6.2-12.20210508.el9 sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openldap-2.6.8-4.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-9.9p1-9.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 431979 - checksum: sha256:be18971dc20baa2fc820ec357d145bc5f9dbd88fd87e04b4016d8f77183525ae + size: 431997 + checksum: sha256:57fdab98de5639f0f1a4714700eeeae737876a9609ee2c8449bffb489c3c6d96 name: openssh - evr: 9.9p1-7.el9_8 - sourcerpm: openssh-9.9p1-7.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.aarch64.rpm + evr: 9.9p1-9.el9_8 + sourcerpm: openssh-9.9p1-9.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-clients-9.9p1-9.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 768861 - checksum: sha256:37ac77703fc47951b231cab696f52f00485f0811ed893d7c68a038eef81c9d8f + size: 769478 + checksum: sha256:2f1657ebe0b8b96d9ecdfeb709426733d57aa7ec565eb805532d0b1bc9adcb20 name: openssh-clients - evr: 9.9p1-7.el9_8 - sourcerpm: openssh-9.9p1-7.el9_8.src.rpm + evr: 9.9p1-9.el9_8 + sourcerpm: openssh-9.9p1-9.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-3.5.5-6.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms size: 1541002 @@ -704,6 +1124,48 @@ arches: name: openssl-libs evr: 1:3.5.5-6.el9_8 sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-0.26.4-1.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 589112 + checksum: sha256:b9391ea6618098782c9325ccda3c9ca8bc0f3b035bd4f113a793cea18026c75e + name: p11-kit + evr: 0.26.4-1.el9_8 + sourcerpm: p11-kit-0.26.4-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-trust-0.26.4-1.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 162392 + checksum: sha256:a57761123cd5836faf3d40251d16124557ffb452443bfa14cf59ac16e6c99970 + name: p11-kit-trust + evr: 0.26.4-1.el9_8 + sourcerpm: p11-kit-0.26.4-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pam-1.5.1-28.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 635826 + checksum: sha256:eab9afe4a8ef70912d8c59c0d8c429c0474436e756d37bcd9ee0589f9a1c9311 + name: pam + evr: 1.5.1-28.el9 + sourcerpm: pam-1.5.1-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre-8.44-4.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre2-10.40-6.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 224938 + checksum: sha256:29285f81cef68f73b4f8ff81ee8fdf4ceaa007933302119ed1615e4aa1091613 + name: pcre2 + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 147926 + checksum: sha256:d386b5e9b3a4b077b2ba143882e605750855dd3354f13c55fa12ed26908cb442 + name: pcre2-syntax + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 45196 @@ -732,6 +1194,13 @@ arches: name: policycoreutils evr: 3.6-5.el9 sourcerpm: policycoreutils-3.6-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/popt-1.18-8.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/procps-ng-3.3.17-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 363344 @@ -739,6 +1208,34 @@ arches: name: procps-ng evr: 3.3.17-14.el9 sourcerpm: procps-ng-3.3.17-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-3.9.25-7.el9_8.2.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 33523 + checksum: sha256:f3c4d1aae5e62a2ab7fe2f4b83c3ba826283737234ab5b4461c4ce8e8ae11da9 + name: python3 + evr: 3.9.25-7.el9_8.2 + sourcerpm: python3.9-3.9.25-7.el9_8.2.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-libs-3.9.25-7.el9_8.2.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 8471983 + checksum: sha256:e8f73645caacd5de39add1cff080836b4ab425d580bb09525ffb3ea94b241e43 + name: python3-libs + evr: 3.9.25-7.el9_8.2 + sourcerpm: python3.9-3.9.25-7.el9_8.2.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-pip-wheel-21.3.1-2.el9_8.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 1198443 + checksum: sha256:918041963ad5c3b91276bf1ed3307280673ca8352e2e632bbb3847b33d2bc15a + name: python3-pip-wheel + evr: 21.3.1-2.el9_8 + sourcerpm: python-pip-21.3.1-2.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-setools-4.4.4-1.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 613411 @@ -746,6 +1243,83 @@ arches: name: python3-setools evr: 4.4.4-1.el9 sourcerpm: setools-4.4.4-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-setuptools-53.0.0-15.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 958725 + checksum: sha256:e3c5b5927ad0c0bde27a95c54f7a1295965b317d225ece2e98acd365aa45d09f + name: python3-setuptools + evr: 53.0.0-15.el9 + sourcerpm: python-setuptools-53.0.0-15.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 479203 + checksum: sha256:36dacb345e21bc0308ef2508f0c93995520a15ef0b56aab3593186c8dc9c0c5a + name: python3-setuptools-wheel + evr: 53.0.0-15.el9 + sourcerpm: python-setuptools-53.0.0-15.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/readline-8.1-4.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 61683 + checksum: sha256:fa7f1d93927c7f8c6f6563a8d221af659074f026e4b12cd74d456b0db1878164 + name: redhat-release + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/rpm-4.16.1.3-40.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 546367 + checksum: sha256:29c03d6824a78ea747a1bfd2c9832807a049f8276c9647981a4be40f08225d76 + name: rpm + evr: 4.16.1.3-40.el9 + sourcerpm: rpm-4.16.1.3-40.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/rpm-libs-4.16.1.3-40.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 307940 + checksum: sha256:a6d053bde52dbc9c150a610afabd0c9437c65e0a9519c836b2d2223ac47b9c68 + name: rpm-libs + evr: 4.16.1.3-40.el9 + sourcerpm: rpm-4.16.1.3-40.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/sed-4.8-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 315893 + checksum: sha256:b73d314a8ef322a690bb69c49cb0dbd9a5ff18d2ba6b2973e18d2c076a52b62a + name: sed + evr: 4.8-10.el9 + sourcerpm: sed-4.8-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 153791 + checksum: sha256:0891d395ce067121c28932534237ad1ce231f2bfa987411ad62e73a12d11eb6a + name: setup + evr: 2.13.7-10.el9 + sourcerpm: setup-2.13.7-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1244527 + checksum: sha256:ccc46a8ea5f30d071e075ad53b5d39d191cfca4614090435528f2d2f944f88a2 + name: shadow-utils + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 660260 + checksum: sha256:dda4c59309d47d73d64291c53078cce330b8d5a9d95c903e133d9f37ec0e0a68 + name: sqlite-libs + evr: 3.34.1-10.el9_8 + sourcerpm: sqlite-3.34.1-10.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 647617 + checksum: sha256:78f8f784050b920675ce5d37d659213226265dd72de14ec10df291afae59d8b7 + name: systemd-libs + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tcl-8.6.10-7.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 1137015 @@ -753,13 +1327,48 @@ arches: name: tcl evr: 1:8.6.10-7.el9 sourcerpm: tcl-8.6.10-7.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm - repoid: ubi-9-baseos-rpms - size: 22399 - checksum: sha256:9fc9ef3ba0b22a599b2a7b34bd0b025afd5f2623e9132b4ead19e98f9c62e97d + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 933841 + checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + name: tzdata + evr: 2026b-1.el9 + sourcerpm: tzdata-2026b-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 2390152 + checksum: sha256:3681bbe37d46309673f366135787f5713f0ef575e3cd413cd221af2512e3634b + name: util-linux + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-core-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 472949 + checksum: sha256:de7ad826dd42b383d93f6dc6b720a26d4cd4815d00c0f093c2e28037a8881424 + name: util-linux-core + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.13.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 22931 + checksum: sha256:7758bbb54a85bb53aecdbb9c740c4981b2b42cac6df9580414838c6bdbab8dbd name: vim-filesystem - evr: 2:8.2.2637-26.el9_8.10 - sourcerpm: vim-8.2.2637-26.el9_8.10.src.rpm + evr: 2:8.2.2637-26.el9_8.13 + sourcerpm: vim-8.2.2637-26.el9_8.13.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/z/zlib-1.2.11-40.el9.aarch64.rpm + repoid: ubi-9-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: [] module_metadata: [] - arch: x86_64 @@ -834,13 +1443,6 @@ arches: name: cmake-filesystem evr: 3.31.8-3.el9 sourcerpm: cmake-3.31.8-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/compiler-rt-21.1.8-2.el9.x86_64.rpm - repoid: ubi-9-appstream-rpms - size: 2887211 - checksum: sha256:29303ae9c424f796f2c82751bfd05ef273175a6850904956f13100f9dab90f3a - name: compiler-rt - evr: 21.1.8-2.el9 - sourcerpm: llvm-21.1.8-2.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cpp-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-appstream-rpms size: 11226193 @@ -967,13 +1569,6 @@ arches: name: gcc-toolset-15-gcc-c++ evr: 15.2.1-7.1.el9_8 sourcerpm: gcc-toolset-15-gcc-15.2.1-7.1.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-libatomic-devel-15.2.1-7.1.el9_8.x86_64.rpm - repoid: ubi-9-appstream-rpms - size: 37347 - checksum: sha256:ef7ccc962fd7219318a6b824614a4c77599cfa110724507c687b83a999b6a773 - name: gcc-toolset-15-libatomic-devel - evr: 15.2.1-7.1.el9_8 - sourcerpm: gcc-toolset-15-gcc-15.2.1-7.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-15-libstdc++-devel-15.2.1-7.1.el9_8.x86_64.rpm repoid: ubi-9-appstream-rpms size: 3994173 @@ -995,27 +1590,27 @@ arches: name: git-core evr: 2.52.0-1.el9 sourcerpm: git-2.52.0-1.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-devel-2.34-275.el9_8.x86_64.rpm repoid: ubi-9-appstream-rpms - size: 46571 - checksum: sha256:e6176ffaf004619a3c4c6d69fc3499a90697cfea221c46e014d605e452bb859d + size: 46499 + checksum: sha256:a3b6ed698d21192fa7c421094a5d6648411fba4252db28c96d629778c86e6cd5 name: glibc-devel - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-headers-2.34-274.el9_8.x86_64.rpm + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-headers-2.34-275.el9_8.x86_64.rpm repoid: ubi-9-appstream-rpms - size: 567160 - checksum: sha256:98c8a2b2939f7decf299713dd4625c1ca1e8a3b536d6607db3cde04e32799bcd + size: 567171 + checksum: sha256:2124192aba2e7931cdf00c2dcd4b70b71b313790c28dcf09b2fb09cc9831c86f name: glibc-headers - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.31.1.el9_8.x86_64.rpm + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.34.1.el9_8.x86_64.rpm repoid: ubi-9-appstream-rpms - size: 2901125 - checksum: sha256:f9c558adfc811feb7c1d2461c5a0a4646bbf1b77e5cc079eb66cee6992b3d88d + size: 2901917 + checksum: sha256:504e15343d3288cab0146755376113e17220e5837250aa9ab186fb2a56f812ed name: kernel-headers - evr: 5.14.0-687.31.1.el9_8 - sourcerpm: kernel-5.14.0-687.31.1.el9_8.src.rpm + evr: 5.14.0-687.34.1.el9_8 + sourcerpm: kernel-5.14.0-687.34.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libedit-devel-3.1-39.20210216cvs.el9.x86_64.rpm repoid: ubi-9-appstream-rpms size: 54318 @@ -1030,20 +1625,6 @@ arches: name: libmpc evr: 1.2.1-4.el9 sourcerpm: libmpc-1.2.1-4.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libomp-21.1.8-2.el9.x86_64.rpm - repoid: ubi-9-appstream-rpms - size: 863958 - checksum: sha256:8953b4c466290476f82836fa204bccef5760d01fe1120c8691c8aa8f42d35642 - name: libomp - evr: 21.1.8-2.el9 - sourcerpm: llvm-21.1.8-2.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libomp-devel-21.1.8-2.el9.x86_64.rpm - repoid: ubi-9-appstream-rpms - size: 280569 - checksum: sha256:c488e65e6a3298ec444eba093b0a40b2173633ff3953ac5f25f7da8ef593e1da - name: libomp-devel - evr: 21.1.8-2.el9 - sourcerpm: llvm-21.1.8-2.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-appstream-rpms size: 2524816 @@ -1051,6 +1632,13 @@ arches: name: libstdc++-devel evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libtool-ltdl-2.4.6-46.el9.x86_64.rpm + repoid: ubi-9-appstream-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.x86_64.rpm repoid: ubi-9-appstream-rpms size: 154427 @@ -1205,6 +1793,13 @@ arches: name: scl-utils evr: 1:2.0.3-4.el9 sourcerpm: scl-utils-2.0.3-4.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/alternatives-1.24-2.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 130600 @@ -1212,6 +1807,20 @@ arches: name: audit-libs evr: 3.1.5-8.el9 sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 8229 + checksum: sha256:f498b0813fa1a825d550e8e3a9e42255eabfa18e6fc96adfc6cc8fa7e16dd513 + name: basesystem + evr: 11-13.el9 + sourcerpm: basesystem-11-13.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/bash-5.1.8-9.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1769540 + checksum: sha256:d3adf8b09aa0bf935c67aa12444e0ee02f70a82c2682bfb2b02bda0a989bb806 + name: bash + evr: 5.1.8-9.el9 + sourcerpm: bash-5.1.8-9.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-2.35.2-72.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 4821853 @@ -1226,6 +1835,69 @@ arches: name: binutils-gold evr: 2.35.2-72.el9 sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 46333 + checksum: sha256:948f763ed17672b8dd83356541e27a53ce97c6df38339c4416a188d452ca4d1e + name: bzip2-libs + evr: 1.0.8-11.el9 + sourcerpm: bzip2-1.0.8-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1220715 + checksum: sha256:e53f0f831246c73ab03ae395054d261ae392faa1229e6c691c08d2321a824b75 + name: coreutils + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 2116611 + checksum: sha256:1d4010cdc4f0fb7a4be68bf1bf0f0cda84a11d7337bd15d8368ab0ff90ca0db4 + name: coreutils-common + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 102444 + checksum: sha256:3b415381d4bd307686268ec42f646c7770f6a815de73a40a88aab7a7061b30a9 + name: cracklib + evr: 2.9.6-28.el9 + sourcerpm: cracklib-2.9.6-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cracklib-dicts-2.9.6-28.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 3829431 + checksum: sha256:61c11d3c23b62016b9939f917bb7f7e03cba324eb4ad35b375387ce9f18e25a1 + name: cracklib-dicts + evr: 2.9.6-28.el9 + sourcerpm: cracklib-2.9.6-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 98707 + checksum: sha256:a9ad86b8df75a7c9c29c6f6dd4b8f78cfa1f42b492eff0d11b82c457d37a7f9f + name: crypto-policies + evr: 20260224-1.gitea0f072.el9_8 + sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/curl-7.76.1-40.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 306411 + checksum: sha256:dffe60e96ea6473d6fd99f2ca688914d8342bc20819018ebe23d5d43ddb958ad + name: curl + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/diffutils-3.7-12.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 411559 @@ -1240,6 +1912,13 @@ arches: name: elfutils-debuginfod-client evr: 0.194-1.el9 sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 8949 + checksum: sha256:c473f42c0fec97e2830580110509e4522bc62d9b11761d062499354a0bf58959 + name: elfutils-default-yama-scope + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 205864 @@ -1261,34 +1940,76 @@ arches: name: environment-modules evr: 5.3.0-2.el9 sourcerpm: environment-modules-5.3.0-2.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-2.34-274.el9_8.x86_64.rpm - repoid: ubi-9-baseos-rpms - size: 2083155 - checksum: sha256:3a68581527ea2aa67a57610951bd9722019cc32db691cace00dc7478cab312ec + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/expat-2.5.0-6.el9_8.1.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 126909 + checksum: sha256:6a0c98d67b643fe620297e4cd7e990f99a86ed6bc90a8295a952c626ecbb9f62 + name: expat + evr: 2.5.0-6.el9_8.1 + sourcerpm: expat-2.5.0-6.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/f/filesystem-3.16-5.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 5003807 + checksum: sha256:9567592e6e32a9ebd45584cc4feb5d00812f143fcb2d8cd8b1d95108f4f66a2d + name: filesystem + evr: 3.16-5.el9 + sourcerpm: filesystem-3.16-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/f/findutils-4.8.0-7.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gawk-5.1.0-6.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-2.34-275.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 2083064 + checksum: sha256:7d2d420b97c05c09ee1e9bd881cb0725fe8d89688b933f411f278cb23210c65d name: glibc - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.x86_64.rpm + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-common-2.34-275.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 321676 - checksum: sha256:d741ab036ed8b97022052adb291a749a0ca1d5e492bd906aa7da95af9866bd2b + size: 321585 + checksum: sha256:f23581b888783f576bd3a55503618a48f74f468fcfd4837bbd7a2d00fe7f3530 name: glibc-common - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-langpack-en-2.34-274.el9_8.x86_64.rpm - repoid: ubi-9-baseos-rpms - size: 684459 - checksum: sha256:1491343a7653599e4fbea03780731c6777df85dc998bafb237658cde3728b663 - name: glibc-langpack-en - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.x86_64.rpm - repoid: ubi-9-baseos-rpms - size: 30969 - checksum: sha256:da6b677193283cedf470f17894638ef1a633c114e4b51464c49548a19166a68e + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-275.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 30913 + checksum: sha256:6cc48d78bf2ceacfa5b58633b648c564b66505f4677adea8eb663fe90acd76f2 name: glibc-minimal-langpack - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gmp-6.2.0-13.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/grep-3.6-5.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/groff-base-1.22.4-10.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 1133828 @@ -1296,6 +2017,13 @@ arches: name: groff-base evr: 1.22.4-10.el9 sourcerpm: groff-1.22.4-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-1.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/info-6.7-15.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 233806 @@ -1310,6 +2038,27 @@ arches: name: jansson evr: 2.14-1.el9 sourcerpm: jansson-2.14-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/json-c-0.14-11.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 46136 + checksum: sha256:b9bde4162250023103d95908fbca44fff6636a46176f92cf1761c1c3a4580a2f + name: json-c + evr: 0.14-11.el9 + sourcerpm: json-c-0.14-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 790743 + checksum: sha256:8906be9f2d414c5f4e1218db0c94955c2b3394b43a04b7dbcc2ef66c4340ebc6 + name: krb5-libs + evr: 1.21.1-10.el9_8 + sourcerpm: krb5-1.21.1-10.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/less-590-6.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 166025 @@ -1317,13 +2066,55 @@ arches: name: less evr: 590-6.el9 sourcerpm: less-590-6.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libatomic-11.5.0-14.el9.x86_64.rpm - repoid: ubi-9-baseos-rpms - size: 23497 - checksum: sha256:737264639167a5806a10f2057d77f5a47f38931a83518218dc40f5d8392f1c2b - name: libatomic - evr: 11.5.0-14.el9 - sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libacl-2.4.0-1.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 31657 + checksum: sha256:a81fb7a4d7c946e9bd886ee3c471a4b5040dedbb8ffb2a388120b2094be93cc8 + name: libacl + evr: 2.4.0-1.el9_8 + sourcerpm: acl-2.4.0-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libattr-2.5.1-3.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 20786 + checksum: sha256:6519f028915fbd7ee0474f0bf4e98e35f04b5d0cf7be9f66c0cb9eafac0b8c5a + name: libattr + evr: 2.5.1-3.el9 + sourcerpm: attr-2.5.1-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 114192 + checksum: sha256:a858400abe83a7955ae509c920f835a950ea2cf1156916823c595a23ba46d536 + name: libblkid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 78928 + checksum: sha256:d4805439b10fa551b7535cf30ca28d4d5862132c9c429b2b31221bea7f43263a + name: libcap + evr: 2.48-10.el9_8.1 + sourcerpm: libcap-2.48-10.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 60575 @@ -1331,6 +2122,34 @@ arches: name: libcbor evr: 0.7.0-5.el9 sourcerpm: libcbor-0.7.0-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 296527 + checksum: sha256:d89db646d90f8342e097cf03c7979d0da1c2df45bcb4e2b9fe7437b7895a7df5 + name: libcurl + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 755192 + checksum: sha256:3246e76f197e2b60eb470b9b55d3e0dda2301b029f295fed9c38ff70b87c5b6b + name: libdb + evr: 5.3.28-57.el9_6 + sourcerpm: libdb-5.3.28-57.el9_6.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libeconf-0.4.1-7.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 33179 + checksum: sha256:a570c5baaedeb1445bc2e4f3930b0a709411bbefbdbf463c3e006cbfc7018894 + name: libeconf + evr: 0.4.1-7.el9_8 + sourcerpm: libeconf-0.4.1-7.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 112056 @@ -1338,6 +2157,27 @@ arches: name: libedit evr: 3.1-39.20210216cvs.el9 sourcerpm: libedit-3.1-39.20210216cvs.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 161769 + checksum: sha256:1b861f267752e718ce696a80dcc06ef1dde8e9aa73fa2abed3775626d719c124 + name: libfdisk + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libffi-3.4.2-8.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 102746 @@ -1352,6 +2192,13 @@ arches: name: libgcc evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 522581 + checksum: sha256:9d5a5a4292a5a345143b632c2764ad8e7b095413f78f5693d29c2ea5e7d37119 + name: libgcrypt + evr: 1.10.0-11.el9 + sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgfortran-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 813380 @@ -1366,6 +2213,34 @@ arches: name: libgomp evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 225603 + checksum: sha256:8248e20d7a253aa9c0dc7dc3d56b42e1def4fd5753ce8e8b9e980aa664fc9068 + name: libgpg-error + evr: 1.42-5.el9 + sourcerpm: libgpg-error-1.42-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libmount-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 142467 + checksum: sha256:a9a2022eb9e39301bfcd3273573a108486b2b315c89247f147870016b2e9222c + name: libmount + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 80371 + checksum: sha256:3e99ec9ac85e7b1bf8348a503b14eb8d41e6df788c181202484a8cbc399f630a + name: libnghttp2 + evr: 1.43.0-6.el9_8.1 + sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpipeline-1.5.3-4.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 52912 @@ -1380,6 +2255,20 @@ arches: name: libpkgconf evr: 1.7.3-10.el9 sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 126104 + checksum: sha256:14b7ff2f7fdaf8ebec90261f4619ea7f7c3564c4de8483666de7ed4b1f49b66f + name: libpwquality + evr: 1.4.4-8.el9 + sourcerpm: libpwquality-1.4.4-8.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libquadmath-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 188925 @@ -1387,6 +2276,13 @@ arches: name: libquadmath evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libselinux-3.6-3.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 89722 + checksum: sha256:ce1cc63a7212c39f5f2a35f719ee38d6418cf081ea78c9317f388d9f41e4a627 + name: libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libselinux-utils-3.6-3.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 198410 @@ -1394,6 +2290,48 @@ arches: name: libselinux-utils evr: 3.6-3.el9 sourcerpm: libselinux-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsepol-3.6-3.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 338766 + checksum: sha256:b98984b2bf42203964cc979ac157df090c63b89a0f5c6560ede01965531c8ffd + name: libsepol + evr: 3.6-3.el9 + sourcerpm: libsepol-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 68692 + checksum: sha256:c1da912799780b89cd44db4acc318ea4a83adba0d8d99aad1b877879f40dbd48 + name: libsmartcols + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-18.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 225119 + checksum: sha256:4a3ec8a0cc0d4f693a876c522d3e4bc2296180b9ec05f958f6a0aa8658702458 + name: libssh + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 14685 + checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + name: libssh-config + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 763021 @@ -1401,6 +2339,76 @@ arches: name: libstdc++ evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 81418 + checksum: sha256:f9473f322407f10205b0db98b89cf8f603e9c769e9977250734136df56cbb981 + name: libtasn1 + evr: 4.16.0-10.el9_8 + sourcerpm: libtasn1-4.16.0-10.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 30354 + checksum: sha256:0f1df5e0d48c2ac9914bfffa7ed569cd58e42b17ba96bb3f7cf74d1e80de2597 + name: libutempter + evr: 1.2.1-6.el9 + sourcerpm: libutempter-1.2.1-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 32757 + checksum: sha256:5694aafca42c707f85af66bba11d102f7636ee17f586466b3ff80254e995ed7b + name: libuuid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libverto-0.3.2-3.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 772164 + checksum: sha256:8bc57807fd307c504dd53a1d047215abb9892130943d29023765d2acd9af09a4 + name: libxml2 + evr: 2.9.13-14.el9_8.2 + sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/lua-libs-5.4.4-4.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/make-4.3-8.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 553896 @@ -1415,6 +2423,13 @@ arches: name: man-db evr: 2.9.3-9.el9 sourcerpm: man-db-2.9.3-9.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 338130 + checksum: sha256:4adb12cda3b0e537ba5b22e7615288df751720d2e738bd182675d529cf1ead0c + name: mpfr + evr: 4.1.0-10.el9 + sourcerpm: mpfr-4.1.0-10.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm repoid: ubi-9-baseos-rpms size: 97840 @@ -1429,20 +2444,27 @@ arches: name: ncurses-libs evr: 6.2-12.20210508.el9 sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openldap-2.6.8-4.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-9.9p1-9.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 442163 - checksum: sha256:e699c3fd161d4741658320f10064bb82ab7530d07d3d34850142ccc102ce7c82 + size: 442241 + checksum: sha256:cd14a09ebe95a8d09a779838bf71f8e05f809cbd1d7ef4553294284d35249a60 name: openssh - evr: 9.9p1-7.el9_8 - sourcerpm: openssh-9.9p1-7.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.x86_64.rpm + evr: 9.9p1-9.el9_8 + sourcerpm: openssh-9.9p1-9.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-clients-9.9p1-9.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 798466 - checksum: sha256:5663973f870ce57e55bb94e94b84ff020d6b24cbaabdca9fed99665f6513c847 + size: 799148 + checksum: sha256:2e10d31aa0d2c2aaf521b4b1b46cd76b734a781a9ffaf496f8d39c53f4897705 name: openssh-clients - evr: 9.9p1-7.el9_8 - sourcerpm: openssh-9.9p1-7.el9_8.src.rpm + evr: 9.9p1-9.el9_8 + sourcerpm: openssh-9.9p1-9.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-3.5.5-6.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms size: 1564334 @@ -1471,6 +2493,48 @@ arches: name: openssl-libs evr: 1:3.5.5-6.el9_8 sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-0.26.4-1.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 625862 + checksum: sha256:a00ba14bfd0fc5dd2818f605f2e0520b52ea4b36167504c2523f92a065c2bdaf + name: p11-kit + evr: 0.26.4-1.el9_8 + sourcerpm: p11-kit-0.26.4-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-trust-0.26.4-1.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 165521 + checksum: sha256:41b84ab0ee4cf914d570a3d648ed98b7de44cef73ea3dfa58ff5eebdec85f42a + name: p11-kit-trust + evr: 0.26.4-1.el9_8 + sourcerpm: p11-kit-0.26.4-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pam-1.5.1-28.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 637912 + checksum: sha256:15a0a5000af6f57f47c30682f7aacf3959903788e68255132b6a05bb4b713ab1 + name: pam + evr: 1.5.1-28.el9 + sourcerpm: pam-1.5.1-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre-8.44-4.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre2-10.40-6.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 241900 + checksum: sha256:75db1e5a50e7b1794d7ba18212d95cd2684559da9e7c52eee46490302c7f24dd + name: pcre2 + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 147926 + checksum: sha256:d386b5e9b3a4b077b2ba143882e605750855dd3354f13c55fa12ed26908cb442 + name: pcre2-syntax + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 45675 @@ -1499,6 +2563,13 @@ arches: name: policycoreutils evr: 3.6-5.el9 sourcerpm: policycoreutils-3.6-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/popt-1.18-8.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/procps-ng-3.3.17-14.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 361526 @@ -1506,6 +2577,34 @@ arches: name: procps-ng evr: 3.3.17-14.el9 sourcerpm: procps-ng-3.3.17-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-3.9.25-7.el9_8.2.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 33578 + checksum: sha256:2af105e729f864def9dda53ac694e3a0dcaa705dd7f786fb533fc4d979044354 + name: python3 + evr: 3.9.25-7.el9_8.2 + sourcerpm: python3.9-3.9.25-7.el9_8.2.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-libs-3.9.25-7.el9_8.2.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 8481614 + checksum: sha256:8b6bc0577b3af67c2a7d9eb6c85a7afb87a01acae1414d1cc72a544061e559c6 + name: python3-libs + evr: 3.9.25-7.el9_8.2 + sourcerpm: python3.9-3.9.25-7.el9_8.2.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-pip-wheel-21.3.1-2.el9_8.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 1198443 + checksum: sha256:918041963ad5c3b91276bf1ed3307280673ca8352e2e632bbb3847b33d2bc15a + name: python3-pip-wheel + evr: 21.3.1-2.el9_8 + sourcerpm: python-pip-21.3.1-2.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-setools-4.4.4-1.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 623460 @@ -1513,6 +2612,83 @@ arches: name: python3-setools evr: 4.4.4-1.el9 sourcerpm: setools-4.4.4-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-setuptools-53.0.0-15.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 958725 + checksum: sha256:e3c5b5927ad0c0bde27a95c54f7a1295965b317d225ece2e98acd365aa45d09f + name: python3-setuptools + evr: 53.0.0-15.el9 + sourcerpm: python-setuptools-53.0.0-15.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 479203 + checksum: sha256:36dacb345e21bc0308ef2508f0c93995520a15ef0b56aab3593186c8dc9c0c5a + name: python3-setuptools-wheel + evr: 53.0.0-15.el9 + sourcerpm: python-setuptools-53.0.0-15.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/readline-8.1-4.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 61742 + checksum: sha256:8157ed988fc34dcfeb6429272959471edd5bde4ac212f26611fd54c180391758 + name: redhat-release + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/rpm-4.16.1.3-40.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 548393 + checksum: sha256:53d336d105469fae4b3e4d2c9386c2fe89bc3af64d65b272f05a3e63d62289e8 + name: rpm + evr: 4.16.1.3-40.el9 + sourcerpm: rpm-4.16.1.3-40.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/rpm-libs-4.16.1.3-40.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 314878 + checksum: sha256:21beeb1c25934cdf549a90d02a87a42e7d0caf91ba1482aa15ff65396171eba0 + name: rpm-libs + evr: 4.16.1.3-40.el9 + sourcerpm: rpm-4.16.1.3-40.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/sed-4.8-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 317456 + checksum: sha256:45e246453dc9eb1bad6a71c6f349aad1b1b2e1bf3ec645b80f0ed04fe69c960e + name: sed + evr: 4.8-10.el9 + sourcerpm: sed-4.8-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 153791 + checksum: sha256:0891d395ce067121c28932534237ad1ce231f2bfa987411ad62e73a12d11eb6a + name: setup + evr: 2.13.7-10.el9 + sourcerpm: setup-2.13.7-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1250179 + checksum: sha256:17294ee3fbc09c1b5cfc4114d3815cbd92584d6d70a6288e1dce2fda0a62dc59 + name: shadow-utils + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 664960 + checksum: sha256:7dc2202e08184890c851dcb2218a9abce14da150f12dfb8663ca306416e1d8d4 + name: sqlite-libs + evr: 3.34.1-10.el9_8 + sourcerpm: sqlite-3.34.1-10.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 681056 + checksum: sha256:ca5a11f102b0e3a32fdddf017a4509984db83290d7364c9566d037d0ef7f1e66 + name: systemd-libs + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tcl-8.6.10-7.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 1152092 @@ -1520,12 +2696,47 @@ arches: name: tcl evr: 1:8.6.10-7.el9 sourcerpm: tcl-8.6.10-7.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm - repoid: ubi-9-baseos-rpms - size: 22399 - checksum: sha256:9fc9ef3ba0b22a599b2a7b34bd0b025afd5f2623e9132b4ead19e98f9c62e97d + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 933841 + checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + name: tzdata + evr: 2026b-1.el9 + sourcerpm: tzdata-2026b-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 2382511 + checksum: sha256:35e0b73e574a7d8e93af0adf54adb2303f03423fd5761e357df86288f59d7933 + name: util-linux + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-core-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 476811 + checksum: sha256:5575c8fc753d5a81022786dac33e172a6d1602ef41d247a58465754d3f952726 + name: util-linux-core + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.13.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 22931 + checksum: sha256:7758bbb54a85bb53aecdbb9c740c4981b2b42cac6df9580414838c6bdbab8dbd name: vim-filesystem - evr: 2:8.2.2637-26.el9_8.10 - sourcerpm: vim-8.2.2637-26.el9_8.10.src.rpm + evr: 2:8.2.2637-26.el9_8.13 + sourcerpm: vim-8.2.2637-26.el9_8.13.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/z/zlib-1.2.11-40.el9.x86_64.rpm + repoid: ubi-9-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: [] module_metadata: [] diff --git a/deploy/konflux/supervisor/rpms.in.yaml b/deploy/konflux/supervisor/rpms.in.yaml index 7c58ab5cd2..81fefcb5a3 100644 --- a/deploy/konflux/supervisor/rpms.in.yaml +++ b/deploy/konflux/supervisor/rpms.in.yaml @@ -1,13 +1,26 @@ # RPM dependencies for Dockerfile.konflux.supervisor -# Build + runtime stages combined. Generate lockfile with: -# rpm-lockfile-prototype --bare \ -# --arch x86_64 --arch aarch64 \ -# --outfile deploy/konflux/supervisor/rpms.lock.yaml \ +# Build + runtime stages combined. +# +# Resolved with `context.bare: true` so the lockfile pins the full dependency +# closure. The image installs RPMs into two different bases (the ubi:9.6 build +# stage and the ubi-minimal runtime stage); bare guarantees every package is +# pinned and prefetched regardless of which base already provides it. +# +# Target arches and repos are declared in this file (not passed on the command +# line) so Konflux MintMaker can regenerate the lockfile with no CLI flags. +# Regenerate manually with: +# rpm-lockfile-prototype --outfile deploy/konflux/supervisor/rpms.lock.yaml \ # deploy/konflux/supervisor/rpms.in.yaml # +# UBI content is public, so repos are inlined here rather than copied from the +# image; rpm-lockfile-prototype resolves versions from the CDN and cannot read +# /etc/yum.repos.d from inside the base image. contentOrigin: - repofiles: - - /etc/yum.repos.d/ubi.repo + repos: + - repoid: ubi-9-baseos-rpms + baseurl: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/$basearch/baseos/os/ + - repoid: ubi-9-appstream-rpms + baseurl: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/$basearch/appstream/os/ packages: # Build stage: musl toolchain build - gcc @@ -27,3 +40,12 @@ packages: - iproute # Runtime stage: namespace entry - util-linux-core +arches: + - x86_64 + - aarch64 +# Exclude weak dependencies (Recommends/Supplements) so the closure is minimal +# and deterministic regardless of the regenerating host's DNF default. Must stay +# in sync with the `--setopt=install_weak_deps=0` flags in the Dockerfile. +installWeakDeps: false +context: + bare: true diff --git a/deploy/konflux/supervisor/rpms.lock.yaml b/deploy/konflux/supervisor/rpms.lock.yaml index c79d87a2de..7897da52c1 100644 --- a/deploy/konflux/supervisor/rpms.lock.yaml +++ b/deploy/konflux/supervisor/rpms.lock.yaml @@ -39,13 +39,6 @@ arches: name: emacs-filesystem evr: 1:27.2-18.el9 sourcerpm: emacs-27.2-18.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gawk-all-langpacks-5.1.0-6.el9.aarch64.rpm - repoid: ubi-9-appstream-rpms - size: 216292 - checksum: sha256:3fd73bd271e9c04dc297eb08c3829d276faee372f77666aad29f4b676ea220f4 - name: gawk-all-langpacks - evr: 5.1.0-6.el9 - sourcerpm: gawk-5.1.0-6.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-appstream-rpms size: 31291354 @@ -67,20 +60,20 @@ arches: name: git-core evr: 2.52.0-1.el9 sourcerpm: git-2.52.0-1.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/glibc-devel-2.34-275.el9_8.aarch64.rpm repoid: ubi-9-appstream-rpms - size: 577056 - checksum: sha256:09cdfbba4c2517445ee2512c1c5c965b7d7ebdcf05665627dee83e0d824a5cff + size: 576947 + checksum: sha256:aef79b53955c2ec67efdc39cb91148b377f8719a8b68cf76c7ddcffbcb6b8bf0 name: glibc-devel - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.31.1.el9_8.aarch64.rpm + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.34.1.el9_8.aarch64.rpm repoid: ubi-9-appstream-rpms - size: 2861893 - checksum: sha256:c7bc9b3d12d85dafcf2c41d080338f4871289142b7c007ad121767a38d08b5ff + size: 2862625 + checksum: sha256:8a50db63167d4b6549d9d5c45579ef6c874c8a3c3e93e021ee7d55bd627a34f9 name: kernel-headers - evr: 5.14.0-687.31.1.el9_8 - sourcerpm: kernel-5.14.0-687.31.1.el9_8.src.rpm + evr: 5.14.0-687.34.1.el9_8 + sourcerpm: kernel-5.14.0-687.34.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libasan-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-appstream-rpms size: 409047 @@ -137,13 +130,6 @@ arches: name: openssl-devel evr: 1:3.5.5-6.el9_8 sourcerpm: openssl-3.5.5-6.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/acl-2.4.0-1.el9_8.aarch64.rpm - repoid: ubi-9-baseos-rpms - size: 84537 - checksum: sha256:241864fdb68d73b5a63df6269ae0895aec7c08e723fb0506fe446c148c9dad3f - name: acl - evr: 2.4.0-1.el9_8 - sourcerpm: acl-2.4.0-1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/alternatives-1.24-2.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 42137 @@ -242,27 +228,6 @@ arches: name: cyrus-sasl-lib evr: 2.1.27-22.el9 sourcerpm: cyrus-sasl-2.1.27-22.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-1.12.20-8.el9.aarch64.rpm - repoid: ubi-9-baseos-rpms - size: 8025 - checksum: sha256:5178f638660d1699fb06caeeac91f41c07da59b500e94adf2653df892f2cbdf8 - name: dbus - evr: 1:1.12.20-8.el9 - sourcerpm: dbus-1.12.20-8.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-broker-28-7.el9.aarch64.rpm - repoid: ubi-9-baseos-rpms - size: 173303 - checksum: sha256:342af53fbf4254e34b5f19a6be6f22c67551c26dd0c49016edc93e806621b75d - name: dbus-broker - evr: 28-7.el9 - sourcerpm: dbus-broker-28-7.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm - repoid: ubi-9-baseos-rpms - size: 18551 - checksum: sha256:298f1cada3cbcef6713098b9925694a0e30e8566f7a5bdbd72384520cf6c8360 - name: dbus-common - evr: 1:1.12.20-8.el9 - sourcerpm: dbus-1.12.20-8.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 42824 @@ -326,34 +291,27 @@ arches: name: gdbm-libs evr: 1:1.23-1.el9 sourcerpm: gdbm-1.23-1.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-2.34-274.el9_8.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-2.34-275.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 1813548 - checksum: sha256:0d52ce006fc399127ea7da1f2acfeed702b48ba75f5d1567491be35e1d620b09 + size: 1813928 + checksum: sha256:e40a78100f731b5f5a1b235880a0aaad5b08bb32e6521e90535b7f4a94c6e9e9 name: glibc - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.aarch64.rpm + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-common-2.34-275.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 312799 - checksum: sha256:86d8e468d28880e34bb92a6e99a82fa2d5946d56cf2cedbb6fd9ca0cd1f65755 + size: 312665 + checksum: sha256:24e1c7189d101531c526dd3cc1a42ab62d89f874824b54fb6b518ec24f190554 name: glibc-common - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-gconv-extra-2.34-274.el9_8.aarch64.rpm - repoid: ubi-9-baseos-rpms - size: 1831242 - checksum: sha256:a205cf1cbd5e274fb8911d40d5ce2865abc64c6d3d93d69bcc78c7cecdd2798d - name: glibc-gconv-extra - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.aarch64.rpm - repoid: ubi-9-baseos-rpms - size: 30937 - checksum: sha256:33a17677cc85823259a2ddd3f24887117dc95d7a9ec0af64640df6ab26ddc094 + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-275.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 30881 + checksum: sha256:b1348c4c4fe3da979f342b0c27ff0d33a11688274a0b6708292d7750bbc8d853 name: glibc-minimal-langpack - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gmp-6.2.0-13.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 275679 @@ -417,13 +375,6 @@ arches: name: keyutils-libs evr: 1.6.3-1.el9 sourcerpm: keyutils-1.6.3-1.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kmod-libs-28-11.el9.aarch64.rpm - repoid: ubi-9-baseos-rpms - size: 62168 - checksum: sha256:58526b701eb3a72de98062c58b56524c35916a7b1191bb1a846da33be5a5f709 - name: kmod-libs - evr: 28-11.el9 - sourcerpm: kmod-28-11.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms size: 793489 @@ -669,13 +620,6 @@ arches: name: libpwquality evr: 1.4.4-8.el9 sourcerpm: libpwquality-1.4.4-8.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.aarch64.rpm - repoid: ubi-9-baseos-rpms - size: 76024 - checksum: sha256:fc1d5e93483d166ca7f2acb50c04c181db2f3e7b89dba8edc6b1e5f2b0f10619 - name: libseccomp - evr: 2.5.2-2.el9 - sourcerpm: libseccomp-2.5.2-2.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libselinux-3.6-3.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 89531 @@ -837,20 +781,20 @@ arches: name: openldap evr: 2.6.8-4.el9 sourcerpm: openldap-2.6.8-4.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-9.9p1-9.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 431979 - checksum: sha256:be18971dc20baa2fc820ec357d145bc5f9dbd88fd87e04b4016d8f77183525ae + size: 431997 + checksum: sha256:57fdab98de5639f0f1a4714700eeeae737876a9609ee2c8449bffb489c3c6d96 name: openssh - evr: 9.9p1-7.el9_8 - sourcerpm: openssh-9.9p1-7.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.aarch64.rpm + evr: 9.9p1-9.el9_8 + sourcerpm: openssh-9.9p1-9.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-clients-9.9p1-9.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 768861 - checksum: sha256:37ac77703fc47951b231cab696f52f00485f0811ed893d7c68a038eef81c9d8f + size: 769478 + checksum: sha256:2f1657ebe0b8b96d9ecdfeb709426733d57aa7ec565eb805532d0b1bc9adcb20 name: openssh-clients - evr: 9.9p1-7.el9_8 - sourcerpm: openssh-9.9p1-7.el9_8.src.rpm + evr: 9.9p1-9.el9_8 + sourcerpm: openssh-9.9p1-9.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-3.5.5-6.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms size: 1541002 @@ -879,20 +823,20 @@ arches: name: openssl-libs evr: 1:3.5.5-6.el9_8 sourcerpm: openssl-3.5.5-6.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-0.26.4-1.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 582494 - checksum: sha256:5c8fe4b19ea7a76bc2213087ee91679143217fbc33162103e60dd60735504f36 + size: 589112 + checksum: sha256:b9391ea6618098782c9325ccda3c9ca8bc0f3b035bd4f113a793cea18026c75e name: p11-kit - evr: 0.26.2-1.el9 - sourcerpm: p11-kit-0.26.2-1.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.aarch64.rpm + evr: 0.26.4-1.el9_8 + sourcerpm: p11-kit-0.26.4-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-trust-0.26.4-1.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 158801 - checksum: sha256:713b79a7f12829d98bad68dd2d661f3ef30969fdffbbbb5de4dc7aec6cfdd030 + size: 162392 + checksum: sha256:a57761123cd5836faf3d40251d16124557ffb452443bfa14cf59ac16e6c99970 name: p11-kit-trust - evr: 0.26.2-1.el9 - sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + evr: 0.26.4-1.el9_8 + sourcerpm: p11-kit-0.26.4-1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pam-1.5.1-28.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 635826 @@ -991,13 +935,6 @@ arches: name: shadow-utils evr: 2:4.9-16.el9 sourcerpm: shadow-utils-4.9-16.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-252-67.el9_8.4.aarch64.rpm - repoid: ubi-9-baseos-rpms - size: 4156431 - checksum: sha256:f49001c208ea0ec7776b2353800f133d3383e72bda8486132dc6822a803aef9f - name: systemd - evr: 252-67.el9_8.4 - sourcerpm: systemd-252-67.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.aarch64.rpm repoid: ubi-9-baseos-rpms size: 647617 @@ -1005,20 +942,6 @@ arches: name: systemd-libs evr: 252-67.el9_8.4 sourcerpm: systemd-252-67.el9_8.4.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-pam-252-67.el9_8.4.aarch64.rpm - repoid: ubi-9-baseos-rpms - size: 266579 - checksum: sha256:e85f1916e5fc35f483282c2de00cb4e1a9a40743e745c00bb66e30e383955d46 - name: systemd-pam - evr: 252-67.el9_8.4 - sourcerpm: systemd-252-67.el9_8.4.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-rpm-macros-252-67.el9_8.4.noarch.rpm - repoid: ubi-9-baseos-rpms - size: 59475 - checksum: sha256:7d671ec39a7caeb7346be6d5fcb44212545844ced6f4974c4b409fef6a12a891 - name: systemd-rpm-macros - evr: 252-67.el9_8.4 - sourcerpm: systemd-252-67.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tar-1.34-11.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 904777 @@ -1047,13 +970,13 @@ arches: name: util-linux-core evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.13.noarch.rpm repoid: ubi-9-baseos-rpms - size: 22399 - checksum: sha256:9fc9ef3ba0b22a599b2a7b34bd0b025afd5f2623e9132b4ead19e98f9c62e97d + size: 22931 + checksum: sha256:7758bbb54a85bb53aecdbb9c740c4981b2b42cac6df9580414838c6bdbab8dbd name: vim-filesystem - evr: 2:8.2.2637-26.el9_8.10 - sourcerpm: vim-8.2.2637-26.el9_8.10.src.rpm + evr: 2:8.2.2637-26.el9_8.13 + sourcerpm: vim-8.2.2637-26.el9_8.13.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.aarch64.rpm repoid: ubi-9-baseos-rpms size: 235798 @@ -1114,13 +1037,6 @@ arches: name: emacs-filesystem evr: 1:27.2-18.el9 sourcerpm: emacs-27.2-18.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gawk-all-langpacks-5.1.0-6.el9.x86_64.rpm - repoid: ubi-9-appstream-rpms - size: 216340 - checksum: sha256:c1fcc71c1cc1160d58ace4b60cc6733b68d6f6d406e5ec5ce24327787f452cd1 - name: gawk-all-langpacks - evr: 5.1.0-6.el9 - sourcerpm: gawk-5.1.0-6.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-appstream-rpms size: 33982584 @@ -1142,27 +1058,27 @@ arches: name: git-core evr: 2.52.0-1.el9 sourcerpm: git-2.52.0-1.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-devel-2.34-274.el9_8.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-devel-2.34-275.el9_8.x86_64.rpm repoid: ubi-9-appstream-rpms - size: 46571 - checksum: sha256:e6176ffaf004619a3c4c6d69fc3499a90697cfea221c46e014d605e452bb859d + size: 46499 + checksum: sha256:a3b6ed698d21192fa7c421094a5d6648411fba4252db28c96d629778c86e6cd5 name: glibc-devel - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-headers-2.34-274.el9_8.x86_64.rpm + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-headers-2.34-275.el9_8.x86_64.rpm repoid: ubi-9-appstream-rpms - size: 567160 - checksum: sha256:98c8a2b2939f7decf299713dd4625c1ca1e8a3b536d6607db3cde04e32799bcd + size: 567171 + checksum: sha256:2124192aba2e7931cdf00c2dcd4b70b71b313790c28dcf09b2fb09cc9831c86f name: glibc-headers - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.31.1.el9_8.x86_64.rpm + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.34.1.el9_8.x86_64.rpm repoid: ubi-9-appstream-rpms - size: 2901125 - checksum: sha256:f9c558adfc811feb7c1d2461c5a0a4646bbf1b77e5cc079eb66cee6992b3d88d + size: 2901917 + checksum: sha256:504e15343d3288cab0146755376113e17220e5837250aa9ab186fb2a56f812ed name: kernel-headers - evr: 5.14.0-687.31.1.el9_8 - sourcerpm: kernel-5.14.0-687.31.1.el9_8.src.rpm + evr: 5.14.0-687.34.1.el9_8 + sourcerpm: kernel-5.14.0-687.34.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.x86_64.rpm repoid: ubi-9-appstream-rpms size: 66075 @@ -1205,13 +1121,6 @@ arches: name: openssl-devel evr: 1:3.5.5-6.el9_8 sourcerpm: openssl-3.5.5-6.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/acl-2.4.0-1.el9_8.x86_64.rpm - repoid: ubi-9-baseos-rpms - size: 85269 - checksum: sha256:611da2c85401a2f26dba165c0be27b2e62fa71ceb5c392c8f5a9d30c31238d5b - name: acl - evr: 2.4.0-1.el9_8 - sourcerpm: acl-2.4.0-1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/alternatives-1.24-2.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 42874 @@ -1310,27 +1219,6 @@ arches: name: cyrus-sasl-lib evr: 2.1.27-22.el9 sourcerpm: cyrus-sasl-2.1.27-22.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-1.12.20-8.el9.x86_64.rpm - repoid: ubi-9-baseos-rpms - size: 8073 - checksum: sha256:96b1daa4de0a635ab760a8431fb005022bb7cb48d2d1d3ec9a8adb1798c0e10e - name: dbus - evr: 1:1.12.20-8.el9 - sourcerpm: dbus-1.12.20-8.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-broker-28-7.el9.x86_64.rpm - repoid: ubi-9-baseos-rpms - size: 179634 - checksum: sha256:de9869c08df7f6952787d0335b9bf1a09b328bea920556a59af07c8e085dd3cb - name: dbus-broker - evr: 28-7.el9 - sourcerpm: dbus-broker-28-7.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm - repoid: ubi-9-baseos-rpms - size: 18551 - checksum: sha256:298f1cada3cbcef6713098b9925694a0e30e8566f7a5bdbd72384520cf6c8360 - name: dbus-common - evr: 1:1.12.20-8.el9 - sourcerpm: dbus-1.12.20-8.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 43826 @@ -1394,34 +1282,27 @@ arches: name: gdbm-libs evr: 1:1.23-1.el9 sourcerpm: gdbm-1.23-1.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-2.34-274.el9_8.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-2.34-275.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 2083155 - checksum: sha256:3a68581527ea2aa67a57610951bd9722019cc32db691cace00dc7478cab312ec + size: 2083064 + checksum: sha256:7d2d420b97c05c09ee1e9bd881cb0725fe8d89688b933f411f278cb23210c65d name: glibc - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-common-2.34-274.el9_8.x86_64.rpm + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-common-2.34-275.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 321676 - checksum: sha256:d741ab036ed8b97022052adb291a749a0ca1d5e492bd906aa7da95af9866bd2b + size: 321585 + checksum: sha256:f23581b888783f576bd3a55503618a48f74f468fcfd4837bbd7a2d00fe7f3530 name: glibc-common - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-gconv-extra-2.34-274.el9_8.x86_64.rpm - repoid: ubi-9-baseos-rpms - size: 1766939 - checksum: sha256:fc95653733ca0cf6b9fafc2485573f123b62831dc17f2fc1e8d7cd033a2f77d4 - name: glibc-gconv-extra - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-274.el9_8.x86_64.rpm - repoid: ubi-9-baseos-rpms - size: 30969 - checksum: sha256:da6b677193283cedf470f17894638ef1a633c114e4b51464c49548a19166a68e + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-275.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 30913 + checksum: sha256:6cc48d78bf2ceacfa5b58633b648c564b66505f4677adea8eb663fe90acd76f2 name: glibc-minimal-langpack - evr: 2.34-274.el9_8 - sourcerpm: glibc-2.34-274.el9_8.src.rpm + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gmp-6.2.0-13.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 326840 @@ -1485,13 +1366,6 @@ arches: name: keyutils-libs evr: 1.6.3-1.el9 sourcerpm: keyutils-1.6.3-1.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kmod-libs-28-11.el9.x86_64.rpm - repoid: ubi-9-baseos-rpms - size: 63619 - checksum: sha256:f296bc24a1b8ba6c40ed73ba736be97ed78e4124b6dbdd8a0a25a9683d4ff1ce - name: kmod-libs - evr: 28-11.el9 - sourcerpm: kmod-28-11.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms size: 790743 @@ -1730,13 +1604,6 @@ arches: name: libpwquality evr: 1.4.4-8.el9 sourcerpm: libpwquality-1.4.4-8.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.x86_64.rpm - repoid: ubi-9-baseos-rpms - size: 76200 - checksum: sha256:e2015f60dbe784330d5df43f3f05c68c307694600a636a1706bf86527cc82e82 - name: libseccomp - evr: 2.5.2-2.el9 - sourcerpm: libseccomp-2.5.2-2.el9.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libselinux-3.6-3.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 89722 @@ -1898,20 +1765,20 @@ arches: name: openldap evr: 2.6.8-4.el9 sourcerpm: openldap-2.6.8-4.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-9.9p1-7.el9_8.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-9.9p1-9.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 442163 - checksum: sha256:e699c3fd161d4741658320f10064bb82ab7530d07d3d34850142ccc102ce7c82 + size: 442241 + checksum: sha256:cd14a09ebe95a8d09a779838bf71f8e05f809cbd1d7ef4553294284d35249a60 name: openssh - evr: 9.9p1-7.el9_8 - sourcerpm: openssh-9.9p1-7.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-clients-9.9p1-7.el9_8.x86_64.rpm + evr: 9.9p1-9.el9_8 + sourcerpm: openssh-9.9p1-9.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-clients-9.9p1-9.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 798466 - checksum: sha256:5663973f870ce57e55bb94e94b84ff020d6b24cbaabdca9fed99665f6513c847 + size: 799148 + checksum: sha256:2e10d31aa0d2c2aaf521b4b1b46cd76b734a781a9ffaf496f8d39c53f4897705 name: openssh-clients - evr: 9.9p1-7.el9_8 - sourcerpm: openssh-9.9p1-7.el9_8.src.rpm + evr: 9.9p1-9.el9_8 + sourcerpm: openssh-9.9p1-9.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-3.5.5-6.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms size: 1564334 @@ -1940,20 +1807,20 @@ arches: name: openssl-libs evr: 1:3.5.5-6.el9_8 sourcerpm: openssl-3.5.5-6.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-0.26.4-1.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 624045 - checksum: sha256:3bc31959dd99d0c3103866296664c02c219c0a7c8b906c96ecc5ec3dda57c864 + size: 625862 + checksum: sha256:a00ba14bfd0fc5dd2818f605f2e0520b52ea4b36167504c2523f92a065c2bdaf name: p11-kit - evr: 0.26.2-1.el9 - sourcerpm: p11-kit-0.26.2-1.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.x86_64.rpm + evr: 0.26.4-1.el9_8 + sourcerpm: p11-kit-0.26.4-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-trust-0.26.4-1.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 165124 - checksum: sha256:715fd8181525f3d6869d5086f36a15ea47a0e96297ccf5920c37d3a0cb36c409 + size: 165521 + checksum: sha256:41b84ab0ee4cf914d570a3d648ed98b7de44cef73ea3dfa58ff5eebdec85f42a name: p11-kit-trust - evr: 0.26.2-1.el9 - sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + evr: 0.26.4-1.el9_8 + sourcerpm: p11-kit-0.26.4-1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pam-1.5.1-28.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 637912 @@ -2052,13 +1919,6 @@ arches: name: shadow-utils evr: 2:4.9-16.el9 sourcerpm: shadow-utils-4.9-16.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-252-67.el9_8.4.x86_64.rpm - repoid: ubi-9-baseos-rpms - size: 4401138 - checksum: sha256:e3cbe70aaa847f1b02bd4ea9470625434c26b25368cbfcb0e9a18de99e3bc1c7 - name: systemd - evr: 252-67.el9_8.4 - sourcerpm: systemd-252-67.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.x86_64.rpm repoid: ubi-9-baseos-rpms size: 681056 @@ -2066,20 +1926,6 @@ arches: name: systemd-libs evr: 252-67.el9_8.4 sourcerpm: systemd-252-67.el9_8.4.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-pam-252-67.el9_8.4.x86_64.rpm - repoid: ubi-9-baseos-rpms - size: 276960 - checksum: sha256:de8408dbe8ee06afa99fbb914377384774e27b9b337cb3b491a37f84ccca7e9b - name: systemd-pam - evr: 252-67.el9_8.4 - sourcerpm: systemd-252-67.el9_8.4.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-rpm-macros-252-67.el9_8.4.noarch.rpm - repoid: ubi-9-baseos-rpms - size: 59475 - checksum: sha256:7d671ec39a7caeb7346be6d5fcb44212545844ced6f4974c4b409fef6a12a891 - name: systemd-rpm-macros - evr: 252-67.el9_8.4 - sourcerpm: systemd-252-67.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tar-1.34-11.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 913256 @@ -2108,13 +1954,13 @@ arches: name: util-linux-core evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.10.noarch.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.13.noarch.rpm repoid: ubi-9-baseos-rpms - size: 22399 - checksum: sha256:9fc9ef3ba0b22a599b2a7b34bd0b025afd5f2623e9132b4ead19e98f9c62e97d + size: 22931 + checksum: sha256:7758bbb54a85bb53aecdbb9c740c4981b2b42cac6df9580414838c6bdbab8dbd name: vim-filesystem - evr: 2:8.2.2637-26.el9_8.10 - sourcerpm: vim-8.2.2637-26.el9_8.10.src.rpm + evr: 2:8.2.2637-26.el9_8.13 + sourcerpm: vim-8.2.2637-26.el9_8.13.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.x86_64.rpm repoid: ubi-9-baseos-rpms size: 235693 diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000000..e7e229ca80 --- /dev/null +++ b/renovate.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "enabledManagers": ["rpm-lockfile", "tekton"] +} From ad84567d31bb01bf16fb1b4d58d65b67394df194 Mon Sep 17 00:00:00 2001 From: Andre Lustosa Date: Mon, 10 Aug 2026 08:34:25 -0400 Subject: [PATCH 14/24] CARRY: add hermetic CLI container image for Konflux Ship the openshell CLI as a standalone container image for Konflux, mirroring the existing gateway and supervisor image patterns. The CLI binary is compiled as a static musl binary on UBI9 and packaged into a ubi-minimal runtime image with ca-certificates. Also fixes build-local.sh on RHEL-subscribed hosts where podman injects /run/secrets/redhat.repo via mounts.conf, breaking the --network=none hermetic build for runtime stages that call microdnf. Signed-off-by: Andre Lustosa --- .github/workflows/docker-build.yml | 7 +- deploy/docker/Dockerfile.cli | 27 + deploy/docker/Dockerfile.konflux.cli | 118 ++ deploy/konflux/build-local.sh | 16 +- deploy/konflux/cli/generic-fetcher.yaml | 35 + deploy/konflux/cli/rpms.in.yaml | 27 + deploy/konflux/cli/rpms.lock.yaml | 1989 ++++++++++++++++++++++ tasks/scripts/docker-build-image.sh | 9 + tasks/scripts/stage-prebuilt-binaries.sh | 12 +- 9 files changed, 2236 insertions(+), 4 deletions(-) create mode 100644 deploy/docker/Dockerfile.cli create mode 100644 deploy/docker/Dockerfile.konflux.cli create mode 100644 deploy/konflux/cli/generic-fetcher.yaml create mode 100644 deploy/konflux/cli/rpms.in.yaml create mode 100644 deploy/konflux/cli/rpms.lock.yaml diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index d0d600e58b..8205d1a2c6 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -97,7 +97,7 @@ jobs: binary_component=cli binary_name=openshell features="" - has_image=false + has_image=true ;; *) echo "unsupported component: $component" >&2 @@ -272,6 +272,11 @@ jobs: echo "$output" grep -q '^openshell-sandbox ' <<<"$output" ;; + cli) + output="$(docker run --rm --platform "${{ matrix.platform }}" "$image" --version)" + echo "$output" + grep -q '^openshell ' <<<"$output" + ;; esac merge: diff --git a/deploy/docker/Dockerfile.cli b/deploy/docker/Dockerfile.cli new file mode 100644 index 0000000000..d2c4a22c7f --- /dev/null +++ b/deploy/docker/Dockerfile.cli @@ -0,0 +1,27 @@ +# syntax=docker/dockerfile:1.4 + +# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +# CLI image build. +# +# The Rust binary is built natively before this image build runs and staged at: +# deploy/docker/.build/prebuilt-binaries//openshell +# +# Use tasks/scripts/docker-build-image.sh cli (or `mise run build:docker:cli`) +# to stage the binary and build the image in one step. CI builds the binary +# per-architecture via the `rust-native-build.yml` workflow (with the musl +# target) and uploads it as an artifact, which is downloaded into the same +# staging directory before the image build job runs. + +FROM alpine:3.22 AS cli + +ARG TARGETARCH + +RUN apk add --no-cache ca-certificates + +COPY --chmod=0555 deploy/docker/.build/prebuilt-binaries/${TARGETARCH}/openshell /usr/local/bin/openshell + +USER 1000:1000 + +ENTRYPOINT ["/usr/local/bin/openshell"] diff --git a/deploy/docker/Dockerfile.konflux.cli b/deploy/docker/Dockerfile.konflux.cli new file mode 100644 index 0000000000..0e26b006ad --- /dev/null +++ b/deploy/docker/Dockerfile.konflux.cli @@ -0,0 +1,118 @@ +# syntax=docker/dockerfile:1.4 + +# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +# CLI image for RHEL/Konflux (hermetic build). +# +# Multi-stage build that compiles the openshell CLI from source on UBI9 +# as a fully-static musl binary. musl libc is built from source since +# UBI9 does not ship it. +# +# Requires prefetched dependencies via Hermeto (cargo, rpm, generic). +# See deploy/konflux/ for prefetch configs. +# +# Local build: ./deploy/konflux/build-local.sh cli + +ARG RUST_VERSION=1.92.0 +ARG MUSL_VERSION=1.2.5 + +# --------------------------------------------------------------------------- +# Stage 1: build musl libc from source +# --------------------------------------------------------------------------- +FROM registry.access.redhat.com/ubi9/ubi:9.6@sha256:dec374e05cc13ebbc0975c9f521f3db6942d27f8ccdf06b180160490eef8bdbc AS musl-toolchain + +ARG MUSL_VERSION + +RUN dnf install -y --nodocs gcc make tar gzip \ + && dnf clean all + +WORKDIR /tmp/musl-build + +RUN tar xzf /cachi2/output/deps/generic/musl-${MUSL_VERSION}.tar.gz --strip-components=1 \ + && ./configure --prefix=/usr/local/musl --disable-shared \ + && make -j"$(nproc)" \ + && make install + +# --------------------------------------------------------------------------- +# Stage 2: compile CLI (static musl binary) +# --------------------------------------------------------------------------- +FROM registry.access.redhat.com/ubi9/ubi:9.6@sha256:dec374e05cc13ebbc0975c9f521f3db6942d27f8ccdf06b180160490eef8bdbc AS builder + +ARG RUST_VERSION +ARG TARGETARCH + +RUN dnf install -y --nodocs \ + gcc gcc-c++ make cmake \ + openssl-devel git-core xz \ + && dnf clean all + +# Map TARGETARCH (amd64/arm64) to Rust triple components +RUN RUST_ARCH=$(case "${TARGETARCH}" in amd64) echo x86_64;; arm64) echo aarch64;; *) echo "${TARGETARCH}";; esac) && \ + RUST_TRIPLE="${RUST_ARCH}-unknown-linux-gnu" && \ + MUSL_TRIPLE="${RUST_ARCH}-unknown-linux-musl" && \ + mkdir -p /tmp/rust-toolchain && \ + tar xJf /cachi2/output/deps/generic/rust-${RUST_VERSION}-${RUST_TRIPLE}.tar.xz -C /tmp/rust-toolchain --strip-components=1 && \ + /tmp/rust-toolchain/install.sh --prefix=/usr/local && \ + rm -rf /tmp/rust-toolchain && \ + mkdir -p /tmp/musl-std && \ + tar xJf /cachi2/output/deps/generic/rust-std-${RUST_VERSION}-${MUSL_TRIPLE}.tar.xz -C /tmp/musl-std --strip-components=1 && \ + /tmp/musl-std/install.sh --prefix=/usr/local && \ + rm -rf /tmp/musl-std + +COPY --from=musl-toolchain /usr/local/musl /usr/local/musl + +# CC and target vars use the native arch musl triple +RUN RUST_ARCH=$(case "${TARGETARCH}" in amd64) echo x86_64;; arm64) echo aarch64;; *) echo "${TARGETARCH}";; esac) && \ + echo "MUSL_TARGET=${RUST_ARCH}-unknown-linux-musl" > /tmp/build-env +ENV PATH="/usr/local/musl/bin:${PATH}" \ + CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse + +WORKDIR /build +COPY Cargo.toml Cargo.lock ./ +COPY .cargo/ .cargo/ +COPY crates/ crates/ +COPY proto/ proto/ +COPY providers/ providers/ + +# Scope workspace to CLI crates only -- avoids pulling in server/sandbox +# dependencies (aws-lc-sys, russh) that are unnecessary for the CLI. +RUN sed -i 's|members = \["crates/\*"\]|members = ["crates/openshell-cli", "crates/openshell-core", "crates/openshell-bootstrap", "crates/openshell-policy", "crates/openshell-prover", "crates/openshell-providers", "crates/openshell-sdk", "crates/openshell-tui"]|' Cargo.toml + +# Version stamped into the binary via openshell-core::VERSION; tag builds +# pass the git tag with the leading "v" stripped. Empty otherwise. +ARG OPENSHELL_VERSION="" + +RUN . /tmp/build-env && \ + export CC_${MUSL_TARGET//-/_}=musl-gcc && \ + VER="${OPENSHELL_VERSION#v}" && \ + if [ -n "$VER" ]; then export OPENSHELL_GIT_VERSION="$VER"; fi && \ + cargo build --release \ + --target "${MUSL_TARGET}" \ + --package openshell-cli && \ + mkdir -p /build/output && \ + cp /build/target/${MUSL_TARGET}/release/openshell /build/output/ + +# --------------------------------------------------------------------------- +# Runtime +# --------------------------------------------------------------------------- +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.6@sha256:34880b64c07f28f64d95737f82f891516de9a3b43583f39970f7bf8e4cfa48b7 + +RUN microdnf install -y --nodocs ca-certificates \ + && microdnf clean all + +COPY --from=builder --chmod=0555 /build/output/openshell /usr/local/bin/openshell + +LABEL com.redhat.component="odh-openshell-cli-container" \ + description="Static musl-linked CLI for OpenShell sandboxed AI agent runtimes" \ + summary="Static musl-linked CLI for OpenShell sandboxed AI agent runtimes" \ + name="rhoai/odh-openshell-cli-rhel9" \ + maintainer="['managed-open-data-hub@redhat.com']" \ + io.openshift.expose-services="" \ + io.k8s.display-name="odh-openshell-cli" \ + io.k8s.description="odh-openshell-cli" \ + com.redhat.license_terms="https://www.redhat.com/licenses/Red_Hat_Standard_EULA_20191108.pdf" + +USER 1000:1000 + +ENTRYPOINT ["/usr/local/bin/openshell"] diff --git a/deploy/konflux/build-local.sh b/deploy/konflux/build-local.sh index 6a528a7e19..1e9bb5fab9 100755 --- a/deploy/konflux/build-local.sh +++ b/deploy/konflux/build-local.sh @@ -49,6 +49,10 @@ build_image() { dockerfile="deploy/docker/Dockerfile.konflux.supervisor" konfig_dir="deploy/konflux/supervisor" ;; + cli) + dockerfile="deploy/docker/Dockerfile.konflux.cli" + konfig_dir="deploy/konflux/cli" + ;; *) echo "Unknown component: $component" >&2 exit 1 @@ -101,6 +105,14 @@ build_image() { CLEANUP_PATHS+=("${sm_conf}") echo -e "[main]\nenabled=0" > "${sm_conf}" + # Podman auto-mounts host RHEL subscription secrets into /run/secrets/ + # via /usr/share/containers/mounts.conf. The redhat.repo there adds + # rhel-* repos that can't resolve under --network=none. Mount an empty + # directory over /run/secrets to neutralize the injection entirely. + local empty_secrets + empty_secrets=$(mktemp -d) + CLEANUP_PATHS+=("${empty_secrets}") + podman build \ -f "${hermetic_dockerfile}" \ --platform "${PLATFORM}" \ @@ -108,6 +120,7 @@ build_image() { --volume "$(realpath "${output_dir}/cachi2.env"):/cachi2/cachi2.env:Z" \ --volume "$(realpath "${repos_dir}"):/etc/yum.repos.d:Z" \ --volume "${sm_conf}:/etc/dnf/plugins/subscription-manager.conf:Z" \ + --volume "${empty_secrets}:/run/secrets:Z" \ --network none \ -t "openshell-${component}-konflux" \ "${REPO_ROOT}" @@ -118,7 +131,7 @@ build_image() { } if [[ $# -eq 0 ]]; then - echo "Usage: $0 {gateway|supervisor|all}" >&2 + echo "Usage: $0 {gateway|supervisor|cli|all}" >&2 exit 1 fi @@ -126,6 +139,7 @@ target="$1" if [[ "$target" == "all" ]]; then build_image gateway build_image supervisor + build_image cli else build_image "$target" fi diff --git a/deploy/konflux/cli/generic-fetcher.yaml b/deploy/konflux/cli/generic-fetcher.yaml new file mode 100644 index 0000000000..c63c9446bc --- /dev/null +++ b/deploy/konflux/cli/generic-fetcher.yaml @@ -0,0 +1,35 @@ +# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +# Generic fetcher artifacts for Dockerfile.konflux.cli +# These are prefetched by Hermeto and mounted at /cachi2/deps/generic/ +# Include in prefetch-input alongside cargo and rpm types. +# +# To update hashes: curl -sL | sha256sum +metadata: + version: "1.0" +artifacts: + # musl libc source (arch-independent, built from source in Dockerfile) + - download_url: https://musl.libc.org/releases/musl-1.2.5.tar.gz + checksum: "sha256:a9a118bbe84d8764da0ea0d28b3ab3fae8477fc7e4085d90102b8596fc7c75e4" + filename: musl-1.2.5.tar.gz + + # Rust toolchain x86_64 + - download_url: https://static.rust-lang.org/dist/rust-1.92.0-x86_64-unknown-linux-gnu.tar.xz + checksum: "sha256:d2ccef59dd9f7439f2c694948069f789a044dc1addcc0803613232af8f88ee0c" + filename: rust-1.92.0-x86_64-unknown-linux-gnu.tar.xz + + # Rust toolchain aarch64 + - download_url: https://static.rust-lang.org/dist/rust-1.92.0-aarch64-unknown-linux-gnu.tar.xz + checksum: "sha256:3e383f8b4fca710d0600d0c1de97b78281672be2cda6575ecbe1c183a12e3822" + filename: rust-1.92.0-aarch64-unknown-linux-gnu.tar.xz + + # rust-std for musl target x86_64 + - download_url: https://static.rust-lang.org/dist/rust-std-1.92.0-x86_64-unknown-linux-musl.tar.xz + checksum: "sha256:11f0b7efccdb5e7972e3c0fc23693a487abc28b624675c08161d055a016d527e" + filename: rust-std-1.92.0-x86_64-unknown-linux-musl.tar.xz + + # rust-std for musl target aarch64 + - download_url: https://static.rust-lang.org/dist/rust-std-1.92.0-aarch64-unknown-linux-musl.tar.xz + checksum: "sha256:94b9f84f21d29825c55a27fbb6b4b9fb9296a4a841aa54d85b95c42445623363" + filename: rust-std-1.92.0-aarch64-unknown-linux-musl.tar.xz diff --git a/deploy/konflux/cli/rpms.in.yaml b/deploy/konflux/cli/rpms.in.yaml new file mode 100644 index 0000000000..4527ea05a8 --- /dev/null +++ b/deploy/konflux/cli/rpms.in.yaml @@ -0,0 +1,27 @@ +# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +# RPM dependencies for Dockerfile.konflux.cli +# Build + runtime stages combined. Generate lockfile with: +# rpm-lockfile-prototype --bare \ +# --arch x86_64 --arch aarch64 \ +# --outfile deploy/konflux/cli/rpms.lock.yaml \ +# deploy/konflux/cli/rpms.in.yaml +# +contentOrigin: + repofiles: + - /etc/yum.repos.d/ubi.repo +packages: + # Build stage: musl toolchain build + - gcc + - make + - tar + - gzip + - xz + # Build stage: Rust compilation (rustup provides rust/cargo) + - gcc-c++ + - cmake + - openssl-devel + - git-core + # Runtime stage + - ca-certificates diff --git a/deploy/konflux/cli/rpms.lock.yaml b/deploy/konflux/cli/rpms.lock.yaml new file mode 100644 index 0000000000..502f9bb37c --- /dev/null +++ b/deploy/konflux/cli/rpms.lock.yaml @@ -0,0 +1,1989 @@ +# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +--- +lockfileVersion: 1 +lockfileVendor: redhat +arches: +- arch: aarch64 + packages: + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-3.31.8-3.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 11655593 + checksum: sha256:2a77fe1c3784083dcdebdd548c16d823b3e4a5adb8d6c00e36841aa633eab53b + name: cmake + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-data-3.31.8-3.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 2829291 + checksum: sha256:1cdc2e88a996c575b750483c8f562674e4b50a6ab414c7bbe6f6b641c1db7bd9 + name: cmake-data + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cmake-filesystem-3.31.8-3.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 19282 + checksum: sha256:69a498723354740357fc3f4b4cd235da38fadd98835da193bec0c0850f68f3ad + name: cmake-filesystem + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/c/cpp-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 10798392 + checksum: sha256:eb16ef369b981c0dca6149e971a63f74ea09c09f1c638086e3cda1e0591ac21b + name: cpp + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/e/emacs-filesystem-27.2-18.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 9495 + checksum: sha256:49d7b88a05a72c15b78191a987e6def04fda8e2e4ff75711f715d0c0ecadc60f + name: emacs-filesystem + evr: 1:27.2-18.el9 + sourcerpm: emacs-27.2-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gawk-all-langpacks-5.1.0-6.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 216292 + checksum: sha256:3fd73bd271e9c04dc297eb08c3829d276faee372f77666aad29f4b676ea220f4 + name: gawk-all-langpacks + evr: 5.1.0-6.el9 + sourcerpm: gawk-5.1.0-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 31291354 + checksum: sha256:542e635ac17b548cc03ab4347438d49f96837c1d91d12714b6b2764ec566156c + name: gcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/gcc-c++-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 12994215 + checksum: sha256:aabe892798a2272d65c269fd6aa14d3b3dfc782c98f92f8fda30c2a4fa33bf6d + name: gcc-c++ + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/git-core-2.52.0-1.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 5392428 + checksum: sha256:7082917982981bf611c089e7d9d53b63e969af61a37cfd65b5c4081d5b260a1c + name: git-core + evr: 2.52.0-1.el9 + sourcerpm: git-2.52.0-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/g/glibc-devel-2.34-275.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 576947 + checksum: sha256:aef79b53955c2ec67efdc39cb91148b377f8719a8b68cf76c7ddcffbcb6b8bf0 + name: glibc-devel + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.36.1.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 2864573 + checksum: sha256:aa680c8c0622822ce53d2ffdc3341d3083d897f6c1f8102e8a0729b6376f0d3e + name: kernel-headers + evr: 5.14.0-687.36.1.el9_8 + sourcerpm: kernel-5.14.0-687.36.1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libasan-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 409047 + checksum: sha256:854a84e72d40c2a062d112b93f8a694044fd7dc5b3afe7a869a448a12844c3e6 + name: libasan + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 67120 + checksum: sha256:3763354a5f45d886f9976eec20eb34f8afc2144c69ffba07de546f2820893c70 + name: libmpc + evr: 1.2.1-4.el9 + sourcerpm: libmpc-1.2.1-4.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 2520018 + checksum: sha256:5a2474c2e817b008212e5a94770d8bfbaad17e9ebba2a38d734907e594ac2aac + name: libstdc++-devel + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libtool-ltdl-2.4.6-46.el9.aarch64.rpm + repoid: ubi-9-appstream-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libubsan-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 178996 + checksum: sha256:d0adfda8f1d8ddf05a46292228e31cf887d731e7999154603e148e3d70d1f182 + name: libubsan + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 150129 + checksum: sha256:4dc8a40da74e0f9823356460ee11f183c70f382953700fffef0c448198a677cc + name: libuv + evr: 1:1.42.0-2.el9_4 + sourcerpm: libuv-1.42.0-2.el9_4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libxcrypt-devel-4.4.18-3.el9.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 33051 + checksum: sha256:9d621f33df35b9c274b8d65457d6c67fc1522b6c62cf7b2341a4a99f39a93507 + name: libxcrypt-devel + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/o/openssl-devel-3.5.5-6.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 5028889 + checksum: sha256:c92e750163820a817ca5562935010872f8db5ca5712a517b01beafcb87221670 + name: openssl-devel + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/acl-2.4.0-1.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 84537 + checksum: sha256:241864fdb68d73b5a63df6269ae0895aec7c08e723fb0506fe446c148c9dad3f + name: acl + evr: 2.4.0-1.el9_8 + sourcerpm: acl-2.4.0-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/alternatives-1.24-2.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 128901 + checksum: sha256:11880ec70b575841843cbee0853e03e50a0506321ea0a6f76c0c8145d79ae531 + name: audit-libs + evr: 3.1.5-8.el9 + sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 8229 + checksum: sha256:f498b0813fa1a825d550e8e3a9e42255eabfa18e6fc96adfc6cc8fa7e16dd513 + name: basesystem + evr: 11-13.el9 + sourcerpm: basesystem-11-13.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/bash-5.1.8-9.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1760045 + checksum: sha256:7dc1febec9c2fb184ed4407f8a188ab267b7e46b3534866f702c6266008ababa + name: bash + evr: 5.1.8-9.el9 + sourcerpm: bash-5.1.8-9.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-2.35.2-72.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 5021411 + checksum: sha256:72e9fd9c4976413060df02e37d358fca208ab144d78e321f448a488d50967155 + name: binutils + evr: 2.35.2-72.el9 + sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/binutils-gold-2.35.2-72.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 908723 + checksum: sha256:269bb24ded2f23dcdb74c04597b13281ce6ac47a87a14831ee639d985323bd04 + name: binutils-gold + evr: 2.35.2-72.el9 + sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 47655 + checksum: sha256:8267a866b9289ac4e4a92cb4642adcdeff97c2ed816ddda87ed5d5e9d9431a2f + name: bzip2-libs + evr: 1.0.8-11.el9 + sourcerpm: bzip2-1.0.8-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1177900 + checksum: sha256:ee2de9f5fbc5e83bad920a353c45d3446997aa0e4023436528b2d6f817bd6f50 + name: coreutils + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 2114764 + checksum: sha256:cd79ca65bba152b9ccadcb9780ec78e3d06ce538b693078fd14459d038ab5c0c + name: coreutils-common + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 102026 + checksum: sha256:d85216b672a15e5dd8cc771b853e3b73e832034949ee23998d8403609fba00a2 + name: cracklib + evr: 2.9.6-28.el9 + sourcerpm: cracklib-2.9.6-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cracklib-dicts-2.9.6-28.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 3829400 + checksum: sha256:807345f95c448cb58d4db8d059f76e4c139ef029887d59b431efd20db934745a + name: cracklib-dicts + evr: 2.9.6-28.el9 + sourcerpm: cracklib-2.9.6-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 98707 + checksum: sha256:a9ad86b8df75a7c9c29c6f6dd4b8f78cfa1f42b492eff0d11b82c457d37a7f9f + name: crypto-policies + evr: 20260224-1.gitea0f072.el9_8 + sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-1.12.20-8.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 8025 + checksum: sha256:5178f638660d1699fb06caeeac91f41c07da59b500e94adf2653df892f2cbdf8 + name: dbus + evr: 1:1.12.20-8.el9 + sourcerpm: dbus-1.12.20-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-broker-28-7.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 173303 + checksum: sha256:342af53fbf4254e34b5f19a6be6f22c67551c26dd0c49016edc93e806621b75d + name: dbus-broker + evr: 28-7.el9 + sourcerpm: dbus-broker-28-7.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 18551 + checksum: sha256:298f1cada3cbcef6713098b9925694a0e30e8566f7a5bdbd72384520cf6c8360 + name: dbus-common + evr: 1:1.12.20-8.el9 + sourcerpm: dbus-1.12.20-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 42824 + checksum: sha256:bbcf05d0b46d42c85807d774788edc39528a6898bd880baf11fb77729f59272d + name: elfutils-debuginfod-client + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 8949 + checksum: sha256:c473f42c0fec97e2830580110509e4522bc62d9b11761d062499354a0bf58959 + name: elfutils-default-yama-scope + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 203006 + checksum: sha256:04ff63b7b669b16827f3688baa0be4a2782f1405db3c6d3ee03c0e4cebc2cdf2 + name: elfutils-libelf + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/elfutils-libs-0.194-1.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 271645 + checksum: sha256:b90a6ad3e465995538785a2536986ad705625daf606d6258bf23d1dd29aec208 + name: elfutils-libs + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/e/expat-2.5.0-6.el9_8.1.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 120882 + checksum: sha256:7cc4e533f63bdec0ead003d176cb262b8d4d2583dfd57b2e9cfeeed4ead13475 + name: expat + evr: 2.5.0-6.el9_8.1 + sourcerpm: expat-2.5.0-6.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/f/filesystem-3.16-5.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 5003914 + checksum: sha256:484bc41109c49066cf350344150abe144e63263e0fafa0bf12c5a47f853e6a49 + name: filesystem + evr: 3.16-5.el9 + sourcerpm: filesystem-3.16-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/f/findutils-4.8.0-7.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gawk-5.1.0-6.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-2.34-275.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1813928 + checksum: sha256:e40a78100f731b5f5a1b235880a0aaad5b08bb32e6521e90535b7f4a94c6e9e9 + name: glibc + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-common-2.34-275.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 312665 + checksum: sha256:24e1c7189d101531c526dd3cc1a42ab62d89f874824b54fb6b518ec24f190554 + name: glibc-common + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-gconv-extra-2.34-275.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1829737 + checksum: sha256:7f2f23c07b84b3cd3bacb905dffaca4f4474298e936f3b10b93390d4127591da + name: glibc-gconv-extra + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-275.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 30881 + checksum: sha256:b1348c4c4fe3da979f342b0c27ff0d33a11688274a0b6708292d7750bbc8d853 + name: glibc-minimal-langpack + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gmp-6.2.0-13.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/grep-3.6-5.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-1.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/j/json-c-0.14-11.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 45052 + checksum: sha256:fff625bf4f0753eb7323b8933d264f3cc5c992bfecba8b082b204849297149cc + name: json-c + evr: 0.14-11.el9 + sourcerpm: json-c-0.14-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/kmod-libs-28-11.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 62168 + checksum: sha256:58526b701eb3a72de98062c58b56524c35916a7b1191bb1a846da33be5a5f709 + name: kmod-libs + evr: 28-11.el9 + sourcerpm: kmod-28-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 793489 + checksum: sha256:f8bbc9abe0da1ebe5bc028154bd54d465fe0682ddbb64c45882b84ff09f40e1d + name: krb5-libs + evr: 1.21.1-10.el9_8 + sourcerpm: krb5-1.21.1-10.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/less-590-6.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 165028 + checksum: sha256:fa762484ba40e0b7eb1c25531a66a0b578b6141cabb6f73d865c13ccdf75c1c9 + name: less + evr: 590-6.el9 + sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libacl-2.4.0-1.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 31468 + checksum: sha256:70ba010505e9805254f772c3dd9cd9e6176fc9e007e8c9be7204c44f85d8bbd2 + name: libacl + evr: 2.4.0-1.el9_8 + sourcerpm: acl-2.4.0-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libarchive-3.5.3-11.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 400797 + checksum: sha256:7fd7a2981416def9d96892ea11aec3b9af146a95cae11af59a2fdee22fb52516 + name: libarchive + evr: 3.5.3-11.el9_8 + sourcerpm: libarchive-3.5.3-11.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libatomic-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 26108 + checksum: sha256:bebe2e8fd98c64d1667e3de1eb3751b7b641bf5d0cd870ed6445fea5c4526326 + name: libatomic + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libattr-2.5.1-3.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 20696 + checksum: sha256:b6a73c9da522df55690b886c0a9af39338571d34ee6f0d4d9b994c8289df3412 + name: libattr + evr: 2.5.1-3.el9 + sourcerpm: attr-2.5.1-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 113931 + checksum: sha256:2c38ac06d3a267b62fc5ea4e149a25c4287c19157f4f18e0f7edea4787b27e15 + name: libblkid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 78021 + checksum: sha256:1ac3014c33b84d7a492b99d46d47940b096e034a3d5886e16ace7159724be012 + name: libcap + evr: 2.48-10.el9_8.1 + sourcerpm: libcap-2.48-10.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 59368 + checksum: sha256:93a2f44044ab11225b1123bc9df4f4d09c0a5f3251818e7d144ca64fd12c0957 + name: libcbor + evr: 0.7.0-5.el9 + sourcerpm: libcbor-0.7.0-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 291404 + checksum: sha256:4d77a96282b20b10d8e221e1208f0be8ec21274c090ee44866f36646e7b7206a + name: libcurl + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 727417 + checksum: sha256:3a912b2a0a6226695a5773138ce5ce090c9fb155151dffe732b8d52e6dd22d63 + name: libdb + evr: 5.3.28-57.el9_6 + sourcerpm: libdb-5.3.28-57.el9_6.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libeconf-0.4.1-7.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 32324 + checksum: sha256:8a5e117c2690c82835c6013f1fbac37b026f3e953fbffbd84c2f5ef6cf8df571 + name: libeconf + evr: 0.4.1-7.el9_8 + sourcerpm: libeconf-0.4.1-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 110092 + checksum: sha256:93964f8c06574404f4a5b44781b698f556fbc22f7ae3c82d4d540619772f6816 + name: libedit + evr: 3.1-39.20210216cvs.el9 + sourcerpm: libedit-3.1-39.20210216cvs.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 156711 + checksum: sha256:af043918fc50ce5b3de50c48c3de0143140b692fbf639db6f259270c4211a776 + name: libfdisk + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libffi-3.4.2-8.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 100573 + checksum: sha256:e56e963635b92f407471c7c5698d602135b135bda4515ecc75ac52dd1d38c7e4 + name: libfido2 + evr: 1.13.0-2.el9 + sourcerpm: libfido2-1.13.0-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 81211 + checksum: sha256:6923218fdef581189a4b51c7ba158083597f1c6df08cae021a1d90e9d61938a9 + name: libgcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcrypt-1.10.0-13.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 469908 + checksum: sha256:4a270fae0cf2f5ad846ce530664bbde72e798bb4a8196afb8fd2db93086c31c9 + name: libgcrypt + evr: 1.10.0-13.el9_8 + sourcerpm: libgcrypt-1.10.0-13.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 262138 + checksum: sha256:c8b3788fee442304e4158c802ff413df27d394b82f19c0f34ff43b5d3760470c + name: libgomp + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 222476 + checksum: sha256:aee968114aed0238eb26cff42ec9b0819ad32e2bac99aa8124d55b480806aca5 + name: libgpg-error + evr: 1.42-5.el9 + sourcerpm: libgpg-error-1.42-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libmount-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 140081 + checksum: sha256:152aee3abc8d97a37ff4ce2f5027d7e16e93ff2c77d25e900258da54e6fcc64e + name: libmount + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 79620 + checksum: sha256:69ae21fe69981041b43d3420800b691b854a32df2a26e84ce367bcfe4a4cac69 + name: libnghttp2 + evr: 1.43.0-6.el9_8.1 + sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 38310 + checksum: sha256:9bdfccf6b092e0683aa6984f7c6caa737b30c0b1495e16abb03b5d1a5f8e787a + name: libpkgconf + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 125712 + checksum: sha256:1657d94bbd79f93dc7a79d474316813bde681ce3a7f62f73314ec4d630e39349 + name: libpwquality + evr: 1.4.4-8.el9 + sourcerpm: libpwquality-1.4.4-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 76024 + checksum: sha256:fc1d5e93483d166ca7f2acb50c04c181db2f3e7b89dba8edc6b1e5f2b0f10619 + name: libseccomp + evr: 2.5.2-2.el9 + sourcerpm: libseccomp-2.5.2-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libselinux-3.6-3.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 89531 + checksum: sha256:3d7249adbf19206e319cd24acc2e01b0da39975aa3e5af73bdb6c6d438108fac + name: libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsepol-3.6-3.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 326966 + checksum: sha256:496ed9e2d7fac9704afe764eab4c2c43b4a47e8c229c14498dd19786f98f80c0 + name: libsepol + evr: 3.6-3.el9 + sourcerpm: libsepol-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 67440 + checksum: sha256:1704e73a566c920796d877c7bc3e5a96ea0c0c4194109c7b085c1128c01856af + name: libsmartcols + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-18.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 222382 + checksum: sha256:6d529b3f31dee553349277c9f72da4f14ae54a2d48d10aa3088b45fbe90f99c2 + name: libssh + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 14685 + checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + name: libssh-config + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 723913 + checksum: sha256:ae00c5009a2ee4682ec732cde66d3f4fcfc1a7099ba7b3701767d1748a4f2683 + name: libstdc++ + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 80446 + checksum: sha256:322524934c9b1f0714d2299705dbd41ec93451078e8144babc88c51bd19f6e07 + name: libtasn1 + evr: 4.16.0-10.el9_8 + sourcerpm: libtasn1-4.16.0-10.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 30505 + checksum: sha256:d352371cbb7d5bd0c53fc699df953c8c1f184b056690b3c4571e57a6634015c5 + name: libutempter + evr: 1.2.1-6.el9 + sourcerpm: libutempter-1.2.1-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 32555 + checksum: sha256:4d7bb4144053a30067a82423fb6e88fd08c7a69bd256eb21b08c0e3f4dbbaee6 + name: libuuid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libverto-0.3.2-3.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 754623 + checksum: sha256:e78f201e1cbab2bbce30991a1618f3b79d8afc9ef8bb9bf41046e314c5f30f0e + name: libxml2 + evr: 2.9.13-14.el9_8.2 + sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/make-4.3-8.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 550249 + checksum: sha256:351a22b0e6744bd329b1b0f22d9c3b69a6da970b575e6c76190cc84b0fe77450 + name: make + evr: 1:4.3-8.el9 + sourcerpm: make-4.3-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 249973 + checksum: sha256:c238f7451d1fcc5431bef2904ba56a0bea51d28337ccb692f6d6a09286043a65 + name: mpfr + evr: 4.1.0-10.el9 + sourcerpm: mpfr-4.1.0-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 97840 + checksum: sha256:d62dfd41f9688efa2cf1ceedb96084c63e297fbdcfd1e72bc6757c730092b60c + name: ncurses-base + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 324624 + checksum: sha256:b5dd452392d2f97bb050c9f5e5376998652c567dcbd8f035d26659b1b551b5c9 + name: ncurses-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openldap-2.6.8-4.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-9.9p1-9.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 431997 + checksum: sha256:57fdab98de5639f0f1a4714700eeeae737876a9609ee2c8449bffb489c3c6d96 + name: openssh + evr: 9.9p1-9.el9_8 + sourcerpm: openssh-9.9p1-9.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssh-clients-9.9p1-9.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 769478 + checksum: sha256:2f1657ebe0b8b96d9ecdfeb709426733d57aa7ec565eb805532d0b1bc9adcb20 + name: openssh-clients + evr: 9.9p1-9.el9_8 + sourcerpm: openssh-9.9p1-9.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-3.5.5-6.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1541002 + checksum: sha256:9f10be36d0d532c65a3f9a41f7d0cd3190b0b908f60850862cc24cab06cd1101 + name: openssl + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 14220 + checksum: sha256:158193d2f965db318148ec76e9347b530ac1f5379d849012c0a04d3c50cda478 + name: openssl-fips-provider + evr: 3.0.7-11.el9_8 + sourcerpm: openssl-fips-provider-3.0.7-11.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 529340 + checksum: sha256:22374a51f8a529dcfcf3b3ebbb2095103e0e811a28953535e5a62e26d1233301 + name: openssl-fips-provider-so + evr: 3.0.7-11.el9_8 + sourcerpm: openssl-fips-provider-3.0.7-11.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openssl-libs-3.5.5-6.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 2290581 + checksum: sha256:9af799c6be853cb42999a1228a2768da20a21895b7dcac111dba3be13a397b67 + name: openssl-libs + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-0.26.4-1.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 589112 + checksum: sha256:b9391ea6618098782c9325ccda3c9ca8bc0f3b035bd4f113a793cea18026c75e + name: p11-kit + evr: 0.26.4-1.el9_8 + sourcerpm: p11-kit-0.26.4-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/p11-kit-trust-0.26.4-1.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 162392 + checksum: sha256:a57761123cd5836faf3d40251d16124557ffb452443bfa14cf59ac16e6c99970 + name: p11-kit-trust + evr: 0.26.4-1.el9_8 + sourcerpm: p11-kit-0.26.4-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pam-1.5.1-28.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 635826 + checksum: sha256:eab9afe4a8ef70912d8c59c0d8c429c0474436e756d37bcd9ee0589f9a1c9311 + name: pam + evr: 1.5.1-28.el9 + sourcerpm: pam-1.5.1-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre-8.44-4.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre2-10.40-6.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 224938 + checksum: sha256:29285f81cef68f73b4f8ff81ee8fdf4ceaa007933302119ed1615e4aa1091613 + name: pcre2 + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 147926 + checksum: sha256:d386b5e9b3a4b077b2ba143882e605750855dd3354f13c55fa12ed26908cb442 + name: pcre2-syntax + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 45196 + checksum: sha256:aa38a3951a690d721a815ea8f9b01995a85f35a8540d8075205821011d0385e6 + name: pkgconf + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-m4-1.7.3-10.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 16054 + checksum: sha256:91bafd6e06099451f60288327b275cfcc651822f6145176a157c6b0fa5131e02 + name: pkgconf-m4 + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/pkgconf-pkg-config-1.7.3-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 12398 + checksum: sha256:47f1f744f96a2f3d360bc129837738dcebb1ee5032effc4472a891eea1d6a907 + name: pkgconf-pkg-config + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/readline-8.1-4.el9.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 61683 + checksum: sha256:fa7f1d93927c7f8c6f6563a8d221af659074f026e4b12cd74d456b0db1878164 + name: redhat-release + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/sed-4.8-10.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 315893 + checksum: sha256:b73d314a8ef322a690bb69c49cb0dbd9a5ff18d2ba6b2973e18d2c076a52b62a + name: sed + evr: 4.8-10.el9 + sourcerpm: sed-4.8-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 153791 + checksum: sha256:0891d395ce067121c28932534237ad1ce231f2bfa987411ad62e73a12d11eb6a + name: setup + evr: 2.13.7-10.el9 + sourcerpm: setup-2.13.7-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 1244527 + checksum: sha256:ccc46a8ea5f30d071e075ad53b5d39d191cfca4614090435528f2d2f944f88a2 + name: shadow-utils + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-252-67.el9_8.4.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 4156431 + checksum: sha256:f49001c208ea0ec7776b2353800f133d3383e72bda8486132dc6822a803aef9f + name: systemd + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 647617 + checksum: sha256:78f8f784050b920675ce5d37d659213226265dd72de14ec10df291afae59d8b7 + name: systemd-libs + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-pam-252-67.el9_8.4.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 266579 + checksum: sha256:e85f1916e5fc35f483282c2de00cb4e1a9a40743e745c00bb66e30e383955d46 + name: systemd-pam + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-rpm-macros-252-67.el9_8.4.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 59475 + checksum: sha256:7d671ec39a7caeb7346be6d5fcb44212545844ced6f4974c4b409fef6a12a891 + name: systemd-rpm-macros + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tar-1.34-11.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 904777 + checksum: sha256:62f985a87e048caa3ef883966d6176448398abc42df00ebff07e7311ff5f425d + name: tar + evr: 2:1.34-11.el9 + sourcerpm: tar-1.34-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tzdata-2026c-1.el9_8.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 933286 + checksum: sha256:8d6196e02853c0900c3c2e2367665beffb62cb2d0ff5f465ea2d00848a9a35dc + name: tzdata + evr: 2026c-1.el9_8 + sourcerpm: tzdata-2026c-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 2390152 + checksum: sha256:3681bbe37d46309673f366135787f5713f0ef575e3cd413cd221af2512e3634b + name: util-linux + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-core-2.37.4-25.el9.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 472949 + checksum: sha256:de7ad826dd42b383d93f6dc6b720a26d4cd4815d00c0f093c2e28037a8881424 + name: util-linux-core + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.13.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 22931 + checksum: sha256:7758bbb54a85bb53aecdbb9c740c4981b2b42cac6df9580414838c6bdbab8dbd + name: vim-filesystem + evr: 2:8.2.2637-26.el9_8.13 + sourcerpm: vim-8.2.2637-26.el9_8.13.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 235798 + checksum: sha256:26ac21be6c1e396c7bcbaa9d4786e3275e996d9d78c01f75bbbc6962e6c9bef7 + name: xz + evr: 5.2.5-8.el9_0 + sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.aarch64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/z/zlib-1.2.11-40.el9.aarch64.rpm + repoid: ubi-9-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: [] + module_metadata: [] +- arch: x86_64 + packages: + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-3.31.8-3.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 13989883 + checksum: sha256:e67ea7aef1edd470e4ec22982e97871655abcdc0990754d4e8f147d4e7de317a + name: cmake + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-data-3.31.8-3.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 2829291 + checksum: sha256:1cdc2e88a996c575b750483c8f562674e4b50a6ab414c7bbe6f6b641c1db7bd9 + name: cmake-data + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-filesystem-3.31.8-3.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 19309 + checksum: sha256:b5ea81385a9e4e6a1ae2bb1175cd774af82f9c570a37008cde873ead466ba5f7 + name: cmake-filesystem + evr: 3.31.8-3.el9 + sourcerpm: cmake-3.31.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cpp-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 11226193 + checksum: sha256:3c0ee1cb8b72f3f5176f8945ab518eb733ccc9f950d317fb5d5ac327d0eb9c90 + name: cpp + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/e/emacs-filesystem-27.2-18.el9.noarch.rpm + repoid: ubi-9-appstream-rpms + size: 9495 + checksum: sha256:49d7b88a05a72c15b78191a987e6def04fda8e2e4ff75711f715d0c0ecadc60f + name: emacs-filesystem + evr: 1:27.2-18.el9 + sourcerpm: emacs-27.2-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gawk-all-langpacks-5.1.0-6.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 216340 + checksum: sha256:c1fcc71c1cc1160d58ace4b60cc6733b68d6f6d406e5ec5ce24327787f452cd1 + name: gawk-all-langpacks + evr: 5.1.0-6.el9 + sourcerpm: gawk-5.1.0-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 33982584 + checksum: sha256:2082784165bbb246b6e5ef5921ed823f0a9709cacdf5823aa60695fd6d4819a2 + name: gcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-c++-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 13474286 + checksum: sha256:b073d8965ad8eed7520a2a1c9b7c961232511ad9188dcc8c92356160a9d51e37 + name: gcc-c++ + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/git-core-2.52.0-1.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 5293286 + checksum: sha256:6264aa556d583604f34def3674f5830a70cfee0aac283719e4df295db38acb53 + name: git-core + evr: 2.52.0-1.el9 + sourcerpm: git-2.52.0-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-devel-2.34-275.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 46499 + checksum: sha256:a3b6ed698d21192fa7c421094a5d6648411fba4252db28c96d629778c86e6cd5 + name: glibc-devel + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/glibc-headers-2.34-275.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 567171 + checksum: sha256:2124192aba2e7931cdf00c2dcd4b70b71b313790c28dcf09b2fb09cc9831c86f + name: glibc-headers + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.36.1.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 2903853 + checksum: sha256:aa8f8d4579635787d6dda7323d472de1f2f630f97d694ebf5e0208791b76555c + name: kernel-headers + evr: 5.14.0-687.36.1.el9_8 + sourcerpm: kernel-5.14.0-687.36.1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 66075 + checksum: sha256:b97b4e98c3c6f41dcfc2ceb4ffa1aba7a338b7cfd9e6c4f63e3160dd3cc033d3 + name: libmpc + evr: 1.2.1-4.el9 + sourcerpm: libmpc-1.2.1-4.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libstdc++-devel-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 2524816 + checksum: sha256:2d031d05fe073adc74919b8372763ae322615d9df23f4a2c642050ab4b389ce5 + name: libstdc++-devel + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libtool-ltdl-2.4.6-46.el9.x86_64.rpm + repoid: ubi-9-appstream-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 154427 + checksum: sha256:e1fab39251239ccaad2fb4dbe6c55ec1ae60f76d4ae81582b06e6a58e30879b2 + name: libuv + evr: 1:1.42.0-2.el9_4 + sourcerpm: libuv-1.42.0-2.el9_4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libxcrypt-devel-4.4.18-3.el9.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 33101 + checksum: sha256:c1d171391a7d2e043a6953efd3df3e01edc9b4c6cdb54517e1608d204a5fce18 + name: libxcrypt-devel + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/o/openssl-devel-3.5.5-6.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 5029526 + checksum: sha256:84e54b3467ecfe70c75688f28dbc0e071e268d845db17b28a1f35a35d45640cd + name: openssl-devel + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/acl-2.4.0-1.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 85269 + checksum: sha256:611da2c85401a2f26dba165c0be27b2e62fa71ceb5c392c8f5a9d30c31238d5b + name: acl + evr: 2.4.0-1.el9_8 + sourcerpm: acl-2.4.0-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/alternatives-1.24-2.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 130600 + checksum: sha256:637ac2995ce1a6c222772b60f6bc6e6f2829355d2c88dfb1262fb76146d985ae + name: audit-libs + evr: 3.1.5-8.el9 + sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 8229 + checksum: sha256:f498b0813fa1a825d550e8e3a9e42255eabfa18e6fc96adfc6cc8fa7e16dd513 + name: basesystem + evr: 11-13.el9 + sourcerpm: basesystem-11-13.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/bash-5.1.8-9.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1769540 + checksum: sha256:d3adf8b09aa0bf935c67aa12444e0ee02f70a82c2682bfb2b02bda0a989bb806 + name: bash + evr: 5.1.8-9.el9 + sourcerpm: bash-5.1.8-9.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-2.35.2-72.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 4821853 + checksum: sha256:bda706d43bf47267e31db8ac62fe3206122f97ff035daa6c93ce9cd5063a63ca + name: binutils + evr: 2.35.2-72.el9 + sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/binutils-gold-2.35.2-72.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 758393 + checksum: sha256:4d429d1030d8e1c610ba5aea83f8c63090033f440b2c8f788f0e0acd4a3c51b3 + name: binutils-gold + evr: 2.35.2-72.el9 + sourcerpm: binutils-2.35.2-72.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 46333 + checksum: sha256:948f763ed17672b8dd83356541e27a53ce97c6df38339c4416a188d452ca4d1e + name: bzip2-libs + evr: 1.0.8-11.el9 + sourcerpm: bzip2-1.0.8-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1220715 + checksum: sha256:e53f0f831246c73ab03ae395054d261ae392faa1229e6c691c08d2321a824b75 + name: coreutils + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 2116611 + checksum: sha256:1d4010cdc4f0fb7a4be68bf1bf0f0cda84a11d7337bd15d8368ab0ff90ca0db4 + name: coreutils-common + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cracklib-2.9.6-28.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 102444 + checksum: sha256:3b415381d4bd307686268ec42f646c7770f6a815de73a40a88aab7a7061b30a9 + name: cracklib + evr: 2.9.6-28.el9 + sourcerpm: cracklib-2.9.6-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cracklib-dicts-2.9.6-28.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 3829431 + checksum: sha256:61c11d3c23b62016b9939f917bb7f7e03cba324eb4ad35b375387ce9f18e25a1 + name: cracklib-dicts + evr: 2.9.6-28.el9 + sourcerpm: cracklib-2.9.6-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 98707 + checksum: sha256:a9ad86b8df75a7c9c29c6f6dd4b8f78cfa1f42b492eff0d11b82c457d37a7f9f + name: crypto-policies + evr: 20260224-1.gitea0f072.el9_8 + sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-1.12.20-8.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 8073 + checksum: sha256:96b1daa4de0a635ab760a8431fb005022bb7cb48d2d1d3ec9a8adb1798c0e10e + name: dbus + evr: 1:1.12.20-8.el9 + sourcerpm: dbus-1.12.20-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-broker-28-7.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 179634 + checksum: sha256:de9869c08df7f6952787d0335b9bf1a09b328bea920556a59af07c8e085dd3cb + name: dbus-broker + evr: 28-7.el9 + sourcerpm: dbus-broker-28-7.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 18551 + checksum: sha256:298f1cada3cbcef6713098b9925694a0e30e8566f7a5bdbd72384520cf6c8360 + name: dbus-common + evr: 1:1.12.20-8.el9 + sourcerpm: dbus-1.12.20-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-debuginfod-client-0.194-1.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 43826 + checksum: sha256:1635fd1ecaa9492fa925956dfd56d10063ca336619218f124ab45df0a38b41b0 + name: elfutils-debuginfod-client + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 8949 + checksum: sha256:c473f42c0fec97e2830580110509e4522bc62d9b11761d062499354a0bf58959 + name: elfutils-default-yama-scope + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-libelf-0.194-1.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 205864 + checksum: sha256:00bbe4776149d8ccedcdf19dd6ceb08c3bb42ff41b98d744abe101af0b11a6c5 + name: elfutils-libelf + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/elfutils-libs-0.194-1.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 274670 + checksum: sha256:ad4f6d425cbc975cead56a2c982e38b0146d00944cbd9b3072d3d1f1271237a5 + name: elfutils-libs + evr: 0.194-1.el9 + sourcerpm: elfutils-0.194-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/e/expat-2.5.0-6.el9_8.1.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 126909 + checksum: sha256:6a0c98d67b643fe620297e4cd7e990f99a86ed6bc90a8295a952c626ecbb9f62 + name: expat + evr: 2.5.0-6.el9_8.1 + sourcerpm: expat-2.5.0-6.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/f/filesystem-3.16-5.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 5003807 + checksum: sha256:9567592e6e32a9ebd45584cc4feb5d00812f143fcb2d8cd8b1d95108f4f66a2d + name: filesystem + evr: 3.16-5.el9 + sourcerpm: filesystem-3.16-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/f/findutils-4.8.0-7.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gawk-5.1.0-6.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-2.34-275.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 2083064 + checksum: sha256:7d2d420b97c05c09ee1e9bd881cb0725fe8d89688b933f411f278cb23210c65d + name: glibc + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-common-2.34-275.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 321585 + checksum: sha256:f23581b888783f576bd3a55503618a48f74f468fcfd4837bbd7a2d00fe7f3530 + name: glibc-common + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-gconv-extra-2.34-275.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1763577 + checksum: sha256:91899acba57caeb8768bf2ce4631d7f56c6b8e052f2bdf20003382205eb8eee8 + name: glibc-gconv-extra + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-275.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 30913 + checksum: sha256:6cc48d78bf2ceacfa5b58633b648c564b66505f4677adea8eb663fe90acd76f2 + name: glibc-minimal-langpack + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gmp-6.2.0-13.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/grep-3.6-5.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-1.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/json-c-0.14-11.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 46136 + checksum: sha256:b9bde4162250023103d95908fbca44fff6636a46176f92cf1761c1c3a4580a2f + name: json-c + evr: 0.14-11.el9 + sourcerpm: json-c-0.14-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/kmod-libs-28-11.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 63619 + checksum: sha256:f296bc24a1b8ba6c40ed73ba736be97ed78e4124b6dbdd8a0a25a9683d4ff1ce + name: kmod-libs + evr: 28-11.el9 + sourcerpm: kmod-28-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 790743 + checksum: sha256:8906be9f2d414c5f4e1218db0c94955c2b3394b43a04b7dbcc2ef66c4340ebc6 + name: krb5-libs + evr: 1.21.1-10.el9_8 + sourcerpm: krb5-1.21.1-10.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/less-590-6.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 166025 + checksum: sha256:5bd040f9dd813167935fc390d546c119d90e0a9c77447a3d9ed1ef69c6f5a32a + name: less + evr: 590-6.el9 + sourcerpm: less-590-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libacl-2.4.0-1.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 31657 + checksum: sha256:a81fb7a4d7c946e9bd886ee3c471a4b5040dedbb8ffb2a388120b2094be93cc8 + name: libacl + evr: 2.4.0-1.el9_8 + sourcerpm: acl-2.4.0-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libarchive-3.5.3-11.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 402853 + checksum: sha256:3b8ed4523d8721a1fabc2c92e6871c353b8ff5fb555663ab006fe90a7be35a86 + name: libarchive + evr: 3.5.3-11.el9_8 + sourcerpm: libarchive-3.5.3-11.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libattr-2.5.1-3.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 20786 + checksum: sha256:6519f028915fbd7ee0474f0bf4e98e35f04b5d0cf7be9f66c0cb9eafac0b8c5a + name: libattr + evr: 2.5.1-3.el9 + sourcerpm: attr-2.5.1-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 114192 + checksum: sha256:a858400abe83a7955ae509c920f835a950ea2cf1156916823c595a23ba46d536 + name: libblkid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libbrotli-1.0.9-9.el9_7.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 78928 + checksum: sha256:d4805439b10fa551b7535cf30ca28d4d5862132c9c429b2b31221bea7f43263a + name: libcap + evr: 2.48-10.el9_8.1 + sourcerpm: libcap-2.48-10.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcbor-0.7.0-5.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 60575 + checksum: sha256:588e8736af3376abfb3cdf372c10baef02c40d916a55958f3bee9767f9ad8526 + name: libcbor + evr: 0.7.0-5.el9 + sourcerpm: libcbor-0.7.0-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 296527 + checksum: sha256:d89db646d90f8342e097cf03c7979d0da1c2df45bcb4e2b9fe7437b7895a7df5 + name: libcurl + evr: 7.76.1-40.el9 + sourcerpm: curl-7.76.1-40.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 755192 + checksum: sha256:3246e76f197e2b60eb470b9b55d3e0dda2301b029f295fed9c38ff70b87c5b6b + name: libdb + evr: 5.3.28-57.el9_6 + sourcerpm: libdb-5.3.28-57.el9_6.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libeconf-0.4.1-7.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 33179 + checksum: sha256:a570c5baaedeb1445bc2e4f3930b0a709411bbefbdbf463c3e006cbfc7018894 + name: libeconf + evr: 0.4.1-7.el9_8 + sourcerpm: libeconf-0.4.1-7.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libedit-3.1-39.20210216cvs.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 112056 + checksum: sha256:65a730688dfea27934b75af3acf30150c6d254c89d8b68b63233ae7f8b6c9b94 + name: libedit + evr: 3.1-39.20210216cvs.el9 + sourcerpm: libedit-3.1-39.20210216cvs.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfdisk-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 161769 + checksum: sha256:1b861f267752e718ce696a80dcc06ef1dde8e9aa73fa2abed3775626d719c124 + name: libfdisk + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libffi-3.4.2-8.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libfido2-1.13.0-2.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 102746 + checksum: sha256:6da940c0528f3e4453db84cb85b402c8f4293a197b1921158df9651edb4845e0 + name: libfido2 + evr: 1.13.0-2.el9 + sourcerpm: libfido2-1.13.0-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 87280 + checksum: sha256:77c66827ffc14df2f43612b26128b1fd58d5c9597d4d4e564aa239b161272872 + name: libgcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcrypt-1.10.0-13.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 523829 + checksum: sha256:c07cd9f613809195b8691d28fd2f3bff55b2a83b9c1cdf4a32c681e0e32dfafb + name: libgcrypt + evr: 1.10.0-13.el9_8 + sourcerpm: libgcrypt-1.10.0-13.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 263723 + checksum: sha256:87b9a7316760374111290e6e4c76ee4d093566f08a7c7c91ad7827c5948afb69 + name: libgomp + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 225603 + checksum: sha256:8248e20d7a253aa9c0dc7dc3d56b42e1def4fd5753ce8e8b9e980aa664fc9068 + name: libgpg-error + evr: 1.42-5.el9 + sourcerpm: libgpg-error-1.42-5.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libmount-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 142467 + checksum: sha256:a9a2022eb9e39301bfcd3273573a108486b2b315c89247f147870016b2e9222c + name: libmount + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 80371 + checksum: sha256:3e99ec9ac85e7b1bf8348a503b14eb8d41e6df788c181202484a8cbc399f630a + name: libnghttp2 + evr: 1.43.0-6.el9_8.1 + sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 38387 + checksum: sha256:4feae5941b73640bd86b8d506a657cac5b770043db1464fbcd207721b2159dda + name: libpkgconf + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpsl-0.21.1-5.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpwquality-1.4.4-8.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 126104 + checksum: sha256:14b7ff2f7fdaf8ebec90261f4619ea7f7c3564c4de8483666de7ed4b1f49b66f + name: libpwquality + evr: 1.4.4-8.el9 + sourcerpm: libpwquality-1.4.4-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 76200 + checksum: sha256:e2015f60dbe784330d5df43f3f05c68c307694600a636a1706bf86527cc82e82 + name: libseccomp + evr: 2.5.2-2.el9 + sourcerpm: libseccomp-2.5.2-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libselinux-3.6-3.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 89722 + checksum: sha256:ce1cc63a7212c39f5f2a35f719ee38d6418cf081ea78c9317f388d9f41e4a627 + name: libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsepol-3.6-3.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 338766 + checksum: sha256:b98984b2bf42203964cc979ac157df090c63b89a0f5c6560ede01965531c8ffd + name: libsepol + evr: 3.6-3.el9 + sourcerpm: libsepol-3.6-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libsmartcols-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 68692 + checksum: sha256:c1da912799780b89cd44db4acc318ea4a83adba0d8d99aad1b877879f40dbd48 + name: libsmartcols + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-18.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 225119 + checksum: sha256:4a3ec8a0cc0d4f693a876c522d3e4bc2296180b9ec05f958f6a0aa8658702458 + name: libssh + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 14685 + checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + name: libssh-config + evr: 0.10.4-18.el9 + sourcerpm: libssh-0.10.4-18.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 763021 + checksum: sha256:513df35338962e053052b9d52429e8a5f3d60dfe6b1757cd9faaf61d6abda955 + name: libstdc++ + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 81418 + checksum: sha256:f9473f322407f10205b0db98b89cf8f603e9c769e9977250734136df56cbb981 + name: libtasn1 + evr: 4.16.0-10.el9_8 + sourcerpm: libtasn1-4.16.0-10.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libutempter-1.2.1-6.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 30354 + checksum: sha256:0f1df5e0d48c2ac9914bfffa7ed569cd58e42b17ba96bb3f7cf74d1e80de2597 + name: libutempter + evr: 1.2.1-6.el9 + sourcerpm: libutempter-1.2.1-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 32757 + checksum: sha256:5694aafca42c707f85af66bba11d102f7636ee17f586466b3ff80254e995ed7b + name: libuuid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libverto-0.3.2-3.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 772164 + checksum: sha256:8bc57807fd307c504dd53a1d047215abb9892130943d29023765d2acd9af09a4 + name: libxml2 + evr: 2.9.13-14.el9_8.2 + sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/make-4.3-8.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 553896 + checksum: sha256:561f0c2251e9217c81a6c88de4d2d9231a039aaab37e8a0d2559d36ce9fa85fd + name: make + evr: 1:4.3-8.el9 + sourcerpm: make-4.3-8.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 338130 + checksum: sha256:4adb12cda3b0e537ba5b22e7615288df751720d2e738bd182675d529cf1ead0c + name: mpfr + evr: 4.1.0-10.el9 + sourcerpm: mpfr-4.1.0-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 97840 + checksum: sha256:d62dfd41f9688efa2cf1ceedb96084c63e297fbdcfd1e72bc6757c730092b60c + name: ncurses-base + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 336270 + checksum: sha256:f3e1f8e59c7116278aa19b6705a1443f6307d4d6fbdde75a23d2f5d60636cb16 + name: ncurses-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openldap-2.6.8-4.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-9.9p1-9.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 442241 + checksum: sha256:cd14a09ebe95a8d09a779838bf71f8e05f809cbd1d7ef4553294284d35249a60 + name: openssh + evr: 9.9p1-9.el9_8 + sourcerpm: openssh-9.9p1-9.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssh-clients-9.9p1-9.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 799148 + checksum: sha256:2e10d31aa0d2c2aaf521b4b1b46cd76b734a781a9ffaf496f8d39c53f4897705 + name: openssh-clients + evr: 9.9p1-9.el9_8 + sourcerpm: openssh-9.9p1-9.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-3.5.5-6.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1564334 + checksum: sha256:1c502507f42674119318b66b111448f618efe2767a55edde5fadddcecb47ac64 + name: openssl + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 14256 + checksum: sha256:c00860e9c5a1d90488aa2eb65fe41f62926b38c6b3669d331a8b97e4a60223ac + name: openssl-fips-provider + evr: 3.0.7-11.el9_8 + sourcerpm: openssl-fips-provider-3.0.7-11.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 595008 + checksum: sha256:60d36ad3a67d6b00e67bb0a19c0902fbb2ecdd873cf7f280a3039d04a092790c + name: openssl-fips-provider-so + evr: 3.0.7-11.el9_8 + sourcerpm: openssl-fips-provider-3.0.7-11.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openssl-libs-3.5.5-6.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 2427181 + checksum: sha256:a289cdf4da547031cd39a4f31decd0bb22649bbcb5fe4f88b939d341a83708be + name: openssl-libs + evr: 1:3.5.5-6.el9_8 + sourcerpm: openssl-3.5.5-6.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-0.26.4-1.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 625862 + checksum: sha256:a00ba14bfd0fc5dd2818f605f2e0520b52ea4b36167504c2523f92a065c2bdaf + name: p11-kit + evr: 0.26.4-1.el9_8 + sourcerpm: p11-kit-0.26.4-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/p11-kit-trust-0.26.4-1.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 165521 + checksum: sha256:41b84ab0ee4cf914d570a3d648ed98b7de44cef73ea3dfa58ff5eebdec85f42a + name: p11-kit-trust + evr: 0.26.4-1.el9_8 + sourcerpm: p11-kit-0.26.4-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pam-1.5.1-28.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 637912 + checksum: sha256:15a0a5000af6f57f47c30682f7aacf3959903788e68255132b6a05bb4b713ab1 + name: pam + evr: 1.5.1-28.el9 + sourcerpm: pam-1.5.1-28.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre-8.44-4.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre2-10.40-6.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 241900 + checksum: sha256:75db1e5a50e7b1794d7ba18212d95cd2684559da9e7c52eee46490302c7f24dd + name: pcre2 + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 147926 + checksum: sha256:d386b5e9b3a4b077b2ba143882e605750855dd3354f13c55fa12ed26908cb442 + name: pcre2-syntax + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-1.7.3-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 45675 + checksum: sha256:bb47b4ecc499c308f41031a99e723827d152d5d750f59849d0c265d820944a26 + name: pkgconf + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-m4-1.7.3-10.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 16054 + checksum: sha256:91bafd6e06099451f60288327b275cfcc651822f6145176a157c6b0fa5131e02 + name: pkgconf-m4 + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/pkgconf-pkg-config-1.7.3-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 12438 + checksum: sha256:9a502d81d73d3303ceb53a06ad7ce525c97117ea64352174a33708bf3429283d + name: pkgconf-pkg-config + evr: 1.7.3-10.el9 + sourcerpm: pkgconf-1.7.3-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/readline-8.1-4.el9.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 61742 + checksum: sha256:8157ed988fc34dcfeb6429272959471edd5bde4ac212f26611fd54c180391758 + name: redhat-release + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/sed-4.8-10.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 317456 + checksum: sha256:45e246453dc9eb1bad6a71c6f349aad1b1b2e1bf3ec645b80f0ed04fe69c960e + name: sed + evr: 4.8-10.el9 + sourcerpm: sed-4.8-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 153791 + checksum: sha256:0891d395ce067121c28932534237ad1ce231f2bfa987411ad62e73a12d11eb6a + name: setup + evr: 2.13.7-10.el9 + sourcerpm: setup-2.13.7-10.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 1250179 + checksum: sha256:17294ee3fbc09c1b5cfc4114d3815cbd92584d6d70a6288e1dce2fda0a62dc59 + name: shadow-utils + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-252-67.el9_8.4.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 4401138 + checksum: sha256:e3cbe70aaa847f1b02bd4ea9470625434c26b25368cbfcb0e9a18de99e3bc1c7 + name: systemd + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 681056 + checksum: sha256:ca5a11f102b0e3a32fdddf017a4509984db83290d7364c9566d037d0ef7f1e66 + name: systemd-libs + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-pam-252-67.el9_8.4.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 276960 + checksum: sha256:de8408dbe8ee06afa99fbb914377384774e27b9b337cb3b491a37f84ccca7e9b + name: systemd-pam + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-rpm-macros-252-67.el9_8.4.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 59475 + checksum: sha256:7d671ec39a7caeb7346be6d5fcb44212545844ced6f4974c4b409fef6a12a891 + name: systemd-rpm-macros + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tar-1.34-11.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 913256 + checksum: sha256:58b622ab7bc225731a2473e677f16c9eb51b1ed218a86a7aa039a6fed665f245 + name: tar + evr: 2:1.34-11.el9 + sourcerpm: tar-1.34-11.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tzdata-2026c-1.el9_8.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 933286 + checksum: sha256:8d6196e02853c0900c3c2e2367665beffb62cb2d0ff5f465ea2d00848a9a35dc + name: tzdata + evr: 2026c-1.el9_8 + sourcerpm: tzdata-2026c-1.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 2382511 + checksum: sha256:35e0b73e574a7d8e93af0adf54adb2303f03423fd5761e357df86288f59d7933 + name: util-linux + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-core-2.37.4-25.el9.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 476811 + checksum: sha256:5575c8fc753d5a81022786dac33e172a6d1602ef41d247a58465754d3f952726 + name: util-linux-core + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/v/vim-filesystem-8.2.2637-26.el9_8.13.noarch.rpm + repoid: ubi-9-baseos-rpms + size: 22931 + checksum: sha256:7758bbb54a85bb53aecdbb9c740c4981b2b42cac6df9580414838c6bdbab8dbd + name: vim-filesystem + evr: 2:8.2.2637-26.el9_8.13 + sourcerpm: vim-8.2.2637-26.el9_8.13.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/x/xz-5.2.5-8.el9_0.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 235693 + checksum: sha256:f16d17c26a241400586ddc3d734ce863e3f19d433881ec640a47bedf0dafd07b + name: xz + evr: 5.2.5-8.el9_0 + sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.x86_64.rpm + repoid: ubi-9-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-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/z/zlib-1.2.11-40.el9.x86_64.rpm + repoid: ubi-9-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: [] + module_metadata: [] diff --git a/tasks/scripts/docker-build-image.sh b/tasks/scripts/docker-build-image.sh index 8570180f12..c587008dbc 100755 --- a/tasks/scripts/docker-build-image.sh +++ b/tasks/scripts/docker-build-image.sh @@ -46,6 +46,9 @@ required_prebuilt_binaries() { supervisor|supervisor-sideload|supervisor-output) echo "openshell-sandbox" ;; + cli) + echo "openshell" + ;; esac } @@ -119,6 +122,12 @@ case "${TARGET}" in DOCKER_TARGET="supervisor" DOCKERFILE="deploy/docker/Dockerfile.supervisor" ;; + cli) + IS_FINAL_IMAGE=1 + IMAGE_NAME="openshell/cli" + DOCKER_TARGET="cli" + DOCKERFILE="deploy/docker/Dockerfile.cli" + ;; *) echo "Error: unsupported target '${TARGET}'" >&2 exit 1 diff --git a/tasks/scripts/stage-prebuilt-binaries.sh b/tasks/scripts/stage-prebuilt-binaries.sh index 331d45a5b4..feabfc789d 100755 --- a/tasks/scripts/stage-prebuilt-binaries.sh +++ b/tasks/scripts/stage-prebuilt-binaries.sh @@ -12,7 +12,7 @@ ROOT="$(cd "${SCRIPT_DIR}/../.." && pwd)" source "${SCRIPT_DIR}/build-env.sh" usage() { - echo "Usage: stage-prebuilt-binaries.sh " >&2 + echo "Usage: stage-prebuilt-binaries.sh " >&2 } normalize_arch() { @@ -93,8 +93,11 @@ components_for_target() { sandbox|supervisor|supervisor-output) echo "supervisor" ;; + cli) + echo "cli" + ;; all) - echo "gateway supervisor" + echo "gateway supervisor cli" ;; *) usage @@ -115,6 +118,11 @@ resolve_component() { binary=openshell-sandbox target_libc=musl ;; + cli) + crate=openshell-cli + binary=openshell + target_libc=musl + ;; *) echo "unsupported binary component: $1" >&2 exit 1 From 1ffd2ba007ddcbad8c7ee712fbad20b1cedb99b1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 11 Aug 2026 12:13:53 +0000 Subject: [PATCH 15/24] CI: update Tekton pipelines - Pull pipelines use odh-pr tag - Push pipelines use odh-stable tag - Target branch: main Signed-off-by: github-actions[bot] --- .tekton/odh-openshell-cli-pull-request.yaml | 64 +++++++++++++++++++++ .tekton/odh-openshell-cli-push.yaml | 60 +++++++++++++++++++ .tekton/odh-openshell-cli-tag.yaml | 64 +++++++++++++++++++++ 3 files changed, 188 insertions(+) create mode 100644 .tekton/odh-openshell-cli-pull-request.yaml create mode 100644 .tekton/odh-openshell-cli-push.yaml create mode 100644 .tekton/odh-openshell-cli-tag.yaml diff --git a/.tekton/odh-openshell-cli-pull-request.yaml b/.tekton/odh-openshell-cli-pull-request.yaml new file mode 100644 index 0000000000..6d6bb22af6 --- /dev/null +++ b/.tekton/odh-openshell-cli-pull-request.yaml @@ -0,0 +1,64 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://github.com/opendatahub-io/openshell?rev={{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: opendatahub-builds + appstudio.openshift.io/component: odh-openshell-cli-ci + pipelines.appstudio.openshift.io/type: build + name: odh-openshell-cli-on-pull-request + namespace: open-data-hub-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/opendatahub/odh-openshell-cli:odh-pr + - name: dockerfile + value: deploy/docker/Dockerfile.konflux.cli + - name: path-context + value: . + - name: hermetic + value: "true" + - name: build-platforms + value: + - linux/x86_64 + - linux/arm64 + - name: prefetch-input + value: | + [ + {"type": "cargo", "path": "."}, + {"type": "rpm", "path": "deploy/konflux/cli"}, + {"type": "generic", "path": "deploy/konflux/cli", "lockfile": "generic-fetcher.yaml"} + ] + - name: additional-tags + value: + - 'odh-pr-{{revision}}' + - name: pipeline-type + value: pull-request + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/opendatahub-io/odh-konflux-central.git + - name: revision + value: main + - name: pathInRepo + value: pipeline/multi-arch-container-build.yaml + taskRunTemplate: + serviceAccountName: build-pipeline-odh-openshell-cli-ci + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} diff --git a/.tekton/odh-openshell-cli-push.yaml b/.tekton/odh-openshell-cli-push.yaml new file mode 100644 index 0000000000..d3bb683745 --- /dev/null +++ b/.tekton/odh-openshell-cli-push.yaml @@ -0,0 +1,60 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +# +metadata: + annotations: + build.appstudio.openshift.io/repo: https://github.com/opendatahub-io/openshell?rev={{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: opendatahub-builds + appstudio.openshift.io/component: odh-openshell-cli-ci + pipelines.appstudio.openshift.io/type: build + name: odh-openshell-cli-on-push + namespace: open-data-hub-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/opendatahub/odh-openshell-cli:odh-stable + - name: dockerfile + value: deploy/docker/Dockerfile.konflux.cli + - name: path-context + value: . + - name: hermetic + value: "true" + - name: build-platforms + value: + - linux/x86_64 + - linux/arm64 + - name: prefetch-input + value: | + [ + {"type": "cargo", "path": "."}, + {"type": "rpm", "path": "deploy/konflux/cli"}, + {"type": "generic", "path": "deploy/konflux/cli", "lockfile": "generic-fetcher.yaml"} + ] + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/opendatahub-io/odh-konflux-central.git + - name: revision + value: main + - name: pathInRepo + value: pipeline/multi-arch-container-build.yaml + taskRunTemplate: + serviceAccountName: build-pipeline-odh-openshell-cli-ci + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} diff --git a/.tekton/odh-openshell-cli-tag.yaml b/.tekton/odh-openshell-cli-tag.yaml new file mode 100644 index 0000000000..a1aa4cfd2b --- /dev/null +++ b/.tekton/odh-openshell-cli-tag.yaml @@ -0,0 +1,64 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +# +metadata: + annotations: + build.appstudio.openshift.io/repo: https://github.com/opendatahub-io/openshell?rev={{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + event == "push" + && target_branch.matches("^refs/tags/v[0-9]+\\.[0-9]+\\.[0-9]+-rhaiv\\.[0-9]+$") + creationTimestamp: null + labels: + appstudio.openshift.io/application: opendatahub-builds + appstudio.openshift.io/component: odh-openshell-cli-ci + pipelines.appstudio.openshift.io/type: build + name: odh-openshell-cli-on-tag + namespace: open-data-hub-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/opendatahub/odh-openshell-cli:{{git_tag}} + - name: dockerfile + value: deploy/docker/Dockerfile.konflux.cli + - name: path-context + value: . + - name: hermetic + value: "true" + - name: build-platforms + value: + - linux/x86_64 + - linux/arm64 + - name: prefetch-input + value: | + [ + {"type": "cargo", "path": "."}, + {"type": "rpm", "path": "deploy/konflux/cli"}, + {"type": "generic", "path": "deploy/konflux/cli", "lockfile": "generic-fetcher.yaml"} + ] + - name: build-args + value: + - "OPENSHELL_VERSION={{git_tag}}" + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/opendatahub-io/odh-konflux-central.git + - name: revision + value: main + - name: pathInRepo + value: pipeline/multi-arch-container-build.yaml + taskRunTemplate: + serviceAccountName: build-pipeline-odh-openshell-cli-ci + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} From fa0130c02e57564bf07c92641c734f1e043184f5 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Tue, 11 Aug 2026 15:40:38 -0400 Subject: [PATCH 16/24] CARRY: build Konflux supervisor and CLI images with static glibc instead of musl The Konflux (RHEL, hermetic) supervisor and CLI images built their Rust binaries as fully-static musl binaries, which meant building musl libc from source and installing the musl rust-std target. That drove RHEL-219374 (asking Red Hat to ship rust-std-static-musl) and needed a prodsec exception for the from-source musl build. Build both as fully-static glibc binaries instead: install glibc-static from the public UBI9 CodeReady Builder repo and compile the existing GNU target with `-C target-feature=+crt-static`. This removes the musl-from-source stage, the musl rust-std prefetch, and the rust-std-static-musl dependency, so the productized images no longer depend on musl. The binaries remain genuinely fully static (static-PIE, no PT_INTERP, no DT_NEEDED). Static glibc resolves DNS, users, and groups through its built-in default files+dns NSS services, verified working in Alpine, busybox, and UBI containers, so the injected supervisor keeps functioning in non-glibc user containers. Follows upstream NVIDIA/OpenShell#2682, which added the glibc-static build mechanism to the non-Konflux path. Signed-off-by: Emilien Macchi --- deploy/docker/Dockerfile.konflux.cli | 57 ++++++------------- deploy/docker/Dockerfile.konflux.supervisor | 57 ++++++------------- deploy/konflux/cli/generic-fetcher.yaml | 15 ----- deploy/konflux/cli/rpms.in.yaml | 38 ++++++++++--- deploy/konflux/cli/rpms.lock.yaml | 28 +++++++++ .../konflux/supervisor/generic-fetcher.yaml | 15 ----- deploy/konflux/supervisor/rpms.in.yaml | 8 ++- deploy/konflux/supervisor/rpms.lock.yaml | 28 +++++++++ 8 files changed, 126 insertions(+), 120 deletions(-) diff --git a/deploy/docker/Dockerfile.konflux.cli b/deploy/docker/Dockerfile.konflux.cli index 0e26b006ad..135f7eee1f 100644 --- a/deploy/docker/Dockerfile.konflux.cli +++ b/deploy/docker/Dockerfile.konflux.cli @@ -5,9 +5,10 @@ # CLI image for RHEL/Konflux (hermetic build). # -# Multi-stage build that compiles the openshell CLI from source on UBI9 -# as a fully-static musl binary. musl libc is built from source since -# UBI9 does not ship it. +# Multi-stage build that compiles the openshell CLI from source on UBI9 as a +# fully-static binary. It is built against glibc with +# `-C target-feature=+crt-static` using Red Hat's glibc-static package +# (CodeReady Builder), so the build has no dependency on musl. # # Requires prefetched dependencies via Hermeto (cargo, rpm, generic). # See deploy/konflux/ for prefetch configs. @@ -15,27 +16,9 @@ # Local build: ./deploy/konflux/build-local.sh cli ARG RUST_VERSION=1.92.0 -ARG MUSL_VERSION=1.2.5 # --------------------------------------------------------------------------- -# Stage 1: build musl libc from source -# --------------------------------------------------------------------------- -FROM registry.access.redhat.com/ubi9/ubi:9.6@sha256:dec374e05cc13ebbc0975c9f521f3db6942d27f8ccdf06b180160490eef8bdbc AS musl-toolchain - -ARG MUSL_VERSION - -RUN dnf install -y --nodocs gcc make tar gzip \ - && dnf clean all - -WORKDIR /tmp/musl-build - -RUN tar xzf /cachi2/output/deps/generic/musl-${MUSL_VERSION}.tar.gz --strip-components=1 \ - && ./configure --prefix=/usr/local/musl --disable-shared \ - && make -j"$(nproc)" \ - && make install - -# --------------------------------------------------------------------------- -# Stage 2: compile CLI (static musl binary) +# Build stage: compile CLI (fully-static glibc binary) # --------------------------------------------------------------------------- FROM registry.access.redhat.com/ubi9/ubi:9.6@sha256:dec374e05cc13ebbc0975c9f521f3db6942d27f8ccdf06b180160490eef8bdbc AS builder @@ -44,29 +27,21 @@ ARG TARGETARCH RUN dnf install -y --nodocs \ gcc gcc-c++ make cmake \ + glibc-static \ openssl-devel git-core xz \ && dnf clean all -# Map TARGETARCH (amd64/arm64) to Rust triple components +# Extract the Rust toolchain (GNU target) and record the target triple. The +# GNU rust-std shipped with the toolchain is reused; no musl std is needed. RUN RUST_ARCH=$(case "${TARGETARCH}" in amd64) echo x86_64;; arm64) echo aarch64;; *) echo "${TARGETARCH}";; esac) && \ RUST_TRIPLE="${RUST_ARCH}-unknown-linux-gnu" && \ - MUSL_TRIPLE="${RUST_ARCH}-unknown-linux-musl" && \ mkdir -p /tmp/rust-toolchain && \ tar xJf /cachi2/output/deps/generic/rust-${RUST_VERSION}-${RUST_TRIPLE}.tar.xz -C /tmp/rust-toolchain --strip-components=1 && \ /tmp/rust-toolchain/install.sh --prefix=/usr/local && \ rm -rf /tmp/rust-toolchain && \ - mkdir -p /tmp/musl-std && \ - tar xJf /cachi2/output/deps/generic/rust-std-${RUST_VERSION}-${MUSL_TRIPLE}.tar.xz -C /tmp/musl-std --strip-components=1 && \ - /tmp/musl-std/install.sh --prefix=/usr/local && \ - rm -rf /tmp/musl-std + echo "RUST_TARGET=${RUST_TRIPLE}" > /tmp/build-env -COPY --from=musl-toolchain /usr/local/musl /usr/local/musl - -# CC and target vars use the native arch musl triple -RUN RUST_ARCH=$(case "${TARGETARCH}" in amd64) echo x86_64;; arm64) echo aarch64;; *) echo "${TARGETARCH}";; esac) && \ - echo "MUSL_TARGET=${RUST_ARCH}-unknown-linux-musl" > /tmp/build-env -ENV PATH="/usr/local/musl/bin:${PATH}" \ - CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse +ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse WORKDIR /build COPY Cargo.toml Cargo.lock ./ @@ -83,15 +58,17 @@ RUN sed -i 's|members = \["crates/\*"\]|members = ["crates/openshell-cli", "crat # pass the git tag with the leading "v" stripped. Empty otherwise. ARG OPENSHELL_VERSION="" +# `-C target-feature=+crt-static` links glibc statically, producing a +# fully-static (static-PIE) binary with no runtime libc dependency. RUN . /tmp/build-env && \ - export CC_${MUSL_TARGET//-/_}=musl-gcc && \ VER="${OPENSHELL_VERSION#v}" && \ if [ -n "$VER" ]; then export OPENSHELL_GIT_VERSION="$VER"; fi && \ + RUSTFLAGS="-C target-feature=+crt-static" \ cargo build --release \ - --target "${MUSL_TARGET}" \ + --target "${RUST_TARGET}" \ --package openshell-cli && \ mkdir -p /build/output && \ - cp /build/target/${MUSL_TARGET}/release/openshell /build/output/ + cp /build/target/${RUST_TARGET}/release/openshell /build/output/ # --------------------------------------------------------------------------- # Runtime @@ -104,8 +81,8 @@ RUN microdnf install -y --nodocs ca-certificates \ COPY --from=builder --chmod=0555 /build/output/openshell /usr/local/bin/openshell LABEL com.redhat.component="odh-openshell-cli-container" \ - description="Static musl-linked CLI for OpenShell sandboxed AI agent runtimes" \ - summary="Static musl-linked CLI for OpenShell sandboxed AI agent runtimes" \ + description="Statically linked (glibc) CLI for OpenShell sandboxed AI agent runtimes" \ + summary="Statically linked (glibc) CLI for OpenShell sandboxed AI agent runtimes" \ name="rhoai/odh-openshell-cli-rhel9" \ maintainer="['managed-open-data-hub@redhat.com']" \ io.openshift.expose-services="" \ diff --git a/deploy/docker/Dockerfile.konflux.supervisor b/deploy/docker/Dockerfile.konflux.supervisor index 0eb627597a..b6f7b953c2 100644 --- a/deploy/docker/Dockerfile.konflux.supervisor +++ b/deploy/docker/Dockerfile.konflux.supervisor @@ -7,7 +7,9 @@ # # The supervisor binary is extracted and injected into arbitrary user # containers (Alpine, Debian, distroless, UBI) so it MUST be a fully-static -# musl binary. musl libc is built from source since UBI9 does not ship it. +# binary. It is built against glibc with `-C target-feature=+crt-static` +# using Red Hat's glibc-static package (CodeReady Builder), so the build has +# no dependency on musl. # # Requires prefetched dependencies via Hermeto (cargo, rpm, generic). # See deploy/konflux/ for prefetch configs. @@ -15,27 +17,9 @@ # Local build: ./deploy/konflux/build-local.sh supervisor ARG RUST_VERSION=1.92.0 -ARG MUSL_VERSION=1.2.5 # --------------------------------------------------------------------------- -# Stage 1: build musl libc from source -# --------------------------------------------------------------------------- -FROM registry.access.redhat.com/ubi9/ubi:9.6@sha256:dec374e05cc13ebbc0975c9f521f3db6942d27f8ccdf06b180160490eef8bdbc AS musl-toolchain - -ARG MUSL_VERSION - -RUN dnf install -y --nodocs --setopt=install_weak_deps=0 gcc make tar gzip \ - && dnf clean all - -WORKDIR /tmp/musl-build - -RUN tar xzf /cachi2/output/deps/generic/musl-${MUSL_VERSION}.tar.gz --strip-components=1 \ - && ./configure --prefix=/usr/local/musl --disable-shared \ - && make -j"$(nproc)" \ - && make install - -# --------------------------------------------------------------------------- -# Stage 2: compile supervisor (static musl binary) +# Build stage: compile supervisor (fully-static glibc binary) # --------------------------------------------------------------------------- FROM registry.access.redhat.com/ubi9/ubi:9.6@sha256:dec374e05cc13ebbc0975c9f521f3db6942d27f8ccdf06b180160490eef8bdbc AS builder @@ -44,29 +28,21 @@ ARG TARGETARCH RUN dnf install -y --nodocs --setopt=install_weak_deps=0 \ gcc gcc-c++ make cmake \ + glibc-static \ openssl-devel git-core xz \ && dnf clean all -# Map TARGETARCH (amd64/arm64) to Rust triple components +# Extract the Rust toolchain (GNU target) and record the target triple. The +# GNU rust-std shipped with the toolchain is reused; no musl std is needed. RUN RUST_ARCH=$(case "${TARGETARCH}" in amd64) echo x86_64;; arm64) echo aarch64;; *) echo "${TARGETARCH}";; esac) && \ RUST_TRIPLE="${RUST_ARCH}-unknown-linux-gnu" && \ - MUSL_TRIPLE="${RUST_ARCH}-unknown-linux-musl" && \ mkdir -p /tmp/rust-toolchain && \ tar xJf /cachi2/output/deps/generic/rust-${RUST_VERSION}-${RUST_TRIPLE}.tar.xz -C /tmp/rust-toolchain --strip-components=1 && \ /tmp/rust-toolchain/install.sh --prefix=/usr/local && \ rm -rf /tmp/rust-toolchain && \ - mkdir -p /tmp/musl-std && \ - tar xJf /cachi2/output/deps/generic/rust-std-${RUST_VERSION}-${MUSL_TRIPLE}.tar.xz -C /tmp/musl-std --strip-components=1 && \ - /tmp/musl-std/install.sh --prefix=/usr/local && \ - rm -rf /tmp/musl-std + echo "RUST_TARGET=${RUST_TRIPLE}" > /tmp/build-env -COPY --from=musl-toolchain /usr/local/musl /usr/local/musl - -# CC and target vars use the native arch musl triple -RUN RUST_ARCH=$(case "${TARGETARCH}" in amd64) echo x86_64;; arm64) echo aarch64;; *) echo "${TARGETARCH}";; esac) && \ - echo "MUSL_TARGET=${RUST_ARCH}-unknown-linux-musl" > /tmp/build-env -ENV PATH="/usr/local/musl/bin:${PATH}" \ - CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse +ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse WORKDIR /build COPY Cargo.toml Cargo.lock ./ @@ -78,15 +54,17 @@ COPY proto/ proto/ # pass the git tag with the leading "v" stripped. Empty otherwise. ARG OPENSHELL_VERSION="" +# `-C target-feature=+crt-static` links glibc statically, producing a +# fully-static (static-PIE) binary with no runtime libc dependency. RUN . /tmp/build-env && \ - export CC_${MUSL_TARGET//-/_}=musl-gcc && \ VER="${OPENSHELL_VERSION#v}" && \ if [ -n "$VER" ]; then export OPENSHELL_GIT_VERSION="$VER"; fi && \ + RUSTFLAGS="-C target-feature=+crt-static" \ cargo build --release \ - --target "${MUSL_TARGET}" \ + --target "${RUST_TARGET}" \ --package openshell-sandbox && \ mkdir -p /build/output && \ - cp /build/target/${MUSL_TARGET}/release/openshell-sandbox /build/output/ + cp /build/target/${RUST_TARGET}/release/openshell-sandbox /build/output/ # --------------------------------------------------------------------------- # Runtime @@ -102,13 +80,12 @@ RUN microdnf install -y --nodocs --setopt=install_weak_deps=0 \ util-linux-core \ && microdnf clean all -# Copy the static binary from the arch-specific target directory. -# Builder writes the target to /tmp/build-env; we resolve it here. +# Copy the fully-static binary produced by the builder stage. COPY --from=builder --chmod=0555 /build/output/openshell-sandbox /openshell-sandbox LABEL com.redhat.component="odh-openshell-supervisor-container" \ - description="Static musl-linked sandbox supervisor for OpenShell, injected into arbitrary user containers" \ - summary="Static musl-linked sandbox supervisor for OpenShell, injected into arbitrary user containers" \ + description="Statically linked (glibc) sandbox supervisor for OpenShell, injected into arbitrary user containers" \ + summary="Statically linked (glibc) sandbox supervisor for OpenShell, injected into arbitrary user containers" \ name="rhoai/odh-openshell-supervisor-rhel9" \ maintainer="['managed-open-data-hub@redhat.com']" \ io.openshift.expose-services="" \ diff --git a/deploy/konflux/cli/generic-fetcher.yaml b/deploy/konflux/cli/generic-fetcher.yaml index c63c9446bc..c29d406bad 100644 --- a/deploy/konflux/cli/generic-fetcher.yaml +++ b/deploy/konflux/cli/generic-fetcher.yaml @@ -9,11 +9,6 @@ metadata: version: "1.0" artifacts: - # musl libc source (arch-independent, built from source in Dockerfile) - - download_url: https://musl.libc.org/releases/musl-1.2.5.tar.gz - checksum: "sha256:a9a118bbe84d8764da0ea0d28b3ab3fae8477fc7e4085d90102b8596fc7c75e4" - filename: musl-1.2.5.tar.gz - # Rust toolchain x86_64 - download_url: https://static.rust-lang.org/dist/rust-1.92.0-x86_64-unknown-linux-gnu.tar.xz checksum: "sha256:d2ccef59dd9f7439f2c694948069f789a044dc1addcc0803613232af8f88ee0c" @@ -23,13 +18,3 @@ artifacts: - download_url: https://static.rust-lang.org/dist/rust-1.92.0-aarch64-unknown-linux-gnu.tar.xz checksum: "sha256:3e383f8b4fca710d0600d0c1de97b78281672be2cda6575ecbe1c183a12e3822" filename: rust-1.92.0-aarch64-unknown-linux-gnu.tar.xz - - # rust-std for musl target x86_64 - - download_url: https://static.rust-lang.org/dist/rust-std-1.92.0-x86_64-unknown-linux-musl.tar.xz - checksum: "sha256:11f0b7efccdb5e7972e3c0fc23693a487abc28b624675c08161d055a016d527e" - filename: rust-std-1.92.0-x86_64-unknown-linux-musl.tar.xz - - # rust-std for musl target aarch64 - - download_url: https://static.rust-lang.org/dist/rust-std-1.92.0-aarch64-unknown-linux-musl.tar.xz - checksum: "sha256:94b9f84f21d29825c55a27fbb6b4b9fb9296a4a841aa54d85b95c42445623363" - filename: rust-std-1.92.0-aarch64-unknown-linux-musl.tar.xz diff --git a/deploy/konflux/cli/rpms.in.yaml b/deploy/konflux/cli/rpms.in.yaml index 4527ea05a8..69e1024f5b 100644 --- a/deploy/konflux/cli/rpms.in.yaml +++ b/deploy/konflux/cli/rpms.in.yaml @@ -2,22 +2,39 @@ # SPDX-License-Identifier: Apache-2.0 # RPM dependencies for Dockerfile.konflux.cli -# Build + runtime stages combined. Generate lockfile with: -# rpm-lockfile-prototype --bare \ -# --arch x86_64 --arch aarch64 \ -# --outfile deploy/konflux/cli/rpms.lock.yaml \ +# Build + runtime stages combined. +# +# Resolved with `context.bare: true` so the lockfile pins the full dependency +# closure. The image installs RPMs into two different bases (the ubi:9.6 build +# stage and the ubi-minimal runtime stage); bare guarantees every package is +# pinned and prefetched regardless of which base already provides it. +# +# Target arches and repos are declared in this file (not passed on the command +# line) so Konflux MintMaker can regenerate the lockfile with no CLI flags. +# Regenerate manually with: +# rpm-lockfile-prototype --outfile deploy/konflux/cli/rpms.lock.yaml \ # deploy/konflux/cli/rpms.in.yaml # +# UBI content is public, so repos are inlined here rather than read from the +# base image; rpm-lockfile-prototype resolves versions from the CDN and cannot +# read /etc/yum.repos.d from inside the base image. contentOrigin: - repofiles: - - /etc/yum.repos.d/ubi.repo + repos: + - repoid: ubi-9-baseos-rpms + baseurl: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/$basearch/baseos/os/ + - repoid: ubi-9-appstream-rpms + baseurl: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/$basearch/appstream/os/ + # glibc-static (for `-C target-feature=+crt-static`) ships in CodeReady + # Builder, whose content is public on the UBI CDN. + - repoid: ubi-9-codeready-builder-rpms + baseurl: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/$basearch/codeready-builder/os/ packages: - # Build stage: musl toolchain build + # Build stage: static glibc + build tools - gcc - make - tar - - gzip - xz + - glibc-static # Build stage: Rust compilation (rustup provides rust/cargo) - gcc-c++ - cmake @@ -25,3 +42,8 @@ packages: - git-core # Runtime stage - ca-certificates +arches: + - x86_64 + - aarch64 +context: + bare: true diff --git a/deploy/konflux/cli/rpms.lock.yaml b/deploy/konflux/cli/rpms.lock.yaml index 502f9bb37c..b0cc31c1e2 100644 --- a/deploy/konflux/cli/rpms.lock.yaml +++ b/deploy/konflux/cli/rpms.lock.yaml @@ -1001,6 +1001,20 @@ arches: name: zlib evr: 1.2.11-40.el9 sourcerpm: zlib-1.2.11-40.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/codeready-builder/os/Packages/g/glibc-static-2.34-275.el9_8.aarch64.rpm + repoid: ubi-9-codeready-builder-rpms + size: 1249076 + checksum: sha256:a683861245c3bbd125301070aca013ed0a7603f6bcf64d99914dcf9ae792b281 + name: glibc-static + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/codeready-builder/os/Packages/l/libxcrypt-static-4.4.18-3.el9.aarch64.rpm + repoid: ubi-9-codeready-builder-rpms + size: 111974 + checksum: sha256:8bb8a0eb808c389cfec8a0b29ef66a608cc04711b5d4a0ad515f3a32522ae6e0 + name: libxcrypt-static + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm source: [] module_metadata: [] - arch: x86_64 @@ -1985,5 +1999,19 @@ arches: name: zlib evr: 1.2.11-40.el9 sourcerpm: zlib-1.2.11-40.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/codeready-builder/os/Packages/g/glibc-static-2.34-275.el9_8.x86_64.rpm + repoid: ubi-9-codeready-builder-rpms + size: 1532701 + checksum: sha256:d35de990a70f4a636753a1e45e2e73b6dd66fc46985bbd6695aaac2c68f399a0 + name: glibc-static + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/codeready-builder/os/Packages/l/libxcrypt-static-4.4.18-3.el9.x86_64.rpm + repoid: ubi-9-codeready-builder-rpms + size: 105711 + checksum: sha256:e2b914f5e136df3c90367dc222e9d893d0c34662f9f2d496b0cadd7d277c579a + name: libxcrypt-static + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm source: [] module_metadata: [] diff --git a/deploy/konflux/supervisor/generic-fetcher.yaml b/deploy/konflux/supervisor/generic-fetcher.yaml index 6fb22f0cde..8c0b348a19 100644 --- a/deploy/konflux/supervisor/generic-fetcher.yaml +++ b/deploy/konflux/supervisor/generic-fetcher.yaml @@ -6,11 +6,6 @@ metadata: version: "1.0" artifacts: - # musl libc source (arch-independent, built from source in Dockerfile) - - download_url: https://musl.libc.org/releases/musl-1.2.5.tar.gz - checksum: "sha256:a9a118bbe84d8764da0ea0d28b3ab3fae8477fc7e4085d90102b8596fc7c75e4" - filename: musl-1.2.5.tar.gz - # Rust toolchain x86_64 - download_url: https://static.rust-lang.org/dist/rust-1.92.0-x86_64-unknown-linux-gnu.tar.xz checksum: "sha256:d2ccef59dd9f7439f2c694948069f789a044dc1addcc0803613232af8f88ee0c" @@ -20,13 +15,3 @@ artifacts: - download_url: https://static.rust-lang.org/dist/rust-1.92.0-aarch64-unknown-linux-gnu.tar.xz checksum: "sha256:3e383f8b4fca710d0600d0c1de97b78281672be2cda6575ecbe1c183a12e3822" filename: rust-1.92.0-aarch64-unknown-linux-gnu.tar.xz - - # rust-std for musl target x86_64 - - download_url: https://static.rust-lang.org/dist/rust-std-1.92.0-x86_64-unknown-linux-musl.tar.xz - checksum: "sha256:11f0b7efccdb5e7972e3c0fc23693a487abc28b624675c08161d055a016d527e" - filename: rust-std-1.92.0-x86_64-unknown-linux-musl.tar.xz - - # rust-std for musl target aarch64 - - download_url: https://static.rust-lang.org/dist/rust-std-1.92.0-aarch64-unknown-linux-musl.tar.xz - checksum: "sha256:94b9f84f21d29825c55a27fbb6b4b9fb9296a4a841aa54d85b95c42445623363" - filename: rust-std-1.92.0-aarch64-unknown-linux-musl.tar.xz diff --git a/deploy/konflux/supervisor/rpms.in.yaml b/deploy/konflux/supervisor/rpms.in.yaml index 81fefcb5a3..837aea5063 100644 --- a/deploy/konflux/supervisor/rpms.in.yaml +++ b/deploy/konflux/supervisor/rpms.in.yaml @@ -21,13 +21,17 @@ contentOrigin: baseurl: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/$basearch/baseos/os/ - repoid: ubi-9-appstream-rpms baseurl: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/$basearch/appstream/os/ + # glibc-static (for `-C target-feature=+crt-static`) ships in CodeReady + # Builder, whose content is public on the UBI CDN. + - repoid: ubi-9-codeready-builder-rpms + baseurl: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/$basearch/codeready-builder/os/ packages: - # Build stage: musl toolchain build + # Build stage: static glibc + build tools - gcc - make - tar - - gzip - xz + - glibc-static # Build stage: Rust compilation (rustup provides rust/cargo) - gcc-c++ - cmake diff --git a/deploy/konflux/supervisor/rpms.lock.yaml b/deploy/konflux/supervisor/rpms.lock.yaml index 7897da52c1..f036e590ff 100644 --- a/deploy/konflux/supervisor/rpms.lock.yaml +++ b/deploy/konflux/supervisor/rpms.lock.yaml @@ -998,6 +998,20 @@ arches: name: zlib evr: 1.2.11-40.el9 sourcerpm: zlib-1.2.11-40.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/codeready-builder/os/Packages/g/glibc-static-2.34-275.el9_8.aarch64.rpm + repoid: ubi-9-codeready-builder-rpms + size: 1249076 + checksum: sha256:a683861245c3bbd125301070aca013ed0a7603f6bcf64d99914dcf9ae792b281 + name: glibc-static + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/codeready-builder/os/Packages/l/libxcrypt-static-4.4.18-3.el9.aarch64.rpm + repoid: ubi-9-codeready-builder-rpms + size: 111974 + checksum: sha256:8bb8a0eb808c389cfec8a0b29ef66a608cc04711b5d4a0ad515f3a32522ae6e0 + name: libxcrypt-static + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm source: [] module_metadata: [] - arch: x86_64 @@ -1982,5 +1996,19 @@ arches: name: zlib evr: 1.2.11-40.el9 sourcerpm: zlib-1.2.11-40.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/codeready-builder/os/Packages/g/glibc-static-2.34-275.el9_8.x86_64.rpm + repoid: ubi-9-codeready-builder-rpms + size: 1532701 + checksum: sha256:d35de990a70f4a636753a1e45e2e73b6dd66fc46985bbd6695aaac2c68f399a0 + name: glibc-static + evr: 2.34-275.el9_8 + sourcerpm: glibc-2.34-275.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/codeready-builder/os/Packages/l/libxcrypt-static-4.4.18-3.el9.x86_64.rpm + repoid: ubi-9-codeready-builder-rpms + size: 105711 + checksum: sha256:e2b914f5e136df3c90367dc222e9d893d0c34662f9f2d496b0cadd7d277c579a + name: libxcrypt-static + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm source: [] module_metadata: [] From 34cfe002ee3dd63c9c3629efa712e6ccca861eb2 Mon Sep 17 00:00:00 2001 From: "red-hat-konflux[bot]" <126015336+red-hat-konflux[bot]@users.noreply.github.com> Date: Wed, 26 Aug 2026 02:42:35 +0000 Subject: [PATCH 17/24] chore(deps): refresh rpm lockfiles Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> --- deploy/konflux/cli/rpms.lock.yaml | 63 ++++--- deploy/konflux/gateway/rpms.lock.yaml | 200 +++++++++++------------ deploy/konflux/supervisor/rpms.lock.yaml | 120 +++++++------- 3 files changed, 190 insertions(+), 193 deletions(-) diff --git a/deploy/konflux/cli/rpms.lock.yaml b/deploy/konflux/cli/rpms.lock.yaml index b0cc31c1e2..5009c975de 100644 --- a/deploy/konflux/cli/rpms.lock.yaml +++ b/deploy/konflux/cli/rpms.lock.yaml @@ -1,6 +1,3 @@ -# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. -# SPDX-License-Identifier: Apache-2.0 - --- lockfileVersion: 1 lockfileVendor: redhat @@ -77,13 +74,13 @@ arches: name: glibc-devel evr: 2.34-275.el9_8 sourcerpm: glibc-2.34-275.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.36.1.el9_8.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.41.1.el9_8.aarch64.rpm repoid: ubi-9-appstream-rpms - size: 2864573 - checksum: sha256:aa680c8c0622822ce53d2ffdc3341d3083d897f6c1f8102e8a0729b6376f0d3e + size: 2872021 + checksum: sha256:badc73a635a0552aa4d86eeaba804ccbbe811065e4fbbf3531fe1f9cf646fcd9 name: kernel-headers - evr: 5.14.0-687.36.1.el9_8 - sourcerpm: kernel-5.14.0-687.36.1.el9_8.src.rpm + evr: 5.14.0-687.41.1.el9_8 + sourcerpm: kernel-5.14.0-687.41.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libasan-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-appstream-rpms size: 409047 @@ -483,13 +480,13 @@ arches: name: libcom_err evr: 1.46.5-8.el9 sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-40.el9_8.5.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 291404 - checksum: sha256:4d77a96282b20b10d8e221e1208f0be8ec21274c090ee44866f36646e7b7206a + size: 292322 + checksum: sha256:ea6c3ade86939df7a985ae71e4c5100731962add54295fd40660a2f2c2f85f1d name: libcurl - evr: 7.76.1-40.el9 - sourcerpm: curl-7.76.1-40.el9.src.rpm + evr: 7.76.1-40.el9_8.5 + sourcerpm: curl-7.76.1-40.el9_8.5.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.aarch64.rpm repoid: ubi-9-baseos-rpms size: 727417 @@ -581,13 +578,13 @@ arches: name: libmount evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.2.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 79620 - checksum: sha256:69ae21fe69981041b43d3420800b691b854a32df2a26e84ce367bcfe4a4cac69 + size: 79650 + checksum: sha256:eefb6d331e38314bce55c28e02d67d022c83e41b4d5de91f86d9d846b381ac48 name: libnghttp2 - evr: 1.43.0-6.el9_8.1 - sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm + evr: 1.43.0-6.el9_8.2 + sourcerpm: nghttp2-1.43.0-6.el9_8.2.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 38310 @@ -1096,13 +1093,13 @@ arches: name: glibc-headers evr: 2.34-275.el9_8 sourcerpm: glibc-2.34-275.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.36.1.el9_8.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.41.1.el9_8.x86_64.rpm repoid: ubi-9-appstream-rpms - size: 2903853 - checksum: sha256:aa8f8d4579635787d6dda7323d472de1f2f630f97d694ebf5e0208791b76555c + size: 2911313 + checksum: sha256:7fab4963bb2f80e238051586a6df2b0ffea787daf7ef59659ba8d0fa3648f46e name: kernel-headers - evr: 5.14.0-687.36.1.el9_8 - sourcerpm: kernel-5.14.0-687.36.1.el9_8.src.rpm + evr: 5.14.0-687.41.1.el9_8 + sourcerpm: kernel-5.14.0-687.41.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.x86_64.rpm repoid: ubi-9-appstream-rpms size: 66075 @@ -1481,13 +1478,13 @@ arches: name: libcom_err evr: 1.46.5-8.el9 sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-40.el9_8.5.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 296527 - checksum: sha256:d89db646d90f8342e097cf03c7979d0da1c2df45bcb4e2b9fe7437b7895a7df5 + size: 297551 + checksum: sha256:428b87ca3eb808d769f6f0f68019a97d3c487c86268ccff2ab7ad7223beab01e name: libcurl - evr: 7.76.1-40.el9 - sourcerpm: curl-7.76.1-40.el9.src.rpm + evr: 7.76.1-40.el9_8.5 + sourcerpm: curl-7.76.1-40.el9_8.5.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.x86_64.rpm repoid: ubi-9-baseos-rpms size: 755192 @@ -1579,13 +1576,13 @@ arches: name: libmount evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.2.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 80371 - checksum: sha256:3e99ec9ac85e7b1bf8348a503b14eb8d41e6df788c181202484a8cbc399f630a + size: 80410 + checksum: sha256:adb3260b6610917c07bda0a6bc521d5628bb1892a66d008f0fea81dc022ac699 name: libnghttp2 - evr: 1.43.0-6.el9_8.1 - sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm + evr: 1.43.0-6.el9_8.2 + sourcerpm: nghttp2-1.43.0-6.el9_8.2.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 38387 diff --git a/deploy/konflux/gateway/rpms.lock.yaml b/deploy/konflux/gateway/rpms.lock.yaml index c884e8a853..3c1ee6ecb3 100644 --- a/deploy/konflux/gateway/rpms.lock.yaml +++ b/deploy/konflux/gateway/rpms.lock.yaml @@ -221,13 +221,13 @@ arches: name: glibc-devel evr: 2.34-275.el9_8 sourcerpm: glibc-2.34-275.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.34.1.el9_8.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.41.1.el9_8.aarch64.rpm repoid: ubi-9-appstream-rpms - size: 2862625 - checksum: sha256:8a50db63167d4b6549d9d5c45579ef6c874c8a3c3e93e021ee7d55bd627a34f9 + size: 2872021 + checksum: sha256:badc73a635a0552aa4d86eeaba804ccbbe811065e4fbbf3531fe1f9cf646fcd9 name: kernel-headers - evr: 5.14.0-687.34.1.el9_8 - sourcerpm: kernel-5.14.0-687.34.1.el9_8.src.rpm + evr: 5.14.0-687.41.1.el9_8 + sourcerpm: kernel-5.14.0-687.41.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libasan-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-appstream-rpms size: 409047 @@ -515,13 +515,13 @@ arches: name: crypto-policies evr: 20260224-1.gitea0f072.el9_8 sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/curl-7.76.1-40.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/curl-7.76.1-40.el9_8.5.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 303260 - checksum: sha256:5abd0d4ade384b6432882e095ee3f354700d66aeb3f655bd78c25427444a3875 + size: 303758 + checksum: sha256:0fb8426b8f874ced7fe96c194139c44d14721703d27b337b5bd822e668f165ce name: curl - evr: 7.76.1-40.el9 - sourcerpm: curl-7.76.1-40.el9.src.rpm + evr: 7.76.1-40.el9_8.5 + sourcerpm: curl-7.76.1-40.el9_8.5.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 771760 @@ -704,13 +704,13 @@ arches: name: libacl evr: 2.4.0-1.el9_8 sourcerpm: acl-2.4.0-1.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libarchive-3.5.3-11.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 400590 - checksum: sha256:1e611163dd78803e78d8faaed629566513fd5365ae5070041a18695009f5f516 + size: 400797 + checksum: sha256:7fd7a2981416def9d96892ea11aec3b9af146a95cae11af59a2fdee22fb52516 name: libarchive - evr: 3.5.3-9.el9_7 - sourcerpm: libarchive-3.5.3-9.el9_7.src.rpm + evr: 3.5.3-11.el9_8 + sourcerpm: libarchive-3.5.3-11.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libatomic-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 26108 @@ -767,13 +767,13 @@ arches: name: libcom_err evr: 1.46.5-8.el9 sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-40.el9_8.5.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 291404 - checksum: sha256:4d77a96282b20b10d8e221e1208f0be8ec21274c090ee44866f36646e7b7206a + size: 292322 + checksum: sha256:ea6c3ade86939df7a985ae71e4c5100731962add54295fd40660a2f2c2f85f1d name: libcurl - evr: 7.76.1-40.el9 - sourcerpm: curl-7.76.1-40.el9.src.rpm + evr: 7.76.1-40.el9_8.5 + sourcerpm: curl-7.76.1-40.el9_8.5.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.aarch64.rpm repoid: ubi-9-baseos-rpms size: 727417 @@ -830,13 +830,13 @@ arches: name: libgcc evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcrypt-1.10.0-13.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 468890 - checksum: sha256:3d2245f8566422e27f77d0ef4820bafe8d059b12612e74e5672d9c5959ff7ec3 + size: 469908 + checksum: sha256:4a270fae0cf2f5ad846ce530664bbde72e798bb4a8196afb8fd2db93086c31c9 name: libgcrypt - evr: 1.10.0-11.el9 - sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm + evr: 1.10.0-13.el9_8 + sourcerpm: libgcrypt-1.10.0-13.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgfortran-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 435007 @@ -872,13 +872,13 @@ arches: name: libmount evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.2.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 79620 - checksum: sha256:69ae21fe69981041b43d3420800b691b854a32df2a26e84ce367bcfe4a4cac69 + size: 79650 + checksum: sha256:eefb6d331e38314bce55c28e02d67d022c83e41b4d5de91f86d9d846b381ac48 name: libnghttp2 - evr: 1.43.0-6.el9_8.1 - sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm + evr: 1.43.0-6.el9_8.2 + sourcerpm: nghttp2-1.43.0-6.el9_8.2.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpipeline-1.5.3-4.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 52161 @@ -1215,20 +1215,20 @@ arches: name: publicsuffix-list-dafsa evr: 20210518-3.el9 sourcerpm: publicsuffix-list-20210518-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-3.9.25-7.el9_8.2.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-3.9.25-7.el9_8.3.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 33523 - checksum: sha256:f3c4d1aae5e62a2ab7fe2f4b83c3ba826283737234ab5b4461c4ce8e8ae11da9 + size: 33143 + checksum: sha256:67e6d2eca7f6558030dd215a4d2d3ede810231faad0f317eb2bcbc7e9ac619ce name: python3 - evr: 3.9.25-7.el9_8.2 - sourcerpm: python3.9-3.9.25-7.el9_8.2.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-libs-3.9.25-7.el9_8.2.aarch64.rpm + evr: 3.9.25-7.el9_8.3 + sourcerpm: python3.9-3.9.25-7.el9_8.3.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-libs-3.9.25-7.el9_8.3.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 8471983 - checksum: sha256:e8f73645caacd5de39add1cff080836b4ab425d580bb09525ffb3ea94b241e43 + size: 8470487 + checksum: sha256:014bbdef3d3d00d09c34df9aaf377337e338e31c4106da6c98b844339fcd50d6 name: python3-libs - evr: 3.9.25-7.el9_8.2 - sourcerpm: python3.9-3.9.25-7.el9_8.2.src.rpm + evr: 3.9.25-7.el9_8.3 + sourcerpm: python3.9-3.9.25-7.el9_8.3.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/p/python3-pip-wheel-21.3.1-2.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms size: 1198443 @@ -1306,13 +1306,13 @@ arches: name: shadow-utils evr: 2:4.9-16.el9 sourcerpm: shadow-utils-4.9-16.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/sqlite-libs-3.34.1-11.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 660260 - checksum: sha256:dda4c59309d47d73d64291c53078cce330b8d5a9d95c903e133d9f37ec0e0a68 + size: 660770 + checksum: sha256:0fbb8043f9c02870c831da433f69b856a6674d02b60306d9cc01149ec89ed239 name: sqlite-libs - evr: 3.34.1-10.el9_8 - sourcerpm: sqlite-3.34.1-10.el9_8.src.rpm + evr: 3.34.1-11.el9_8 + sourcerpm: sqlite-3.34.1-11.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.aarch64.rpm repoid: ubi-9-baseos-rpms size: 647617 @@ -1327,13 +1327,13 @@ arches: name: tcl evr: 1:8.6.10-7.el9 sourcerpm: tcl-8.6.10-7.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tzdata-2026c-1.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 933841 - checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + size: 933286 + checksum: sha256:8d6196e02853c0900c3c2e2367665beffb62cb2d0ff5f465ea2d00848a9a35dc name: tzdata - evr: 2026b-1.el9 - sourcerpm: tzdata-2026b-1.el9.src.rpm + evr: 2026c-1.el9_8 + sourcerpm: tzdata-2026c-1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 2390152 @@ -1604,13 +1604,13 @@ arches: name: glibc-headers evr: 2.34-275.el9_8 sourcerpm: glibc-2.34-275.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.34.1.el9_8.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.41.1.el9_8.x86_64.rpm repoid: ubi-9-appstream-rpms - size: 2901917 - checksum: sha256:504e15343d3288cab0146755376113e17220e5837250aa9ab186fb2a56f812ed + size: 2911313 + checksum: sha256:7fab4963bb2f80e238051586a6df2b0ffea787daf7ef59659ba8d0fa3648f46e name: kernel-headers - evr: 5.14.0-687.34.1.el9_8 - sourcerpm: kernel-5.14.0-687.34.1.el9_8.src.rpm + evr: 5.14.0-687.41.1.el9_8 + sourcerpm: kernel-5.14.0-687.41.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libedit-devel-3.1-39.20210216cvs.el9.x86_64.rpm repoid: ubi-9-appstream-rpms size: 54318 @@ -1884,13 +1884,13 @@ arches: name: crypto-policies evr: 20260224-1.gitea0f072.el9_8 sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/curl-7.76.1-40.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/curl-7.76.1-40.el9_8.5.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 306411 - checksum: sha256:dffe60e96ea6473d6fd99f2ca688914d8342bc20819018ebe23d5d43ddb958ad + size: 307326 + checksum: sha256:273736810bf95bd5efd1ee4942d349c51aeba23941dc28026d2cb2cf6719a2e3 name: curl - evr: 7.76.1-40.el9 - sourcerpm: curl-7.76.1-40.el9.src.rpm + evr: 7.76.1-40.el9_8.5 + sourcerpm: curl-7.76.1-40.el9_8.5.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 786202 @@ -2073,13 +2073,13 @@ arches: name: libacl evr: 2.4.0-1.el9_8 sourcerpm: acl-2.4.0-1.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libarchive-3.5.3-11.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 402750 - checksum: sha256:c59dce1d4640c2b0caa720d8b32946a13ece7e0c23c2516f87daf0ba16fe96e5 + size: 402853 + checksum: sha256:3b8ed4523d8721a1fabc2c92e6871c353b8ff5fb555663ab006fe90a7be35a86 name: libarchive - evr: 3.5.3-9.el9_7 - sourcerpm: libarchive-3.5.3-9.el9_7.src.rpm + evr: 3.5.3-11.el9_8 + sourcerpm: libarchive-3.5.3-11.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libattr-2.5.1-3.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 20786 @@ -2129,13 +2129,13 @@ arches: name: libcom_err evr: 1.46.5-8.el9 sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-40.el9_8.5.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 296527 - checksum: sha256:d89db646d90f8342e097cf03c7979d0da1c2df45bcb4e2b9fe7437b7895a7df5 + size: 297551 + checksum: sha256:428b87ca3eb808d769f6f0f68019a97d3c487c86268ccff2ab7ad7223beab01e name: libcurl - evr: 7.76.1-40.el9 - sourcerpm: curl-7.76.1-40.el9.src.rpm + evr: 7.76.1-40.el9_8.5 + sourcerpm: curl-7.76.1-40.el9_8.5.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.x86_64.rpm repoid: ubi-9-baseos-rpms size: 755192 @@ -2192,13 +2192,13 @@ arches: name: libgcc evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcrypt-1.10.0-13.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 522581 - checksum: sha256:9d5a5a4292a5a345143b632c2764ad8e7b095413f78f5693d29c2ea5e7d37119 + size: 523829 + checksum: sha256:c07cd9f613809195b8691d28fd2f3bff55b2a83b9c1cdf4a32c681e0e32dfafb name: libgcrypt - evr: 1.10.0-11.el9 - sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm + evr: 1.10.0-13.el9_8 + sourcerpm: libgcrypt-1.10.0-13.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgfortran-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 813380 @@ -2234,13 +2234,13 @@ arches: name: libmount evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.2.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 80371 - checksum: sha256:3e99ec9ac85e7b1bf8348a503b14eb8d41e6df788c181202484a8cbc399f630a + size: 80410 + checksum: sha256:adb3260b6610917c07bda0a6bc521d5628bb1892a66d008f0fea81dc022ac699 name: libnghttp2 - evr: 1.43.0-6.el9_8.1 - sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm + evr: 1.43.0-6.el9_8.2 + sourcerpm: nghttp2-1.43.0-6.el9_8.2.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpipeline-1.5.3-4.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 52912 @@ -2584,20 +2584,20 @@ arches: name: publicsuffix-list-dafsa evr: 20210518-3.el9 sourcerpm: publicsuffix-list-20210518-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-3.9.25-7.el9_8.2.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-3.9.25-7.el9_8.3.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 33578 - checksum: sha256:2af105e729f864def9dda53ac694e3a0dcaa705dd7f786fb533fc4d979044354 + size: 33200 + checksum: sha256:f0d622eb17a038e98c23ef9bd6961c104c55b3534f69c301b2067cd9161f40f7 name: python3 - evr: 3.9.25-7.el9_8.2 - sourcerpm: python3.9-3.9.25-7.el9_8.2.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-libs-3.9.25-7.el9_8.2.x86_64.rpm + evr: 3.9.25-7.el9_8.3 + sourcerpm: python3.9-3.9.25-7.el9_8.3.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-libs-3.9.25-7.el9_8.3.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 8481614 - checksum: sha256:8b6bc0577b3af67c2a7d9eb6c85a7afb87a01acae1414d1cc72a544061e559c6 + size: 8483866 + checksum: sha256:6227afce7123d2e6c46a4a6d318087c512caebf6e09f7bfc0ba73f7e5853fba4 name: python3-libs - evr: 3.9.25-7.el9_8.2 - sourcerpm: python3.9-3.9.25-7.el9_8.2.src.rpm + evr: 3.9.25-7.el9_8.3 + sourcerpm: python3.9-3.9.25-7.el9_8.3.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-pip-wheel-21.3.1-2.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms size: 1198443 @@ -2675,13 +2675,13 @@ arches: name: shadow-utils evr: 2:4.9-16.el9 sourcerpm: shadow-utils-4.9-16.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/sqlite-libs-3.34.1-11.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 664960 - checksum: sha256:7dc2202e08184890c851dcb2218a9abce14da150f12dfb8663ca306416e1d8d4 + size: 665095 + checksum: sha256:e5c20e933ec01f746a6c59a94cb99f46c6138dab3f387f0d02dab47f356e2e98 name: sqlite-libs - evr: 3.34.1-10.el9_8 - sourcerpm: sqlite-3.34.1-10.el9_8.src.rpm + evr: 3.34.1-11.el9_8 + sourcerpm: sqlite-3.34.1-11.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.x86_64.rpm repoid: ubi-9-baseos-rpms size: 681056 @@ -2696,13 +2696,13 @@ arches: name: tcl evr: 1:8.6.10-7.el9 sourcerpm: tcl-8.6.10-7.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tzdata-2026c-1.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 933841 - checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + size: 933286 + checksum: sha256:8d6196e02853c0900c3c2e2367665beffb62cb2d0ff5f465ea2d00848a9a35dc name: tzdata - evr: 2026b-1.el9 - sourcerpm: tzdata-2026b-1.el9.src.rpm + evr: 2026c-1.el9_8 + sourcerpm: tzdata-2026c-1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 2382511 diff --git a/deploy/konflux/supervisor/rpms.lock.yaml b/deploy/konflux/supervisor/rpms.lock.yaml index f036e590ff..bc8ede87c5 100644 --- a/deploy/konflux/supervisor/rpms.lock.yaml +++ b/deploy/konflux/supervisor/rpms.lock.yaml @@ -67,13 +67,13 @@ arches: name: glibc-devel evr: 2.34-275.el9_8 sourcerpm: glibc-2.34-275.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.34.1.el9_8.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.41.1.el9_8.aarch64.rpm repoid: ubi-9-appstream-rpms - size: 2862625 - checksum: sha256:8a50db63167d4b6549d9d5c45579ef6c874c8a3c3e93e021ee7d55bd627a34f9 + size: 2872021 + checksum: sha256:badc73a635a0552aa4d86eeaba804ccbbe811065e4fbbf3531fe1f9cf646fcd9 name: kernel-headers - evr: 5.14.0-687.34.1.el9_8 - sourcerpm: kernel-5.14.0-687.34.1.el9_8.src.rpm + evr: 5.14.0-687.41.1.el9_8 + sourcerpm: kernel-5.14.0-687.41.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libasan-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-appstream-rpms size: 409047 @@ -396,13 +396,13 @@ arches: name: libacl evr: 2.4.0-1.el9_8 sourcerpm: acl-2.4.0-1.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libarchive-3.5.3-11.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 400590 - checksum: sha256:1e611163dd78803e78d8faaed629566513fd5365ae5070041a18695009f5f516 + size: 400797 + checksum: sha256:7fd7a2981416def9d96892ea11aec3b9af146a95cae11af59a2fdee22fb52516 name: libarchive - evr: 3.5.3-9.el9_7 - sourcerpm: libarchive-3.5.3-9.el9_7.src.rpm + evr: 3.5.3-11.el9_8 + sourcerpm: libarchive-3.5.3-11.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libatomic-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 26108 @@ -466,13 +466,13 @@ arches: name: libcom_err evr: 1.46.5-8.el9 sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libcurl-7.76.1-40.el9_8.5.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 291404 - checksum: sha256:4d77a96282b20b10d8e221e1208f0be8ec21274c090ee44866f36646e7b7206a + size: 292322 + checksum: sha256:ea6c3ade86939df7a985ae71e4c5100731962add54295fd40660a2f2c2f85f1d name: libcurl - evr: 7.76.1-40.el9 - sourcerpm: curl-7.76.1-40.el9.src.rpm + evr: 7.76.1-40.el9_8.5 + sourcerpm: curl-7.76.1-40.el9_8.5.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.aarch64.rpm repoid: ubi-9-baseos-rpms size: 727417 @@ -529,13 +529,13 @@ arches: name: libgcc evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgcrypt-1.10.0-13.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 468890 - checksum: sha256:3d2245f8566422e27f77d0ef4820bafe8d059b12612e74e5672d9c5959ff7ec3 + size: 469908 + checksum: sha256:4a270fae0cf2f5ad846ce530664bbde72e798bb4a8196afb8fd2db93086c31c9 name: libgcrypt - evr: 1.10.0-11.el9 - sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm + evr: 1.10.0-13.el9_8 + sourcerpm: libgcrypt-1.10.0-13.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 262138 @@ -592,13 +592,13 @@ arches: name: libnftnl evr: 1.2.6-4.el9_4 sourcerpm: libnftnl-1.2.6-4.el9_4.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.2.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 79620 - checksum: sha256:69ae21fe69981041b43d3420800b691b854a32df2a26e84ce367bcfe4a4cac69 + size: 79650 + checksum: sha256:eefb6d331e38314bce55c28e02d67d022c83e41b4d5de91f86d9d846b381ac48 name: libnghttp2 - evr: 1.43.0-6.el9_8.1 - sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm + evr: 1.43.0-6.el9_8.2 + sourcerpm: nghttp2-1.43.0-6.el9_8.2.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 38310 @@ -949,13 +949,13 @@ arches: name: tar evr: 2:1.34-11.el9 sourcerpm: tar-1.34-11.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tzdata-2026c-1.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 933841 - checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + size: 933286 + checksum: sha256:8d6196e02853c0900c3c2e2367665beffb62cb2d0ff5f465ea2d00848a9a35dc name: tzdata - evr: 2026b-1.el9 - sourcerpm: tzdata-2026b-1.el9.src.rpm + evr: 2026c-1.el9_8 + sourcerpm: tzdata-2026c-1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 2390152 @@ -1086,13 +1086,13 @@ arches: name: glibc-headers evr: 2.34-275.el9_8 sourcerpm: glibc-2.34-275.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.34.1.el9_8.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.41.1.el9_8.x86_64.rpm repoid: ubi-9-appstream-rpms - size: 2901917 - checksum: sha256:504e15343d3288cab0146755376113e17220e5837250aa9ab186fb2a56f812ed + size: 2911313 + checksum: sha256:7fab4963bb2f80e238051586a6df2b0ffea787daf7ef59659ba8d0fa3648f46e name: kernel-headers - evr: 5.14.0-687.34.1.el9_8 - sourcerpm: kernel-5.14.0-687.34.1.el9_8.src.rpm + evr: 5.14.0-687.41.1.el9_8 + sourcerpm: kernel-5.14.0-687.41.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.x86_64.rpm repoid: ubi-9-appstream-rpms size: 66075 @@ -1401,13 +1401,13 @@ arches: name: libacl evr: 2.4.0-1.el9_8 sourcerpm: acl-2.4.0-1.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libarchive-3.5.3-9.el9_7.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libarchive-3.5.3-11.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 402750 - checksum: sha256:c59dce1d4640c2b0caa720d8b32946a13ece7e0c23c2516f87daf0ba16fe96e5 + size: 402853 + checksum: sha256:3b8ed4523d8721a1fabc2c92e6871c353b8ff5fb555663ab006fe90a7be35a86 name: libarchive - evr: 3.5.3-9.el9_7 - sourcerpm: libarchive-3.5.3-9.el9_7.src.rpm + evr: 3.5.3-11.el9_8 + sourcerpm: libarchive-3.5.3-11.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libattr-2.5.1-3.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 20786 @@ -1464,13 +1464,13 @@ arches: name: libcom_err evr: 1.46.5-8.el9 sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-40.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libcurl-7.76.1-40.el9_8.5.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 296527 - checksum: sha256:d89db646d90f8342e097cf03c7979d0da1c2df45bcb4e2b9fe7437b7895a7df5 + size: 297551 + checksum: sha256:428b87ca3eb808d769f6f0f68019a97d3c487c86268ccff2ab7ad7223beab01e name: libcurl - evr: 7.76.1-40.el9 - sourcerpm: curl-7.76.1-40.el9.src.rpm + evr: 7.76.1-40.el9_8.5 + sourcerpm: curl-7.76.1-40.el9_8.5.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libdb-5.3.28-57.el9_6.x86_64.rpm repoid: ubi-9-baseos-rpms size: 755192 @@ -1527,13 +1527,13 @@ arches: name: libgcc evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgcrypt-1.10.0-13.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 522581 - checksum: sha256:9d5a5a4292a5a345143b632c2764ad8e7b095413f78f5693d29c2ea5e7d37119 + size: 523829 + checksum: sha256:c07cd9f613809195b8691d28fd2f3bff55b2a83b9c1cdf4a32c681e0e32dfafb name: libgcrypt - evr: 1.10.0-11.el9 - sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm + evr: 1.10.0-13.el9_8 + sourcerpm: libgcrypt-1.10.0-13.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libgomp-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 263723 @@ -1590,13 +1590,13 @@ arches: name: libnftnl evr: 1.2.6-4.el9_4 sourcerpm: libnftnl-1.2.6-4.el9_4.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.1.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libnghttp2-1.43.0-6.el9_8.2.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 80371 - checksum: sha256:3e99ec9ac85e7b1bf8348a503b14eb8d41e6df788c181202484a8cbc399f630a + size: 80410 + checksum: sha256:adb3260b6610917c07bda0a6bc521d5628bb1892a66d008f0fea81dc022ac699 name: libnghttp2 - evr: 1.43.0-6.el9_8.1 - sourcerpm: nghttp2-1.43.0-6.el9_8.1.src.rpm + evr: 1.43.0-6.el9_8.2 + sourcerpm: nghttp2-1.43.0-6.el9_8.2.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libpkgconf-1.7.3-10.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 38387 @@ -1947,13 +1947,13 @@ arches: name: tar evr: 2:1.34-11.el9 sourcerpm: tar-1.34-11.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tzdata-2026c-1.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 933841 - checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + size: 933286 + checksum: sha256:8d6196e02853c0900c3c2e2367665beffb62cb2d0ff5f465ea2d00848a9a35dc name: tzdata - evr: 2026b-1.el9 - sourcerpm: tzdata-2026b-1.el9.src.rpm + evr: 2026c-1.el9_8 + sourcerpm: tzdata-2026c-1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/u/util-linux-2.37.4-25.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 2382511 From c084d6d4bc87561165397d7251049db0ae4dd70d Mon Sep 17 00:00:00 2001 From: "red-hat-konflux[bot]" <126015336+red-hat-konflux[bot]@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:07:10 +0000 Subject: [PATCH 18/24] chore(deps): refresh rpm lockfiles Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> --- deploy/konflux/cli/rpms.lock.yaml | 40 ++++++++-------- deploy/konflux/gateway/rpms.lock.yaml | 40 ++++++++-------- deploy/konflux/supervisor/rpms.lock.yaml | 60 ++++++++++++------------ 3 files changed, 70 insertions(+), 70 deletions(-) diff --git a/deploy/konflux/cli/rpms.lock.yaml b/deploy/konflux/cli/rpms.lock.yaml index 5009c975de..99d7b49543 100644 --- a/deploy/konflux/cli/rpms.lock.yaml +++ b/deploy/konflux/cli/rpms.lock.yaml @@ -74,13 +74,13 @@ arches: name: glibc-devel evr: 2.34-275.el9_8 sourcerpm: glibc-2.34-275.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.41.1.el9_8.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.42.1.el9_8.aarch64.rpm repoid: ubi-9-appstream-rpms - size: 2872021 - checksum: sha256:badc73a635a0552aa4d86eeaba804ccbbe811065e4fbbf3531fe1f9cf646fcd9 + size: 2874189 + checksum: sha256:4eaed7563988ff556b2c52e8e90195f42dadeaae5c5c7e849af2d3f5a87afdd0 name: kernel-headers - evr: 5.14.0-687.41.1.el9_8 - sourcerpm: kernel-5.14.0-687.41.1.el9_8.src.rpm + evr: 5.14.0-687.42.1.el9_8 + sourcerpm: kernel-5.14.0-687.42.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libasan-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-appstream-rpms size: 409047 @@ -431,13 +431,13 @@ arches: name: libatomic evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libattr-2.5.1-3.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libattr-2.6.0-1.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 20696 - checksum: sha256:b6a73c9da522df55690b886c0a9af39338571d34ee6f0d4d9b994c8289df3412 + size: 23276 + checksum: sha256:ec08036348dbe2ee41645bdb96eb485b9db5121ec0524258b0639426a22a49bc name: libattr - evr: 2.5.1-3.el9 - sourcerpm: attr-2.5.1-3.el9.src.rpm + evr: 2.6.0-1.el9_8 + sourcerpm: attr-2.6.0-1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 113931 @@ -1093,13 +1093,13 @@ arches: name: glibc-headers evr: 2.34-275.el9_8 sourcerpm: glibc-2.34-275.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.41.1.el9_8.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.42.1.el9_8.x86_64.rpm repoid: ubi-9-appstream-rpms - size: 2911313 - checksum: sha256:7fab4963bb2f80e238051586a6df2b0ffea787daf7ef59659ba8d0fa3648f46e + size: 2913473 + checksum: sha256:6a2a1bdb7d755358f35a283de880abb48b359aedd5fdfcd2da80bbe03541688c name: kernel-headers - evr: 5.14.0-687.41.1.el9_8 - sourcerpm: kernel-5.14.0-687.41.1.el9_8.src.rpm + evr: 5.14.0-687.42.1.el9_8 + sourcerpm: kernel-5.14.0-687.42.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.x86_64.rpm repoid: ubi-9-appstream-rpms size: 66075 @@ -1429,13 +1429,13 @@ arches: name: libarchive evr: 3.5.3-11.el9_8 sourcerpm: libarchive-3.5.3-11.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libattr-2.5.1-3.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libattr-2.6.0-1.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 20786 - checksum: sha256:6519f028915fbd7ee0474f0bf4e98e35f04b5d0cf7be9f66c0cb9eafac0b8c5a + size: 23752 + checksum: sha256:9e37537f690c748f7f05faa80966072f118ec722e38ef332fe19cf22b087349f name: libattr - evr: 2.5.1-3.el9 - sourcerpm: attr-2.5.1-3.el9.src.rpm + evr: 2.6.0-1.el9_8 + sourcerpm: attr-2.6.0-1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 114192 diff --git a/deploy/konflux/gateway/rpms.lock.yaml b/deploy/konflux/gateway/rpms.lock.yaml index 3c1ee6ecb3..adde9cf53f 100644 --- a/deploy/konflux/gateway/rpms.lock.yaml +++ b/deploy/konflux/gateway/rpms.lock.yaml @@ -221,13 +221,13 @@ arches: name: glibc-devel evr: 2.34-275.el9_8 sourcerpm: glibc-2.34-275.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.41.1.el9_8.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.42.1.el9_8.aarch64.rpm repoid: ubi-9-appstream-rpms - size: 2872021 - checksum: sha256:badc73a635a0552aa4d86eeaba804ccbbe811065e4fbbf3531fe1f9cf646fcd9 + size: 2874189 + checksum: sha256:4eaed7563988ff556b2c52e8e90195f42dadeaae5c5c7e849af2d3f5a87afdd0 name: kernel-headers - evr: 5.14.0-687.41.1.el9_8 - sourcerpm: kernel-5.14.0-687.41.1.el9_8.src.rpm + evr: 5.14.0-687.42.1.el9_8 + sourcerpm: kernel-5.14.0-687.42.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libasan-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-appstream-rpms size: 409047 @@ -718,13 +718,13 @@ arches: name: libatomic evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libattr-2.5.1-3.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libattr-2.6.0-1.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 20696 - checksum: sha256:b6a73c9da522df55690b886c0a9af39338571d34ee6f0d4d9b994c8289df3412 + size: 23276 + checksum: sha256:ec08036348dbe2ee41645bdb96eb485b9db5121ec0524258b0639426a22a49bc name: libattr - evr: 2.5.1-3.el9 - sourcerpm: attr-2.5.1-3.el9.src.rpm + evr: 2.6.0-1.el9_8 + sourcerpm: attr-2.6.0-1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 113931 @@ -1604,13 +1604,13 @@ arches: name: glibc-headers evr: 2.34-275.el9_8 sourcerpm: glibc-2.34-275.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.41.1.el9_8.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.42.1.el9_8.x86_64.rpm repoid: ubi-9-appstream-rpms - size: 2911313 - checksum: sha256:7fab4963bb2f80e238051586a6df2b0ffea787daf7ef59659ba8d0fa3648f46e + size: 2913473 + checksum: sha256:6a2a1bdb7d755358f35a283de880abb48b359aedd5fdfcd2da80bbe03541688c name: kernel-headers - evr: 5.14.0-687.41.1.el9_8 - sourcerpm: kernel-5.14.0-687.41.1.el9_8.src.rpm + evr: 5.14.0-687.42.1.el9_8 + sourcerpm: kernel-5.14.0-687.42.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libedit-devel-3.1-39.20210216cvs.el9.x86_64.rpm repoid: ubi-9-appstream-rpms size: 54318 @@ -2080,13 +2080,13 @@ arches: name: libarchive evr: 3.5.3-11.el9_8 sourcerpm: libarchive-3.5.3-11.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libattr-2.5.1-3.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libattr-2.6.0-1.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 20786 - checksum: sha256:6519f028915fbd7ee0474f0bf4e98e35f04b5d0cf7be9f66c0cb9eafac0b8c5a + size: 23752 + checksum: sha256:9e37537f690c748f7f05faa80966072f118ec722e38ef332fe19cf22b087349f name: libattr - evr: 2.5.1-3.el9 - sourcerpm: attr-2.5.1-3.el9.src.rpm + evr: 2.6.0-1.el9_8 + sourcerpm: attr-2.6.0-1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 114192 diff --git a/deploy/konflux/supervisor/rpms.lock.yaml b/deploy/konflux/supervisor/rpms.lock.yaml index bc8ede87c5..8d2c19ddb2 100644 --- a/deploy/konflux/supervisor/rpms.lock.yaml +++ b/deploy/konflux/supervisor/rpms.lock.yaml @@ -67,13 +67,13 @@ arches: name: glibc-devel evr: 2.34-275.el9_8 sourcerpm: glibc-2.34-275.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.41.1.el9_8.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/k/kernel-headers-5.14.0-687.42.1.el9_8.aarch64.rpm repoid: ubi-9-appstream-rpms - size: 2872021 - checksum: sha256:badc73a635a0552aa4d86eeaba804ccbbe811065e4fbbf3531fe1f9cf646fcd9 + size: 2874189 + checksum: sha256:4eaed7563988ff556b2c52e8e90195f42dadeaae5c5c7e849af2d3f5a87afdd0 name: kernel-headers - evr: 5.14.0-687.41.1.el9_8 - sourcerpm: kernel-5.14.0-687.41.1.el9_8.src.rpm + evr: 5.14.0-687.42.1.el9_8 + sourcerpm: kernel-5.14.0-687.42.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/appstream/os/Packages/l/libasan-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-appstream-rpms size: 409047 @@ -410,13 +410,13 @@ arches: name: libatomic evr: 11.5.0-14.el9 sourcerpm: gcc-11.5.0-14.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libattr-2.5.1-3.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libattr-2.6.0-1.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 20696 - checksum: sha256:b6a73c9da522df55690b886c0a9af39338571d34ee6f0d4d9b994c8289df3412 + size: 23276 + checksum: sha256:ec08036348dbe2ee41645bdb96eb485b9db5121ec0524258b0639426a22a49bc name: libattr - evr: 2.5.1-3.el9 - sourcerpm: attr-2.5.1-3.el9.src.rpm + evr: 2.6.0-1.el9_8 + sourcerpm: attr-2.6.0-1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 113931 @@ -767,13 +767,13 @@ arches: name: ncurses-libs evr: 6.2-12.20210508.el9 sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/nftables-1.0.9-7.el9_8.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/n/nftables-1.0.9-9.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 431040 - checksum: sha256:a0af6ffaa225c77236875ff68230286b6559b8a857414e278af819f843a4fabb + size: 467195 + checksum: sha256:71080fba834245674aa5ed3badf2cb675254b1860fc585d28dd88829b2d5a43a name: nftables - evr: 1:1.0.9-7.el9_8 - sourcerpm: nftables-1.0.9-7.el9_8.src.rpm + evr: 1:1.0.9-9.el9_8 + sourcerpm: nftables-1.0.9-9.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/o/openldap-2.6.8-4.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 291500 @@ -1086,13 +1086,13 @@ arches: name: glibc-headers evr: 2.34-275.el9_8 sourcerpm: glibc-2.34-275.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.41.1.el9_8.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/k/kernel-headers-5.14.0-687.42.1.el9_8.x86_64.rpm repoid: ubi-9-appstream-rpms - size: 2911313 - checksum: sha256:7fab4963bb2f80e238051586a6df2b0ffea787daf7ef59659ba8d0fa3648f46e + size: 2913473 + checksum: sha256:6a2a1bdb7d755358f35a283de880abb48b359aedd5fdfcd2da80bbe03541688c name: kernel-headers - evr: 5.14.0-687.41.1.el9_8 - sourcerpm: kernel-5.14.0-687.41.1.el9_8.src.rpm + evr: 5.14.0-687.42.1.el9_8 + sourcerpm: kernel-5.14.0-687.42.1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libmpc-1.2.1-4.el9.x86_64.rpm repoid: ubi-9-appstream-rpms size: 66075 @@ -1408,13 +1408,13 @@ arches: name: libarchive evr: 3.5.3-11.el9_8 sourcerpm: libarchive-3.5.3-11.el9_8.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libattr-2.5.1-3.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libattr-2.6.0-1.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 20786 - checksum: sha256:6519f028915fbd7ee0474f0bf4e98e35f04b5d0cf7be9f66c0cb9eafac0b8c5a + size: 23752 + checksum: sha256:9e37537f690c748f7f05faa80966072f118ec722e38ef332fe19cf22b087349f name: libattr - evr: 2.5.1-3.el9 - sourcerpm: attr-2.5.1-3.el9.src.rpm + evr: 2.6.0-1.el9_8 + sourcerpm: attr-2.6.0-1.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 114192 @@ -1765,13 +1765,13 @@ arches: name: ncurses-libs evr: 6.2-12.20210508.el9 sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/nftables-1.0.9-7.el9_8.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/n/nftables-1.0.9-9.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 437853 - checksum: sha256:175e5a5110125df894ef6f7cf7cb657cf16a3c5cee2b2847cb6e285d56c79396 + size: 473262 + checksum: sha256:c2ed618abe918bb6f8f4ce93ab0654289edf51693fc4bd15350ab71c54198f19 name: nftables - evr: 1:1.0.9-7.el9_8 - sourcerpm: nftables-1.0.9-7.el9_8.src.rpm + evr: 1:1.0.9-9.el9_8 + sourcerpm: nftables-1.0.9-9.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/o/openldap-2.6.8-4.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 296805 From 295a3fb0031b224ec920491d1bc1e759e6738de6 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Tue, 1 Sep 2026 14:08:58 -0400 Subject: [PATCH 19/24] CARRY: Migrate Konflux base images to RHEL 9.8 Update all Konflux gateway, supervisor, and CLI builder and runtime base images to pinned UBI 9.8 manifests. Signed-off-by: Emilien Macchi --- deploy/docker/Dockerfile.konflux.cli | 4 ++-- deploy/docker/Dockerfile.konflux.gateway | 4 ++-- deploy/docker/Dockerfile.konflux.supervisor | 4 ++-- deploy/konflux/cli/rpms.in.yaml | 2 +- deploy/konflux/gateway/rpms.in.yaml | 2 +- deploy/konflux/supervisor/rpms.in.yaml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/deploy/docker/Dockerfile.konflux.cli b/deploy/docker/Dockerfile.konflux.cli index 135f7eee1f..f2b9d892ae 100644 --- a/deploy/docker/Dockerfile.konflux.cli +++ b/deploy/docker/Dockerfile.konflux.cli @@ -20,7 +20,7 @@ ARG RUST_VERSION=1.92.0 # --------------------------------------------------------------------------- # Build stage: compile CLI (fully-static glibc binary) # --------------------------------------------------------------------------- -FROM registry.access.redhat.com/ubi9/ubi:9.6@sha256:dec374e05cc13ebbc0975c9f521f3db6942d27f8ccdf06b180160490eef8bdbc AS builder +FROM registry.access.redhat.com/ubi9/ubi:9.8@sha256:25a147defd01e19674714f55d17538c8dbe55d8c305fa157ecc3f9c8977b05b6 AS builder ARG RUST_VERSION ARG TARGETARCH @@ -73,7 +73,7 @@ RUN . /tmp/build-env && \ # --------------------------------------------------------------------------- # Runtime # --------------------------------------------------------------------------- -FROM registry.access.redhat.com/ubi9/ubi-minimal:9.6@sha256:34880b64c07f28f64d95737f82f891516de9a3b43583f39970f7bf8e4cfa48b7 +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8@sha256:7fbeae18dc9476399f565e68255f602a3374ea8614ba3d14843565131a13ff93 RUN microdnf install -y --nodocs ca-certificates \ && microdnf clean all diff --git a/deploy/docker/Dockerfile.konflux.gateway b/deploy/docker/Dockerfile.konflux.gateway index 1ffe9a27e8..8e146bb3d5 100644 --- a/deploy/docker/Dockerfile.konflux.gateway +++ b/deploy/docker/Dockerfile.konflux.gateway @@ -14,7 +14,7 @@ # --------------------------------------------------------------------------- # Build # --------------------------------------------------------------------------- -FROM registry.access.redhat.com/ubi9/ubi:9.6@sha256:dec374e05cc13ebbc0975c9f521f3db6942d27f8ccdf06b180160490eef8bdbc AS builder +FROM registry.access.redhat.com/ubi9/ubi:9.8@sha256:25a147defd01e19674714f55d17538c8dbe55d8c305fa157ecc3f9c8977b05b6 AS builder RUN dnf install -y --nodocs --setopt=install_weak_deps=0 \ rust cargo \ @@ -54,7 +54,7 @@ RUN mkdir -p /tmp/z3-src \ # --------------------------------------------------------------------------- # Runtime # --------------------------------------------------------------------------- -FROM registry.access.redhat.com/ubi9/ubi-minimal:9.6@sha256:34880b64c07f28f64d95737f82f891516de9a3b43583f39970f7bf8e4cfa48b7 +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8@sha256:7fbeae18dc9476399f565e68255f602a3374ea8614ba3d14843565131a13ff93 RUN microdnf install -y --nodocs --setopt=install_weak_deps=0 ca-certificates \ && microdnf clean all diff --git a/deploy/docker/Dockerfile.konflux.supervisor b/deploy/docker/Dockerfile.konflux.supervisor index b6f7b953c2..b771041dcf 100644 --- a/deploy/docker/Dockerfile.konflux.supervisor +++ b/deploy/docker/Dockerfile.konflux.supervisor @@ -21,7 +21,7 @@ ARG RUST_VERSION=1.92.0 # --------------------------------------------------------------------------- # Build stage: compile supervisor (fully-static glibc binary) # --------------------------------------------------------------------------- -FROM registry.access.redhat.com/ubi9/ubi:9.6@sha256:dec374e05cc13ebbc0975c9f521f3db6942d27f8ccdf06b180160490eef8bdbc AS builder +FROM registry.access.redhat.com/ubi9/ubi:9.8@sha256:25a147defd01e19674714f55d17538c8dbe55d8c305fa157ecc3f9c8977b05b6 AS builder ARG RUST_VERSION ARG TARGETARCH @@ -69,7 +69,7 @@ RUN . /tmp/build-env && \ # --------------------------------------------------------------------------- # Runtime # --------------------------------------------------------------------------- -FROM registry.access.redhat.com/ubi9/ubi-minimal:9.6@sha256:34880b64c07f28f64d95737f82f891516de9a3b43583f39970f7bf8e4cfa48b7 +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8@sha256:7fbeae18dc9476399f565e68255f602a3374ea8614ba3d14843565131a13ff93 ARG TARGETARCH diff --git a/deploy/konflux/cli/rpms.in.yaml b/deploy/konflux/cli/rpms.in.yaml index 69e1024f5b..38f70f6a84 100644 --- a/deploy/konflux/cli/rpms.in.yaml +++ b/deploy/konflux/cli/rpms.in.yaml @@ -5,7 +5,7 @@ # Build + runtime stages combined. # # Resolved with `context.bare: true` so the lockfile pins the full dependency -# closure. The image installs RPMs into two different bases (the ubi:9.6 build +# closure. The image installs RPMs into two different bases (the ubi:9.8 build # stage and the ubi-minimal runtime stage); bare guarantees every package is # pinned and prefetched regardless of which base already provides it. # diff --git a/deploy/konflux/gateway/rpms.in.yaml b/deploy/konflux/gateway/rpms.in.yaml index 06eb993039..880dee734b 100644 --- a/deploy/konflux/gateway/rpms.in.yaml +++ b/deploy/konflux/gateway/rpms.in.yaml @@ -2,7 +2,7 @@ # Build + runtime stages combined. # # Resolved with `context.bare: true` so the lockfile pins the full dependency -# closure. The image installs RPMs into two different bases (the ubi:9.6 build +# closure. The image installs RPMs into two different bases (the ubi:9.8 build # stage and the ubi-minimal runtime stage); bare guarantees every package is # pinned and prefetched regardless of which base already provides it. # diff --git a/deploy/konflux/supervisor/rpms.in.yaml b/deploy/konflux/supervisor/rpms.in.yaml index 837aea5063..e21a62fc0e 100644 --- a/deploy/konflux/supervisor/rpms.in.yaml +++ b/deploy/konflux/supervisor/rpms.in.yaml @@ -2,7 +2,7 @@ # Build + runtime stages combined. # # Resolved with `context.bare: true` so the lockfile pins the full dependency -# closure. The image installs RPMs into two different bases (the ubi:9.6 build +# closure. The image installs RPMs into two different bases (the ubi:9.8 build # stage and the ubi-minimal runtime stage); bare guarantees every package is # pinned and prefetched regardless of which base already provides it. # From 0ccd5fd1aac0cca720fdc9c74fe377f666294d4e Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Wed, 2 Sep 2026 14:25:00 -0400 Subject: [PATCH 20/24] fix(konflux): build gateway package Build the openshell-gateway package after gateway binary composition moved out of openshell-server. This ensures the runtime image contains the binary. Signed-off-by: Emilien Macchi --- deploy/docker/Dockerfile.konflux.gateway | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/docker/Dockerfile.konflux.gateway b/deploy/docker/Dockerfile.konflux.gateway index 8e146bb3d5..0f1a8916ee 100644 --- a/deploy/docker/Dockerfile.konflux.gateway +++ b/deploy/docker/Dockerfile.konflux.gateway @@ -48,7 +48,7 @@ RUN mkdir -p /tmp/z3-src \ && if [ -n "$VER" ]; then export OPENSHELL_GIT_VERSION="$VER"; fi \ && Z3_SYS_BUNDLED_DIR_OVERRIDE=/tmp/z3-src \ cargo build --release \ - --package openshell-server \ + --package openshell-gateway \ --features bundled-z3 # --------------------------------------------------------------------------- From 6ff3fcedb125b8c6a81727fb2fc4572961885377 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Prpi=C4=8D?= Date: Wed, 2 Sep 2026 14:55:21 -0400 Subject: [PATCH 21/24] CARRY: compile telemetry out of gateway/supervisor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Build both with `--no-default-features --features defaults-without-telemetry`. The alias matters: a bare `--no-default-features` would also drop `in-tree-compute-drivers` from the gateway and `bundled-ca-roots` from the supervisor. Only the gateway emits telemetry, and its binary no longer contains the telemetry endpoint. The supervisor flags are a no-op today and are carried for lockstep. Resolves AIPCC-30286 Co-authored-by: Claude Opus 5 Signed-off-by: Martin Prpič --- deploy/docker/Dockerfile.konflux.gateway | 6 +++++- deploy/docker/Dockerfile.konflux.supervisor | 13 ++++++++++++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/deploy/docker/Dockerfile.konflux.gateway b/deploy/docker/Dockerfile.konflux.gateway index 0f1a8916ee..f696378816 100644 --- a/deploy/docker/Dockerfile.konflux.gateway +++ b/deploy/docker/Dockerfile.konflux.gateway @@ -40,6 +40,9 @@ COPY providers/ providers/ # pass the git tag with the leading "v" stripped. Empty otherwise. ARG OPENSHELL_VERSION="" +# The alias re-adds `in-tree-compute-drivers`, which a bare +# `--no-default-features` would drop, leaving a gateway with no compute driver. + # z3-sys bundled build needs prefetched Z3 source. ARG Z3_VERSION=4.16.0 RUN mkdir -p /tmp/z3-src \ @@ -49,7 +52,8 @@ RUN mkdir -p /tmp/z3-src \ && Z3_SYS_BUNDLED_DIR_OVERRIDE=/tmp/z3-src \ cargo build --release \ --package openshell-gateway \ - --features bundled-z3 + --no-default-features \ + --features defaults-without-telemetry,bundled-z3 # --------------------------------------------------------------------------- # Runtime diff --git a/deploy/docker/Dockerfile.konflux.supervisor b/deploy/docker/Dockerfile.konflux.supervisor index b771041dcf..b54cdd6e51 100644 --- a/deploy/docker/Dockerfile.konflux.supervisor +++ b/deploy/docker/Dockerfile.konflux.supervisor @@ -56,13 +56,24 @@ ARG OPENSHELL_VERSION="" # `-C target-feature=+crt-static` links glibc statically, producing a # fully-static (static-PIE) binary with no runtime libc dependency. +# +# The alias re-adds `bundled-ca-roots`, which a bare `--no-default-features` +# would drop, moving this binary onto a trust store the distroless containers +# it is injected into do not have. +# +# The telemetry half is a no-op here: openshell-core/telemetry stays on +# transitively via openshell-supervisor-{network,process}, and no supervisor +# crate calls the emitter, so the endpoint is absent either way. Kept in +# lockstep with the gateway, which is where compiling telemetry out has effect. RUN . /tmp/build-env && \ VER="${OPENSHELL_VERSION#v}" && \ if [ -n "$VER" ]; then export OPENSHELL_GIT_VERSION="$VER"; fi && \ RUSTFLAGS="-C target-feature=+crt-static" \ cargo build --release \ --target "${RUST_TARGET}" \ - --package openshell-sandbox && \ + --package openshell-sandbox \ + --no-default-features \ + --features defaults-without-telemetry && \ mkdir -p /build/output && \ cp /build/target/${RUST_TARGET}/release/openshell-sandbox /build/output/ From ff9244fd130322d28d7275f0896911fb686cc4e7 Mon Sep 17 00:00:00 2001 From: "red-hat-konflux[bot]" <126015336+red-hat-konflux[bot]@users.noreply.github.com> Date: Thu, 3 Sep 2026 02:02:17 +0000 Subject: [PATCH 22/24] chore(deps): refresh rpm lockfiles [SECURITY] Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> --- deploy/konflux/cli/rpms.lock.yaml | 120 +++++++++++------------ deploy/konflux/gateway/rpms.lock.yaml | 80 +++++++-------- deploy/konflux/supervisor/rpms.lock.yaml | 100 +++++++++---------- 3 files changed, 150 insertions(+), 150 deletions(-) diff --git a/deploy/konflux/cli/rpms.lock.yaml b/deploy/konflux/cli/rpms.lock.yaml index 99d7b49543..78a23e8d2b 100644 --- a/deploy/konflux/cli/rpms.lock.yaml +++ b/deploy/konflux/cli/rpms.lock.yaml @@ -249,13 +249,13 @@ arches: name: dbus evr: 1:1.12.20-8.el9 sourcerpm: dbus-1.12.20-8.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-broker-28-7.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-broker-28-9.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 173303 - checksum: sha256:342af53fbf4254e34b5f19a6be6f22c67551c26dd0c49016edc93e806621b75d + size: 174219 + checksum: sha256:ffebc8de0cd9ed86122973be161b617aa46ce1e020f61f9e8e5a42246d4bd495 name: dbus-broker - evr: 28-7.el9 - sourcerpm: dbus-broker-28-7.el9.src.rpm + evr: 28-9.el9_8 + sourcerpm: dbus-broker-28-9.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm repoid: ubi-9-baseos-rpms size: 18551 @@ -368,13 +368,13 @@ arches: name: grep evr: 3.6-5.el9 sourcerpm: grep-3.6-5.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-1.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-2.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 169809 - checksum: sha256:45710df49b439ddc4a2848fd3877367761b574234ae28b6be46f1cf54f3fcdca + size: 171305 + checksum: sha256:efafc848fdaa3a8e5e77baddc07abc7d800dc973efd44ecf492bc64dca4fabe6 name: gzip - evr: 1.12-1.el9 - sourcerpm: gzip-1.12-1.el9.src.rpm + evr: 1.12-2.el9_8 + sourcerpm: gzip-1.12-2.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/j/json-c-0.14-11.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 45052 @@ -648,20 +648,20 @@ arches: name: libsmartcols evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-18.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-19.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 222382 - checksum: sha256:6d529b3f31dee553349277c9f72da4f14ae54a2d48d10aa3088b45fbe90f99c2 + size: 223114 + checksum: sha256:80f3962d3eb780ca6d6d4f8c6841b003a907d758ad8ad1c3d785e9cf327672f6 name: libssh - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-19.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 14685 - checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + size: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 name: libssh-config - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 723913 @@ -711,13 +711,13 @@ arches: name: libxcrypt evr: 4.4.18-3.el9 sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.4.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 754623 - checksum: sha256:e78f201e1cbab2bbce30991a1618f3b79d8afc9ef8bb9bf41046e314c5f30f0e + size: 754646 + checksum: sha256:10417dde519f111c6248fae0eb6fb9889efd3e68c575caced652823d7ef4f169 name: libxml2 - evr: 2.9.13-14.el9_8.2 - sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + evr: 2.9.13-14.el9_8.4 + sourcerpm: libxml2-2.9.13-14.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 283159 @@ -942,13 +942,13 @@ arches: name: systemd-rpm-macros evr: 252-67.el9_8.4 sourcerpm: systemd-252-67.el9_8.4.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tar-1.34-11.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tar-1.34-13.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 904777 - checksum: sha256:62f985a87e048caa3ef883966d6176448398abc42df00ebff07e7311ff5f425d + size: 909271 + checksum: sha256:ee4fa57c4bb87613f6fbd4b785a9e6162d43f046d1bbdd5022771652b931e9d0 name: tar - evr: 2:1.34-11.el9 - sourcerpm: tar-1.34-11.el9.src.rpm + evr: 2:1.34-13.el9_8 + sourcerpm: tar-1.34-13.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tzdata-2026c-1.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms size: 933286 @@ -1254,13 +1254,13 @@ arches: name: dbus evr: 1:1.12.20-8.el9 sourcerpm: dbus-1.12.20-8.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-broker-28-7.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-broker-28-9.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 179634 - checksum: sha256:de9869c08df7f6952787d0335b9bf1a09b328bea920556a59af07c8e085dd3cb + size: 180434 + checksum: sha256:2c3b853f8548394af581f487d3682e3e6a4fd27bb451088ce278c7f00af454db name: dbus-broker - evr: 28-7.el9 - sourcerpm: dbus-broker-28-7.el9.src.rpm + evr: 28-9.el9_8 + sourcerpm: dbus-broker-28-9.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm repoid: ubi-9-baseos-rpms size: 18551 @@ -1373,13 +1373,13 @@ arches: name: grep evr: 3.6-5.el9 sourcerpm: grep-3.6-5.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-1.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-2.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 171206 - checksum: sha256:c8b3e0414d55b1eedb0185a564ac6cb2368bee2fd5f995447d045f6a714488ac + size: 172571 + checksum: sha256:a87bdcce45011f232758c01bd99c564b5f6b549d391646cc573a132d22604b85 name: gzip - evr: 1.12-1.el9 - sourcerpm: gzip-1.12-1.el9.src.rpm + evr: 1.12-2.el9_8 + sourcerpm: gzip-1.12-2.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/json-c-0.14-11.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 46136 @@ -1646,20 +1646,20 @@ arches: name: libsmartcols evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-18.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-19.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 225119 - checksum: sha256:4a3ec8a0cc0d4f693a876c522d3e4bc2296180b9ec05f958f6a0aa8658702458 + size: 225821 + checksum: sha256:10d0ecb7cef182f8d11eb4bc772943a60c48b8171f602ffd83bb79b9edf5eb44 name: libssh - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-19.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 14685 - checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + size: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 name: libssh-config - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 763021 @@ -1709,13 +1709,13 @@ arches: name: libxcrypt evr: 4.4.18-3.el9 sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.4.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 772164 - checksum: sha256:8bc57807fd307c504dd53a1d047215abb9892130943d29023765d2acd9af09a4 + size: 772646 + checksum: sha256:3b2b7f705584d2aa9dc1a110ef1b00dbefb3305285877a24a24605fcb9567eb0 name: libxml2 - evr: 2.9.13-14.el9_8.2 - sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + evr: 2.9.13-14.el9_8.4 + sourcerpm: libxml2-2.9.13-14.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 304135 @@ -1940,13 +1940,13 @@ arches: name: systemd-rpm-macros evr: 252-67.el9_8.4 sourcerpm: systemd-252-67.el9_8.4.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tar-1.34-11.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tar-1.34-13.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 913256 - checksum: sha256:58b622ab7bc225731a2473e677f16c9eb51b1ed218a86a7aa039a6fed665f245 + size: 914200 + checksum: sha256:913d84cd94463e3f0400d80c6742a2974eeab6445ac71ff9eb802a70779c146f name: tar - evr: 2:1.34-11.el9 - sourcerpm: tar-1.34-11.el9.src.rpm + evr: 2:1.34-13.el9_8 + sourcerpm: tar-1.34-13.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tzdata-2026c-1.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms size: 933286 diff --git a/deploy/konflux/gateway/rpms.lock.yaml b/deploy/konflux/gateway/rpms.lock.yaml index adde9cf53f..a46ad2bfc7 100644 --- a/deploy/konflux/gateway/rpms.lock.yaml +++ b/deploy/konflux/gateway/rpms.lock.yaml @@ -648,13 +648,13 @@ arches: name: groff-base evr: 1.22.4-10.el9 sourcerpm: groff-1.22.4-10.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-1.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-2.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 169809 - checksum: sha256:45710df49b439ddc4a2848fd3877367761b574234ae28b6be46f1cf54f3fcdca + size: 171305 + checksum: sha256:efafc848fdaa3a8e5e77baddc07abc7d800dc973efd44ecf492bc64dca4fabe6 name: gzip - evr: 1.12-1.el9 - sourcerpm: gzip-1.12-1.el9.src.rpm + evr: 1.12-2.el9_8 + sourcerpm: gzip-1.12-2.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/info-6.7-15.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 230301 @@ -949,20 +949,20 @@ arches: name: libsmartcols evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-18.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-19.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 222382 - checksum: sha256:6d529b3f31dee553349277c9f72da4f14ae54a2d48d10aa3088b45fbe90f99c2 + size: 223114 + checksum: sha256:80f3962d3eb780ca6d6d4f8c6841b003a907d758ad8ad1c3d785e9cf327672f6 name: libssh - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-19.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 14685 - checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + size: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 name: libssh-config - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 723913 @@ -1012,13 +1012,13 @@ arches: name: libxcrypt evr: 4.4.18-3.el9 sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.4.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 754623 - checksum: sha256:e78f201e1cbab2bbce30991a1618f3b79d8afc9ef8bb9bf41046e314c5f30f0e + size: 754646 + checksum: sha256:10417dde519f111c6248fae0eb6fb9889efd3e68c575caced652823d7ef4f169 name: libxml2 - evr: 2.9.13-14.el9_8.2 - sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + evr: 2.9.13-14.el9_8.4 + sourcerpm: libxml2-2.9.13-14.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 283159 @@ -2017,13 +2017,13 @@ arches: name: groff-base evr: 1.22.4-10.el9 sourcerpm: groff-1.22.4-10.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-1.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-2.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 171206 - checksum: sha256:c8b3e0414d55b1eedb0185a564ac6cb2368bee2fd5f995447d045f6a714488ac + size: 172571 + checksum: sha256:a87bdcce45011f232758c01bd99c564b5f6b549d391646cc573a132d22604b85 name: gzip - evr: 1.12-1.el9 - sourcerpm: gzip-1.12-1.el9.src.rpm + evr: 1.12-2.el9_8 + sourcerpm: gzip-1.12-2.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/info-6.7-15.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 233806 @@ -2318,20 +2318,20 @@ arches: name: libsmartcols evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-18.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-19.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 225119 - checksum: sha256:4a3ec8a0cc0d4f693a876c522d3e4bc2296180b9ec05f958f6a0aa8658702458 + size: 225821 + checksum: sha256:10d0ecb7cef182f8d11eb4bc772943a60c48b8171f602ffd83bb79b9edf5eb44 name: libssh - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-19.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 14685 - checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + size: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 name: libssh-config - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 763021 @@ -2381,13 +2381,13 @@ arches: name: libxcrypt evr: 4.4.18-3.el9 sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.4.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 772164 - checksum: sha256:8bc57807fd307c504dd53a1d047215abb9892130943d29023765d2acd9af09a4 + size: 772646 + checksum: sha256:3b2b7f705584d2aa9dc1a110ef1b00dbefb3305285877a24a24605fcb9567eb0 name: libxml2 - evr: 2.9.13-14.el9_8.2 - sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + evr: 2.9.13-14.el9_8.4 + sourcerpm: libxml2-2.9.13-14.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 304135 diff --git a/deploy/konflux/supervisor/rpms.lock.yaml b/deploy/konflux/supervisor/rpms.lock.yaml index 8d2c19ddb2..9be3c284ba 100644 --- a/deploy/konflux/supervisor/rpms.lock.yaml +++ b/deploy/konflux/supervisor/rpms.lock.yaml @@ -326,13 +326,13 @@ arches: name: grep evr: 3.6-5.el9 sourcerpm: grep-3.6-5.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-1.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-2.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 169809 - checksum: sha256:45710df49b439ddc4a2848fd3877367761b574234ae28b6be46f1cf54f3fcdca + size: 171305 + checksum: sha256:efafc848fdaa3a8e5e77baddc07abc7d800dc973efd44ecf492bc64dca4fabe6 name: gzip - evr: 1.12-1.el9 - sourcerpm: gzip-1.12-1.el9.src.rpm + evr: 1.12-2.el9_8 + sourcerpm: gzip-1.12-2.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/iproute-6.17.0-2.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 899705 @@ -655,20 +655,20 @@ arches: name: libsmartcols evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-18.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-19.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 222382 - checksum: sha256:6d529b3f31dee553349277c9f72da4f14ae54a2d48d10aa3088b45fbe90f99c2 + size: 223114 + checksum: sha256:80f3962d3eb780ca6d6d4f8c6841b003a907d758ad8ad1c3d785e9cf327672f6 name: libssh - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-19.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 14685 - checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + size: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 name: libssh-config - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 723913 @@ -718,13 +718,13 @@ arches: name: libxcrypt evr: 4.4.18-3.el9 sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.4.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 754623 - checksum: sha256:e78f201e1cbab2bbce30991a1618f3b79d8afc9ef8bb9bf41046e314c5f30f0e + size: 754646 + checksum: sha256:10417dde519f111c6248fae0eb6fb9889efd3e68c575caced652823d7ef4f169 name: libxml2 - evr: 2.9.13-14.el9_8.2 - sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + evr: 2.9.13-14.el9_8.4 + sourcerpm: libxml2-2.9.13-14.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 283159 @@ -942,13 +942,13 @@ arches: name: systemd-libs evr: 252-67.el9_8.4 sourcerpm: systemd-252-67.el9_8.4.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tar-1.34-11.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tar-1.34-13.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 904777 - checksum: sha256:62f985a87e048caa3ef883966d6176448398abc42df00ebff07e7311ff5f425d + size: 909271 + checksum: sha256:ee4fa57c4bb87613f6fbd4b785a9e6162d43f046d1bbdd5022771652b931e9d0 name: tar - evr: 2:1.34-11.el9 - sourcerpm: tar-1.34-11.el9.src.rpm + evr: 2:1.34-13.el9_8 + sourcerpm: tar-1.34-13.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tzdata-2026c-1.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms size: 933286 @@ -1331,13 +1331,13 @@ arches: name: grep evr: 3.6-5.el9 sourcerpm: grep-3.6-5.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-1.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-2.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 171206 - checksum: sha256:c8b3e0414d55b1eedb0185a564ac6cb2368bee2fd5f995447d045f6a714488ac + size: 172571 + checksum: sha256:a87bdcce45011f232758c01bd99c564b5f6b549d391646cc573a132d22604b85 name: gzip - evr: 1.12-1.el9 - sourcerpm: gzip-1.12-1.el9.src.rpm + evr: 1.12-2.el9_8 + sourcerpm: gzip-1.12-2.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/iproute-6.17.0-2.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 894459 @@ -1653,20 +1653,20 @@ arches: name: libsmartcols evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-18.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-19.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 225119 - checksum: sha256:4a3ec8a0cc0d4f693a876c522d3e4bc2296180b9ec05f958f6a0aa8658702458 + size: 225821 + checksum: sha256:10d0ecb7cef182f8d11eb4bc772943a60c48b8171f602ffd83bb79b9edf5eb44 name: libssh - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-19.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 14685 - checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + size: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 name: libssh-config - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 763021 @@ -1716,13 +1716,13 @@ arches: name: libxcrypt evr: 4.4.18-3.el9 sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.4.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 772164 - checksum: sha256:8bc57807fd307c504dd53a1d047215abb9892130943d29023765d2acd9af09a4 + size: 772646 + checksum: sha256:3b2b7f705584d2aa9dc1a110ef1b00dbefb3305285877a24a24605fcb9567eb0 name: libxml2 - evr: 2.9.13-14.el9_8.2 - sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + evr: 2.9.13-14.el9_8.4 + sourcerpm: libxml2-2.9.13-14.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 304135 @@ -1940,13 +1940,13 @@ arches: name: systemd-libs evr: 252-67.el9_8.4 sourcerpm: systemd-252-67.el9_8.4.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tar-1.34-11.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tar-1.34-13.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 913256 - checksum: sha256:58b622ab7bc225731a2473e677f16c9eb51b1ed218a86a7aa039a6fed665f245 + size: 914200 + checksum: sha256:913d84cd94463e3f0400d80c6742a2974eeab6445ac71ff9eb802a70779c146f name: tar - evr: 2:1.34-11.el9 - sourcerpm: tar-1.34-11.el9.src.rpm + evr: 2:1.34-13.el9_8 + sourcerpm: tar-1.34-13.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tzdata-2026c-1.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms size: 933286 From 3d0180073db45d8014f6ab182cf9b9eaab1006d7 Mon Sep 17 00:00:00 2001 From: "red-hat-konflux[bot]" <126015336+red-hat-konflux[bot]@users.noreply.github.com> Date: Thu, 3 Sep 2026 02:02:40 +0000 Subject: [PATCH 23/24] chore(deps): refresh rpm lockfiles Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> --- deploy/konflux/cli/rpms.lock.yaml | 120 +++++++++++------------ deploy/konflux/gateway/rpms.lock.yaml | 80 +++++++-------- deploy/konflux/supervisor/rpms.lock.yaml | 100 +++++++++---------- 3 files changed, 150 insertions(+), 150 deletions(-) diff --git a/deploy/konflux/cli/rpms.lock.yaml b/deploy/konflux/cli/rpms.lock.yaml index 99d7b49543..78a23e8d2b 100644 --- a/deploy/konflux/cli/rpms.lock.yaml +++ b/deploy/konflux/cli/rpms.lock.yaml @@ -249,13 +249,13 @@ arches: name: dbus evr: 1:1.12.20-8.el9 sourcerpm: dbus-1.12.20-8.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-broker-28-7.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-broker-28-9.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 173303 - checksum: sha256:342af53fbf4254e34b5f19a6be6f22c67551c26dd0c49016edc93e806621b75d + size: 174219 + checksum: sha256:ffebc8de0cd9ed86122973be161b617aa46ce1e020f61f9e8e5a42246d4bd495 name: dbus-broker - evr: 28-7.el9 - sourcerpm: dbus-broker-28-7.el9.src.rpm + evr: 28-9.el9_8 + sourcerpm: dbus-broker-28-9.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm repoid: ubi-9-baseos-rpms size: 18551 @@ -368,13 +368,13 @@ arches: name: grep evr: 3.6-5.el9 sourcerpm: grep-3.6-5.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-1.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-2.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 169809 - checksum: sha256:45710df49b439ddc4a2848fd3877367761b574234ae28b6be46f1cf54f3fcdca + size: 171305 + checksum: sha256:efafc848fdaa3a8e5e77baddc07abc7d800dc973efd44ecf492bc64dca4fabe6 name: gzip - evr: 1.12-1.el9 - sourcerpm: gzip-1.12-1.el9.src.rpm + evr: 1.12-2.el9_8 + sourcerpm: gzip-1.12-2.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/j/json-c-0.14-11.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 45052 @@ -648,20 +648,20 @@ arches: name: libsmartcols evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-18.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-19.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 222382 - checksum: sha256:6d529b3f31dee553349277c9f72da4f14ae54a2d48d10aa3088b45fbe90f99c2 + size: 223114 + checksum: sha256:80f3962d3eb780ca6d6d4f8c6841b003a907d758ad8ad1c3d785e9cf327672f6 name: libssh - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-19.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 14685 - checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + size: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 name: libssh-config - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 723913 @@ -711,13 +711,13 @@ arches: name: libxcrypt evr: 4.4.18-3.el9 sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.4.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 754623 - checksum: sha256:e78f201e1cbab2bbce30991a1618f3b79d8afc9ef8bb9bf41046e314c5f30f0e + size: 754646 + checksum: sha256:10417dde519f111c6248fae0eb6fb9889efd3e68c575caced652823d7ef4f169 name: libxml2 - evr: 2.9.13-14.el9_8.2 - sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + evr: 2.9.13-14.el9_8.4 + sourcerpm: libxml2-2.9.13-14.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 283159 @@ -942,13 +942,13 @@ arches: name: systemd-rpm-macros evr: 252-67.el9_8.4 sourcerpm: systemd-252-67.el9_8.4.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tar-1.34-11.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tar-1.34-13.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 904777 - checksum: sha256:62f985a87e048caa3ef883966d6176448398abc42df00ebff07e7311ff5f425d + size: 909271 + checksum: sha256:ee4fa57c4bb87613f6fbd4b785a9e6162d43f046d1bbdd5022771652b931e9d0 name: tar - evr: 2:1.34-11.el9 - sourcerpm: tar-1.34-11.el9.src.rpm + evr: 2:1.34-13.el9_8 + sourcerpm: tar-1.34-13.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tzdata-2026c-1.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms size: 933286 @@ -1254,13 +1254,13 @@ arches: name: dbus evr: 1:1.12.20-8.el9 sourcerpm: dbus-1.12.20-8.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-broker-28-7.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-broker-28-9.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 179634 - checksum: sha256:de9869c08df7f6952787d0335b9bf1a09b328bea920556a59af07c8e085dd3cb + size: 180434 + checksum: sha256:2c3b853f8548394af581f487d3682e3e6a4fd27bb451088ce278c7f00af454db name: dbus-broker - evr: 28-7.el9 - sourcerpm: dbus-broker-28-7.el9.src.rpm + evr: 28-9.el9_8 + sourcerpm: dbus-broker-28-9.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/dbus-common-1.12.20-8.el9.noarch.rpm repoid: ubi-9-baseos-rpms size: 18551 @@ -1373,13 +1373,13 @@ arches: name: grep evr: 3.6-5.el9 sourcerpm: grep-3.6-5.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-1.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-2.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 171206 - checksum: sha256:c8b3e0414d55b1eedb0185a564ac6cb2368bee2fd5f995447d045f6a714488ac + size: 172571 + checksum: sha256:a87bdcce45011f232758c01bd99c564b5f6b549d391646cc573a132d22604b85 name: gzip - evr: 1.12-1.el9 - sourcerpm: gzip-1.12-1.el9.src.rpm + evr: 1.12-2.el9_8 + sourcerpm: gzip-1.12-2.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/json-c-0.14-11.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 46136 @@ -1646,20 +1646,20 @@ arches: name: libsmartcols evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-18.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-19.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 225119 - checksum: sha256:4a3ec8a0cc0d4f693a876c522d3e4bc2296180b9ec05f958f6a0aa8658702458 + size: 225821 + checksum: sha256:10d0ecb7cef182f8d11eb4bc772943a60c48b8171f602ffd83bb79b9edf5eb44 name: libssh - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-19.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 14685 - checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + size: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 name: libssh-config - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 763021 @@ -1709,13 +1709,13 @@ arches: name: libxcrypt evr: 4.4.18-3.el9 sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.4.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 772164 - checksum: sha256:8bc57807fd307c504dd53a1d047215abb9892130943d29023765d2acd9af09a4 + size: 772646 + checksum: sha256:3b2b7f705584d2aa9dc1a110ef1b00dbefb3305285877a24a24605fcb9567eb0 name: libxml2 - evr: 2.9.13-14.el9_8.2 - sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + evr: 2.9.13-14.el9_8.4 + sourcerpm: libxml2-2.9.13-14.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 304135 @@ -1940,13 +1940,13 @@ arches: name: systemd-rpm-macros evr: 252-67.el9_8.4 sourcerpm: systemd-252-67.el9_8.4.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tar-1.34-11.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tar-1.34-13.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 913256 - checksum: sha256:58b622ab7bc225731a2473e677f16c9eb51b1ed218a86a7aa039a6fed665f245 + size: 914200 + checksum: sha256:913d84cd94463e3f0400d80c6742a2974eeab6445ac71ff9eb802a70779c146f name: tar - evr: 2:1.34-11.el9 - sourcerpm: tar-1.34-11.el9.src.rpm + evr: 2:1.34-13.el9_8 + sourcerpm: tar-1.34-13.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tzdata-2026c-1.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms size: 933286 diff --git a/deploy/konflux/gateway/rpms.lock.yaml b/deploy/konflux/gateway/rpms.lock.yaml index adde9cf53f..a46ad2bfc7 100644 --- a/deploy/konflux/gateway/rpms.lock.yaml +++ b/deploy/konflux/gateway/rpms.lock.yaml @@ -648,13 +648,13 @@ arches: name: groff-base evr: 1.22.4-10.el9 sourcerpm: groff-1.22.4-10.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-1.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-2.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 169809 - checksum: sha256:45710df49b439ddc4a2848fd3877367761b574234ae28b6be46f1cf54f3fcdca + size: 171305 + checksum: sha256:efafc848fdaa3a8e5e77baddc07abc7d800dc973efd44ecf492bc64dca4fabe6 name: gzip - evr: 1.12-1.el9 - sourcerpm: gzip-1.12-1.el9.src.rpm + evr: 1.12-2.el9_8 + sourcerpm: gzip-1.12-2.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/info-6.7-15.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 230301 @@ -949,20 +949,20 @@ arches: name: libsmartcols evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-18.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-19.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 222382 - checksum: sha256:6d529b3f31dee553349277c9f72da4f14ae54a2d48d10aa3088b45fbe90f99c2 + size: 223114 + checksum: sha256:80f3962d3eb780ca6d6d4f8c6841b003a907d758ad8ad1c3d785e9cf327672f6 name: libssh - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-19.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 14685 - checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + size: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 name: libssh-config - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 723913 @@ -1012,13 +1012,13 @@ arches: name: libxcrypt evr: 4.4.18-3.el9 sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.4.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 754623 - checksum: sha256:e78f201e1cbab2bbce30991a1618f3b79d8afc9ef8bb9bf41046e314c5f30f0e + size: 754646 + checksum: sha256:10417dde519f111c6248fae0eb6fb9889efd3e68c575caced652823d7ef4f169 name: libxml2 - evr: 2.9.13-14.el9_8.2 - sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + evr: 2.9.13-14.el9_8.4 + sourcerpm: libxml2-2.9.13-14.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 283159 @@ -2017,13 +2017,13 @@ arches: name: groff-base evr: 1.22.4-10.el9 sourcerpm: groff-1.22.4-10.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-1.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-2.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 171206 - checksum: sha256:c8b3e0414d55b1eedb0185a564ac6cb2368bee2fd5f995447d045f6a714488ac + size: 172571 + checksum: sha256:a87bdcce45011f232758c01bd99c564b5f6b549d391646cc573a132d22604b85 name: gzip - evr: 1.12-1.el9 - sourcerpm: gzip-1.12-1.el9.src.rpm + evr: 1.12-2.el9_8 + sourcerpm: gzip-1.12-2.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/info-6.7-15.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 233806 @@ -2318,20 +2318,20 @@ arches: name: libsmartcols evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-18.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-19.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 225119 - checksum: sha256:4a3ec8a0cc0d4f693a876c522d3e4bc2296180b9ec05f958f6a0aa8658702458 + size: 225821 + checksum: sha256:10d0ecb7cef182f8d11eb4bc772943a60c48b8171f602ffd83bb79b9edf5eb44 name: libssh - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-19.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 14685 - checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + size: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 name: libssh-config - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 763021 @@ -2381,13 +2381,13 @@ arches: name: libxcrypt evr: 4.4.18-3.el9 sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.4.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 772164 - checksum: sha256:8bc57807fd307c504dd53a1d047215abb9892130943d29023765d2acd9af09a4 + size: 772646 + checksum: sha256:3b2b7f705584d2aa9dc1a110ef1b00dbefb3305285877a24a24605fcb9567eb0 name: libxml2 - evr: 2.9.13-14.el9_8.2 - sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + evr: 2.9.13-14.el9_8.4 + sourcerpm: libxml2-2.9.13-14.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 304135 diff --git a/deploy/konflux/supervisor/rpms.lock.yaml b/deploy/konflux/supervisor/rpms.lock.yaml index 8d2c19ddb2..9be3c284ba 100644 --- a/deploy/konflux/supervisor/rpms.lock.yaml +++ b/deploy/konflux/supervisor/rpms.lock.yaml @@ -326,13 +326,13 @@ arches: name: grep evr: 3.6-5.el9 sourcerpm: grep-3.6-5.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-1.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/g/gzip-1.12-2.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 169809 - checksum: sha256:45710df49b439ddc4a2848fd3877367761b574234ae28b6be46f1cf54f3fcdca + size: 171305 + checksum: sha256:efafc848fdaa3a8e5e77baddc07abc7d800dc973efd44ecf492bc64dca4fabe6 name: gzip - evr: 1.12-1.el9 - sourcerpm: gzip-1.12-1.el9.src.rpm + evr: 1.12-2.el9_8 + sourcerpm: gzip-1.12-2.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/i/iproute-6.17.0-2.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 899705 @@ -655,20 +655,20 @@ arches: name: libsmartcols evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-18.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-0.10.4-19.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 222382 - checksum: sha256:6d529b3f31dee553349277c9f72da4f14ae54a2d48d10aa3088b45fbe90f99c2 + size: 223114 + checksum: sha256:80f3962d3eb780ca6d6d4f8c6841b003a907d758ad8ad1c3d785e9cf327672f6 name: libssh - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libssh-config-0.10.4-19.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 14685 - checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + size: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 name: libssh-config - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 723913 @@ -718,13 +718,13 @@ arches: name: libxcrypt evr: 4.4.18-3.el9 sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.4.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 754623 - checksum: sha256:e78f201e1cbab2bbce30991a1618f3b79d8afc9ef8bb9bf41046e314c5f30f0e + size: 754646 + checksum: sha256:10417dde519f111c6248fae0eb6fb9889efd3e68c575caced652823d7ef4f169 name: libxml2 - evr: 2.9.13-14.el9_8.2 - sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + evr: 2.9.13-14.el9_8.4 + sourcerpm: libxml2-2.9.13-14.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm repoid: ubi-9-baseos-rpms size: 283159 @@ -942,13 +942,13 @@ arches: name: systemd-libs evr: 252-67.el9_8.4 sourcerpm: systemd-252-67.el9_8.4.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tar-1.34-11.el9.aarch64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tar-1.34-13.el9_8.aarch64.rpm repoid: ubi-9-baseos-rpms - size: 904777 - checksum: sha256:62f985a87e048caa3ef883966d6176448398abc42df00ebff07e7311ff5f425d + size: 909271 + checksum: sha256:ee4fa57c4bb87613f6fbd4b785a9e6162d43f046d1bbdd5022771652b931e9d0 name: tar - evr: 2:1.34-11.el9 - sourcerpm: tar-1.34-11.el9.src.rpm + evr: 2:1.34-13.el9_8 + sourcerpm: tar-1.34-13.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/aarch64/baseos/os/Packages/t/tzdata-2026c-1.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms size: 933286 @@ -1331,13 +1331,13 @@ arches: name: grep evr: 3.6-5.el9 sourcerpm: grep-3.6-5.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-1.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/g/gzip-1.12-2.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 171206 - checksum: sha256:c8b3e0414d55b1eedb0185a564ac6cb2368bee2fd5f995447d045f6a714488ac + size: 172571 + checksum: sha256:a87bdcce45011f232758c01bd99c564b5f6b549d391646cc573a132d22604b85 name: gzip - evr: 1.12-1.el9 - sourcerpm: gzip-1.12-1.el9.src.rpm + evr: 1.12-2.el9_8 + sourcerpm: gzip-1.12-2.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/i/iproute-6.17.0-2.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 894459 @@ -1653,20 +1653,20 @@ arches: name: libsmartcols evr: 2.37.4-25.el9 sourcerpm: util-linux-2.37.4-25.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-18.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-0.10.4-19.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 225119 - checksum: sha256:4a3ec8a0cc0d4f693a876c522d3e4bc2296180b9ec05f958f6a0aa8658702458 + size: 225821 + checksum: sha256:10d0ecb7cef182f8d11eb4bc772943a60c48b8171f602ffd83bb79b9edf5eb44 name: libssh - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-18.el9.noarch.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libssh-config-0.10.4-19.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms - size: 14685 - checksum: sha256:ab353cbff2269677fc7364bfcddb8e11537ea83361a0ad642e60eac87ed67fbb + size: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 name: libssh-config - evr: 0.10.4-18.el9 - sourcerpm: libssh-0.10.4-18.el9.src.rpm + evr: 0.10.4-19.el9_8 + sourcerpm: libssh-0.10.4-19.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libstdc++-11.5.0-14.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 763021 @@ -1716,13 +1716,13 @@ arches: name: libxcrypt evr: 4.4.18-3.el9 sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.2.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libxml2-2.9.13-14.el9_8.4.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 772164 - checksum: sha256:8bc57807fd307c504dd53a1d047215abb9892130943d29023765d2acd9af09a4 + size: 772646 + checksum: sha256:3b2b7f705584d2aa9dc1a110ef1b00dbefb3305285877a24a24605fcb9567eb0 name: libxml2 - evr: 2.9.13-14.el9_8.2 - sourcerpm: libxml2-2.9.13-14.el9_8.2.src.rpm + evr: 2.9.13-14.el9_8.4 + sourcerpm: libxml2-2.9.13-14.el9_8.4.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm repoid: ubi-9-baseos-rpms size: 304135 @@ -1940,13 +1940,13 @@ arches: name: systemd-libs evr: 252-67.el9_8.4 sourcerpm: systemd-252-67.el9_8.4.src.rpm - - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tar-1.34-11.el9.x86_64.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tar-1.34-13.el9_8.x86_64.rpm repoid: ubi-9-baseos-rpms - size: 913256 - checksum: sha256:58b622ab7bc225731a2473e677f16c9eb51b1ed218a86a7aa039a6fed665f245 + size: 914200 + checksum: sha256:913d84cd94463e3f0400d80c6742a2974eeab6445ac71ff9eb802a70779c146f name: tar - evr: 2:1.34-11.el9 - sourcerpm: tar-1.34-11.el9.src.rpm + evr: 2:1.34-13.el9_8 + sourcerpm: tar-1.34-13.el9_8.src.rpm - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/t/tzdata-2026c-1.el9_8.noarch.rpm repoid: ubi-9-baseos-rpms size: 933286 From ed7c90e60805917e42803b6ae7cb2e5fd5c018e4 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Thu, 3 Sep 2026 21:53:47 -0400 Subject: [PATCH 24/24] fix(server): preserve in-memory SQLite across reconnects Keep a dedicated SQLite connection alive so pool connection replacement retains the shared in-memory schema and objects. Closes #3173 Signed-off-by: Emilien Macchi --- architecture/gateway.md | 4 ++ .../src/persistence/sqlite.rs | 48 +++++++++++++++-- .../openshell-server/src/persistence/tests.rs | 52 +++++++++++++++++++ 3 files changed, 100 insertions(+), 4 deletions(-) diff --git a/architecture/gateway.md b/architecture/gateway.md index ba325ccc2c..769f57f6a0 100644 --- a/architecture/gateway.md +++ b/architecture/gateway.md @@ -336,6 +336,10 @@ This keeps the gateway data model portable across storage backends and leaves room for future stores that can provide the same object, label, version, and scope semantics. +For in-memory SQLite, the adapter retains a dedicated keepalive connection for +the store lifetime. Operational connection replacement therefore preserves the +shared in-memory schema and objects instead of creating an empty database. + The SQLite adapter tightens the on-disk database file to mode `0o600` on every connect so that provider API keys, SSH session tokens, and sandbox metadata are not readable by other local users on shared hosts. The same restriction is diff --git a/crates/openshell-server/src/persistence/sqlite.rs b/crates/openshell-server/src/persistence/sqlite.rs index c945c417f9..3e96040e34 100644 --- a/crates/openshell-server/src/persistence/sqlite.rs +++ b/crates/openshell-server/src/persistence/sqlite.rs @@ -14,35 +14,57 @@ use openshell_core::SetResourceVersion; use openshell_core::paths::set_file_owner_only; use openshell_core::proto::Sandbox; use prost::Message; -use sqlx::sqlite::{SqliteConnectOptions, SqlitePoolOptions}; +use sqlx::sqlite::{SqliteConnectOptions, SqliteConnection, SqlitePoolOptions}; use sqlx::{Connection, QueryBuilder, Row, Sqlite, SqlitePool}; use std::path::{Path, PathBuf}; use std::str::FromStr; +use std::sync::Arc; +use std::sync::atomic::{AtomicU64, Ordering}; +use tokio::sync::Mutex; static SQLITE_MIGRATOR: sqlx::migrate::Migrator = sqlx::migrate!("./migrations/sqlite"); +static IN_MEMORY_DB_SEQUENCE: AtomicU64 = AtomicU64::new(0); use super::{DELETE_MANY_BATCH_SIZE, DRAFT_CHUNK_OBJECT_TYPE, POLICY_OBJECT_TYPE}; #[derive(Debug, Clone)] pub struct SqliteStore { pool: SqlitePool, + #[cfg_attr(not(any(test, feature = "test-support")), allow(dead_code))] + in_memory_keepalive: Option>>>, +} + +#[cfg(test)] +pub(super) async fn replace_pool_connection(store: &SqliteStore) -> PersistenceResult<()> { + let connection = store.pool.acquire().await.map_err(|e| map_db_error(&e))?; + connection.close().await.map_err(|e| map_db_error(&e)) } impl SqliteStore { /// Closes the connection pool. #[cfg(test)] pub(crate) async fn close_for_test(&self) { - self.pool.close().await; + self.close().await; } pub async fn connect(url: &str) -> PersistenceResult { let is_in_memory = url.contains(":memory:") || url.contains("mode=memory"); let max_connections = if is_in_memory { 1 } else { 5 }; - let options = SqliteConnectOptions::from_str(url) + let mut options = SqliteConnectOptions::from_str(url) .map_err(|e| map_db_error(&e))? .create_if_missing(true); + if is_in_memory { + if options.get_filename().as_os_str().is_empty() + || options.get_filename() == Path::new(":memory:") + { + let sequence = IN_MEMORY_DB_SEQUENCE.fetch_add(1, Ordering::Relaxed); + options = options.filename(format!("file:openshell-in-memory-{sequence}")); + } + options = options.shared_cache(true); + } + let mut pool_options = SqlitePoolOptions::new() .max_connections(max_connections) .min_connections(max_connections); @@ -55,6 +77,15 @@ impl SqliteStore { // so we can restrict the permissions after the database is connected. let db_path = (!is_in_memory).then(|| options.get_filename().to_path_buf()); + let in_memory_keepalive = if is_in_memory { + let connection = SqliteConnection::connect_with(&options) + .await + .map_err(|e| map_db_error(&e))?; + Some(Arc::new(Mutex::new(Some(connection)))) + } else { + None + }; + let pool = pool_options .connect_with(options) .await @@ -65,7 +96,10 @@ impl SqliteStore { restrict_db_file_permissions(&path)?; } - Ok(Self { pool }) + Ok(Self { + pool, + in_memory_keepalive, + }) } pub async fn migrate(&self) -> PersistenceResult<()> { @@ -88,6 +122,12 @@ impl SqliteStore { #[cfg(any(test, feature = "test-support"))] pub async fn close(&self) { self.pool.close().await; + if let Some(keepalive) = &self.in_memory_keepalive { + let connection = keepalive.lock().await.take(); + if let Some(connection) = connection { + let _ = connection.close().await; + } + } } pub async fn put( diff --git a/crates/openshell-server/src/persistence/tests.rs b/crates/openshell-server/src/persistence/tests.rs index 7882c9246c..37fc469d66 100644 --- a/crates/openshell-server/src/persistence/tests.rs +++ b/crates/openshell-server/src/persistence/tests.rs @@ -132,6 +132,58 @@ async fn sqlite_connect_runs_embedded_migrations() { assert!(records.is_empty()); } +#[tokio::test] +async fn sqlite_in_memory_store_survives_pool_connection_replacement() { + for url in ["sqlite::memory:", "sqlite://?mode=memory"] { + let store = super::sqlite::SqliteStore::connect(url) + .await + .expect("connect to in-memory SQLite"); + store.migrate().await.expect("migrate in-memory SQLite"); + store + .put( + "sandbox", + "before-replacement", + "before-replacement", + "default", + b"before", + None, + ) + .await + .expect("write before connection replacement"); + + super::sqlite::replace_pool_connection(&store) + .await + .expect("replace operational pool connection"); + + let preserved = store + .get("sandbox", "before-replacement") + .await + .expect("schema survives connection replacement") + .expect("existing object survives connection replacement"); + assert_eq!(preserved.payload, b"before", "database URL: {url}"); + + store + .put( + "sandbox", + "after-replacement", + "after-replacement", + "default", + b"after", + None, + ) + .await + .expect("write after connection replacement"); + assert!( + store + .get("sandbox", "after-replacement") + .await + .expect("read after connection replacement") + .is_some(), + "database URL: {url}" + ); + } +} + #[cfg(unix)] #[tokio::test] async fn sqlite_connect_restricts_db_file_permissions() {