diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index d27ba1e984..69d645dfc8 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -1,94 +1,331 @@ -# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. -# SPDX-License-Identifier: Apache-2.0 - name: Docker Build on: workflow_call: inputs: component: + description: "Component to build (gateway, supervisor, cli)" required: true type: string - binary: - required: true + timeout-minutes: + description: "Per-arch Docker image job timeout in minutes" + required: false + type: number + default: 20 + push: + description: "Push image to registry" + required: false + type: boolean + default: true + platform: + description: "Target platform(s) for Docker build" + required: false type: string - target-suffix: - required: true + default: "linux/amd64,linux/arm64" + runner: + description: "Deprecated; per-arch native runners are selected automatically" + required: false + type: string + default: "linux-amd64-cpu8" + cargo-version: + description: "Pre-computed cargo version (skips internal git-based computation)" + required: false type: string + default: "" + auditable: + description: "Embed cargo-auditable dependency metadata in image binaries" + required: false + type: boolean + default: false image-tag: + description: "Image tag base to build/push (defaults to the GitHub SHA)" required: false type: string default: "" checkout-ref: + description: "Git ref to check out for build inputs (defaults to the workflow SHA)" required: false type: string default: "" + publish-manifest: + description: "Push the bare-SHA manifest. Set false for single-arch branch workflows." + required: false + type: boolean + default: true + +env: + MISE_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} permissions: contents: read packages: write +defaults: + run: + shell: bash + jobs: - build: - name: ${{ inputs.component }} (${{ matrix.platform }}) + resolve: + name: Resolve build plan + runs-on: ubuntu-latest + outputs: + matrix: ${{ steps.resolve.outputs.matrix }} + platform_count: ${{ steps.resolve.outputs.platform_count }} + arches: ${{ steps.resolve.outputs.arches }} + binary_component: ${{ steps.resolve.outputs.binary_component }} + binary_name: ${{ steps.resolve.outputs.binary_name }} + artifact_prefix: ${{ steps.resolve.outputs.artifact_prefix }} + image_tag_base: ${{ steps.resolve.outputs.image_tag_base }} + features: ${{ steps.resolve.outputs.features }} + has_image: ${{ steps.resolve.outputs.has_image }} + steps: + - name: Resolve component and platform matrix + id: resolve + run: | + set -euo pipefail + + component="${{ inputs.component }}" + case "$component" in + gateway) + binary_component=gateway + binary_name=openshell-gateway + features="bundled-z3" + has_image=true + ;; + supervisor) + binary_component=sandbox + binary_name=openshell-sandbox + features="" + has_image=true + ;; + cli) + binary_component=cli + binary_name=openshell + features="" + has_image=true + ;; + *) + echo "unsupported component: $component" >&2 + exit 1 + ;; + esac + + image_tag_base="${{ inputs['image-tag'] }}" + if [[ -z "$image_tag_base" ]]; then + image_tag_base="$GITHUB_SHA" + fi + + platform_input="${{ inputs.platform }}" + platform_input="${platform_input//[[:space:]]/}" + if [[ -z "$platform_input" ]]; then + echo "platform input must not be empty" >&2 + exit 1 + fi + + IFS=',' read -r -a platforms <<< "$platform_input" + matrix='{"include":[' + arches=() + count=0 + + for platform in "${platforms[@]}"; do + case "$platform" in + linux/amd64) + arch=amd64 + runner=linux-amd64-cpu8 + ;; + linux/arm64) + arch=arm64 + runner=linux-arm64-cpu8 + ;; + *) + echo "unsupported platform: $platform" >&2 + echo "supported platforms: linux/amd64, linux/arm64" >&2 + exit 1 + ;; + esac + + if [[ $count -gt 0 ]]; then + matrix+=',' + fi + matrix+='{"platform":"'"$platform"'","arch":"'"$arch"'","runner":"'"$runner"'"}' + arches+=("$arch") + count=$((count + 1)) + done + + matrix+=']}' + { + echo "matrix=$matrix" + echo "platform_count=$count" + echo "arches=${arches[*]}" + echo "binary_component=$binary_component" + echo "binary_name=$binary_name" + echo "artifact_prefix=rust-binary-${component}" + echo "image_tag_base=$image_tag_base" + echo "features=$features" + echo "has_image=$has_image" + } >> "$GITHUB_OUTPUT" + + rust-binary: + name: Rust ${{ needs.resolve.outputs.binary_component }} (${{ matrix.arch }}) + needs: resolve + permissions: + contents: read + packages: read strategy: fail-fast: false - matrix: - include: - - arch: amd64 - rust_arch: x86_64 - platform: linux/amd64 - runner: linux-amd64-cpu8 - - arch: arm64 - rust_arch: aarch64 - platform: linux/arm64 - runner: linux-arm64-cpu8 + matrix: ${{ fromJSON(needs.resolve.outputs.matrix) }} + uses: ./.github/workflows/rust-native-build.yml + with: + component: ${{ needs.resolve.outputs.binary_component }} + arch: ${{ matrix.arch }} + cargo-version: ${{ inputs['cargo-version'] }} + image-tag: ${{ needs.resolve.outputs.image_tag_base }} + checkout-ref: ${{ inputs['checkout-ref'] }} + features: ${{ needs.resolve.outputs.features }} + auditable: ${{ inputs.auditable }} + artifact-name: ${{ needs.resolve.outputs.artifact_prefix }}-linux-${{ matrix.arch }} + secrets: inherit + + build: + name: Build ${{ inputs.component }} (${{ matrix.arch }}) + needs: [resolve, rust-binary] + if: needs.resolve.outputs.has_image == 'true' runs-on: ${{ matrix.runner }} - timeout-minutes: 20 + timeout-minutes: ${{ inputs['timeout-minutes'] }} + strategy: + fail-fast: false + matrix: ${{ fromJSON(needs.resolve.outputs.matrix) }} + container: + image: ghcr.io/nvidia/openshell/ci:latest + credentials: + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + options: --privileged + volumes: + - /var/run/docker.sock:/var/run/docker.sock + # Expose the nv-gha-runners buildkitd.toml registry mirror config + # inside the container so setup-buildx can read it. + - /etc/buildkit:/etc/buildkit:ro + env: + IMAGE_TAG: ${{ format('{0}-{1}', needs.resolve.outputs.image_tag_base, matrix.arch) }} + IMAGE_REGISTRY: ghcr.io/nvidia/openshell + DOCKER_PUSH: ${{ inputs.push && '1' || '0' }} + DOCKER_PLATFORM: ${{ matrix.platform }} steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: ref: ${{ inputs['checkout-ref'] || github.sha }} + fetch-depth: 0 + + - name: Mark workspace safe for git + run: git config --global --add safe.directory "$GITHUB_WORKSPACE" + + - name: Install tools + run: mise install --locked + + - name: Log in to GHCR + if: ${{ inputs.push }} + run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin + + - name: Set up buildx (local driver) + uses: ./.github/actions/setup-buildx + with: + buildkitd-config: /etc/buildkit/buildkitd.toml - - uses: ./.github/actions/build-docker-image + - name: Download Rust binary artifact + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - component: ${{ inputs.component }} - binary: ${{ inputs.binary }} - triple: ${{ matrix.rust_arch }}-${{ inputs['target-suffix'] }} - arch: ${{ matrix.arch }} - platform: ${{ matrix.platform }} - image-tag: ${{ inputs.image-tag || github.sha }} - github-token: ${{ secrets.GITHUB_TOKEN }} - - manifest: - name: ${{ inputs.component }} manifest - needs: build + name: ${{ needs.resolve.outputs.artifact_prefix }}-linux-${{ matrix.arch }} + path: prebuilt-rust-binary + + - name: Stage Rust binary in Docker build context + run: | + set -euo pipefail + binary="${{ needs.resolve.outputs.binary_name }}" + download_dir="prebuilt-rust-binary" + stage="deploy/docker/.build/prebuilt-binaries/${{ matrix.arch }}" + found="$(find "$download_dir" -type f -name "$binary" -print -quit)" + if [[ -z "$found" ]]; then + echo "missing downloaded artifact file: $binary" >&2 + find "$download_dir" -maxdepth 4 -type f -print >&2 || true + exit 1 + fi + mkdir -p "$stage" + install -m 0755 "$found" "$stage/$binary" + ls -lh "$stage/" + + - name: Build ${{ inputs.component }} image + env: + DOCKER_BUILDER: openshell + run: | + set -euo pipefail + mise exec -- tasks/scripts/docker-build-image.sh "${{ inputs.component }}" \ + --cache-from "type=gha,scope=${{ inputs.component }}-${{ matrix.arch }}" \ + --cache-to "type=gha,mode=max,scope=${{ inputs.component }}-${{ matrix.arch }}" + + - name: Smoke check ${{ inputs.component }} image + run: | + set -euo pipefail + image="${IMAGE_REGISTRY}/${{ inputs.component }}:${IMAGE_TAG}" + case "${{ inputs.component }}" in + gateway) + output="$(docker run --rm --platform "${{ matrix.platform }}" "$image" --version)" + echo "$output" + grep -q '^openshell-gateway ' <<<"$output" + ;; + supervisor) + output="$(docker run --rm --platform "${{ matrix.platform }}" --entrypoint /openshell-sandbox "$image" --version)" + 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: + name: Merge ${{ inputs.component }} manifest + needs: [resolve, build] + if: ${{ inputs.push && inputs['publish-manifest'] && needs.resolve.outputs.has_image == 'true' }} runs-on: linux-amd64-cpu8 timeout-minutes: 10 + container: + image: ghcr.io/nvidia/openshell/ci:latest + credentials: + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + volumes: + - /var/run/docker.sock:/var/run/docker.sock steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: ref: ${{ inputs['checkout-ref'] || github.sha }} - name: Log in to GHCR - shell: bash - run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "${GITHUB_ACTOR}" --password-stdin + run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin - - name: Create manifest - shell: bash - env: - IMAGE_TAG: ${{ inputs.image-tag || github.sha }} - INPUTS_COMPONENT: ${{ inputs.component }} + - name: Create multi-arch manifest run: | - image=ghcr.io/nvidia/openshell/${INPUTS_COMPONENT} + set -euo pipefail + image="ghcr.io/nvidia/openshell/${{ inputs.component }}" + refs=() + for arch in ${{ needs.resolve.outputs.arches }}; do + refs+=("${image}:${{ needs.resolve.outputs.image_tag_base }}-${arch}") + done docker buildx imagetools create \ --prefer-index=false \ - --tag "$image:${IMAGE_TAG}" \ - "$image:${IMAGE_TAG}-amd64" \ - "$image:${IMAGE_TAG}-arm64" + -t "${image}:${{ needs.resolve.outputs.image_tag_base }}" \ + "${refs[@]}" - name: Verify merged manifest SBOM attestation - shell: bash env: - IMAGE_REF: ghcr.io/nvidia/openshell/${{ inputs.component }}:${{ inputs.image-tag || github.sha }} - run: tasks/scripts/verify-image-sbom.sh "${IMAGE_REF}" --require-cargo + IMAGE_REF: ghcr.io/nvidia/openshell/${{ inputs.component }}:${{ needs.resolve.outputs.image_tag_base }} + REQUIRE_CARGO: ${{ inputs.auditable }} + run: | + args=("${IMAGE_REF}") + if [[ "${REQUIRE_CARGO}" == "true" ]]; then + args+=(--require-cargo) + fi + tasks/scripts/verify-image-sbom.sh "${args[@]}" diff --git a/.github/workflows/rhaiv-auto-tag.yml b/.github/workflows/rhaiv-auto-tag.yml new file mode 100644 index 0000000000..9ec21b4883 --- /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. 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. + +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 + fetch-depth: 0 + + - name: Determine next rhaiv tag + id: version + run: | + # 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 + 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" + 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}" + 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 + 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 + + 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" diff --git a/.gitignore b/.gitignore index 3ef1a37697..f83f122dfa 100644 --- a/.gitignore +++ b/.gitignore @@ -233,6 +233,9 @@ rfc.md # Markdown/mermaid lint tooling deps scripts/lint-mermaid/node_modules/ +# Hermeto prefetch output +/hermeto-output/ + # Nix /result /result-* 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: {} 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-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-pull-request.yaml b/.tekton/odh-openshell-supervisor-pull-request.yaml new file mode 100644 index 0000000000..7410c5fb57 --- /dev/null +++ b/.tekton/odh-openshell-supervisor-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-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: 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: 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..c70591fef9 --- /dev/null +++ b/.tekton/odh-openshell-supervisor-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-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: 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"} + ] + 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-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: {} 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() { 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..f2b9d892ae --- /dev/null +++ b/deploy/docker/Dockerfile.konflux.cli @@ -0,0 +1,95 @@ +# 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 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. +# +# Local build: ./deploy/konflux/build-local.sh cli + +ARG RUST_VERSION=1.92.0 + +# --------------------------------------------------------------------------- +# Build stage: compile CLI (fully-static glibc binary) +# --------------------------------------------------------------------------- +FROM registry.access.redhat.com/ubi9/ubi:9.8@sha256:25a147defd01e19674714f55d17538c8dbe55d8c305fa157ecc3f9c8977b05b6 AS builder + +ARG RUST_VERSION +ARG TARGETARCH + +RUN dnf install -y --nodocs \ + gcc gcc-c++ make cmake \ + glibc-static \ + openssl-devel git-core xz \ + && dnf clean all + +# 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" && \ + 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 && \ + echo "RUST_TARGET=${RUST_TRIPLE}" > /tmp/build-env + +ENV 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="" + +# `-C target-feature=+crt-static` links glibc statically, producing a +# fully-static (static-PIE) binary with no runtime libc dependency. +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-cli && \ + mkdir -p /build/output && \ + cp /build/target/${RUST_TARGET}/release/openshell /build/output/ + +# --------------------------------------------------------------------------- +# Runtime +# --------------------------------------------------------------------------- +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8@sha256:7fbeae18dc9476399f565e68255f602a3374ea8614ba3d14843565131a13ff93 + +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="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="" \ + 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/docker/Dockerfile.konflux.gateway b/deploy/docker/Dockerfile.konflux.gateway new file mode 100644 index 0000000000..f696378816 --- /dev/null +++ b/deploy/docker/Dockerfile.konflux.gateway @@ -0,0 +1,84 @@ +# 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.8@sha256:25a147defd01e19674714f55d17538c8dbe55d8c305fa157ecc3f9c8977b05b6 AS builder + +RUN dnf install -y --nodocs --setopt=install_weak_deps=0 \ + 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/ + +# 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="" + +# 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 \ + && 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-gateway \ + --no-default-features \ + --features defaults-without-telemetry,bundled-z3 + +# --------------------------------------------------------------------------- +# Runtime +# --------------------------------------------------------------------------- +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 + +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..b54cdd6e51 --- /dev/null +++ b/deploy/docker/Dockerfile.konflux.supervisor @@ -0,0 +1,107 @@ +# 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 +# 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. +# +# Local build: ./deploy/konflux/build-local.sh supervisor + +ARG RUST_VERSION=1.92.0 + +# --------------------------------------------------------------------------- +# Build stage: compile supervisor (fully-static glibc binary) +# --------------------------------------------------------------------------- +FROM registry.access.redhat.com/ubi9/ubi:9.8@sha256:25a147defd01e19674714f55d17538c8dbe55d8c305fa157ecc3f9c8977b05b6 AS builder + +ARG RUST_VERSION +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 + +# 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" && \ + 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 && \ + echo "RUST_TARGET=${RUST_TRIPLE}" > /tmp/build-env + +ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse + +WORKDIR /build +COPY Cargo.toml Cargo.lock ./ +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="" + +# `-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 \ + --no-default-features \ + --features defaults-without-telemetry && \ + mkdir -p /build/output && \ + cp /build/target/${RUST_TARGET}/release/openshell-sandbox /build/output/ + +# --------------------------------------------------------------------------- +# Runtime +# --------------------------------------------------------------------------- +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8@sha256:7fbeae18dc9476399f565e68255f602a3374ea8614ba3d14843565131a13ff93 + +ARG TARGETARCH + +RUN microdnf install -y --nodocs --setopt=install_weak_deps=0 \ + nftables \ + iptables-nft \ + iproute \ + util-linux-core \ + && microdnf clean all + +# 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="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="" \ + 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..1e9bb5fab9 --- /dev/null +++ b/deploy/konflux/build-local.sh @@ -0,0 +1,145 @@ +#!/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 +# +# 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" + ;; + cli) + dockerfile="deploy/docker/Dockerfile.konflux.cli" + konfig_dir="deploy/konflux/cli" + ;; + *) + 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/output + hermeto generate-env "${output_dir}" \ + --format env --for-output-dir /cachi2/output \ + --output "${output_dir}/cachi2.env" + + echo "=== Preparing RPM repos ===" + find "${output_dir}" -name "hermeto.repo" -execdir cp {} cachi2.repo \; + local rpm_arch + 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}" + + 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}" + + # 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 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}" \ + --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" \ + --volume "${empty_secrets}:/run/secrets: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|cli|all}" >&2 + exit 1 +fi + +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..c29d406bad --- /dev/null +++ b/deploy/konflux/cli/generic-fetcher.yaml @@ -0,0 +1,20 @@ +# 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: + # 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 diff --git a/deploy/konflux/cli/rpms.in.yaml b/deploy/konflux/cli/rpms.in.yaml new file mode 100644 index 0000000000..38f70f6a84 --- /dev/null +++ b/deploy/konflux/cli/rpms.in.yaml @@ -0,0 +1,49 @@ +# 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. +# +# Resolved with `context.bare: true` so the lockfile pins the full dependency +# 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. +# +# 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: + 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: static glibc + build tools + - gcc + - make + - tar + - xz + - glibc-static + # Build stage: Rust compilation (rustup provides rust/cargo) + - gcc-c++ + - cmake + - openssl-devel + - 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 new file mode 100644 index 0000000000..78a23e8d2b --- /dev/null +++ b/deploy/konflux/cli/rpms.lock.yaml @@ -0,0 +1,2014 @@ +--- +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.42.1.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 2874189 + checksum: sha256:4eaed7563988ff556b2c52e8e90195f42dadeaae5c5c7e849af2d3f5a87afdd0 + name: kernel-headers + 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 + 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-9.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 174219 + checksum: sha256:ffebc8de0cd9ed86122973be161b617aa46ce1e020f61f9e8e5a42246d4bd495 + name: dbus-broker + 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 + 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-2.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 171305 + checksum: sha256:efafc848fdaa3a8e5e77baddc07abc7d800dc973efd44ecf492bc64dca4fabe6 + name: gzip + 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 + 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.6.0-1.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 23276 + checksum: sha256:ec08036348dbe2ee41645bdb96eb485b9db5121ec0524258b0639426a22a49bc + name: libattr + 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 + 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_8.5.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 292322 + checksum: sha256:ea6c3ade86939df7a985ae71e4c5100731962add54295fd40660a2f2c2f85f1d + name: libcurl + 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 + 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.2.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 79650 + checksum: sha256:eefb6d331e38314bce55c28e02d67d022c83e41b4d5de91f86d9d846b381ac48 + name: libnghttp2 + 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 + 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-19.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 223114 + checksum: sha256:80f3962d3eb780ca6d6d4f8c6841b003a907d758ad8ad1c3d785e9cf327672f6 + name: libssh + 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: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 + name: libssh-config + 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 + 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.4.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 754646 + checksum: sha256:10417dde519f111c6248fae0eb6fb9889efd3e68c575caced652823d7ef4f169 + name: libxml2 + 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 + 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-13.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 909271 + checksum: sha256:ee4fa57c4bb87613f6fbd4b785a9e6162d43f046d1bbdd5022771652b931e9d0 + name: tar + 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 + 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 + - 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 + 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.42.1.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 2913473 + checksum: sha256:6a2a1bdb7d755358f35a283de880abb48b359aedd5fdfcd2da80bbe03541688c + name: kernel-headers + 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 + 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-9.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 180434 + checksum: sha256:2c3b853f8548394af581f487d3682e3e6a4fd27bb451088ce278c7f00af454db + name: dbus-broker + 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 + 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-2.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 172571 + checksum: sha256:a87bdcce45011f232758c01bd99c564b5f6b549d391646cc573a132d22604b85 + name: gzip + 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 + 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.6.0-1.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 23752 + checksum: sha256:9e37537f690c748f7f05faa80966072f118ec722e38ef332fe19cf22b087349f + name: libattr + 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 + 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_8.5.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 297551 + checksum: sha256:428b87ca3eb808d769f6f0f68019a97d3c487c86268ccff2ab7ad7223beab01e + name: libcurl + 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 + 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.2.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 80410 + checksum: sha256:adb3260b6610917c07bda0a6bc521d5628bb1892a66d008f0fea81dc022ac699 + name: libnghttp2 + 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 + 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-19.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 225821 + checksum: sha256:10d0ecb7cef182f8d11eb4bc772943a60c48b8171f602ffd83bb79b9edf5eb44 + name: libssh + 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: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 + name: libssh-config + 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 + 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.4.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 772646 + checksum: sha256:3b2b7f705584d2aa9dc1a110ef1b00dbefb3305285877a24a24605fcb9567eb0 + name: libxml2 + 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 + 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-13.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 914200 + checksum: sha256:913d84cd94463e3f0400d80c6742a2974eeab6445ac71ff9eb802a70779c146f + name: tar + 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 + 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 + - 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/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..880dee734b --- /dev/null +++ b/deploy/konflux/gateway/rpms.in.yaml @@ -0,0 +1,51 @@ +# RPM dependencies for Dockerfile.konflux.gateway +# 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.8 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: + 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 + - 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 +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 new file mode 100644 index 0000000000..a46ad2bfc7 --- /dev/null +++ b/deploy/konflux/gateway/rpms.lock.yaml @@ -0,0 +1,2742 @@ +--- +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/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/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-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-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.42.1.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 2874189 + checksum: sha256:4eaed7563988ff556b2c52e8e90195f42dadeaae5c5c7e849af2d3f5a87afdd0 + name: kernel-headers + 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 + 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/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/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/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/curl-7.76.1-40.el9_8.5.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 303758 + checksum: sha256:0fb8426b8f874ced7fe96c194139c44d14721703d27b337b5bd822e668f165ce + name: curl + 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 + 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 + 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-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/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/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-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/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/g/gzip-1.12-2.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 171305 + checksum: sha256:efafc848fdaa3a8e5e77baddc07abc7d800dc973efd44ecf492bc64dca4fabe6 + name: gzip + 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 + 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/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 + 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.6.0-1.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 23276 + checksum: sha256:ec08036348dbe2ee41645bdb96eb485b9db5121ec0524258b0639426a22a49bc + name: libattr + 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 + 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_8.5.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 292322 + checksum: sha256:ea6c3ade86939df7a985ae71e4c5100731962add54295fd40660a2f2c2f85f1d + name: libcurl + 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 + 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/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/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.2.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 79650 + checksum: sha256:eefb6d331e38314bce55c28e02d67d022c83e41b4d5de91f86d9d846b381ac48 + name: libnghttp2 + 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 + 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/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 + 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/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-19.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 223114 + checksum: sha256:80f3962d3eb780ca6d6d4f8c6841b003a907d758ad8ad1c3d785e9cf327672f6 + name: libssh + 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: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 + name: libssh-config + 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 + 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.4.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 754646 + checksum: sha256:10417dde519f111c6248fae0eb6fb9889efd3e68c575caced652823d7ef4f169 + name: libxml2 + 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 + 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 + 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/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/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/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 + 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/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.3.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 33143 + checksum: sha256:67e6d2eca7f6558030dd215a4d2d3ede810231faad0f317eb2bcbc7e9ac619ce + name: python3 + 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: 8470487 + checksum: sha256:014bbdef3d3d00d09c34df9aaf377337e338e31c4106da6c98b844339fcd50d6 + name: python3-libs + 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 + 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 + 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/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-11.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 660770 + checksum: sha256:0fbb8043f9c02870c831da433f69b856a6674d02b60306d9cc01149ec89ed239 + name: sqlite-libs + 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 + 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 + 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/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-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/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/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-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-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.42.1.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 2913473 + checksum: sha256:6a2a1bdb7d755358f35a283de880abb48b359aedd5fdfcd2da80bbe03541688c + name: kernel-headers + 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 + 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/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/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/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/curl-7.76.1-40.el9_8.5.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 307326 + checksum: sha256:273736810bf95bd5efd1ee4942d349c51aeba23941dc28026d2cb2cf6719a2e3 + name: curl + 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 + 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 + 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-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/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/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-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/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/g/gzip-1.12-2.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 172571 + checksum: sha256:a87bdcce45011f232758c01bd99c564b5f6b549d391646cc573a132d22604b85 + name: gzip + 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 + 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/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 + 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.6.0-1.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 23752 + checksum: sha256:9e37537f690c748f7f05faa80966072f118ec722e38ef332fe19cf22b087349f + name: libattr + 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 + 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_8.5.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 297551 + checksum: sha256:428b87ca3eb808d769f6f0f68019a97d3c487c86268ccff2ab7ad7223beab01e + name: libcurl + 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 + 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/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/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.2.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 80410 + checksum: sha256:adb3260b6610917c07bda0a6bc521d5628bb1892a66d008f0fea81dc022ac699 + name: libnghttp2 + 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 + 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/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 + 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-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 + 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/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-19.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 225821 + checksum: sha256:10d0ecb7cef182f8d11eb4bc772943a60c48b8171f602ffd83bb79b9edf5eb44 + name: libssh + 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: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 + name: libssh-config + 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 + 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.4.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 772646 + checksum: sha256:3b2b7f705584d2aa9dc1a110ef1b00dbefb3305285877a24a24605fcb9567eb0 + name: libxml2 + 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 + 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 + 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/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/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/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 + 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/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.3.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 33200 + checksum: sha256:f0d622eb17a038e98c23ef9bd6961c104c55b3534f69c301b2067cd9161f40f7 + name: python3 + 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: 8483866 + checksum: sha256:6227afce7123d2e6c46a4a6d318087c512caebf6e09f7bfc0ba73f7e5853fba4 + name: python3-libs + 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 + 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 + 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/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-11.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 665095 + checksum: sha256:e5c20e933ec01f746a6c59a94cb99f46c6138dab3f387f0d02dab47f356e2e98 + name: sqlite-libs + 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 + 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 + 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/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-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/generic-fetcher.yaml b/deploy/konflux/supervisor/generic-fetcher.yaml new file mode 100644 index 0000000000..8c0b348a19 --- /dev/null +++ b/deploy/konflux/supervisor/generic-fetcher.yaml @@ -0,0 +1,17 @@ +# 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: + # 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 diff --git a/deploy/konflux/supervisor/rpms.in.yaml b/deploy/konflux/supervisor/rpms.in.yaml new file mode 100644 index 0000000000..e21a62fc0e --- /dev/null +++ b/deploy/konflux/supervisor/rpms.in.yaml @@ -0,0 +1,55 @@ +# RPM dependencies for Dockerfile.konflux.supervisor +# 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.8 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: + 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: static glibc + build tools + - gcc + - make + - tar + - xz + - glibc-static + # 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 +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 new file mode 100644 index 0000000000..9be3c284ba --- /dev/null +++ b/deploy/konflux/supervisor/rpms.lock.yaml @@ -0,0 +1,2014 @@ +--- +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/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.42.1.el9_8.aarch64.rpm + repoid: ubi-9-appstream-rpms + size: 2874189 + checksum: sha256:4eaed7563988ff556b2c52e8e90195f42dadeaae5c5c7e849af2d3f5a87afdd0 + name: kernel-headers + 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 + 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/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/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-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-2.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 171305 + checksum: sha256:efafc848fdaa3a8e5e77baddc07abc7d800dc973efd44ecf492bc64dca4fabe6 + name: gzip + 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 + 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/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 + 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.6.0-1.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 23276 + checksum: sha256:ec08036348dbe2ee41645bdb96eb485b9db5121ec0524258b0639426a22a49bc + name: libattr + 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 + 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/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_8.5.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 292322 + checksum: sha256:ea6c3ade86939df7a985ae71e4c5100731962add54295fd40660a2f2c2f85f1d + name: libcurl + 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 + 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/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/libnghttp2-1.43.0-6.el9_8.2.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 79650 + checksum: sha256:eefb6d331e38314bce55c28e02d67d022c83e41b4d5de91f86d9d846b381ac48 + name: libnghttp2 + 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 + 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/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-19.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 223114 + checksum: sha256:80f3962d3eb780ca6d6d4f8c6841b003a907d758ad8ad1c3d785e9cf327672f6 + name: libssh + 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: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 + name: libssh-config + 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 + 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.4.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 754646 + checksum: sha256:10417dde519f111c6248fae0eb6fb9889efd3e68c575caced652823d7ef4f169 + name: libxml2 + 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 + 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/n/nftables-1.0.9-9.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 467195 + checksum: sha256:71080fba834245674aa5ed3badf2cb675254b1860fc585d28dd88829b2d5a43a + name: nftables + 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 + 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/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/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-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/tar-1.34-13.el9_8.aarch64.rpm + repoid: ubi-9-baseos-rpms + size: 909271 + checksum: sha256:ee4fa57c4bb87613f6fbd4b785a9e6162d43f046d1bbdd5022771652b931e9d0 + name: tar + 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 + 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 + - 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 + 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/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.42.1.el9_8.x86_64.rpm + repoid: ubi-9-appstream-rpms + size: 2913473 + checksum: sha256:6a2a1bdb7d755358f35a283de880abb48b359aedd5fdfcd2da80bbe03541688c + name: kernel-headers + 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 + 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/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/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-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-2.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 172571 + checksum: sha256:a87bdcce45011f232758c01bd99c564b5f6b549d391646cc573a132d22604b85 + name: gzip + 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 + 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/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 + 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.6.0-1.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 23752 + checksum: sha256:9e37537f690c748f7f05faa80966072f118ec722e38ef332fe19cf22b087349f + name: libattr + 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 + 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/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_8.5.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 297551 + checksum: sha256:428b87ca3eb808d769f6f0f68019a97d3c487c86268ccff2ab7ad7223beab01e + name: libcurl + 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 + 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/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/libnghttp2-1.43.0-6.el9_8.2.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 80410 + checksum: sha256:adb3260b6610917c07bda0a6bc521d5628bb1892a66d008f0fea81dc022ac699 + name: libnghttp2 + 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 + 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/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-19.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 225821 + checksum: sha256:10d0ecb7cef182f8d11eb4bc772943a60c48b8171f602ffd83bb79b9edf5eb44 + name: libssh + 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: 14764 + checksum: sha256:ce06b99793b9e5abc50a58ebc3ef11037f2efbdb5f819a25f8de4994613194d4 + name: libssh-config + 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 + 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.4.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 772646 + checksum: sha256:3b2b7f705584d2aa9dc1a110ef1b00dbefb3305285877a24a24605fcb9567eb0 + name: libxml2 + 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 + 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/n/nftables-1.0.9-9.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 473262 + checksum: sha256:c2ed618abe918bb6f8f4ce93ab0654289edf51693fc4bd15350ab71c54198f19 + name: nftables + 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 + 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/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/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-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/tar-1.34-13.el9_8.x86_64.rpm + repoid: ubi-9-baseos-rpms + size: 914200 + checksum: sha256:913d84cd94463e3f0400d80c6742a2974eeab6445ac71ff9eb802a70779c146f + name: tar + 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 + 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 + - 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/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"] +} diff --git a/tasks/scripts/docker-build-image.sh b/tasks/scripts/docker-build-image.sh index 08ba00e066..38b89f69f0 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 fe4913439a..c794dd3723 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() { @@ -111,8 +111,11 @@ components_for_target() { sandbox|supervisor|supervisor-output) echo "supervisor" ;; + cli) + echo "cli" + ;; all) - echo "gateway supervisor" + echo "gateway supervisor cli" ;; *) usage @@ -133,6 +136,11 @@ resolve_component() { binary=openshell-sandbox target_libc=$(supervisor_libc) ;; + cli) + crate=openshell-cli + binary=openshell + target_libc=musl + ;; *) echo "unsupported binary component: $1" >&2 exit 1